.wallet-wrapper {
    position: relative;
    display: block;
}

.wallet-icon {
    cursor: pointer;
    width: 40px;
}

.wallet-popup {
    display: none;
    position: absolute;
    top: 40px;
    right: 0;
    width: 300px;
    background: #e0e0e0;
    border-radius: 15px;
    padding: 15px;
    z-index: 100;
}

.wallet-popup .wallet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 50px;
    padding-left: 70px;
}

.wallet-title {
    font-weight: 600;
}

.wallet-popup .wallet-header .wallet-logo {
    max-width: 40px;
    position: absolute;
    left: 30px;
    top: 30px;
}

.wallet-popup .wallet-savings {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    line-height: 1;
    padding: 10px;
    border-radius: 10px;
    margin: 10px 0;
    color: #231f20;
    font-weight: 600;
}

.wallet-amount {
    background: #00aaba;
    padding: 5px 10px;
    color: color(srgb 0.8784 0.8784 0.8785);
    font-weight: 700;
}

.wallet-status {
    display: flex;
    flex-direction: column;
    margin-top: 15px;
}

.wallet-status .wallet-status-value {
    font-weight: 800;
    font-size: 2rem;
    margin-top: 0.5rem;
}

.wallet-boxes {
    background: #fff;
    padding: 10px;
    border-radius: 15px;
}

.wallet-box {
    position: relative;
    margin-bottom: -10px;
    border-radius: 15px;
    padding: 30px 15px;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.wallet-box:not(:last-of-type)::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 15px;
    background: #fff;
    border-radius: 0 0 15px 15px;
    transform: rotate(180deg);
}

.wallet-box.gray {
    background: #d0d2d3;
    z-index: 1;
    ;
}

.wallet-box.teal {
    background: #00aaba;
    z-index: 2;
}

.wallet-box.dark {
    background: #231f20;
    z-index: 3;
    color: white;
    border-radius: 15px 15px 0 0;
}

.wallet-list {
    display: none;
    margin-top: 10px;
}

.wallet-bottom-desc {
    font-size: 0.6rem;
    line-height: 1;
    margin-top: 20px;
    margin-bottom: 0;
}

.wallet-close {
    cursor: pointer;
    padding: 5px;
    background-color: #bbbdbf;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wallet-close svg {
    width: 10px;
    height: 10px;
}