html {
	width: 100%;
	height: 100%;
	overflow: hidden;
}

body {
	overflow: hidden;
	position: absolute;
	top:0;
	left: 0;
	right:0;
	bottom:0;
}

#map{
	height: 100%;
    z-index:1;
}
    
button, select, input {
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 12px;
    background-color: rgba(0,0,0,0);
    outline: none;
    cursor: pointer;
    z-index: 4;
}





.leaflet-control a { cursor: pointer;}


.mapMainClass {
    position: fixed;
	background-color: rgba(89, 141, 196, 0.8);
	z-index: 2;
    color: #FFFFFF;
    font-family: Arial;
}

.mapHeader {
    position: fixed;
	top: 0;
	left: 0;
    width: 100%;
    height: 33px;
    display:flex;
    align-items:center;
    justify-content:left;
    padding-left: 10px;
    padding-bottom: 5px;
    font-size: 18px;
    z-index: 2;
}

.menuBlock {
    position: fixed;
    top: 0;
    right: 0;
    height: 38px;
    background-color: rgba(0,0,0,0);
    display:flex;
    justify-content:right;
    font-size: 38px;
    align-items:center;
    z-index: 3;
    padding-top: 0px;
    padding-bottom: 0px;
}

.menuBlock button{
    height: 38px;
    width: 38px;
    font-size: 28px;
    padding: 0px;
    margin: 0px;
    border: none;
    text-align: center;
}


.competitorInfoButton{
    height: 38px;
    width: 38px;
    font-size: 28px;
    padding: 0px;
    margin: 0px;
    border: none;
    text-align: center;
    justify-content:right;
}

.details_left {
    width: 150px;
    left: 5px;
}

.details_right {
    text-align: right;
    right: 5px;
    width: 100%;
}

.details_right button, .details_right input{
    height: 20px;
    width: 100px;
    text-align: center;
}


button:hover, input:hover {
    background-color:rgba(180,180,180,1);
    color: #FFFFFF;
}

button:active, button.active, input:active {
    font-weight: bold;
    background-color:rgba(210,210,210,1);
    color: #FFFFFF;
}

input[type=range]{
    width: 100%;
}


a:link {
  color: #FFFFFF;
}

a:visited {
  color: #FFFFFF;
}

a:hover {
  color: #FFFFFF;
}

a:active {
  color: #FFFFFF;
}

.tabContents{
    position: fixed;
    bottom: 0;
    right: 0px;
    top: 38px;
    width: 300px;
    z-index: 2;
    overflow:scroll;
    padding: 5px;
    display: none;
}

.tabContent {
    display: none;
    background-color: rgba(0,0,0,0);
    animation: fadeEffect 1s;
    z-index: 3;
}

.contentTable {
    width: 100%;
    font-family: Arial;
    font-size: 12px;
}

.tabHeader {
    font-size: 24px;
    padding-bottom: 5px;
}

.competitor-details {
    display: none;
    width: 100%;
    padding: 0px;}
    
.competitor-portrait {
    margin-top: 3px;
    filter: drop-shadow(2px 2px 2px rgb(0, 0, 0));
    width: 34px;
    border: 3px solid black;
    border-radius: 100px;}
.competitor-portrait-online {
    margin-top: 3px;
    filter: drop-shadow(2px 2px 2px rgb(0, 0, 0));
    width: 34px;
    border: 3px solid lime;
    border-radius: 100px;}
.competitor-portrait-offline {
    margin-top: 3px;
    filter: drop-shadow(2px 2px 2px rgb(0, 0, 0));
    width: 34px;
    border: 3px solid red;
    border-radius: 100px;}

@keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}}
	
@keyframes fade { 
  from { opacity: 1; }
  to {opacity: 0.2;}}
  
.blinking {
  animation: fade 500ms infinite alternate;
}

.playbackControl {
    text-align: center;
    justify-content:center;}

.playbackControl button {
	height: 48px;
	width: 48px;
	font-size: 32px;
	padding: 0;
    z-index: 3;
    display: inline-block;
	cursor: pointer;
    outline: none;}




.stand_button_alt {
    background-color: #598DC4;
    color: #FFFFFF;
    padding: 5px 5px;
    text-align: center;
    text-decoration: none;
    font-size: 12px;
    border-radius: 12px;
    border: 2px solid #FFFFFF;
    width: 100%;
    height: 30px;
    display: block;
    margin: auto;
    z-index: 4;}

.input_alt {
    background-color: #FFFFFF;
    border: 0px solid #FFFFFF;
    width: 60px;
    height: 20px;
    text-align: right;
    align-items:center;
    padding: 0px;
    display: inline-block;
    margin: 0px;}
    


.cycleRed {
    background-color: red;
    float:left;
    margin:0 10px 0 10px;
    width: 20px;
    height: 20px;
    border: 1px solid black;
    border-radius: 100px;}

.cycleGreen {
    background-color: green;
    vertical-align: baseline;
    float:left;
    margin:0 2px 0 0;
    width: 5px;
    height: 5px;
    border: 1px solid black;
    border-radius: 100px;}


.competitorCycleBlack {
    margin:0 10px 0 10px;
    filter: drop-shadow(2px 2px 2px rgb(0, 0, 0));
    width: 20px;
    height: 20px;
    border: 1px solid black;
    border-radius: 100px;}