*{
    box-sizing: border-box;
}
.form-popup {
    position: fixed;
    width: 80%;
    max-width: 100%;
    margin: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 800px;
    padding: 36px 80px 53px 80px;
    background: #fff;
    z-index: 100001;
    text-align: center;
    color: #EB0A1E;
}
.form-mask {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #000;
    top: 0;
    left: 0;
    z-index: 10000;
    opacity: 0.8;
    cursor: pointer;
}
.form-popup-close {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 24px;
    height: 24px;
    color: #ccc;
    border: 1px solid #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.form-popup-header {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
}
.form-popup-text {
    font-size: 20px;
    /* margin-bottom: 20px; */
}
.modal.show{
    z-index: 99999;
}
.modal-backdrop.show{
    z-index: 99998;
}
.contentErr{
    text-align: center;
    color: red;
}
.modal-title.custom{
    flex: 1;
    text-align: center;
}
@media screen and (max-width : 576px) {
    .form-popup {
        padding: 36px 16px 53px 16px;
    }

}