﻿html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

#map {
    height: 100%;
}

#page-content-wrapper {
    min-width: 100vw;
    height: 100vh;
    transition: 0.5s;
}

#sidebarL-wrapper {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    overflow-x: hidden;
    /*-webkit-transition: margin .25s ease-out;
    -moz-transition: margin .25s ease-out;
    -o-transition: margin .25s ease-out;
    transition: margin .25s ease-out;*/
    transition: 0.5s;
}

    #sidebarL-wrapper .sidebarL-heading {
        padding: 10px 10px;
        font-size: 1.5rem;
        background: linear-gradient(to right, #19679b 0%, #165b8a 100%) !important;
        max-width: 200px;
        color: white;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #sidebarL-wrapper .list-group {
        width: 200px;
        max-width: 200px;
    }


#wrapper.toggledL #sidebarL-wrapper {
    margin-left: 0;
}


#sidebarR-wrapper {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    overflow-x: hidden;
    /*-webkit-transition: margin .25s ease-out;
    -moz-transition: margin .25s ease-out;
    -o-transition: margin .25s ease-out;
    transition: margin .25s ease-out;*/
    transition: 0.5s;
}

    #sidebarR-wrapper .sidebarR-heading {
        padding: 10px 10px;
        font-size: 1.5rem;
        background: linear-gradient(to right, #19679b 0%, #165b8a 100%) !important;
        width: 250px;
        color: white;
        display: flex;
        justify-content: center;
        align-items: center;
        max-height: 10vh;
    }

    #sidebarR-wrapper .sidebarR-rows {
        width: 250px;
        max-height: 90vh;
        overflow-y: auto;
    }

    #sidebarR-wrapper .sidebarR-row1 {
        padding: 5px 5px;
        font-size: 1rem;
        background: linear-gradient(to right, #E4F5FF 0%, #B4E3FF 100%) !important;
        cursor: pointer;
        color: black;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #sidebarR-wrapper .sidebarR-row2 {
        padding: 5px 5px;
        font-size: 1rem;
        background: linear-gradient(to right, #B4E3FF 0%, #E4F5FF 100%) !important;
        cursor: pointer;
        color: black;
        display: flex;
        justify-content: center;
        align-items: center;
    }



@media (min-width: 0px) {

    #sidebarL-wrapper {
    }

    #sidebarR-wrapper {
    }

    #page-content-wrapper {
        min-width: 0;
        width: 100%;
    }

    #wrapper.toggledL #page-content-wrapper {
        margin-left: 200px;
    }

    #wrapper.toggledL #sidebarL-wrapper {
        width: 200px;
    }

    #wrapper.toggledR #page-content-wrapper {
        margin-right: 250px;
    }

    #wrapper.toggledR #sidebarR-wrapper {
        width: 250px;
    }
}

.map_button_div_select {
    background-color: rgb(25, 103, 155);
    border: 2px solid rgb(25, 103, 155);
    border-radius: 3px; 
}

.map_button_text_div_select {
    color: rgb(255, 255, 255); 
}
.map_button_div_unselect {
    background-color: rgb(227, 222, 222);
    border: 2px solid rgb(192, 190, 190);
    border-radius: 3px;
}

.map_button_text_div_unselect {
    color: rgb(255, 255, 255);
}