/*
|--------------------------------------------------------------------------
| WALLET MODAL
|--------------------------------------------------------------------------
*/

.wallet-transaction-overlay {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(5px);
}

.wallet-transaction-overlay.active {
    display: flex;
}

.wallet-transaction-modal {
    position: relative;
    width: 100%;
    max-width: 500px;
    max-height: calc(100vh - 36px);
    overflow-y: auto;
    box-sizing: border-box;
    padding: 26px;
    color: #ffffff;
    background:
        radial-gradient(
            circle at top,
            rgba(254, 148, 0, 0.14),
            transparent 35%
        ),
        linear-gradient(145deg, #242424, #101010);
    border: 1px solid rgba(254, 148, 0, 0.35);
    border-radius: 22px;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.65);
    scrollbar-width: thin;
    scrollbar-color: #fe9400 rgba(255, 255, 255, 0.05);
}

.wallet-transaction-modal::-webkit-scrollbar {
    width: 7px;
}

.wallet-transaction-modal::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 999px;
}

.wallet-transaction-modal::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #fecb00, #fe9400);
    border-radius: 999px;
}

.wallet-transaction-close {
    position: absolute;
    top: 13px;
    right: 14px;
    z-index: 20;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    padding: 0;
    color: #fecb00;
    font-size: 25px;
    line-height: 1;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(254, 148, 0, 0.28);
    border-radius: 50%;
    cursor: pointer;
    transition:
        transform 0.18s ease,
        background-color 0.18s ease,
        border-color 0.18s ease;
}

.wallet-transaction-close:hover {
    transform: rotate(5deg) scale(1.04);
    background: rgba(254, 148, 0, 0.12);
    border-color: rgba(254, 203, 0, 0.55);
}

/*
|--------------------------------------------------------------------------
| HEADER
|--------------------------------------------------------------------------
*/

.wallet-transaction-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-right: 36px;
    margin-bottom: 18px;
}

.wallet-transaction-icon {
    display: grid;
    place-items: center;
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    color: #111111;
    background: linear-gradient(90deg, #fecb00, #fe9400);
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(254, 148, 0, 0.22);
}

.wallet-transaction-header h2 {
    margin: 0 0 4px;
    color: #fecb00;
    font-size: 21px;
    font-weight: 900;
}

.wallet-transaction-header p {
    margin: 0;
    color: #bdbdbd;
    font-size: 13px;
    line-height: 1.4;
}

/*
|--------------------------------------------------------------------------
| CURRENCY SELECTOR
|--------------------------------------------------------------------------
*/

.wallet-current-currency {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 7px;
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(254, 148, 0, 0.18);
    border-radius: 13px;
}

.wallet-current-currency > span {
    color: #bdbdbd;
    font-size: 12px;
    font-weight: 700;
}

.wallet-current-currency > strong {
    color: #22c55e;
    font-size: 14px;
    font-weight: 900;
}

.wallet-modal-currency-row {
    position: relative;
    z-index: 30;
}

.wallet-modal-currency-custom {
    position: relative;
    width: 106px;
    flex: 0 0 106px;
}

.wallet-modal-currency-custom .home-currency-trigger {
    width: 100%;
}

.wallet-modal-currency-custom .home-currency-options {
    z-index: 120;
    width: 100%;
}

.wallet-currency-status {
    min-height: 18px;
    margin: -7px 0 9px;
    font-size: 11px;
    text-align: right;
}

.wallet-currency-status.loading {
    color: #fbbf24;
}

.wallet-currency-status.success {
    color: #4ade80;
}

.wallet-currency-status.error {
    color: #f87171;
}

/*
|--------------------------------------------------------------------------
| TABS
|--------------------------------------------------------------------------
*/

.wallet-transaction-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    padding: 5px;
    margin-bottom: 5px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
}

.wallet-transaction-tab {
    min-height: 42px;
    color: #bdbdbd;
    font-size: 13px;
    font-weight: 900;
    background: transparent;
    border: 0;
    border-radius: 10px;
    cursor: pointer;
    transition:
        color 0.18s ease,
        background-color 0.18s ease,
        box-shadow 0.18s ease;
}

.wallet-transaction-tab.active {
    color: #111111;
    background: linear-gradient(90deg, #fecb00, #fe9400);
    box-shadow: 0 6px 15px rgba(254, 148, 0, 0.2);
}

.wallet-transaction-panel {
    display: none;
}

.wallet-transaction-panel.active {
    display: block;
}

/*
|--------------------------------------------------------------------------
| DEPOSIT SECTIONS
|--------------------------------------------------------------------------
*/

.wallet-deposit-method-section {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.wallet-deposit-method-section[hidden],
.wallet-payment-method[hidden] {
    display: none !important;
}

.wallet-deposit-screen-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px 42px 4px;
    text-align: center;
}

.wallet-deposit-screen-header > div {
    display: flex;
    flex-direction: column;
}

.wallet-deposit-screen-header strong {
    color: #ffffff;
    font-size: 17px;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.wallet-deposit-screen-header small {
    color: rgba(255, 255, 255, 0.58);
    font-size: 14px;
    font-weight: 600;
	margin-bottom: 8px;
}

.wallet-operation-message {
    margin-bottom: 16px;
}

.wallet-operation-message strong {
    display: block;
    margin-bottom: 4px;
    color: #ffffff;
    font-size: 15px;
}

.wallet-operation-message p {
    margin: 0;
    color: #bdbdbd;
    font-size: 12px;
}

.wallet-payment-methods {
    display: grid;
    gap: 10px;
}

.wallet-payment-method {
    display: grid;
    grid-template-columns: 44px 1fr auto;
    align-items: center;
    width: 100%;
    min-height: 70px;
    gap: 12px;
    padding: 12px 14px;
    color: #ffffff;
    text-align: left;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(254, 148, 0, 0.2);
    border-radius: 14px;
    cursor: pointer;
    transition:
        transform 0.18s ease,
        border-color 0.18s ease,
        background-color 0.18s ease;
}

.wallet-payment-method:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.075);
    border-color: rgba(254, 203, 0, 0.55);
}

.wallet-payment-method-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: #111111;
    font-size: 14px;
    font-weight: 900;
    background: linear-gradient(90deg, #fecb00, #fe9400);
    border-radius: 12px;
}

.wallet-payment-method strong,
.wallet-payment-method small {
    display: block;
}

.wallet-payment-method strong {
    margin-bottom: 3px;
    font-size: 13px;
}

.wallet-payment-method small {
    color: #bdbdbd;
    font-size: 11px;
}

.wallet-payment-arrow {
    color: #fecb00;
    font-size: 27px;
}

.wallet-deposit-minimum {
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-weight: 600;
}

.wallet-deposit-minimum strong {
    color: #4ade80;
}

.wallet-bank-selector-label {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 13px;
    font-weight: 600;
}

/*
|--------------------------------------------------------------------------
| BANK SELECTOR
|--------------------------------------------------------------------------
*/

.wallet-bank-selector {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.wallet-bank-option {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-width: 0;
    min-height: 102px;
    padding: 14px 8px 11px;
    overflow: hidden;
    margin-top: 5px;
    color: #ffffff;
    background:
        linear-gradient(
            145deg,
            #2a2a2a 0%,
            #141414 100%
        );
    border: 2px solid rgba(255, 196, 0, 0.38);
    border-radius: 15px;
    cursor: pointer;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 8px 24px rgba(0, 0, 0, 0.24);
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.wallet-bank-option:hover {
    transform: translateY(-2px);
    background:
        linear-gradient(
            145deg,
            #323232 0%,
            #191919 100%
        );
    border-color: rgba(255, 196, 0, 0.82);
}

.wallet-bank-option.active {
    background:
        linear-gradient(
            145deg,
            rgba(254, 148, 0, 0.20),
            rgba(20, 20, 20, 0.98)
        );
    border-color: #ffc400;
    box-shadow:
        0 0 0 4px rgba(255, 196, 0, 0.10),
        0 10px 30px rgba(0, 0, 0, 0.34);
}

.wallet-bank-option img {
    display: block;
    width: 100%;
    max-width: 118px;
    height: 38px;
    object-fit: contain;
    filter: none;
}

.wallet-bank-option-name {
    width: 100%;
    margin-top: 8px;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.88);
    font-size: 10px;
    font-weight: 800;
    line-height: 1.15;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.wallet-bank-option.active .wallet-bank-option-name {
    color: #ffc400;
}

.wallet-bank-option-check {
    position: absolute;
    top: 9px;
    right: 9px;
    display: grid;
    place-items: center;
    width: 23px;
    height: 23px;
    color: #101010;
    font-size: 12px;
    font-weight: 900;
    background: #ffc400;
    border: 2px solid rgba(0, 0, 0, 0.35);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.65);
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

.wallet-bank-option.active .wallet-bank-option-check {
    opacity: 1;
    transform: scale(1);
}

/*
|--------------------------------------------------------------------------
| EMPTY BANK STATE
|--------------------------------------------------------------------------
*/

.wallet-bank-empty-state {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 5px;
    padding: 22px 16px;
    text-align: center;
    background: rgba(255, 255, 255, 0.025);
    border: 1px dashed rgba(255, 255, 255, 0.13);
    border-radius: 14px;
}

.wallet-bank-empty-state[hidden] {
    display: none !important;
}

.wallet-bank-empty-icon {
    margin-bottom: 4px;
    font-size: 27px;
}

.wallet-bank-empty-state strong {
    color: #ffffff;
    font-size: 13px;
}

.wallet-bank-empty-state p {
    max-width: 330px;
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 11px;
    line-height: 1.5;
}

/*
|--------------------------------------------------------------------------
| SELECTED BANK DETAILS
|--------------------------------------------------------------------------
*/

.wallet-selected-bank-details {
    overflow: hidden;
    opacity: 0;
    transform: translateY(8px);
    background:
        linear-gradient(
            145deg,
            rgba(20, 20, 20, 0.97),
            rgba(11, 11, 11, 0.99)
        );
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 16px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
    transition:
        opacity 0.22s ease,
        transform 0.22s ease;
}

.wallet-selected-bank-details[hidden] {
    display: none !important;
}

.wallet-selected-bank-details.visible {
    opacity: 1;
    transform: translateY(0);
}

.wallet-selected-bank-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px;
    background:
        linear-gradient(
            90deg,
            rgba(255, 174, 0, 0.08),
            rgba(255, 196, 0, 0.02)
        );
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.wallet-selected-bank-heading > div {
    display: flex;
    flex-direction: column;
    min-width: 0;
    gap: 4px;
}

.wallet-selected-bank-heading small {
    color: rgba(255, 255, 255, 0.50);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.wallet-selected-bank-heading strong {
    overflow-wrap: anywhere;
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
}

.wallet-bank-detail-row {
    display: grid;
    grid-template-columns:
        minmax(110px, 0.8fr)
        minmax(0, 1.7fr);
    align-items: center;
    gap: 5px;
    padding: 5px 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.wallet-bank-detail-row:last-child {
    border-bottom: 0;
}

.wallet-bank-detail-row > span {
    color: rgba(255, 255, 255, 0.58);
    font-size: 11px;
    font-weight: 700;
}

.wallet-bank-detail-value {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 0;
    gap: 10px;
}

.wallet-bank-detail-value strong {
    overflow-wrap: anywhere;
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    text-align: right;
}

.wallet-detail-copy,
.wallet-copy-all-button {
    flex-shrink: 0;
    padding: 8px 11px;
    color: #ffffff;
    font-size: 10px;
    font-weight: 400;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.wallet-detail-copy:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.15);
}

.wallet-copy-all-button {
    color: #6ee7a0;
    background: rgba(34, 197, 94, 0.12);
    border-color: rgba(34, 197, 94, 0.45);
}

.wallet-copy-all-button:hover {
    transform: translateY(-1px);
    background: rgba(34, 197, 94, 0.22);
}

.wallet-detail-copy.copied,
.wallet-copy-all-button.copied {
    color: #052e16;
    background: #4ade80;
    border-color: #4ade80;
}

.wallet-detail-copy.copy-error,
.wallet-copy-all-button.copy-error {
    color: #f87171;
    border-color: rgba(248, 113, 113, 0.50);
}

/*
|--------------------------------------------------------------------------
| PAYMENT NOTICES
|--------------------------------------------------------------------------
*/

.wallet-payment-notices {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 13px 15px;
    background: rgba(250, 204, 21, 0.06);
    border: 1px solid rgba(250, 204, 21, 0.12);
    border-radius: 12px;
}

.wallet-payment-notices p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 11px;
    line-height: 1.5;
}

/*
|--------------------------------------------------------------------------
| WITHDRAW FORM
|--------------------------------------------------------------------------
*/

.wallet-form-group {
    margin-bottom: 15px;
}

.wallet-form-group label {
    display: block;
    margin-bottom: 7px;
    color: #e5e7eb;
    font-size: 12px;
    font-weight: 800;
}

.wallet-form-group input,
.wallet-form-group select {
    width: 100%;
    min-height: 46px;
    box-sizing: border-box;
    padding: 0 14px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(254, 148, 0, 0.25);
    border-radius: 12px;
    outline: none;
}

.wallet-form-group select option {
    color: #111111;
}

.wallet-form-group input:focus,
.wallet-form-group select:focus {
    border-color: #fe9400;
    box-shadow: 0 0 0 2px rgba(254, 148, 0, 0.15);
}

.wallet-amount-input {
    position: relative;
}

.wallet-amount-input input {
    padding-right: 65px;
}

.wallet-amount-input span {
    position: absolute;
    top: 50%;
    right: 14px;
    color: #22c55e;
    font-size: 12px;
    font-weight: 900;
    pointer-events: none;
    transform: translateY(-50%);
}

.wallet-withdraw-notice {
    margin-bottom: 16px;
    padding: 11px 13px;
    color: #d1d5db;
    font-size: 11px;
    line-height: 1.45;
    background: rgba(254, 203, 0, 0.06);
    border: 1px solid rgba(254, 203, 0, 0.18);
    border-radius: 11px;
}

.wallet-transaction-submit {
    width: 100%;
    min-height: 46px;
    color: #111111;
    font-size: 13px;
    font-weight: 900;
    background: linear-gradient(90deg, #fecb00, #fe9400);
    border: 0;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(254, 148, 0, 0.22);
}

body.wallet-modal-open {
    overflow: hidden;
}

/*
|--------------------------------------------------------------------------
| RESPONSIVE
|--------------------------------------------------------------------------
*/

@media (max-width: 576px) {
    .wallet-transaction-overlay {
        align-items: center;
        justify-content: center;
        padding: 8px;
    }

    .wallet-transaction-modal {
        width: 100%;
        max-width: 480px;
        max-height: calc(100dvh - 16px);
        margin: auto;
        padding: 20px 12px 16px;
        border-radius: 20px;
    }

    .wallet-transaction-header {
        gap: 10px;
        padding-right: 34px;
    }

    .wallet-transaction-header h2 {
        font-size: 17px;
    }

    .wallet-transaction-header p {
        font-size: 11px;
    }

    .wallet-transaction-icon {
        flex-basis: 44px;
        width: 44px;
        height: 44px;
    }

    .wallet-deposit-screen-header {
        padding-inline: 12px;
    }

    .wallet-deposit-screen-header strong {
        font-size: 14px;
    }

    .wallet-deposit-screen-header small {
        font-size: 12px;
    }

    .wallet-bank-selector {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 6px;
    }

    .wallet-bank-option {
        min-width: 0;
        min-height: 84px;
        padding: 10px 4px 8px;
        border-width: 1px;
        border-radius: 11px;
    }

    .wallet-bank-option img {
        max-width: 82px;
        height: 29px;
    }

    .wallet-bank-option-name {
        margin-top: 6px;
        font-size: 8px;
        line-height: 1.1;
    }

    .wallet-bank-option-check {
        top: 4px;
        right: 4px;
        width: 17px;
        height: 17px;
        font-size: 8px;
        border-width: 1px;
    }

    .wallet-selected-bank-heading {
        align-items: stretch;
        flex-direction: column;
    }

    .wallet-copy-all-button {
        width: 100%;
    }

    .wallet-bank-detail-row {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .wallet-bank-detail-value {
        justify-content: space-between;
    }

    .wallet-bank-detail-value strong {
        text-align: left;
    }
}

@media (max-width: 420px) {
    .wallet-transaction-header {
        gap: 8px;
    }

    .wallet-current-currency {
        align-items: stretch;
        flex-direction: column;
    }

    .wallet-modal-currency-custom {
        width: 100%;
        flex-basis: auto;
    }

    .wallet-currency-status {
        text-align: left;
    }

    .wallet-bank-selector {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 4px;
    }

    .wallet-bank-option {
        min-height: 78px;
        padding: 8px 3px 7px;
        border-radius: 10px;
    }

    .wallet-bank-option img {
        max-width: 72px;
        height: 26px;
    }

    .wallet-bank-option-name {
        margin-top: 5px;
        font-size: 7px;
    }

    .wallet-bank-option-check {
        top: 3px;
        right: 3px;
        width: 15px;
        height: 15px;
        font-size: 7px;
    }
}
/*
|--------------------------------------------------------------------------
| REPORTE Y VALIDACIÓN DE PAGO
|--------------------------------------------------------------------------
*/

.wallet-report-payment-area {
    padding: 9px 12px 11px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.wallet-report-payment-button,
.wallet-report-payment-submit {
    width: 100%;
    min-height: 38px;
    padding: 8px 14px;
    color: #111111;
    font-size: 11px;
    font-weight: 900;
    background: linear-gradient(90deg, #fecb00, #fe9400);
    border: 0;
    border-radius: 9px;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(254, 148, 0, 0.18);
}

.wallet-report-payment-button:hover,
.wallet-report-payment-submit:hover {
    filter: brightness(1.04);
}

.wallet-report-payment-button:disabled,
.wallet-report-payment-submit:disabled {
    opacity: 0.65;
    cursor: wait;
}

.wallet-payment-report-wrapper {
    padding: 13px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(254, 148, 0, 0.20);
    border-radius: 13px;
}

.wallet-payment-report-wrapper[hidden] {
    display: none !important;
}

.wallet-payment-report-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.wallet-payment-report-header > div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.wallet-payment-report-header strong {
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
}

.wallet-payment-report-header small {
    color: rgba(255, 255, 255, 0.56);
    font-size: 10px;
    line-height: 1.4;
}

.wallet-payment-report-close {
    display: grid;
    place-items: center;
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    padding: 0;
    color: #fecb00;
    font-size: 20px;
    line-height: 1;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(254, 148, 0, 0.22);
    border-radius: 50%;
    cursor: pointer;
}

.wallet-report-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 10px;
}

.wallet-payment-report-result {
    margin: 2px 0 10px;
    padding: 10px 11px;
    font-size: 10px;
    line-height: 1.4;
    border-radius: 9px;
}

.wallet-payment-report-result[hidden] {
    display: none !important;
}

.wallet-payment-report-result.loading {
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.08);
    border: 1px solid rgba(251, 191, 36, 0.20);
}

.wallet-payment-report-result.success {
    color: #86efac;
    background: rgba(34, 197, 94, 0.10);
    border: 1px solid rgba(34, 197, 94, 0.28);
}

.wallet-payment-report-result.error {
    color: #fca5a5;
    background: rgba(239, 68, 68, 0.10);
    border: 1px solid rgba(239, 68, 68, 0.28);
}

@media (max-width: 576px) {
    .wallet-report-grid {
        grid-template-columns: 1fr;
    }

    .wallet-payment-report-wrapper {
        padding: 11px 10px;
    }
}
/*
|--------------------------------------------------------------------------
| TOAST DE PAGO
|--------------------------------------------------------------------------
*/

.wallet-payment-toast {
    position: fixed;
    top: 24px;
    left: 50%;
    z-index: 999999;

    width: min(
        calc(100% - 32px),
        420px
    );

    padding: 14px 18px;

    opacity: 0;
    visibility: hidden;

    transform:
        translate(-50%, -18px);

    border: 1px solid
        rgba(255, 255, 255, 0.12);

    border-radius: 12px;

    background:
        rgba(20, 20, 20, 0.98);

    color: #ffffff;

    font-size: 14px;
    font-weight: 700;
    text-align: center;

    box-shadow:
        0 16px 40px
        rgba(0, 0, 0, 0.45);

    transition:
        opacity 0.2s ease,
        transform 0.2s ease,
        visibility 0.2s ease;
}

.wallet-payment-toast.visible {
    opacity: 1;
    visibility: visible;

    transform:
        translate(-50%, 0);
}

.wallet-payment-toast.success {
    border-color:
        rgba(34, 197, 94, 0.55);

    background:
        linear-gradient(
            145deg,
            rgba(15, 55, 31, 0.98),
            rgba(10, 34, 20, 0.98)
        );

    color: #dcfce7;
}

.wallet-payment-toast.error {
    border-color:
        rgba(239, 68, 68, 0.55);

    background:
        linear-gradient(
            145deg,
            rgba(65, 20, 20, 0.98),
            rgba(38, 12, 12, 0.98)
        );

    color: #fee2e2;
}

@media (max-width: 576px) {
    .wallet-payment-toast {
        top: 14px;
        width: calc(100% - 24px);
        padding: 12px 14px;
        font-size: 13px;
    }
}
/*
|--------------------------------------------------------------------------
| TOAST DE PAGO APROBADO
|--------------------------------------------------------------------------
*/
.wallet-payment-home-toast {
    position: relative;

    display: grid;
    grid-template-columns: 40px 1fr 28px;
    align-items: center;
    gap: 11px;

    width: 100%;
    padding: 13px 12px;

    opacity: 0;
    visibility: hidden;
    pointer-events: auto;

    transform:
        translateX(24px)
        scale(0.98);

    border: 1px solid
        rgba(255, 255, 255, 0.12);

    border-radius: 14px;

    color: #ffffff;

    box-shadow:
        0 18px 44px
        rgba(0, 0, 0, 0.5);

    transition:
        opacity 0.22s ease,
        transform 0.22s ease,
        visibility 0.22s ease;
}

.wallet-payment-home-toast.visible {
    opacity: 1;
    visibility: visible;

    transform:
        translateX(0)
        scale(1);
}

.wallet-payment-home-toast-success {
    border-color:
        rgba(34, 197, 94, 0.62);

    background:
        linear-gradient(
            145deg,
            #123b22 0%,
            #0a2615 100%
        );
}

.wallet-payment-home-toast-error {
    border-color:
        rgba(239, 68, 68, 0.62);

    background:
        linear-gradient(
            145deg,
            #4b1717 0%,
            #2c0d0d 100%
        );
}

.wallet-payment-home-toast-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    border-radius: 50%;

    font-size: 21px;
    font-weight: 900;
    line-height: 1;
}

.wallet-payment-home-toast-success
.wallet-payment-home-toast-icon {
    background: #22c55e;
    color: #062d14;

    box-shadow:
        0 0 0 5px
        rgba(34, 197, 94, 0.14);
}

.wallet-payment-home-toast-error
.wallet-payment-home-toast-icon {
    background: #ef4444;
    color: #ffffff;

    box-shadow:
        0 0 0 5px
        rgba(239, 68, 68, 0.14);
}

.wallet-payment-home-toast-text {
    display: flex;
    flex-direction: column;
    gap: 3px;

    min-width: 0;
}

.wallet-payment-home-toast-text strong {
    color: #ffffff;

    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
}

.wallet-payment-home-toast-text span {
    color: #bbf7d0;

    font-size: 12px;
    font-weight: 600;
    line-height: 1.35;
}

.wallet-payment-home-toast-error
.wallet-payment-home-toast-text span {
    color: #fecaca;
}

.wallet-payment-home-toast-close {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 26px;
    height: 26px;

    padding: 0;

    border: 0;
    border-radius: 7px;

    background:
        rgba(255, 255, 255, 0.08);

    color:
        rgba(255, 255, 255, 0.75);

    font-size: 20px;
    line-height: 1;

    cursor: pointer;
}

.wallet-payment-home-toast-close:hover {
    background:
        rgba(255, 255, 255, 0.14);

    color: #ffffff;
}

@media (max-width: 576px) {
    .toast-container {
        top: 12px;
        right: 12px;
        left: 12px;

        width: auto;
    }

    .wallet-payment-home-toast {
        grid-template-columns:
            36px 1fr 26px;

        gap: 9px;

        padding: 11px 10px;

        border-radius: 12px;
    }

    .wallet-payment-home-toast-icon {
        width: 34px;
        height: 34px;

        font-size: 18px;
    }

    .wallet-payment-home-toast-text strong {
        font-size: 13px;
    }

    .wallet-payment-home-toast-text span {
        font-size: 11px;
    }
}
