﻿html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #f1f1f1;
}

.flexbox-parent {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* align items in Main Axis */
    align-items: stretch; /* align items in Cross Axis */
    align-content: stretch; /* Extra space in Cross Axis */
}

.flexbox-item {
    padding: 0px;
}

.flexbox-item-grow {
    flex: 1;
}

.flexbox-item.header {
    background-color: #555;
    padding: 5px;
    font-size: 25px;
}

.flexbox-item.footer {
    /*background: rgba(0, 255, 0, .1);*/
}

.flexbox-item.content {
    /*background: rgba(0, 0, 255, .1);*/
}

.fill-area {
    display: flex;
    flex-direction: row;
    justify-content: flex-start; /* align items in Main Axis */
    align-items: stretch; /* align items in Cross Axis */
    align-content: stretch; /* Extra space in Cross Axis */
}

.fill-area-content {
    overflow: auto;
}

#flexboxMasterContent {
    margin-left: 0px;
    transition: 0.5s;
}

/*#element::-webkit-scrollbar {
    display: none;
    width: 0px;
}

::-webkit-scrollbar {
    display: none;
    width: 0px;
}*/

::-webkit-scrollbar {
    display: block !important;
    width: 5px !important;
    height: 5px !important;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 0 rgba(0,0,0,0.0) !important;
}

::-webkit-scrollbar-thumb {
    background-color: darkgrey !important;
    outline: 1px solid slategrey !important;
}

#mapContainer {
    position: absolute;
    margin-top: 50px;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    _top: 0;
    _left: 0;
    _width: 100%;
    _height: 100%;
    transition: 0.5s;
    z-index: 0;
}


.mapFilter {
    position: fixed;
    width: 32px;
    height: 32px;
    top: 60px;
    right: 50px;
    background-color: #FFFFFF;
    border: 2px solid #C1BEAB;
    border-radius: 5px;
    z-index: 1;
    cursor: pointer;
    padding: 6px;
    transition: 0.3s;
}

    .mapFilter.on {
        right: 360px;
    }


#SideNav {
    margin-top: 50px;
    height: 100%;
    width: 350px;
    position: fixed;
    z-index: 1;
    top: 0px;
    right: -350px;
    background-color: #eeeeee;
    overflow-x: hidden;
    transition: 0.3s;
    padding-top: 0px;
}

    #SideNav.on {
        z-index: 1;
        right: 0px;
        width: 350px;
        box-shadow: 6px 9px 3px 10px rgba(0, 0, 0, 0.4);
    }

    #SideNav a {
        text-decoration: none;
        font-size: 16px;
        color: #959595;
        display: block;
        transition: 0.3s;
    }

        #SideNav a:hover, .offcanvas a:focus {
            color: #959595;
        }

    #SideNav .closebtn {
        position: absolute;
        top: -5px;
        right: 0px;
        font-size: 20px;
    }
