﻿#wrapper {
    display: flex;
    height: 90vh;
    background-color: lightcyan;
}

#map {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
}

@media only screen and (max-width: 360px) {
    #sidebar {
        position: absolute;
        right: 45vw;
        top: 8vh;
    }
}

@media only screen and (min-width: 361px) {
    #sidebar {
        position: absolute;
        right: 1vw;
        top: 1vh;
    }
}

#list {
    height: 40vh;
    overflow-y: auto;
    color: black;
    background-color: rgba(134, 164, 207, 0.2);
    border-radius: 7px;
    color: black;
    font-size: 15px;
    font-weight: bold;
}

.list-item {
    z-index: 999;
    cursor: pointer;
}

.legend {
    font-size: 15px;
}

.button_margin {
    margin: 3px 3px 3px 0;
}

#position {
    display: block;
    margin-top: 3px;
    padding: 5%;
    height: auto;
    width: 100%;
    font-weight: bold;
    background-color: rgba(134, 164, 207, 0.2);
    border-radius: 7px;
}

.coordinates {
    /*display: flex;
    margin-top: 3px;*/
}

.marker {
    background-image: url('../images/mapbox-icon.png');
    background-size: initial;
    width: 10%;
    height: 10%;
    border-radius: 1%;
    cursor: pointer;
}

#action_buttons_div {
    display: flex;
    flex-direction: row;
}

.action_buttons {
    display: flex;
    flex-direction: column;
    margin: 10px;
}