/*
______________ SIDEBAR MENU ______________
*/

#sidebar {
    width: 15%;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 4em 0;
    box-shadow: 0px 0px 10px 2px #0000002f;
    z-index: 50;
}

.logo img {
    width: 200px;
}

.sidebar-menu ul,
.sidebar-rs-menu ul {
    list-style: none;
    display: flex;
}

.sidebar-menu {
    width: 100%;
}

.sidebar-menu ul {
    flex-direction: column;
}

.sidebar-menu a {
    position: relative;
    cursor: pointer;
    text-align: center;
    padding: 15px;
    overflow: hidden;
}

.sidebar-menu a li span {
    font-family: "Gabarito", "Inter", sans-serif;
    font-size: 1.2em;
    font-weight: bolder;
    color: #000;
    text-transform: uppercase;
    z-index: 5;
    transition: 0.2s ease-in-out;
}

.sidebar-menu a:hover>li>span {
    color: orange;
}

#active-menu-item {
    background: linear-gradient(to left, #ffcc62, #fe6749);
    opacity: 1;
    transition: .6s;
}

#active-menu-item li span {
    color: #fff;
    position: relative;
}

#active-menu-item:hover {
    opacity: 0.7;
}



/*
______________ FOOTER SIDEBAR ______________
*/

.sidebar-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
}

/* SIDEBAR RS MENU */

.sidebar-rs-menu ul {
    flex-direction: row;
    gap: 25px;
}

.sidebar-rs-menu a {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    position: relative;
    border-radius: 50%;
    background: #fff;
    border: 2px #e7e7e7 solid;
    overflow: hidden;
    transition: .4s;
}

.sidebar-rs-menu a:hover {
    border: 2px #fff solid;
}

.sidebar-rs-menu a .fa-brands {
    color: #000000;
    font-size: 1em;
    position: relative;
    z-index: 2;
    transition: .3s;
}

.sidebar-rs-menu a::after {
    content: '';
    width: 100%;
    height: 100%;
    top: -60px;
    left: -35px;
    background: linear-gradient(to left, #ffcc62, #fe6749);
    position: absolute;
    border-radius: 50%;
    transition: .5s;
}

.sidebar-rs-menu a:hover::after {
    top: -10px;
    left: -5px;
    width: 150%;
    height: 150%;
}

.sidebar-rs-menu a:active::after {
    background: #dbdbdb85;
}

.sidebar-rs-menu a:hover .fa-brands {
    color: rgb(255, 255, 255);
}

.sidebar-rs-menu a:active .fa-brands {
    color: #000;
}

/* SIDEBAR IMPORTANT */

.sidebar-important ul {
    list-style: none;
    font-size: 0.8em;
    text-align: center;
}

.sidebar-important li {
    padding: 3px 0;
}

.sidebar-important a {
    color: #e2ba63;
    transition: .3s;
}

.sidebar-important a:hover {
    color: #cc7c46;
    text-decoration: underline;
}

.sidebar-important li:last-of-type {
    padding-top: 20px;
    color: #929292;
    font-size: 0.9em;
}