/* ===========================
   SIDEBAR
=========================== */

.sidebar-logo{
    padding:2px 2px;
    text-align:center;
}

.sidebar-logo img{
    width:100%;
    max-width:180px;
    height:auto;
}
.sidebar{

    position:fixed;

    top:0;
    left:0;
    bottom:0;

    width:20%;
	
	height:100vh;
	
    background:linear-gradient(180deg,#4f46e5,#2563eb,#06b6d4,#10b981);

    color:#fff;

    display:flex;

    flex-direction:column;

    z-index:999;

}

/* Logo */

.sidebar-top{

    height:110px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-bottom:1px solid rgba(255,255,255,.15);

}

.sidebar-top h2{

    font-size:24px;

    font-weight:500;

    letter-spacing:1px;

}

/* Menu */

.sidebar ul{

    list-style:none;

    padding:9px 0;

}

.sidebar li{

    margin:6px 0;

}

.sidebar a{

    display:flex;

    align-items:center;

    gap:12px;

    padding:16px 25px;

    color:#fff;

    text-decoration:none;

    font-size:16px;

    transition:.3s;

}

.sidebar a:hover{

    background:rgba(255,255,255,.15);

    padding-left:35px;

}

.sidebar a i{

    width:22px;

    text-align:center;

}

/* Active */

.sidebar li:first-child a{

    background:rgba(255,255,255,.18);

}

/* Responsive */

@media(max-width:992px){

.sidebar{

    position:relative;

    width:100%;

    height:auto;

}

}