#vis1 {
    z-index: 1;
    width: 70vw;
    height: 100vh;
}

.mapboxgl-canvas-container {
    cursor: url(../images/icons/cursor.cur), auto !important
}

.mapboxgl-control-container div, .mapboxgl-control-container a {
    background-color: #00000000;
}

.mapboxgl-control-container a:hover {
    color: #000000DD;
}



.mapboxgl-popup {
    max-width: 200px;
    background-color: #00000000;
}

.mapboxgl-popup-tip {
    background-color: #00000000;
}

.mapboxgl-popup-content {
    text-align: left;
    font-family: Arial, sans-serif;
    padding: 15px;
    color: black;
    background-color: #00000000;
}

.mapboxgl-popup-content b {
    background-color: #00000000;
}

/* ######################################################################## */

#vis1Title {
    position: absolute;
    z-index: 2;

    width: 24vw;
    height: 15vh;
    left: 72vw;

    text-align: left;
    font-size: 3vw;
    line-height: 3.5vw;
}

#vis1Text {
    position: absolute;
    z-index: 2;

    top: 28vh;
    left: 72vw;
    width: 24vw;
}

/* ######################################################################## */

#control1 {
    position: absolute;
    z-index: 2;

    width: 24vw;
    left: 72vw;
    bottom: 2vw;

    border-radius: 5px;
}

#travel-time-text, #travel-method-text {
    width: 100%;
    text-align: center;
    height: 1.5vw;
    line-height: 1.5vw;
    font-size: 1vw;
    color: #ccc;
    background-color: #00000000;
}

.slider {
    -webkit-appearance: none;
    appearance: none;

    width: 100%;
    height: 1vh;
    margin-top: 0.5vw;
    background: #000000;
    outline: none;
    opacity: 0.5;
    -webkit-transition: .25s;
    transition: opacity .25s;
}

.slider:hover {
    opacity: 1;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 0.5vh; /* Set a specific slider handle width */
    height: 1vh; /* Slider handle height */
    background: #ccc; /* Green background */
    cursor: pointer; /* Cursor on hover */
}

.slider::-moz-range-thumb {
    width: 0.5vh; /* Set a specific slider handle width */
    height: 1vh; /* Slider handle height */
    background: #ccc; /* Green background */
    cursor: pointer; /* Cursor on hover */
}

/* ######################################################################## */

#travel-method-buttons {
    display: flex;
    justify-content: space-between;
    background-color: #00000000;
    margin-top: 0.5vw;
}

.travel-btn {
    width: 5.6vw;
    height: 4vh;
    font-size: 2.5vh;
    border: 0;
    border-radius: 5px;
    background-color: #000000;
    opacity: 0.5;
    cursor: pointer;
    transition: 0.25s;
}

.travel-btn:hover {
    opacity: 0.8;
}

.travel-btn.active {
    background-color: #363636;
    opacity: 1;
}

#reset-work-place-btn {
    width: 24vw;
    margin-top: 1vh;
    height: 4vh;
    font-size: 1vw;
    color: #ccc;
    border: 0;
    border-radius: 5px;
    background-color: #000000;
    opacity: 0.5;
    cursor: pointer;
    transition: 0.25s;
}

#reset-work-place-btn:hover {
    background-color: #363636;
    opacity: 1;
}

/* ######################################################################## */

#legend1 {
    position: absolute;
    z-index: 2;

    width: 12.5vw;
    height: 16vh;
    left: 2vw;
    bottom: 2vw;

    border-radius: 5px;
    background-color: #00000099;
}

#price-stats {
    margin-top: 0.25vh;
    margin-bottom: 0.25vh;
    background-color: #00000000;
}

#price-stats p {
    width: 100%;
    text-align: left;
    color: #CCC;
    background-color: #00000000;
    margin-left: 0.5vw;
    margin-top: 0.75vh;
    margin-bottom: 0.75vh;
    font-size: 1.6vh;
    line-height: 1.6vh;
}

#legend1 div span {
    display: inline-block;
    height: 1.5vh;
    width: 2vw;
    margin-right: 5px;
    margin-left: 0.5vw;
}

.price-group {
    height: 1.5vh;
    background-color: #00000000;
}

.price-group p {
    color: #CCC;
    background-color: #00000000;
    display: inline-block;
    width: 9vw;
    text-align: left;
    margin: auto;
    font-size: 0.6vw;
    line-height: 0.6vw;
}

#loading {
    z-index: 999;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}