/*
    DEMO STYLE
*/

@import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700";
body {
    font-family: 'Poppins', sans-serif;
    background: #fafafa;
    padding-top: 56px;
    
}

p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 350;
    line-height: 1.7em;
    color: #999;
}




.navside {
    padding: 15px 10px;
    background: #00000008;
    border: none;
    text-align: right;
    border-radius: 0;
    margin-bottom: 40px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar-btn {
    box-shadow: none;
    outline: none !important;
    border: none;

}

.nav-link {
font-size: 16px;    
color: black !important;
}


.nav-item :hover {
    color: blue !important;
}

.navbar-nav > .active > a { 
    color: blue !important ; 
}

.navbar {
    max-height: 56px !important;
}
/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */
.vakata-context {
    z-index: 999 !important;
}

.wrapper {
    display: flex;
    width: 100%;
 
}

#sidebar {
    width: 350px;
    position: fixed;
    top: 60px;
    right:  0;
    height: 87vh;
    z-index: 10;   
    background: #00000008;
    color: #343a40;
    padding: 20px 0;
    border-bottom: 1px solid #e6e6e6;
    transition: all 0.3s;
}

#sidebar.active {
    margin-right: -350px;
}

.sidebar-header {
    padding: 20px;
    background: #f2f4f5;
}


#sidebar p {
    color: #fff;
    padding: 10px;
}

#sidebarCollapse {
    width: 80px !important;
    box-shadow: none !important;
}

/* #appspace {
    visibility: hidden;
}  */


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

#content {
    width: calc(100% - 350px);
    padding: 20px;
    min-height: 90vh;
    position: absolute;
    top: 60px;
    left: 0;
    transition: all 0.3s;
}

#content.active {
    width: 100%;
}

.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
    background-color: white;
 }
 
 

/* ---------------------------------------------------
    MEDIAQUERIES
----------------------------------------------------- */

@media (max-width: 768px) {
    #sidebar {
        margin-right: -350px;
    }
    #sidebar.active {
        margin-right: 0;
    }
    #sidebarCollapse span {
        display: none;
    }
    #content {
        width: 100%;
    }
    #content.active {
        width: calc(100% - 350px);
    }

}