/*
============================================================
Adult Alert
============================================================
*/

.adult_alert_overlay{
    display:none;
    position:fixed;
    top:0;
    right:0;
    bottom:0;
    left:0;
    z-index:99999;
    align-items:center;
    justify-content:center;
    box-sizing:border-box;
    padding:30px;
    background:rgba(0,0,0,.86);
    -webkit-backdrop-filter:blur(7px);
    backdrop-filter:blur(7px);
}

.adult_alert_overlay.is_active{
    display:flex;
}

.adult_alert_window{
    position:relative;
    width:100%;
    max-width:660px;
    box-sizing:border-box;
    padding:34px 42px 30px;
    overflow:hidden;
    border:1px solid #b99247;
    border-radius:18px;
    background:
        radial-gradient(
            circle at 50% 0,
            rgba(214,168,79,.10),
            transparent 42%
        ),
        linear-gradient(
            180deg,
            #1b1b1b 0%,
            #0e0e0e 100%
        );
    box-shadow:
        0 28px 80px rgba(0,0,0,.75),
        0 0 36px rgba(214,168,79,.16),
        inset 0 1px 0 rgba(255,255,255,.04);
    text-align:center;
}

.adult_alert_window:before{
    content:"";
    position:absolute;
    top:10px;
    right:10px;
    bottom:10px;
    left:10px;
    pointer-events:none;
    border:1px solid rgba(214,168,79,.20);
    border-radius:12px;
}

.adult_alert_brand{
    position:relative;
    color:#d6a84f;
    font-size:18px;
    font-weight:700;
    line-height:1.3;
    letter-spacing:4px;
}

.adult_alert_icon{
    position:relative;
    display:flex;
    justify-content:center;
    margin:22px 0 20px;
}

.adult_alert_icon span{
    display:flex;
    align-items:center;
    justify-content:center;
    width:104px;
    height:104px;
    box-sizing:border-box;
    border:5px solid #f0f0f0;
    border-radius:50%;
    background:#c9232b;
    color:#fff;
    font-family:Arial, sans-serif;
    font-size:36px;
    font-weight:800;
    line-height:1;
    box-shadow:
        0 0 0 5px #c9232b,
        0 0 26px rgba(201,35,43,.42);
}

.adult_alert_title{
    position:relative;
    margin:0;
    color:#e0b65f;
    font-size:30px;
    font-weight:700;
    line-height:1.4;
    letter-spacing:2px;
}

.adult_alert_divider{
    position:relative;
    width:92px;
    height:1px;
    margin:20px auto 22px;
    background:linear-gradient(
        90deg,
        transparent,
        #d6a84f,
        transparent
    );
}

.adult_alert_content{
    position:relative;
    color:#e7e7e7;
}

.adult_alert_content p{
    margin:0 0 15px;
    font-size:16px;
    line-height:1.85;
}

.adult_alert_content p:last-child{
    margin-bottom:0;
}

.adult_alert_actions{
    position:relative;
    display:flex;
    gap:16px;
    margin-top:28px;
}

.adult_alert_button{
    display:flex;
    flex:1 1 0;
    align-items:center;
    justify-content:center;
    min-height:54px;
    box-sizing:border-box;
    padding:10px 20px;
    border-radius:8px;
    font-size:16px;
    font-weight:700;
    line-height:1.4;
    text-decoration:none;
    cursor:pointer;
    transition:
        background-color .18s ease,
        border-color .18s ease,
        color .18s ease,
        transform .18s ease;
}

.adult_alert_button:hover{
    transform:translateY(-1px);
}

.adult_alert_button_leave{
    border:1px solid #555;
    background:#282828;
    color:#e4e4e4;
}

.adult_alert_button_leave:hover{
    border-color:#777;
    background:#343434;
    color:#fff;
}

.adult_alert_button_enter{
    border:1px solid #d6a84f;
    background:linear-gradient(
        180deg,
        #e1b75d 0%,
        #bd8d36 100%
    );
    color:#151515;
}

.adult_alert_button_enter:hover{
    border-color:#edca7b;
    background:linear-gradient(
        180deg,
        #edca7b 0%,
        #ca9a42 100%
    );
    color:#0d0d0d;
}

.adult_alert_note{
    position:relative;
    margin-top:18px;
    color:#777;
    font-size:12px;
    line-height:1.6;
}


/*
============================================================
Adult Alert RWD
============================================================
*/

@media(max-width:680px){

    .adult_alert_overlay{
        padding:18px;
        overflow-y:auto;
    }
    

    .adult_alert_window{
        margin:auto 0;
        padding:27px 22px 24px;
        border-radius:14px;
    }

    .adult_alert_brand{
        font-size:15px;
        letter-spacing:3px;
    }

    .adult_alert_icon{
        margin:19px 0 17px;
    }

    .adult_alert_icon span{
        width:82px;
        height:82px;
        border-width:4px;
        font-size:29px;
        box-shadow:
            0 0 0 4px #c9232b,
            0 0 22px rgba(201,35,43,.38);
    }

    .adult_alert_title{
        font-size:21px;
        letter-spacing:1px;
    }

    .adult_alert_divider{
        margin:17px auto 18px;
    }

    .adult_alert_content p{
        margin-bottom:12px;
        font-size:15px;
        line-height:1.75;
    }

    .adult_alert_actions{
        flex-direction:row;
        gap:10px;
        margin-top:23px;
    }

    .adult_alert_button{
        flex:1 1 0;
        width:auto;
        min-width:0;
        min-height:50px;
        padding:8px 6px;
        font-size:15px;
        white-space:nowrap;
    }

    .adult_alert_note{
        margin-top:15px;
    }

}