.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.alert h4 {
    margin-top: 0;
    color: inherit;
}
.alert .alert-link {
    font-weight: bold;
}
.alert > p,
.alert > ul {
    margin-bottom: 0;
}
.alert > p + p {
    margin-top: 5px;
}
.alert-dismissable,
.alert-dismissible {
    padding-right: 35px;
}
.alert-dismissable .close,
.alert-dismissible .close {
    position: relative;
    top: -2px;
    right: -21px;
    color: inherit;
}
.alert-success {
    color: #69b719;
    border: 1px solid #69b719;
}
.alert-success hr {
    border-top-color: #c9e2b3;
}
.alert-success .alert-link {
    color: #2b542c;
}
.alert-info {
    color: #868a9d;
    border-color: #868a9d;
}
.alert-info hr {
    border-top-color: #a6e1ec;
}
.alert-info .alert-link {
    color: #245269;
}
.alert-warning {
    color: #d99822;
    border: 1px solid #d99822;
}
.alert-warning hr {
    border-top-color: #f7e1b5;
}
.alert-warning .alert-link {
    color: #66512c;
}
.alert-danger {
    color: #fb438f;
    border: 1px solid #fb438f;
}
.alert-danger hr {
    border-top-color: #e4b9c0;
}
.alert-danger .alert-link {
    color: #843534;
}

.error-summary {
    padding: 10px;
    font-size: 12px;

    color: darkred;
}

.error-summary ul {
    margin-left: 0px !important;
    width: 100% !important;
}
.error-summary ul li {
    list-style-type: circle;
}

.error-form {
    font-size: 12px;
    color: darkred;
}

.error-popup {
    display: none;
    max-width: 340px;
    width: calc(100% - 20px);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    position: fixed;
    z-index: 1001!important;
    background-color: #f8faff;
    border-radius: 24px;
    padding: 15px 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.error-popup.popup-open {
    display: block;
}

body.popup-open::before {
    opacity: 1;
    visibility: visible;
    z-index: 999;
}

.error-popup p {
    display: block;
    font-size: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding-bottom: 1px;
    font-weight: 600;
    color: #000;
}
.error-popup ul {
    padding: 18px 0 18px 18px;
}
.error-popup ul li {
    font-size: 14px;
}

.error-popup .popup-close {
    margin: 0 auto;
}
