#root {
    display: none;
}

#wallet_iframe {
    width: 370px;
    height: 630px;
    position: fixed;
    right: 80px;
    top: 0;
    border: none;
    overflow: hidden;
    visibility: hidden;
    /* Initially hidden */
    z-index: 9999999;
    left: auto;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(128, 128, 128, 0.5);
    /* Полупрозрачный серый */
    display: none;
    /* Скрыто по умолчанию */
    z-index: 1000;
    /* Убедитесь, что оверлей находится над другими элементами */
}

.modal {
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    position: fixed;
}

#openModalBtn {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #6200ea;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#openModalBtn:hover {
    background-color: #4500a1;
}

.modal {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.37);
    padding-top: 60px;
}

.modal-content {
    background-color: #fff;
    margin: auto;
    padding: 20px;
    border-radius: 10px;
    width: auto;
    max-width: 600px;
    height: 100%;
    overflow-y: auto;
    box-shadow: 0 4px 8px rgb(0, 0, 0);
    animation: animateModal 0.4s;
    background-color: rgba(255, 255, 255, 0.918);

}

@keyframes animateModal {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 4px solid #e5e5e5;
    padding-bottom: 1px;
    color: #464646;
    font-size: 13px;


}

.modal-header ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    gap: 20px;
}

.modal-header li {
    cursor: pointer;
    padding: 10px;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.modal-header .active-tab {
    color: #000000;
}

.modal-header li:hover {
    background-color: #f0f0f0;
}

.modal-body {
    margin-top: 20px;
}

.modal-body h2 {
    font-size: 24px;
}

.modal-body p {
    font-size: 16px;
    color: #666;
}

.wallets {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-around;
}

.wallet {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100px;
    text-align: center;
    margin-top: 20px;
    cursor: pointer;
}

.wallet img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.wallet span {
    font-size: 14px;
    color: #333;
}