/* feild wrapper */

.feild_wrapper{
    display: inline-block;
    position: relative;
    width: 100%;
}
.feild_wrapper input,
.feild_wrapper textarea{
    transition: ease-in 1000ms;
}
.feild_wrapper.wrong input,
.feild_wrapper.wrong textarea{
    border-color: red;
    box-shadow: 0 0 5px red;
    transition: ease-in 1000ms;
}
.feild_wrapper .error_label{
    background: rgba(207,4,4,1);
    border-radius: 4px;
    bottom: 100%;
    box-shadow: 1px 1px 3px #c9c9c9;
    color: #fff;
    font-size: 14px;
    left: 50%;
    margin-left: -120px;
    margin-bottom: 10px;
    padding: 6px;
    position: absolute;
    text-align: center;
    visibility: hidden;
    width: 240px;
    z-index: 3;
}
.feild_wrapper .error_label:after{
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 4px solid rgba(207,4,4,1);
    position: absolute;
    bottom: -4px;
    left: 50%;
    margin-left: -2px;
}
.feild_wrapper.wrong .error_label{
    visibility: visible;
    -webkit-animation: 400ms bounceIn;
    animation: 400ms bounceIn;
}
.wrong input[type=checkbox] ~ span {
    color: rgba(207,4,4,1);
}

/* modal-result */

.modal-result-icon {
    margin-bottom: 15px;
    height: 40px;
    width: 40px;
}
.modal-result-title {
    color: #1B1B1D;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}
.modal-result-dsc {
    font-size: 17px;
    line-height: 140%;
    margin-bottom: 50px;
}
.modal-result.fancybox-content {
    border-radius: 20px;
    max-width: 445px;
    padding: 20px 30px 30px;
    width: 85%;
}
.modal-result .button {
    width: 100%;
}
.modal-result .bim-form-button {
    background: #f01420;
    width: 100%;
}
.modal-button {
    background: #f01420;
    border: none;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    font-weight: 700;
    padding: 14px 20px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    width: 100%;
}