/*==================================================
    AUTOPLAY MODAL
    LA TOXICA RADIO
==================================================*/


/*==================================================
    MODAL BASE
    VERSION MOVIL
==================================================*/

#autoplay-overlay {

    position: fixed;

    inset: 0;

    display: flex;

    justify-content: center;

    align-items: center;

    background: rgba(0, 0, 0, 0.35);

    backdrop-filter: blur(5px);

    -webkit-backdrop-filter: blur(5px);

    z-index: 999999;

}


/*==================================================
    TARJETA
==================================================*/

.autoplay-card {

    width: 260px;

    max-width: calc(100vw - 40px);

    background: rgba(8, 21, 38, 0.75);

    backdrop-filter: blur(12px);

    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, 0.18);

    border-radius: 16px;

    padding: 16px;

    text-align: center;

    color: #ffffff;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.45);

    box-sizing: border-box;

}


/*==================================================
    TITULO
==================================================*/

.autoplay-card h3 {

    margin: 0 0 8px;

    padding: 0;

    font-size: 15px;

    font-weight: 800;

    line-height: 1.3;

}


/*==================================================
    TEXTO
==================================================*/

.autoplay-card p {

    margin: 0 0 14px;

    padding: 0;

    font-size: 12px;

    line-height: 1.4;

    opacity: 0.9;

}


/*==================================================
    BOTONES
==================================================*/

.autoplay-actions {

    display: flex;

    gap: 8px;

    width: 100%;

}


/*==================================================
    BOTONES GENERALES
==================================================*/

.autoplay-actions button {

    flex: 1;

    min-width: 0;

    border: 0;

    padding: 8px;

    margin: 0;

    border-radius: 18px;

    font-size: 11px;

    font-weight: 800;

    line-height: 1.2;

    cursor: pointer;

    box-sizing: border-box;

}


/*==================================================
    BOTON AHORA NO
==================================================*/

#autoplayCancel {

    background: #333333;

    color: #ffffff;

}


/*==================================================
    BOTON ACTIVAR
==================================================*/

#autoplayAccept {

    background: #FFD400;

    color: #081526;

}


/*==================================================
    VERSION WEB
    768PX EN ADELANTE
==================================================*/

@media (min-width: 768px) {

    #autoplay-overlay {

        display: none !important;

        visibility: hidden !important;

        opacity: 0 !important;

        pointer-events: none !important;

        width: 0 !important;

        height: 0 !important;

        overflow: hidden !important;

    }

}