.sidebar-overlay {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background: #090f1e9e;
    z-index: 500;
    backdrop-filter: blur(6px);
    -moz-backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    -o-backdrop-filter: blur(6px);
}

.sidebar {
    width: calc(294px - 30px);
    height: calc(100vh - 30px);
    max-height: 100vh;
    overflow: hidden scroll;
    background: #101626;
    display: flex;
    flex-direction: column;
    padding: 15px;
    gap: 20px;
}

.sidebar .guest-buttons {
    width: 100%;
    flex-direction: row-reverse;
}
.sidebar .guest-buttons .button {
    width: 100%;
}

.sidebar .sidebar-header {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.sidebar .sidebar-header .logotype {
}

.sidebar .sidebar-header .close {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sidebar-vip {
    width: calc(100% - 30px);
    padding: 15px;
    border-radius: 24px;
    background: #161C2D;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.sidebar-vip .info {
    display: flex;
    gap: 10px;
    flex-direction: row;
    align-items: center;
}

.sidebar-vip .info .icon {
    width: auto;
    height: 30px;
}

.sidebar-vip .info .icon svg {
    width: auto;
    height: 30px;
}

.sidebar-vip .info .details {
}

.sidebar-vip .info .details .title {
    color: #4F546A;
    font-size: 12px;
    font-weight: 400;
}

.sidebar-vip .info .details .name {
    color: #FFF;
    font-size: 14px;
    font-weight: 700;
}

.sidebar-vip .info .arrow {
}

.sidebar .sidebar-profile {
    width: calc(100% - 30px);
    border-radius: 24px;
    background: #161C2D;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    padding: 15px;
    gap: 15px;
}

.sidebar .sidebar-profile .profile-info {
    width: 100%;
    border-radius: 24px;
    background: #161C2D;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sidebar .sidebar-profile .profile-info .user-info {
    display: flex;
    gap: 10px;
    align-items: center;
}

.sidebar .sidebar-profile .profile-info .avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #4FACFE;
}

.sidebar .sidebar-profile .profile-info .avatar img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    margin: 2px;
}

.sidebar .sidebar-profile .profile-info .names {
    display: flex;
    flex-direction: column;
}

.sidebar .sidebar-profile .profile-info .names .name {
    color: #FFF;
    font-size: 14px;
    font-weight: 700;
}

.sidebar .sidebar-profile .profile-info .names .username {
    color: #4F546A;
    font-size: 12px;
    font-weight: 400;
}

.sidebar .sidebar-profile .profile-info .arrow {
    width: 33px;
    height: 40px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 7px;
    cursor: pointer;
}

.sidebar .sidebar-profile .profile-info .arrow svg {
}

.sidebar .sidebar-profile hr {
    width: 100%;
    border-radius: 24px;
    height: 1px;
    border: 0;
    background: #1C2333;
}

.sidebar .sidebar-profile .balance {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.sidebar .sidebar-profile .balance .balance-info {
    display: flex;
    gap: 10px;
}

.sidebar .sidebar-profile .balance svg {
}

.sidebar .sidebar-profile .balance .balance-details {
    display: flex;
    flex-direction: column;
}

.sidebar .sidebar-profile .balance .balance-details span {
    color: #4F546A;
    font-size: 12px;
    font-weight: 400;
}

.sidebar .sidebar-profile .balance .balance-details span.balance_amount {
    color: #FFF;
    font-size: 14px;
    font-weight: 700;
}

.sidebar .sidebar-profile .balance .wallet-button {
    border-radius: 14px;
    background: linear-gradient(84deg, #4FACFE -7.08%, #00D1DB 132.64%);
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.sidebar .sidebar-profile .balance .wallet-button svg {
}

.sidebar .sidebar-profile .balance.wager {
}

.sidebar .sidebar-profile .balance.wager .button {
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.sidebar .sidebar-profile .balance.wager .button svg {
}

.sidebar .sidebar-logout {
    border-radius: 14px;
    background: linear-gradient(84deg, rgba(254, 79, 82, 0.20) -7.08%, rgba(219, 0, 153, 0.20) 132.64%);
    color: #B13C3C;
    font-size: 14px;
    font-weight: 500;
    /* 200% */
    width: 100%;
    height: 40px;
    min-height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.sidebar .sidebar-navigation {
    border-radius: 14px;
    background: #161C2D;
    padding: 15px 0px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar .sidebar-navigation .link {
    width: 100%;
    height: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    /* 200% */
    cursor: pointer;
}

.sidebar .sidebar-navigation .link.active {
}

.sidebar .sidebar-navigation .link .active-margin {
    width: 3px;
    height: 24px;
    overflow: hidden;
}

.sidebar .sidebar-navigation .link .active-margin .active {
    width: 0px;
    height: 24px;
    border-radius: 24px 24px 0px 0px;
    background: #6517AA;
    box-shadow: 0px -1px 15px 5px rgba(101, 23, 170, 0.20);
    opacity: 0;
    transition: all 300ms;
}

.sidebar .sidebar-navigation .link.active .active-margin, .sidebar .sidebar-navigation .link:hover .active-margin {
    overflow: unset;
}

.sidebar .sidebar-navigation .link.active .active-margin .active, .sidebar .sidebar-navigation .link:hover .active-margin .active {
    opacity: 1;
    width: 3px;
    transition: all 300ms;
}

.sidebar .sidebar-navigation .link .navigation-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 500;
    transition: all 300ms;
}

.sidebar .sidebar-navigation .link.active .navigation-link, .sidebar .sidebar-navigation .link:hover .navigation-link {
    color: rgba(255, 255, 255, 0.8);
    transition: all 300ms;
}

.sidebar .sidebar-navigation .link.active .navigation-link svg, .sidebar .sidebar-navigation .link:hover .navigation-link svg {
    fill: #DFDFEC;
    stroke: #DFDFEC;
    transition: all 300ms;
}

.sidebar .sidebar-navigation .link .navigation-link svg {
    fill: #4F546A;
    stroke: #4F546A;
    transition: all 300ms;
}


.sidebar .information-button {
    display: flex !important;
    width: 100%;
}

.sidebar .information-button .details {width: 100%;justify-content: space-between;padding: 0px 10px;gap: 0;}