.support-form{}
.support-form__container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 40px 0 86px 0;
    padding: 56px;
    background: #F5F5F5;
    border-radius: 10px;
    font-family: 'Rubik';
    font-style: normal;
}

.support-form__col-1{
    display: flex;
    flex: 1 1 auto;
    max-width: 613px;
}
.question__container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex: 1 1 auto;
    color: #232323;
}
.question__mail{
    background: url("./img/mail.svg") center no-repeat;
    width: 74px;
    height: 74px;
}
.question__body{
    max-width: 490px;
}
.question__title{
    font-weight: 400;
    font-size: 28px;
}
.question__text{
    margin-top: 24px;
    font-size: 16px;
    line-height: 150%;
}

.support-form__col-2{
    display: flex;
    align-items: flex-end;
}
.support-form-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 24px;
    margin-top: 32px;
    width: 266px;
    background: #D62A32;
    border-radius: 8px;
    color: #fff;
    user-select: none;
    cursor: pointer;
}


@media screen and (max-width: 1199px){
    .support-form__col-1 {
        max-width: 480px;
    }
    .question__body{
        max-width: 365px;
    }
}
@media screen and (max-width: 991px){
    .question__mail{
        display: none;
    }
    .support-form-btn{
        width: 244px;
    }
}
@media screen and (max-width: 767px) {
    .support-form__container{
        flex-direction: column;
        padding: 24px;
        margin: 30px 0 48px 0;
    }
    .support-form__col-1 {
        max-width: 100%;
    }
    .question__body{
        max-width: 100%;
        text-align: center;
    }
    .question__title{
        font-size: 22px;
    }
    .question__text{
        font-size: 14px;
        margin-top: 12px;
    }
    .support-form__col-2 {
        justify-content: center
    }
    .support-form-btn{
        padding: 12px 24px 14px 24px;
        width: 300px;
    }
    .support-form-btn span::before{
        content: url("./img/mail-01.svg");
        width: 24px;
        height: 24px;
        position: relative;
        top: 7px;
        right: 10px;
    }

}

@media screen and (max-width: 540px){
    .question__body{
        text-align: start;
    }
    .support-form-btn {
        padding: 6px 14px 10px 14px;
        width: 240px;
        font-size: 14px;
    }
}



.form-support-modal-overlay{
    opacity: 0;
    visibility: hidden;

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
    z-index: 80;
    transition: 0.4s ease;
}

.form-support-modal{}
.form-support-modal__container {
    opacity: 0;
    visibility: hidden;

    display: flex;
    flex-direction: column;
    padding: 40px 56px;
    width: 1028px;
    max-width: 1028px;
    font-family: 'Rubik';
    font-style: normal;
    color: #232323;
    transform: translate(-50%, -60%);
    background-color: #FFFFFF;
    transition: 0.4s ease;
    position: fixed;
    top: 50%;
    left: 50%;
    border-radius: 8px;
    overflow: hidden;
    z-index: 100;
}
#form-support-modal-icon-close{
    position: absolute;
    display: flex;
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    top: 30px;
    right: 30px;
    user-select: none;
    cursor: pointer;
    background: url("./img/x-close.svg") center no-repeat;
}
.form-support-modal__title{
    font-weight: 400;
    font-size: 28px;
    margin-bottom: 32px;
}
.form-body__container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.form-body__col-1{
    display: flex;
    flex-direction: column;
    flex: 1 0 auto;
    width: 400px;
    margin-right: 34px;
}
.form-body__columnt-title{
    font-weight: 500;
    font-size: 18px;
}
#form-description{
    resize: none;
    flex-grow: 1;
    outline: none;
}
.form-body__col-2{
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}
.form-input{
    padding: 18px 16px;
    border: 1px solid #E4E4E4;
    border-radius: 8px;
    transition: 0.3s ease;
}
.form-input:focus{
    border: 1px solid #555555;
}
#form-submit{
    font-weight: 400;
    font-size: 20px;
    color: #FFFFFF;
    margin: 25px 0;
    padding: 11px 0;
    text-align: center;
    width: 152px;
    background: #D62A32;
}
.form-body__link{
    color: #555555;
    font-size: 16px;
}
.form-body__link a{
    text-decoration: underline;
    color: #555555 !important;
}
.error-field{
    opacity: 0;
    min-height: 21px;
    font-size: 14px;
    margin-top: 5px;
    padding-left: 3px;
    color: #D62A32;
    transition: 0.2s ease;
}
.error-field-active{
    opacity: 1;
}
.error-input-active{
    border: 1px solid #D62A32 !important;
}
.form-submit-active{
    width: 255px !important;
    background: green !important;
    pointer-events: none;
}


.form-mob-overlay-active{
    opacity: 1;
    visibility: visible;
}
.form-mob-modal-active{
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%);
}



@media screen and (max-width: 1199px){
    .form-support-modal__container{
        width: 971px;
        max-width: 971px;
    }
}
@media screen and (max-width: 991px){
    .form-support-modal__container{
        width: 747px;
        max-width: 747px;
    }
    .form-body__col-1{
        width: 304px;
    }
}
@media screen and (max-width: 767px) {
    .form-support-modal__container{
        padding: 24px;
        width: 520px;
        max-width: 520px;
        height: 80vh;
        overflow-y: auto;
    }
    .form-body__container{
        flex-direction: column;
    }
    .form-body__col-1{
        width: 100%;
        margin-right: 0;
        margin-bottom: 25px;
    }
    #form-description{
        height: 300px;
    }
    .form-support-modal__title{
        font-size: 24px;
    }
    .form-body__columnt-title{
        font-size: 16px;
    }
    .form-input{
        font-size: 14px;
        padding: 16px 12px;
    }
    .form-body__link{
        font-size: 16px;
        margin: 25px 0;
    }
    #form-submit{
        font-size: 16px;
        order: 5;
        margin: 0;
    }
}

@media screen and (max-width: 540px){
    .form-support-modal__container{
        width: 370px;
        max-width: 370px;
    }
}
@media screen and (max-width: 375px){
    .form-support-modal__container{
        width: 300px;
        max-width: 300px;
    }
}
@media screen and (max-width: 300px){
    .form-submit-active{
        width: 200px;
    }
    .form-support-modal__container{
        width: 260px;
        max-width: 260px;
    }
}
