.auth-arrow-right{
    font-size: 20px;
}

.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;
    }
}



.agree-promo-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;
}

.agree-promo-modal{}
.agree-promo-modal__container {
    opacity: 0;
    visibility: hidden;

    display: flex;
    flex-direction: column;
    padding: 40px 36px 40px 40px;
    width: 900px;
    font-style: normal;
    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;
}
.agree-promo-title{
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}
.agree-promo-body{
    height: 240px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #dedede;
}
.agree-promo-content{
    font-size: 15px;
    padding: 20px 20px 0 20px;
    text-align: center;
    height: 100%;
    overflow-y: scroll;
    background-color: #f1f1f1;
    --scrollbar-foreground: #005AAA;
    --scrollbar-background: #f1f1f1;
    --scrollbar-size: 10px;
    scrollbar-color: var(--scrollbar-foreground) var(--scrollbar-background);
}
.agree-promo-content::-webkit-scrollbar {
    width: var(--scrollbar-size);
    height: var(--scrollbar-size);
}
.agree-promo-content::-webkit-scrollbar-thumb {
    background: var(--scrollbar-foreground);
}
.agree-promo-content::-webkit-scrollbar-track {
    background: var(--scrollbar-background);
}
.agree-promo-modal__container .btn-container{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}
.agree-promo-modal__container .btn-container .btn{
    padding: 6px 16px;
    margin: 0 14px;
    border: 1px solid #005AAA;
    border-radius: 6px;
    transition: 300ms;
}
.agree-promo-modal__container .btn-container .btn:first-child{
    background-color: #005AAA;
    color: #ffffff;
}
.agree-promo-modal__container .btn-container .btn:first-child:hover{
    background-color: #ffffff;
    color: #005AAA;
}

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

@media screen and (max-width: 1199px){
    .agree-promo-modal__container{
        width: 971px;
    }
}