aside {
    position: fixed;
    width: 100vw;
    transition: .3s;
    visibility: hidden;
    z-index: 90;
}

aside.open {
    visibility: visible;
}

aside .backdrop {
    visibility: hidden;
    transition: .2s;
}

aside.open .backdrop {
    visibility: visible;
    background-color: #2c2c2ca1;
    backdrop-filter: blur(4px);
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: 90;
}

aside .menu {
    position: fixed;
    transition: .2s;
    width: 80%;
    max-width: 480px;
    left: -200%;
    height: 100vh;
    background-color: #ffffff;
    overflow-y: auto;
    z-index: 95;
    display: flex;
    flex-direction: column;
}

aside.open .menu {
    left: 0%;
}

.aside__header {
    z-index: 20;
    height: 12rem;
    background-color: var(--clr-black);
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.aside__header img {
    width: min(250px, 90%);
}

.aside__body {
    flex: 1;
    padding: 1rem 0;
    overflow-y: scroll;
}

.aside__footer {
    height: 3rem;
    background-color: #ececec;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 300;
}

.menu__title {
    font-size: 1.1rem;
    font-weight: 700;
    display: block;
    margin-bottom: .75rem;
    padding: 0 1rem;
}

.aside__body ul {
    color: #010101;
    list-style: none;
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
    gap: .3rem;
}

.aside__body ul li a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: .3rem;
    transition: .3s;
    padding: 0 1rem;
}

.aside__body ul li {
    transition: .3s;
}

.aside__body ul li:hover {
    cursor: pointer;
    background-color: #f5f5f5;
}

.aside__body ul li .icon {
    width: 40px;
    height: 4rem;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aside__body ul li .text {
    font-weight: 400;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.aside__body ul li>.fa {
    width: 45px;
    font-weight: 200;
}

.aside__body ul li .text .nickname {
    font-size: .9rem;
    font-weight: 300;
}

.aside__body .divider {
    height: 1px;
    background-color: #e7e7e7;
    margin-bottom: 1rem;
}