/**
 * Vladislav Minaev (@v1adjkee666)
 * bass.gx25@gmail.com
 * Связь: t.me/v1adjkee666
 */

.modal-money-transfer .modal-content {
    padding: 20px 20px 30px 20px;
}

.money_transfer_hint {
    margin-top: 6px;
    font-size: 13px;
    opacity: 0.75;
}

.transfer-money-btn {
    background: #2ecc71 !important;
    border: solid 1px #2ecc7130 !important;
    margin-bottom: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    transition: background 0.2s ease;
    animation: transfer-money-glow 2.2s ease-in-out infinite;
}

.transfer-money-btn:hover {
    background: #33d67a !important;
    animation-duration: 1.1s;
}

@keyframes transfer-money-glow {
    0%, 100% {
        box-shadow: 0 0 3px 0 #2ecc7155, 0 0 1px #2ecc71;
    }
    50% {
        box-shadow: 0 0 9px 2px #2ecc71aa, 0 0 2px #2ecc71;
    }
}
