html,
body {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}
/*
#map {
  width: 100%;
  height: 100%;
}
*/


.mapContainer, #map {
    position: relative;
    width: 100%;
    min-width:290px;
    /*height: 600px;*/
    height: 100%;
}

.legend {
    position: absolute;
    bottom: 5px;
    left: 5px;
    width: 300px;
    height: 80px;
    font-family: Arial;
    font-size: 12px;
    background-color: rgba(200, 200, 200, 0.8);
    border-radius: 5px;
    padding: 5px;
}
#legendCanvas {
    width: 300px;
    height: 15px;
    margin-top:5px;
}
.legend-mid {
    margin: 0 0 0 126px;
}
.legend-max {
    float: right;
}
.legend-label {
    margin-left: 40px;
}
#endpointname{
    font-weight: bold;
}

#playPauseBtn {
    margin-top: 5px;
}

#mist {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 200px;
    height: 80px;
    padding: 5px;
}
/* pulse experiement */
.pulseIcon {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: orange;
    border: 2px solid white;
    cursor: pointer;
    box-shadow: 0 0 0 rgba(0, 204, 255, 0.4);
    animation: pulse 3s infinite;
}
    .pulseIcon:hover {
        animation: none;
    }
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 204, 255, 0.4);
    }
    70% {
        box-shadow: 0 0 0 80px rgba(0, 204, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 204, 255, 0);
    }
}
/*
Resources 
1×0.5×0.25× 
Rerun
*/