.div_warning_message {
    top: 40%;
    left: 5%;
    position: fixed;
    z-index: 9999999999999999;
    width: 90%;
    padding: 50px 2%;
    background-color: rgba(0, 0, 0, 0.8);
}

.div_warning_message p {
    font-size: 16px;
    text-align: center;
    line-height: 25px;
    color: white;
}

#aw_btn_ok {
    cursor: pointer;
    padding: 10px 30px;
    color: white;
    float: left;
    border: 1px solid #fff;
}

#aw_btn_cancel {
    cursor: pointer;
    padding: 10px 30px;
    color: white;
    float: right;
    border: 1px solid #fff;
}

.aw_background {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 999999;
    background-color: rgba(0, 0, 0, 0.8);
}

.aw_overflow {
    overflow: hidden !important;
    height: 100% !important;
}

html {
    height: 100% !important;
}

@media screen and (max-width: 1024px) {
    .div_warning_message {
        top: 0%;
        left: 0%;
        position: fixed;
        z-index: 9999999;
        width: 100%;
        padding: 10px;
        box-sizing: border-box !important;
        background-color: rgba(0, 0, 0, 0.8);
    }
    .div_warning_message p {
        font-size: 10px;
        text-align: center;
        line-height: 10px;
        color: white;
        margin: 0px !important;
    }
    #aw_btn_ok,
    #aw_btn_cancel {
        padding: 0px;
        font-size: 12px;
        margin: 5px 0px;
        width: 100%;
        float: left;
        text-align: center !important;
    }
}