/* Extracted from ideo.css */

.modern-alert-modal {
    background-color: rgba(16, 18, 20, 0.72);
}

.modern-alert-modal .modal-dialog {
    max-width: 520px;
    width: calc(100% - 32px);
    margin: 48px auto;
}

.modern-alert-modal .modal-content {
    overflow: hidden;
    border: 1px solid rgba(43, 43, 43, 0.08);
    border-radius: 16px;
    background-color: #ffffff;
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.24);
}

.modern-alert-modal .modal-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-height: 48px;
    padding: 12px 14px 0;
    border-bottom: 0;
}

.modern-alert-modal .modal-header .close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin: 0;
    padding: 0;
    border-radius: 6px;
    background-color: #202020;
    color: #ffffff;
    font-size: 18px;
    line-height: 1;
    opacity: 1;
    text-shadow: none;
}

.modern-alert-modal .modal-header .close:hover,
.modern-alert-modal .modal-header .close:focus {
    background-color: #c2d500;
    color: #202020;
}

.modern-alert-modal .modal-body {
    padding: 22px 34px 36px;
    background-color: #ffffff;
    color: #343434;
    text-align: center;
}

.modern-alert-modal .modern-alert-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    border-radius: 999px;
    background-color: #f7f9df;
    color: #5c6500;
    font-size: 18px;
}

.modern-alert-modal .tit-alert {
    display: block;
    margin: 0;
    color: #202020;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.2;
}

.modern-alert-modal hr {
    width: 54px;
    margin: 14px auto 18px;
    border-top: 3px solid #c2d500;
}

.modern-alert-modal .bdy-alert {
    margin: 0;
    color: #5f5f5f;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.55;
}

.modern-alert-modal .modern-alert-actions {
    margin-top: 24px;
}

.modern-alert-modal .btn-dark {
    border: 0;
    border-radius: 8px;
    padding: 13px 22px;
    background-color: #202020;
    color: #ffffff;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(32, 32, 32, 0.16);
}

.modern-alert-modal .btn-dark:hover,
.modern-alert-modal .btn-dark:focus {
    background-color: #c2d500;
    color: #202020;
    text-decoration: none;
}

#forcePasswordModal.modern-alert-modal .modal-body {
    padding-top: 36px;
}

@media (max-width: 575.98px) {
    .modern-alert-modal .modal-dialog {
        margin: 28px auto;
    }

    .modern-alert-modal .modal-body {
        padding: 18px 22px 30px;
    }

    .modern-alert-modal .tit-alert {
        font-size: 23px;
    }
}

