﻿.map-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* Ratio 16:9 ( 100%/16*9 = 56.25% ) */
}


    .map-container > * {
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        margin: 0;
        padding: 0;
        height: 100%;
        width: 100%;
    }


ul.vehicles {
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 200px;
    background-color: #f1f1f1;
    height: 75vh;
    overflow: auto;
}

    ul.vehicles li a {
        display: block;
        color: #000;
        padding: 8px 16px;
        text-decoration: none;
        text-transform: uppercase;
    }

ul.vehicles li a.active {
    background-color: #04AA6D;
    color: white;
}

ul.vehicles li a:hover:not(.active) {
    background-color: #555;
    color: white;
}

.scaleStyle:hover {
    -webkit-transition: 0.2s ease-in-out;
    -moz-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    -webkit-transform: scale(2);
    -moz-transform: scale(2);
    -o-transform: scale(2);
    -ms-transform: scale(2);
    transform: scale(2);
}