.after-sending-modal{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99001;
    background: rgba(255,255,255,1);
    padding: 30px;
    text-align: center;
    color: #000;
    transition: all 300ms ease-out;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -o-transform: scale(0);
}
.after-sending-modal.after-sending-modal_active{
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
}
.after-sending-modal__inner{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.after-sending-modal__title{
    font-size: 36px;
    line-height: 1.4;
    margin-bottom: 30px;
    width: 500px;
    max-width: 100%;
}
.after-sending-modal__text{
    font-size: 18px;
    line-height: 1.6;
    width: 500px;
    max-width: 100%;
}
.after-sending-modal_error{
    color: red;
}

.error + .agreement-label {
    color: red !important;
}

.wpcf7-form-control.error::-moz-placeholder {
    color: red !important;
}

.wpcf7-form-control.error:-ms-input-placeholder {
    color: red !important;
}

.wpcf7-form-control.error::-webkit-input-placeholder {
    color: red !important;
}