.sideBar_wrapper {
    background: var(--sidebar-bg);
    min-height: 100dvh;
    overflow: hidden;
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    max-width: 260px !important;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-flow: column;
    float: right;
}
svg.sideBar_icon {
    width: 2rem;
    height: 2rem;
}
svg.sideBar_icon {
    width: 1.52rem;
    height: 1.52rem;
}
.credit span#sideBarBalance {
    line-height: 1;
    font-size: 1rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    top: 1px;
}
svg.icon.reload {
    width: 1.25rem;
    height: 1.25rem;
}
.user_balance_sideBar {
    background: #8b8b8b2e;
    border-radius: 50px;
}

.credit {
    display: flex;
    align-items: center;
    text-align: center;
    gap: .2rem;
}

.sideBar.overlay {
    position: fixed;
    width: 100%;
    height: 100dvh;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #0000009c;
    max-width: 450px !important;
    margin: 0 auto;
}
.btn.sidebar_btn.btn-login.w-full {
    background: var(--secondary-gradient-bg);
    border: 1px solid var(--secondary-border);
    border-radius: 5px;
}
.btn.sidebar_btn.btn-register.w-full {
    background: linear-gradient(135deg, #ff8642, #ee2a59);
    border: 1px solid #f7584d;
    border-radius: 5px;
}
.sideBar-content {
    position: relative;
    width: 100%;
    height: 100%;
}
.sideBar__header {
    padding-bottom: 2rem;
    border-bottom: 1px solid #dddddd14;
}
.noauth.user {
    width: 3rem;
    height: 3rem;
}

svg.icon.user_icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
}
.member-nav-name {
    font-size: 1.1rem;
}
.btn.sidebar_btn>.btn_text {
    font-weight: 600;
}
.sideIconTxt {
    font-size: 1.65rem;
}
.sideIcon {
    width: 1.5rem;
    height: 1.5rem;
}

.sideBar_item.flex {
    width: 100%;
    justify-content: space-between;
    padding-inline: .5rem;
    align-items: center;
    text-align: center;
    min-height: 3rem;
}

.sideIcon_small {
    width: 1rem;
    height: 1rem;
}
.sideBar.active>.sideBar.overlay>.sideBar_wrapper {
    transition: .5s 
ease-in-out;
    animation: .5s slideOut;
}

@keyframes slideOut {
    0% {
        opacity: 0;
        transform: translateX(50%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
.reloader.rotating {
    animation: spin360 .6s linear;
}

@keyframes spin360 {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
