.side-menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(30, 42, 50, 0.6);
    z-index: 1;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
}

.side-menu-backdrop.active {
    opacity: 1;
    pointer-events: all;
}

.side-menu-backdrop.hidden {
    display: none;
}

.side-menu-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: auto;
    bottom: 0;
    width: 84vw;
    max-width: 430px;
    height: 100vh;
    background: #fff;
    z-index: 2;
    box-shadow: 2px 0 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s cubic-bezier(.55, .06, .38, 1.04);
    transform: translateX(-105%);
    display: flex;
    flex-direction: column;
}

.side-menu-wrapper.active {
    transform: translateX(0);
}

.side-menu-wrapper.hidden {
    display: none;
}

.side-menu-close-btn {
    position: absolute;
    top: 18px;
    right: 18px;
    background: none;
    border: none;
    z-index: 2;
    padding: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.side-menu-container {
    padding: 0 0 18px 0;
    height: 100%;
    overflow-y: auto;
}

.side-menu-profile {
    background: #1894a8;
    padding: 24px 14px 12px 14px;
    color: #fff;
}

.side-menu-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 10px;
}
#side-menu-avatar-img {
    width: 35px;
    height: 35px;
}

.side-menu-address-row {
    margin-bottom: 12px;
}

.side-menu-address, .side-menu-wallet-address {
    font-size: 18px;
    font-weight: 700;
    width: 100%;
    padding: 0;
    margin: 0;
    display: flex;
}

.side-menu-copy {
    background: none;
    border: none;
    margin-left: 4px;
}

.side-menu-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.side-menu-btn {
    flex: 1;
    background: rgba(29, 105, 119, 0.62);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 15px 0;
}

.side-menu-btn.deposit {
    background: #23c631;
    color: #fff;
}

.side-menu-btn img {
    width: 18px;
    height: 18px;
}

.side-menu-list {
    background: #f8fafd;
    margin: 0;
    padding: 0;
    border-radius: 0 0 16px 0;
    margin-bottom: 12px;
}

.side-menu-item {
    display: flex;
    align-items: center;
    padding: 15px 24px;
    font-size: 15px;
    font-weight: 500;
    color: rgba(23, 63, 96, 0.62);
    cursor: pointer;
    border-bottom: 1px solid #ecf3fa;
    position: relative;
}

.side-menu-item:last-child {
    border-bottom: none;
}

.side-menu-item.active,
.side-menu-item:active {
    background: #e6f5f8;
    color: #09b375;
}

.side-menu-icon {
    width: 24px;
    height: 24px;
    margin-right: 16px;
}

.side-menu-badges {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 3px;
}

.side-menu-badge {
    height: 16px;
}

.side-menu-promo {
    margin: 18px 18px 0 18px;
    background: #e8f5ff;
    border-radius: 15px;
    padding: 13px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.side-menu-promo-icon {
    width: 38px;
    height: 38px;
}

.side-menu-promo-title {
    font-size: 15px;
    font-weight: 700;
    color: #163255;
}

.side-menu-promo-sub {
    font-size: 12px;
    color: #7a95ad;
}

.side-menu-promo-arrow {
    background: none;
    border: none;
    color: #b3b3b3;
    font-size: 28px;
    margin-left: auto;
}
