/*
    DEMO STYLE
*/

@import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700";


/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */

#sidebar {
    width: 250px;
    position: fixed;
    top: 0;
    left: -250px;
    height: 100vh;
    padding-left:2px;
    z-index: 999;
    background: #2f4050;
    color: #fff;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}

    #sidebar.active {
        left: 2px;
    }

/*@media (min-width: 768px) {
    #sidebar.d-active {
        left: 0px;
    }
}*/

    #dismiss {
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 1.5rem;
        text-align: center;
        background: transparent;
        position: absolute;
        top: 10px;
        right: 10px;
        cursor: pointer;
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
    }

    #side-menu > li > a:hover,
    #side-menu > li > a:focus {
        background-color: #293846;
        color: white;
    }

    #side-menu > li > ul > li > a:hover,
    #side-menu > li > ul > li > a:focus {
        background-color: #293846;
        color: white;
    }

    .overlay {
        display: none;
        position: fixed;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.7);
        z-index: 998;
        opacity: 0;
        transition: all 0.5s ease-in-out;
    }

        .overlay.active {
            display: block;
            opacity: 1;
        }


    /* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */

    /*#page-wrapper {*/
    /*margin-left:0px !important;*/
    /*width: 100%;
    padding: 0px 20px 20px 20px;*/
    /*min-height: 100vh;*/
    /*transition: all 0.3s;*/
    /*position: absolute;
    top: 0;
    right: 0;
}*/

    @media (min-width: 960px) {

       #page-wrapper {
            width: auto;
            padding: 20px;
            position:relative;
            top: 0;
            right: 0;
        }
        .content-collapse {
            left: 250px !important;
            margin-left: 250px;
        }

        .content-expand {
            left: 0px !important;
        }

      
    }


    
