.mess-modal-wrapper,
.preloader_form {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .7);
    transition: all 0.25s ease-in-out;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 555;

}

.preloader_form img {
    width: 100px;
    height: 100px;
}

.mess-modal-wrapper.open,
.preloader_form.open {
    opacity: 1;
    visibility: visible;
    z-index: 5000;
    display: flex;
}

.mess-modal {
    width: 320px;
    display: block;
    position: relative;
    background: #fff;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
    border-radius: 6px;
}

.mess-modal .fa-thumbs-up, .mess-modal .fa-ban{
    display: block;
    text-align: center;
    margin: 20px 0;
    font-size: 70px;
}

.mess-modal .fa-thumbs-up{
    color: #00a8e7;    
}

.mess-modal .fa-ban{
    color: red;
}

.mess-modal-wrapper.open .modal {
    opacity: 1;
}

.mess-modal .head {
    height: 54px;
    padding: 12px 15px;
    overflow: hidden;
    /*background: #e2525c;*/
    background: #00a8e7;
}

.modal_error,
.modal_success {
    max-height: 330px;
}

.mess-modal .modal_headline,
.mess-modal .modal_cont {
    text-align: center;    
}
.mess-modal .modal_headline{
    font-size: 1.75rem;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
}

.success .modal_cont{
    color: #00a8e7;
    margin: 20px 0;
}

.modal_error .modal_cont {
    color: red;
    margin: 20px 0;
}

.btn-close {
    font-size: 28px;
    display: block;
    float: right;
    color: #fff;
}
.extended{
    display: none;
}