#warn {
    display: none;
    z-index: 999;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

#warn.fade-show .backdrop {
    opacity: 1;
}

#warn.fade-show .content {
    opacity: 1;
}

#warn .backdrop {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 1;

    opacity: 0;
    transition: opacity 0.15s ease;
    /* transition-delay: 1.2s; */
}

#warn .content {
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    background-color: white;
    backdrop-filter: blur(10px);
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 66%;
    min-width: 300px;
    transform: translate(-50%, -50%);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.15s ease;
}

#warn .content .inner {
    width: 100%;
    min-height: 320px;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#warn .content .inner .warn-txt {
    padding: 0 24px;
    text-align: center;
    white-space: pre-wrap;
    font-size: 23px;
    width: 100%;
}

#warn .content .footer {}

#warn .content .footer .popup-btns {
    width: 100%;
    height: 80px;

    display: flex;
    align-items: center;
    justify-content: center;
}

#warn .content .footer .popup-btns .popup-btn {
    min-width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 25px;
    font-weight: 500;
}

#warn .content .footer .popup-btns .popup-btn.back {
    font-weight: 300;
}

#warn .content .footer .popup-btns .popup-btn.ok {
    font-weight: 600;
    background-color: #f1f2f5;
}