aside.sidebar {
    width: 100%;
    box-sizing: border-box;
    max-width: 0px;
    height: 100vh;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, .2);
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    transition: .7s;
    overflow: hidden;
}
aside.sidebar.active {
    max-width: 250px;
    transition: .7s;
}
aside.sidebar .bar {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    max-width: 250px;
    display: -webkit-flex;
    flex-direction: column;
    background: #3e5c76;
}
aside.sidebar .bar > .profile {
    width: 100%;
    box-sizing: border-box;
    height: 100px;
    background: #0a2463;
    display: grid;
    place-items: center;
    padding: 0 20px;
    flex-shrink: 0;
}
aside.sidebar .bar > .profile .x-flex {
    column-gap: 15px;
    align-items: center;
}
aside.sidebar .bar > .profile .img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}
aside.sidebar .bar > .profile p {
    font-size: 10px;
    font-family: "Montserrat";
    color: white;
    letter-spacing: 1px;
}
aside.sidebar .bar > .profile h6 {
    font-size: 14px;
    font-weight: 500;
    font-family: "Montserrat";
    color: white;
    letter-spacing: 2px;
}
aside.sidebar .bar > .wallet {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
}
aside.sidebar .bar > .wallet .info {
    display: -webkit-flex;
    align-items: center;
    padding: 0 20px;
    column-gap: 10px;
    color: white;
}
aside.sidebar .bar > .wallet .info i {
    width: 30px;
    box-sizing: border-box;
    flex-shrink: 0;
    font-size: 18px;
}
aside.sidebar .bar > .wallet .info span {
    font-size: 15px;
    font-family: "Poppins";
}
aside.sidebar .bar > .overflow-menu {
    width: 100%;
    box-sizing: border-box;
    height: 100%;
    padding: 20px 0;
    overflow-y: auto;
}
aside.sidebar .bar > .overflow-menu::-webkit-scrollbar {
    display: none;
}
aside.sidebar .bar > .settings {
    width: 100%;
    box-sizing: border-box;
    height: 100px;
    padding: 8px 0px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    padding-bottom: 20px;
    border-top: 1px solid rgba(255, 255, 255, .5);
}