/* @import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700"; */

a, a:hover, a:focus {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
}
#sidebar {
    min-width: 250px;
    max-width: 250px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    margin-left: -250px;
    /* top layer */
    z-index: 9999;
    background: #7386D5;
    color: #fff;
    transition: all 0.3s;
}
#sidebar.active {
    margin-left: -250px;
    margin-left: 0;
}
#sidebar .sidebar-header {
    padding:61px 0 12px;
    background: #6d7fcc;
}

#sidebar ul.components {
    padding: 20px 0;
}

#sidebar ul p {
    color: #fff;
    padding: 0px 25px;
}

#sidebar ul li a {
    padding: 10px;
    font-size: 1.1em;
    display: block;
    font-weight: 700;
}
#sidebar ul li a:hover {
    color: #7386D5;
    background: #fff;
}

#sidebar ul li.active > a, a[aria-expanded="true"] {
    color: #fff;
    background: #6d7fcc;
}
ul ul a {
    font-size: 0.9em !important;
    padding-left: 30px !important;
    background: #6d7fcc;
}
a[data-toggle="collapse"] {
    position: relative;
}

.dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}


.scroll-to-top{
position: fixed;
    bottom: 13px;
    right: 20px;
    z-index: 1;
    font-size: 4vw;
    /* border: none; */
    outline: none;
    background-color: #17a2b8;
    color: white;
    cursor: pointer;
    padding: 9px;
    border-radius: 4px;
    display: none;
}
.scroll-to-top:hover{
    background-color: #0b6b7b;
}
.wrapper {
    display: grid;
    align-items: stretch;
} 

.overlay {
    display: none;
    position: absolute;
    /* full screen */
    width: 100vw;
    height: 100vh;
    /* transparent black */
    background: rgba(0, 0, 0, 0.7);
    /* middle layer, i.e. appears below the sidebar */
    z-index: 998;
    opacity: 0;
    /* animate the transition */
    transition: all 0.5s ease-in-out;
}
/* display .overlay when it has the .active class */
.overlay.active {
    display: block;
    opacity: 1;
}

#dismiss {
    width: 35px;
    height: 35px;
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    justify-content: center;
   
    align-items: center;
}
#dismiss:hover
{
 background: white;
}
#dismiss:hover>i
{
    color:#6d7fcc;
}