#map, #real_time_map, #static_map {
    height: 80vh;
}
.co-map-label {
    /*min-width: 50px;*/
    /*min-height: 24px;*/
    border: 1px solid #eb3a44;
    /*border-radius: 5px;*/
    background: #fee1d7;
    /*text-align: center;*/
    /*line-height: 20px;*/
    font-weight: bold;
    font-size: 14px;
    color: #eb3a44;
    padding: 2px;
    text-align: left;
    position: absolute;
    left: 20px;
    top: 30px;
}
.co-map-label__below {
    border: 1px solid #eb3a44;
    background: #fee1d7;
    font-weight: bold;
    font-size: 14px;
    color: #eb3a44;
    padding: 2px;
    text-align: center;
    position: relative;
    top: 40px;
}

.co-map-label__truck {
    border: 1px solid #eb3a44;
    background: #fee1d7;
    font-weight: bold;
    font-size: 14px;
    color: #eb3a44;
    padding: 2px;
    text-align: center;
    position: relative;
    top: 40px;
}

.co-map-label__start {
    border: 1px solid #ADD159;
    background: #c9d5a5;
    font-weight: bold;
    font-size: 14px;
    color: black;
    padding: 2px;
    text-align: left;
    position: absolute;
    left: 20px;
    top: 40px;
}

.co-map-label__end {
    border: 1px solid #006636;
    background: #73b48b;
    font-weight: bold;
    font-size: 14px;
    color: black;
    padding: 2px;
    text-align: left;
    position: absolute;
    left: 20px;
    top: 40px;
}

.status_indicator {
    width: 16px;
    height: 16px;
    line-height: 16px;
    border: 1px solid black;
    vertical-align: middle;
    display: inline-block;
    margin-right: 2px;
}

.status-arrow {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    vertical-align: middle;
    display: inline-block;
    margin-right: 2px;
}
.arrow-up {
    border-bottom: 10px solid;
}

.arrow-down {
    border-top: 10px solid;
}


.node_icon {
    animation-iteration-count: 5;
    animation-name: highlight;
    animation-duration: 2s;
}

@keyframes highlight {
    from {
        filter: drop-shadow(0 0 5px rgba(0, 200, 0, 1));
    }
    to {
        filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.8));
    }
}

.truck_icon {
    animation: bouncyTruck 1s linear infinite;
}
@keyframes bouncyTruck {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-50px);
    }
}

*,
*:before,
*:after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    /*font-family: "Poppins", sans-serif;*/
}
body{
    font-family: 'Open Sans', sans-serif;
}

.double-slider-container {
    position: relative;
    width: 100%;
    height: 40px;
    /*   margin-top: 30px; */
}
input[type="range"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    outline: none;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    background-color: transparent;
    pointer-events: none;
}
.slider-track {
    width: 100%;
    height: 5px;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    border-radius: 5px;
}
input[type="range"]::-webkit-slider-runnable-track {
    -webkit-appearance: none;
    height: 5px;
}
input[type="range"]::-moz-range-track {
    -moz-appearance: none;
    height: 5px;
}
input[type="range"]::-ms-track {
    appearance: none;
    height: 5px;
}
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 1.7em;
    width: 1.7em;
    background-color: #33B24A;
    cursor: pointer;
    margin-top: -9px;
    pointer-events: auto;
    border-radius: 50%;
}
#slider-1::-webkit-slider-thumb {
    background-color: #ADD159;
}
#slider-2::-webkit-slider-thumb {
    background-color: #006636;
}
input[type="range"]::-moz-range-thumb {
    -webkit-appearance: none;
    height: 1.7em;
    width: 1.7em;
    cursor: pointer;
    border-radius: 50%;
    background-color: #33B24A;
    pointer-events: auto;
    border: none;
}
#slider-1::-moz-range-thumb {
    background-color: #ADD159;
}
#slider-2::-moz-range-thumb {
    background-color: #006636;
}
input[type="range"]::-ms-thumb {
    appearance: none;
    height: 1.7em;
    width: 1.7em;
    cursor: pointer;
    border-radius: 50%;
    background-color: #33B24A;
    pointer-events: auto;
}
#slider-1::-ms-thumb {
    background-color: #ADD159;
}
#slider-2::-ms-thumb {
    background-color: #006636;
}

input[type="range"]:active::-webkit-slider-thumb {
    background-color: #ffffff;
    border: 1px solid #ADD159;
}
.values {
    background-color: #33B24A;
    max-width: 300px;
    position: relative;
    /*margin: auto;*/
    padding: 5px 0;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    color: #ffffff;
}
.values:before {
    content: "";
    position: absolute;
    height: 0;
    width: 0;
    border-top: 15px solid #33B24A;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    margin: auto;
    bottom: -14px;
    left: 0;
    right: 0;
}
/*END styles for slider*/