﻿
#sidebar {
    min-width: 250px;
    max-width: 250px;
    height: 100vh;
    position: fixed;
    top: 60px;
    right: 0;
    /* top layer */
    z-index: 999;
    margin-right: -250px;
}

    #sidebar.active {
        margin-right: 0px;
    }

#sidebar {
    /*background-image: url("images/bg-checked-small.png");
    background-blend-mode: multiply;*/
    background-color: #2c2d63;
    /*background-color: transparent;
    border-color: transparent;
    background: #2c2d63;*/
    color: #fff;
    transition: all 0.3s;
}

    #sidebar .sidebar-header {
        padding: 20px;
        /*background: #6d7fcc;*/
    }

.menu-container {
    width: 100%;
    height: 60px;
    padding-right: 15px;
    padding-left: 15px;
}

.menu-toggle {
    position: fixed;
    float: right;
    font-size: 1.8em;
    line-height: 1.8em;
    color: white;
    width: 40px;
    height: 40px;
    top: 13px;
    right: 15px;
    background: transparent;
    border: 0;
    padding: 0 !important;
    outline: none !important;
}

.sidebar-container {
    width: 100%;
    padding: 10px 0;
    float: left;
    border-bottom-color: #72c4c6;
    border-bottom-style: dotted;
    text-align: end;
}

div.sidebar-container a:active,
div.sidebar-container a:hover,
div.sidebar-container a:link,
div.sidebar-container a:visited {
    font-family: 'Roboto Medium', sans-serif;
    font-size: 1.2em;
    color: #72c4c6;
    text-decoration: none;
    text-transform: uppercase;
}

.link_menu_right {
    font-family: 'Roboto Medium', sans-serif;
    font-size: 1.2em;
    color: #72c4c6;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
}

div.sidebar-container a:hover {
    color: #fff !important;
}

.overlay {
    /* full screen */
    width: 100vw;
    height: 100vh;
    /* transparent black */
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    /* middle layer, i.e. appears below the sidebar */
    z-index: 998;
}

#dismiss {
    width: 35px;
    height: 35px;
    position: absolute;
    /* top right corner of the sidebar */
    top: 10px;
    right: 10px;
}

@media (max-width: 768px) {
    #sidebar {
        margin-right: -250px;
    }

        #sidebar.active {
            margin-right: 0;
        }
}
