﻿

@import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700";
body {
    font-family: 'Poppins', sans-serif;
    background-image: linear-gradient(150deg, #007bff0a, #17a2b817);
}

p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1em;
    font-weight: 300;
    line-height: 1.7em;
    color: #999;
}

a,
a:hover,
a:focus {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
}

.navbar {
    padding: 5px 10px;
    background: #fff;
    border: none;
    border-radius: 0;
    margin-bottom: 20px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar-btn {
    box-shadow: none;
    outline: none !important;
    border: none;
}

.line {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #ddd;
    margin: 40px 0;
}

i,
span {
    display: inline-block;
}
/*----------------------------------------------------
    USER INFO
------------------------------------------------------*/
.user-info{
    display:block;
    border-top: 1px solid #00ffb8;
    padding-top: 20px;
}
.user-info>p{
    font-size:12px;
    line-height:2px;
}
#sidebar.active .user-info{
    display:none;
}
/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */

.wrapper {
    display: flex;
    align-items: stretch;
}
#side-menu{
    height: calc(100vh - (10rem));
    overflow-y:auto;
}
#sidebar {
    min-width: 250px;
    max-width: 250px;
    background: #1a2346;
    color: #fff;
    transition: all 0.3s;
}

#sidebar.active {
    min-width: 70px;
    max-width: 70px;
    text-align: center;
}
#sidebar.active .main_menu_name{
    display:none;
}
#sidebar.active .svg-inline--fa{
    font-size :1.1rem;
}
#sidebar.active .sidebar-header h5,
#sidebar.active .CTAs {
    display: none;
}

#sidebar.active .sidebar-header strong {
    display: block;
}

#sidebar ul li a {
    text-align: left;
}

#sidebar.active ul li a {
    padding: 12px 10px;
    text-align: center;
    font-size: 0.85em;
    border-bottom :1px solid #25405c;
}

#sidebar.active ul li a i {
    margin-right: 0;
    display: block;
    font-size: 1.8em;
    margin-bottom: 5px;
}

#sidebar.active ul ul a {
    padding: 10px !important;
}

#sidebar.active .dropdown-toggle::after {
    display:none;
}

#sidebar .sidebar-header {
    padding: 20px;
    background: #111835;
}

#sidebar .sidebar-header strong {
    display: none;
    font-size: 1.8em;
}

#sidebar ul.components {
    padding: 20px 0;
    border-bottom: 1px solid #47748b;
}

#sidebar ul li a {
    padding: 10px;
    font-size: 0.9em;
    display: block;
}

#sidebar ul li a:hover {
    color: #7386D5;
    background: #fff;
}

#sidebar ul li a i {
    margin-right: 10px;
}

#sidebar ul li.active>a,
a[aria-expanded="true"] {
    color: #fff;
    background: #6d7fcc;
}

a[data-toggle="collapse"] {
    position: relative;
}

.dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}
ul ul a {
    font-size: 0.9em !important;
    padding-left: 30px !important;
    background: #112A35;
}

ul.CTAs {
    padding: 20px;
}

ul.CTAs a {
    text-align: center;
    font-size: 0.9em !important;
    display: block;
    border-radius: 5px;
    margin-bottom: 5px;
}

a.download {
    background: #fff;
    color: #7386D5;
}

a.article,
a.article:hover {
    background: #6d7fcc !important;
    color: #fff !important;
}

/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */

#content {
    width: 100%;
    padding: 20px;
    height: 100vh;
    transition: all 0.3s;
    overflow-y:auto;
}
#nav-back{
    display:none;
}
/* ---------------------------------------------------
    MEDIAQUERIES
----------------------------------------------------- */

@media (max-width: 768px) {
    #sidebar {
        min-width: 70px;
        max-width: 70px;
        text-align: center;
        margin-left: -70px !important;
    }
    .user-info{
        display:none;
    }
    .dropdown-toggle::after {
        top: auto;
        bottom: 10px;
        right: 50%;
        -webkit-transform: translateX(50%);
        -ms-transform: translateX(50%);
        transform: translateX(50%);
    }
    #sidebar.active {
        margin-left: 0 !important;
        min-width: 80vw;
        max-width: 80vw;
        height:100vh;
        text-align: left!important;
        z-index:1;
        position:fixed;
    }
    #sidebar .sidebar-header h5,
    #sidebar .CTAs {
        display: block!important;
    }
    #sidebar .sidebar-header strong {
        display: none!important;
    }
    #sidebar.active .user-info{
        display:block!important;
    }
    #sidebar ul li a {
        display: flex;
    }
    #sidebar.active ul li a {
        text-align: left!important;
        padding:12px 20px;
    }
    #sidebar ul li a span {
        font-size: 1.25em;
    }
    #sidebar.active .main_menu_name{
        display:block!important;
    }
    #sidebar ul li a i {
        margin-right: 0;
        display: block;
    }
    #sidebar ul ul a {
        padding: 10px !important;
    }
    #sidebar ul li a i {
        font-size: 1.3em;
    }
    #sidebar {
        margin-left: 0;
    }
    #sidebarCollapse span {
        display: none;
    }
    #nav-back{
        display: block;
        position: absolute;
        right: 6%;
        top: 3%;
        height: 20px;
        width: 20px;
    }
}

/*--------------------------------------------------------------
    scroll bar
  -----------------------------------------------------------------*/

    /* width */
::-webkit-scrollbar {
  width: 4px;
}

/* Track */
#side-menu::-webkit-scrollbar-track:vertical {
  background: #1a2346!important;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #16849d;
  border-radius:4px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #169d33;
}
/*----------------------------------------------
    footer
    -------------------------------------------*/
 footer{
     position: fixed;
     bottom: 0;
     width: 100%;
 }
