#wallet-container {
    position: fixed;
    inset: 0;
    display: none;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.55);
    z-index: 999999;
}
#wallet-container.show {
    display: flex;
}
.wallet-modal {
    position: relative;
    width: 380px;
    max-width: 90%;
    padding: 20px 25px;
    background: rgba(252, 235, 222);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
    display: grid;
    color: rgb(40, 24, 19);
}
.wallet-modal .titleWrapper {
    position: relative;
    margin-bottom: 30px;
}
.wallet-modal .titleWrapper h1 {
    text-align: center;
    text-transform: capitalize;
    font-size: 22px;
    font-weight: 500;
}
.wallet-modal .titleWrapper button {
    position: absolute;
    right: 0;
    top: 0;
    margin-top: -5px;
    background-color: transparent;
    outline: none;
    cursor: pointer;
    padding: 0px;
    font-size: 24px;
    font-weight: 600;
}
#wallet-container .titleWrapper button {
    all: unset;
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
}
.walletsWrapper {
    display: grid;
    row-gap: 20px;
    font-weight: 500;
    max-height: 380px;
    min-height: 380px;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.walletsWrapper::-webkit-scrollbar {
    display: none;
}
#wallet-container .walletItem {
    all: unset;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    box-sizing: border-box;
    cursor: pointer;
    text-align: left;
    font-size: 20px;
    color: inherit;
}
#wallet-container .walletItem img {
    width: 35px;
    float: left;
    border-radius: 5px;
}
.walletItemWrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.walletNotFound {
    position: relative;
    padding: 15px;
    border-radius: 8px;
    background-color: #ffffff;
    font-size: 16px;
}
.walletNotFound p {
    margin: 0 0 8px;
}
.walletNotFound a {
    color: rgb(40, 24, 19);
    text-decoration: none;
    font-weight: 600;
}
.walletNotFound a:hover {
    text-decoration: underline;
}
.walletNotFoundClose {
    position: absolute;
    bottom: 10px;
    right: 8px;
    border: 0;
    background: transparent;
    cursor: pointer;
    font-size: 16px;
    text-transform: capitalize;
    color: rgb(40, 24, 19);
}

@media (max-width: 700px) {
    .wallet-modal {
        width: 100%;
    }
}
