/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


:root {

    --black: #050505;
    --black-2: #0b0b0b;
    --black-3: #121212;

    --green: #b7ff00;
    --green-dark: #82b800;

    --yellow: #ffd900;

    --white: #f4f4f4;

    --red: #ff3030;

    --border: rgba(183, 255, 0, 0.45);

}


html {
    scroll-behavior: smooth;
}


body {

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    background: var(--black);

    color: var(--white);

    min-height: 100vh;

}

html, body {
    touch-action: manipulation;
    overscroll-behavior: none;
}


/* =========================================================
   PAGE
========================================================= */

.page {

    width: min(1500px, 100%);

    margin: auto;

    background:

        radial-gradient(
            circle at 80% 15%,
            rgba(183,255,0,.08),
            transparent 30%
        ),

        linear-gradient(
            180deg,
            #050505,
            #090909
        );

    min-height: 100vh;

}


/* =========================================================
   HEADER
========================================================= */

.header {

    min-height: 90px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 20px 45px;

    border-bottom:
        1px solid
        rgba(183,255,0,.35);

}


.logo {

    display: flex;

    align-items: center;

    gap: 12px;

    font-size: 27px;

    font-weight: 900;

    letter-spacing: -1px;

}


.logo strong {

    color: var(--green);

}


.logo-icon {

    color: var(--green);

    font-size: 32px;

}


.header-message {

    text-align: right;

    font-size: 14px;

    font-weight: 800;

    line-height: 1.4;

}


.header-message strong {

    color: var(--green);

    display: block;

}


.heart {

    color: var(--green);

    font-size: 45px;

    line-height: 30px;

}


/* =========================================================
   HERO
========================================================= */

.hero {

    padding: 45px;

}


.hero-content {

    display: flex;

    align-items: center;

    justify-content: space-between;

    min-height: 330px;

}


.hero-title {

    position: relative;

    z-index: 2;

}


.hero-title > span {

    display: block;

    font-size: clamp(70px, 9vw, 145px);

    font-weight: 1000;

    line-height: .8;

    letter-spacing: -7px;

}


.hero-title > strong {

    display: block;

    color: var(--green);

    font-size: clamp(55px, 7vw, 115px);

    line-height: .95;

    letter-spacing: -5px;

}


.hero-subtitle {

    margin-top: 30px;

    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 24px;

    font-weight: 800;

}


.hero-subtitle strong {

    color: var(--green);

}


.hero-heart {

    color: var(--green);

    font-size: 50px;

}


/* =========================================================
   PREMIO
========================================================= */

.hero-prize {

    position: relative;

    width: 440px;

    min-height: 270px;

    display: flex;

    align-items: center;

    justify-content: center;

}


.paint-background {

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            135deg,
            transparent 10%,
            rgba(183,255,0,.9) 25%,
            rgba(183,255,0,.3) 70%,
            transparent 90%
        );

    transform: rotate(-4deg);

    filter: blur(1px);

}


.gift {

    position: relative;

    z-index: 2;

    font-size: 150px;

    filter:
        drop-shadow(
            0 10px 20px
            rgba(0,0,0,.8)
        );

}


.prize-text {

    position: absolute;

    right: 0;

    top: 35px;

    z-index: 3;

    background: #050505;

    border: 2px solid var(--green);

    padding: 18px 25px;

    text-align: center;

    transform: rotate(2deg);

}


.prize-text span {

    display: block;

    font-size: 19px;

    font-weight: 900;

}


.prize-text strong {

    display: block;

    color: var(--green);

    font-size: 35px;

}


.prize-text small {

    font-weight: 900;

    font-size: 18px;

}


/* =========================================================
   LEGEND
========================================================= */

.legend {

    margin: 0 45px 30px;

    max-width: 650px;

    padding: 15px 25px;

    border: 1px solid #555;

    border-radius: 15px;

    display: flex;

    justify-content: space-around;

    background: #101010;

}


.legend-item {

    display: flex;

    align-items: center;

    gap: 10px;

    font-weight: 900;

}


.legend-box {

    width: 20px;

    height: 20px;

    border-radius: 3px;

}


.legend-box.available {

    border: 3px solid var(--green);

}

.legend-box.unavailable {

    border: 3px solid var(--red);

}

.legend-box.pending {

    border: 3px solid var(--yellow);

}


/* =========================================================
   MAIN
========================================================= */

.main-content {

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        300px;

    gap: 35px;

    padding: 0 45px;

}


/* =========================================================
   NUMBERS
========================================================= */

.numbers-grid {

    display: grid;

    grid-template-columns:
        repeat(10, 1fr);

    gap: 9px;

}


.number {

    aspect-ratio: 1 / .75;

    background: #101010;

    border: 2px solid var(--green);

    border-radius: 9px;

    color: var(--white);

    font-size: clamp(16px, 2vw, 27px);

    font-weight: 900;

    cursor: pointer;

    transition:
        transform .15s,
        background .15s,
        box-shadow .15s;

}


.number:hover {

    background: var(--green);

    color: #050505;

    transform: translateY(-3px);

    box-shadow:
        0 5px 20px
        rgba(183,255,0,.35);

}


.number.disponible {

    border-color: var(--green);

    color: var(--white);

    background: #101010;

}

.number.no-disponible {

    border-color: var(--red);

    color: #ff6666;

    background: #190909;

    cursor: pointer;

}

.number.pendiente {

    border-color: #ffd900;

    color: #ffd900;

    background: #191500;

    cursor: pointer;

}

.number.pendiente:hover {

    background: #2a2200;

    border-color: #ffd54f;

    color: #ffd54f;

}

.number.no-disponible:hover {

    background: #2a0d0d;

    border-color: #ff5555;

    color: #ff8888;

    transform: translateY(-2px);

}


.number:disabled {

    opacity: .9;

}


.reservation-info {

    margin-top: 25px;

    padding: 18px;

    border-left:
        4px solid
        var(--green);

    background: #101010;

    color: #ccc;

}


.reservation-info strong {

    color: var(--green);

}


.shield {

    color: var(--green);

    margin-right: 8px;

}


/* =========================================================
   SIDEBAR
========================================================= */

.sidebar {

    display: flex;

    flex-direction: column;

    gap: 18px;

}


.info-card {

    border:
        1px solid
        rgba(255,255,255,.22);

    border-radius: 15px;

    padding: 22px;

    background:
        linear-gradient(
            145deg,
            #121212,
            #080808
        );

}


.price-card {

    border-color:
        var(--green);

    text-align: center;

}


.card-label {

    display: block;

    color: var(--green);

    font-size: 18px;

    font-weight: 900;

}


.price-card > strong {

    display: block;

    font-size: 48px;

    margin-top: 8px;

}


.card-title {

    color: var(--green);

    font-size: 18px;

    font-weight: 900;

    display: flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 15px;

}


.card-title span {

    font-size: 30px;

}


.info-card p {

    color: #ddd;

    line-height: 1.6;

}


.highlight-text {

    color: var(--green) !important;

    font-weight: 900;

    margin-top: 10px;

}


.big-info {

    text-align: center;

}


.big-info strong {

    display: block;

    color: var(--white);

    font-size: 21px;

    margin: 7px 0;

}


.green-text {

    color: var(--green) !important;

    font-weight: 900;

    text-align: center;

}


/* =========================================================
   BENEFITS
========================================================= */

.benefits {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

    padding: 45px;

}


.benefit {

    display: flex;

    gap: 18px;

    padding: 25px;

    border:

        1px solid
        rgba(255,255,255,.2);

    border-radius: 15px;

    background: #101010;

}


.benefit-icon {

    color: var(--green);

    font-size: 42px;

}


.benefit h3 {

    color: var(--green);

    margin-bottom: 8px;

}


.benefit p {

    color: #bbb;

    line-height: 1.5;

}


/* =========================================================
   FINAL BANNER
========================================================= */

.final-banner {

    margin: 0 45px 40px;

    min-height: 130px;

    padding: 25px 35px;

    border:

        1px solid
        rgba(183,255,0,.45);

    border-radius: 15px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    background:

        linear-gradient(
            90deg,
            rgba(183,255,0,.16),
            #0b0b0b,
            rgba(183,255,0,.12)
        );

}


.final-heart {

    font-size: 90px;

    color: var(--green);

}


.final-banner strong {

    display: block;

    font-size: clamp(30px, 4vw, 60px);

    line-height: .9;

}


.final-banner strong:last-of-type {

    color: var(--green);

}


.thanks {

    background: var(--green);

    color: #050505;

    font-weight: 1000;

    padding: 20px;

    font-size: 22px;

    transform: rotate(-2deg);

}


/* =========================================================
   FOOTER
========================================================= */

footer {

    border-top:
        1px solid
        rgba(183,255,0,.35);

    padding: 25px 45px;

    display: flex;

    justify-content: space-between;

    gap: 20px;

    color: #aaa;

    font-size: 13px;

}


footer strong {

    color: var(--green);

}


/* =========================================================
   MODAL
========================================================= */

.modal-overlay {

    position: fixed;

    inset: 0;

    background:
        rgba(0,0,0,.85);

    backdrop-filter:
        blur(8px);

    display: none;

    align-items: center;

    justify-content: center;

    padding: 20px;

    z-index: 9999;

}


.modal-overlay.active {

    display: flex;

}


.modal {

    width: min(460px, 100%);

    background:

        linear-gradient(
            145deg,
            #181818,
            #080808
        );

    border:
        1px solid
        var(--green);

    border-radius: 20px;

    padding: 30px;

    position: relative;

    box-shadow:
        0 0 60px
        rgba(183,255,0,.15);

    animation:
        modalIn .2s ease;

}


@keyframes modalIn {

    from {

        transform: scale(.9);

        opacity: 0;

    }

    to {

        transform: scale(1);

        opacity: 1;

    }

}


.modal-close {

    position: absolute;

    top: 12px;

    right: 16px;

    background: none;

    border: none;

    color: #fff;

    font-size: 32px;

    cursor: pointer;

}


.modal-header {

    text-align: center;

    padding-bottom: 20px;

    border-bottom:
        1px solid
        #333;

}


.modal-header span {

    display: block;

    color: #aaa;

    font-size: 14px;

    font-weight: 800;

}


.modal-header strong {

    display: block;

    color: var(--green);

    font-size: 70px;

    line-height: 1;

    margin-top: 8px;

}


.modal-price {

    text-align: center;

    padding: 18px;

    color: #aaa;

}


.modal-price strong {

    color: #fff;

    font-size: 25px;

    margin-left: 5px;

}


.form-group {

    margin-bottom: 18px;

}


.form-group label {

    display: block;

    margin-bottom: 7px;

    color: var(--green);

    font-weight: 800;

}


.form-group input {

    width: 100%;

    height: 50px;

    padding: 0 15px;

    background: #080808;

    color: #fff;

    border:
        1px solid
        #444;

    border-radius: 8px;

    outline: none;

    font-size: 16px;

}


.form-group input:focus {

    border-color:
        var(--green);

    box-shadow:
        0 0 0 2px
        rgba(183,255,0,.1);

}


.modal-warning {

    margin: 15px 0;

    padding: 12px;

    background:
        rgba(183,255,0,.08);

    border-left:
        3px solid
        var(--green);

    color: #ccc;

    font-size: 14px;

}


.modal-warning strong {

    color: var(--green);

}


.reserve-button {

    width: 100%;

    height: 55px;

    border: none;

    border-radius: 8px;

    background:
        var(--green);

    color: #050505;

    font-size: 17px;

    font-weight: 1000;

    cursor: pointer;

    transition: .2s;

}


.reserve-button:hover {

    background: #d0ff4d;

    transform: translateY(-2px);

}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .main-content {
        grid-template-columns: 1fr;
    }

    .sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .hero-prize {
        width: 100%;
    }
}


/* =========================================================
   TABLET / CELULAR
========================================================= */

@media (max-width: 700px) {

    .header {
        min-height: 70px;
        padding: 12px 15px;
    }

    .logo {
        font-size: 17px;
        gap: 6px;
    }

    .logo-icon {
        font-size: 23px;
    }

    .header-message {
        font-size: 9px;
        line-height: 1.2;
    }

    .heart {
        font-size: 27px;
    }


    /* =========================
       HERO
    ========================= */

    .hero {
        padding: 25px 15px 20px;
    }

    .hero-content {
        min-height: auto;
        gap: 20px;
    }

    .hero-title > span {
        font-size: 52px;
        letter-spacing: -3px;
    }

    .hero-title > strong {
        font-size: 40px;
        letter-spacing: -2px;
    }

    .hero-subtitle {
        margin-top: 15px;
        font-size: 13px;
        gap: 5px;
    }

    .hero-heart {
        font-size: 30px;
    }


    /* =========================
       PREMIO
    ========================= */

    .hero-prize {
        min-height: 145px;
        width: 100%;
    }

    .gift {
        font-size: 70px;
    }

    .prize-text {
        right: 0;
        top: 5px;
        padding: 8px 12px;
    }

    .prize-text span {
        font-size: 11px;
    }

    .prize-text strong {
        font-size: 19px;
    }

    .prize-text small {
        font-size: 11px;
    }


    /* =========================
       LEYENDA
    ========================= */

    .legend {
        margin: 0 15px 18px;
        padding: 10px 7px;
        gap: 3px;
        border-radius: 10px;
    }

    .legend-item {
        font-size: 10px;
        gap: 5px;
    }

    .legend-box {
        width: 12px;
        height: 12px;
    }


    /* =========================
       CONTENIDO
    ========================= */

    .main-content {
        padding: 0 15px;
    }


    /* =========================
       GRILLA 00-99
    ========================= */

    .numbers-grid {
        grid-template-columns: repeat(10, minmax(0, 1fr));
        gap: 5px;
    }

    .number {
        width: 100%;
        aspect-ratio: 1 / .82;

        border-width: 2px;
        border-radius: 6px;

        /*
         * Más grande que antes
         */
        font-size: clamp(15px, 4.2vw, 22px);

        font-weight: 900;

        padding: 0;
    }

    .number:hover {
        transform: none;
    }


    /* =========================
       RESERVA
    ========================= */

    .reservation-info {
        margin-top: 15px;
        padding: 12px;

        font-size: 12px;
        line-height: 1.4;
    }


    /* =========================
       SIDEBAR
    ========================= */

    .sidebar {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .info-card {
        padding: 17px;
        border-radius: 12px;
    }

    .price-card > strong {
        font-size: 38px;
    }


    /* =========================
       BENEFICIOS
    ========================= */

    .benefits {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 25px 15px;
    }

    .benefit {
        padding: 17px;
    }

    .benefit-icon {
        font-size: 32px;
    }


    /* =========================
       BANNER FINAL
    ========================= */

    .final-banner {
        margin: 0 15px 25px;
        padding: 18px;

        min-height: 110px;

        flex-direction: column;

        gap: 10px;

        text-align: center;
    }

    .final-heart {
        font-size: 50px;
    }

    .final-banner strong {
        font-size: 29px;
    }

    .thanks {
        font-size: 14px;
        padding: 12px;
    }


    /* =========================
       FOOTER
    ========================= */

    footer {
        padding: 18px 15px;

        flex-direction: column;

        text-align: center;

        gap: 10px;
    }


    /* =====================================================
       MODAL MOBILE
    ===================================================== */

    .modal-overlay {
        padding: 10px;

        /*
         * Permite desplazamiento si el teléfono
         * tiene una pantalla muy pequeña.
         */
        align-items: center;

        overflow-y: auto;
    }


    .modal {

        /*
         * No ocupa todo el ancho.
         */
        width: min(360px, 92vw);

        /*
         * Menos espacio interno.
         */
        padding: 20px 18px;

        border-radius: 14px;

        max-height: 90vh;

        overflow-y: auto;
    }


    .modal-close {
        top: 7px;
        right: 10px;

        font-size: 27px;
    }


    .modal-header {
        padding-bottom: 12px;
    }


    .modal-header span {
        font-size: 11px;
    }


    .modal-header strong {
        font-size: 48px;
    }


    .modal-price {
        padding: 10px 5px;

        font-size: 12px;
    }


    .modal-price strong {
        font-size: 19px;
    }


    .form-group {
        margin-bottom: 11px;
    }


    .form-group label {
        font-size: 13px;
        margin-bottom: 4px;
    }


    .form-group input {

        height: 43px;

        padding: 0 11px;

        font-size: 14px;

        border-radius: 7px;
    }


    .modal-warning {

        margin: 10px 0;

        padding: 9px;

        font-size: 11px;

        line-height: 1.4;
    }


    .reserve-button {

        height: 46px;

        font-size: 14px;

        border-radius: 7px;
    }

}


/* =========================================================
   CELULARES PEQUEÑOS
========================================================= */

@media (max-width: 400px) {

    .header {
        padding: 10px 12px;
    }

    .logo {
        font-size: 15px;
    }

    .header-message {
        font-size: 8px;
    }


    /* =========================
       TÍTULO
    ========================= */

    .hero {
        padding: 20px 12px 15px;
    }

    .hero-title > span {
        font-size: 43px;
        letter-spacing: -2px;
    }

    .hero-title > strong {
        font-size: 34px;
    }

    .hero-subtitle {
        font-size: 11px;
    }


    /* =========================
       NÚMEROS
    ========================= */

    .main-content {
        padding: 0 12px;
    }

    .numbers-grid {

        /*
         * Espacio muy pequeño entre números
         * para poder mantenerlos grandes.
         */
        gap: 4px;
    }

    .number {

        aspect-ratio: 1 / .85;

        /*
         * Números más grandes.
         */
        font-size: 16px;

        border-width: 2px;

        border-radius: 5px;
    }


    /* =========================
       LEYENDA
    ========================= */

    .legend {
        margin-left: 12px;
        margin-right: 12px;
    }

    .legend-item {
        font-size: 9px;
    }


    /* =========================
       MODAL
    ========================= */

    .modal {

        width: 94vw;

        max-height: 88vh;

        padding: 17px 15px;

        border-radius: 13px;
    }


    .modal-header strong {
        font-size: 43px;
    }


    .modal-price {
        padding: 8px 0;
    }


    .form-group {
        margin-bottom: 9px;
    }


    .form-group input {
        height: 40px;
        font-size: 14px;
    }


    .modal-warning {
        font-size: 10px;
        padding: 8px;
    }


    .reserve-button {
        height: 43px;
        font-size: 13px;
    }


    /* =========================
       SIDEBAR
    ========================= */

    .info-card {
        padding: 15px;
    }

}
/* =========================================================
   NÚMERO NO DISPONIBLE
========================================================= */

.unavailable-content {

    text-align: center;

    padding: 10px 0 5px;

}


.unavailable-icon {

    font-size: 45px;

    margin-bottom: 10px;

}


.unavailable-label {

    display: block;

    color: #ff5555;

    font-size: 14px;

    font-weight: 900;

    letter-spacing: 1px;

}


.unavailable-number {

    display: block;

    color: #fff;

    font-size: 70px;

    line-height: 1;

    margin: 8px 0 20px;

}


.buyer-label {

    color: #aaa;

    margin-bottom: 8px;

}


.buyer-name {

    display: inline-block;

    padding: 12px 25px;

    border: 1px solid #ff3030;

    border-radius: 8px;

    background: #190909;

    color: #fff;

    font-size: 24px;

    font-weight: 900;

}


.unavailable-message {

    margin: 25px 0;

    padding: 14px;

    border-left: 3px solid var(--green);

    background: rgba(183,255,0,.06);

    color: #bbb;

    font-size: 13px;

    line-height: 1.5;

}


@media (max-width: 700px) {

    .unavailable-icon {
        font-size: 35px;
    }

    .unavailable-label {
        font-size: 11px;
    }

    .unavailable-number {
        font-size: 55px;
        margin: 6px 0 15px;
    }

    .buyer-name {
        font-size: 19px;
        padding: 10px 18px;
    }

    .unavailable-message {
        margin: 18px 0;
    }

}
.reserve-button:disabled {

    opacity: .6;

    cursor: not-allowed;

    transform: none;

}
/* =========================================================
   RETOMAR RESERVA
   ========================================================= */

#resumePaymentContent {
    width: 100%;
    margin: 0 auto 20px auto;
    text-align: center;
    box-sizing: border-box;
}

#resumePaymentContent h3 {
    margin: 0 0 4px 0;
    font-size: 21px;
    font-weight: 800;
    color: #ffffff;
}

#resumePaymentContent p {
    margin: 0 0 12px 0;
    font-size: 15px;
    color: #eeeeee;
    line-height: 1.3;
}


/* Contenedor de DNI + botón */

.resume-payment-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 100%;
}


/* DNI */

#resumeDni {
    width: 172px;
    height: 38px;
    padding: 0 10px;
    box-sizing: border-box;

    border: 2px solid #ffffff;
    border-radius: 4px;

    background: #ffffff;
    color: #111111;

    font-size: 15px;
    font-weight: 600;

    outline: none;
}

#resumeDni:focus {
    border-color: #b6ff00;
    box-shadow: 0 0 0 2px rgba(182, 255, 0, 0.2);
}


/* Botón continuar */

#resumePaymentButton {
    height: 38px;
    padding: 0 14px;

    border: none;
    border-radius: 4px;

    background: #ffffff;
    color: #111111;

    font-size: 13px;
    font-weight: 800;

    cursor: pointer;

    transition:
        transform 0.15s ease,
        background 0.15s ease;
}

#resumePaymentButton:hover {
    background: #b6ff00;
    transform: translateY(-1px);
}

#resumePaymentButton:active {
    transform: scale(0.97);
}

#resumePaymentButton:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}


/* =========================================================
   MÓVIL
   ========================================================= */

@media (max-width: 480px) {

    #resumePaymentContent h3 {
        font-size: 19px;
    }

    #resumePaymentContent p {
        font-size: 14px;
    }

    .resume-payment-form {
        gap: 5px;
    }

    #resumeDni {
        width: 150px;
        height: 36px;
        font-size: 14px;
    }

    #resumePaymentButton {
        height: 36px;
        padding: 0 10px;
        font-size: 11px;
    }
}
.swal2-container {
    z-index: 99999 !important;
}
/* ================================
   SWEETALERT - ESTILO DE LA WEB
================================ */

.swal2-container {
    z-index: 99999 !important;
    background: rgba(0, 0, 0, 0.70) !important;
}

.swal-web {
    background: #111111 !important;
    color: #ffffff !important;

    border: 1px solid #b6ff00 !important;
    border-radius: 20px !important;

    padding: 30px 28px 28px !important;

    width: 430px !important;
    max-width: calc(100% - 30px) !important;

    box-shadow:
        0 0 25px rgba(182, 255, 0, 0.12),
        0 15px 50px rgba(0, 0, 0, 0.65) !important;

    font-family: Arial, sans-serif !important;
}


/* TÍTULO */

.swal-web .swal2-title {
    color: #ffffff !important;

    font-size: 25px !important;
    font-weight: 800 !important;

    margin: 5px 0 8px !important;

    text-transform: none !important;
}


/* TEXTO */

.swal-web .swal2-html-container {
    color: #bdbdbd !important;

    font-size: 16px !important;
    line-height: 1.5 !important;

    margin: 0 0 20px !important;
}


/* ICONO */

.swal-web .swal2-icon {
    margin: 5px auto 15px !important;

    transform: scale(0.85);
}


/* ICONO WARNING */

.swal-web .swal2-icon.swal2-warning {
    border-color: #b6ff00 !important;
    color: #b6ff00 !important;
}


/* ICONO ERROR */

.swal-web .swal2-icon.swal2-error {
    border-color: #ff3333 !important;
    color: #ff3333 !important;
}


/* ICONO SUCCESS */

.swal-web .swal2-icon.swal2-success {
    border-color: #b6ff00 !important;
    color: #b6ff00 !important;
}


/* BOTÓN PRINCIPAL */

.swal-web .swal2-confirm {
    background: #b6ff00 !important;
    color: #000000 !important;

    border: none !important;
    border-radius: 9px !important;

    padding: 13px 28px !important;

    font-size: 15px !important;
    font-weight: 800 !important;

    text-transform: uppercase !important;

    box-shadow: none !important;

    transition: 0.2s ease !important;
}

.swal-web .swal2-confirm:hover {
    background: #c4ff33 !important;
    transform: translateY(-1px);
}


/* BOTÓN CANCELAR */

.swal-web .swal2-cancel {
    background: #222222 !important;
    color: #ffffff !important;

    border: 1px solid #444444 !important;
    border-radius: 9px !important;

    padding: 13px 25px !important;

    font-weight: 700 !important;
}


/* BOTÓN CERRAR */

.swal-web .swal2-close {
    color: #ffffff !important;

    font-size: 30px !important;

    transition: 0.2s ease !important;
}

.swal-web .swal2-close:hover {
    color: #b6ff00 !important;
}


/* INPUT */

.swal-web .swal2-input {
    background: #e9f0ff !important;
    color: #111111 !important;

    border: none !important;
    border-radius: 5px !important;

    font-size: 16px !important;
    font-weight: 700 !important;

    height: 45px !important;

    box-shadow: none !important;
}


/* INPUT FOCUS */

.swal-web .swal2-input:focus {
    border: 2px solid #b6ff00 !important;

    box-shadow: none !important;
}


/* FOOTER */

.swal-web .swal2-footer {
    border-top: none !important;

    color: #888888 !important;
}


/* MOBILE */

@media (max-width: 500px) {

    .swal-web {
        width: calc(100% - 30px) !important;

        padding: 25px 20px !important;

        border-radius: 17px !important;
    }

    .swal-web .swal2-title {
        font-size: 22px !important;
    }

    .swal-web .swal2-html-container {
        font-size: 15px !important;
    }

    .swal-web .swal2-confirm {
        width: 100% !important;
    }
}