/*
============================================================
Fraud Alert
============================================================
*/

.emergency_alert_overlay{
    display:none;
    position:fixed;
    top:0;
    right:0;
    bottom:0;
    left:0;
    z-index:99998;
    align-items:center;
    justify-content:center;
    box-sizing:border-box;
    padding:30px;
    background:rgba(0,0,0,.82);
    -webkit-backdrop-filter:blur(6px);
    backdrop-filter:blur(6px);
}

.emergency_alert_overlay.is_active{
    display:flex;
}

.emergency_alert_window{
    position:relative;
    width:100%;
    max-width:660px;
    max-height:calc(100vh - 60px);
    box-sizing:border-box;
    padding:34px 42px 30px;
    overflow-y:auto;
    border:1px solid #d9a329;
    border-radius:18px;
    background:
        linear-gradient(
            180deg,
            #fffdf6 0%,
            #fff9e8 100%
        );
    box-shadow:
        0 28px 80px rgba(0,0,0,.55),
        0 0 28px rgba(217,163,41,.20);
    color:#2a2a2a;
    text-align:center;
}

.emergency_alert_window:before{
    content:"";
    position:absolute;
    top:10px;
    right:10px;
    bottom:10px;
    left:10px;
    pointer-events:none;
    border:1px solid rgba(217,163,41,.28);
    border-radius:12px;
}

.emergency_alert_icon{
    position:relative;
    display:flex;
    justify-content:center;
    margin:0 0 18px;
}

.emergency_alert_icon span{
    display:flex;
    align-items:center;
    justify-content:center;
    width:82px;
    height:82px;
    box-sizing:border-box;
    border:5px solid #fff;
    border-radius:50%;
    background:#e3a51f;
    color:#fff;
    font-family:Arial, sans-serif;
    font-size:48px;
    font-weight:800;
    line-height:1;
    box-shadow:
        0 0 0 5px #e3a51f,
        0 0 24px rgba(227,165,31,.35);
}

.emergency_alert_title{
    position:relative;
    margin:0;
    color:#b67700;
    font-size:30px;
    font-weight:700;
    line-height:1.4;
    letter-spacing:2px;
}

.emergency_alert_divider{
    position:relative;
    width:92px;
    height:1px;
    margin:20px auto 22px;
    background:linear-gradient(
        90deg,
        transparent,
        #d9a329,
        transparent
    );
}

.emergency_alert_content{
    position:relative;
    color:#333;
    text-align:left;
}

.emergency_alert_content p{
    margin:0 0 16px;
    font-size:16px;
    line-height:1.85;
}

.emergency_alert_content p:last-child{
    margin-bottom:0;
}

.emergency_alert_actions{
    position:relative;
    margin-top:28px;
    text-align:center;
}

.emergency_alert_button{
    min-width:220px;
    min-height:52px;
    box-sizing:border-box;
    padding:10px 28px;
    border:1px solid #c98e12;
    border-radius:8px;
    background:linear-gradient(
        180deg,
        #f4bd3f 0%,
        #d99c1c 100%
    );
    color:#241800;
    font-size:16px;
    font-weight:700;
    line-height:1.4;
    cursor:pointer;
    transition:
        background-color .18s ease,
        border-color .18s ease,
        transform .18s ease;
}

.emergency_alert_button:hover{
    border-color:#e3aa2b;
    background:linear-gradient(
        180deg,
        #ffd060 0%,
        #e5aa2c 100%
    );
    transform:translateY(-1px);
}


/*
============================================================
Fraud Alert RWD
============================================================
*/

@media(max-width:680px){

    .emergency_alert_overlay{
        padding:18px;
        overflow-y:auto;
    }

    .emergency_alert_window{
        margin:auto 0;
        max-height:none;
        padding:27px 22px 24px;
        border-radius:14px;
    }

    .emergency_alert_icon{
        margin-bottom:16px;
    }

    .emergency_alert_icon span{
        width:68px;
        height:68px;
        border-width:4px;
        font-size:39px;
        box-shadow:
            0 0 0 4px #e3a51f,
            0 0 20px rgba(227,165,31,.32);
    }

    .emergency_alert_title{
        font-size:23px;
        letter-spacing:1px;
    }

    .emergency_alert_divider{
        margin:17px auto 18px;
    }

    .emergency_alert_content p{
        margin-bottom:13px;
        font-size:15px;
        line-height:1.75;
    }

    .emergency_alert_actions{
        margin-top:23px;
    }

    .emergency_alert_button{
        width:100%;
        min-width:0;
        min-height:50px;
        padding:8px 16px;
        font-size:15px;
    }

}