

/* Start:/local/templates/.default/components/bitrix/system.auth.authorize/flat/style.css?17422191798152*/
/*----------------------------button---------------------------------------------------------*/
.sticky-btn {
    display: none;
    position: sticky;
    /*margin-top: 12px;*/
    bottom: 0;
    z-index: 5;
    /*width: 100%;*/
    padding: 12px 24px;
    background-color: #ffffff;
    border-radius: 8px 8px 0px 0px;
    box-shadow: 0 -4px 9px 0 rgba(177, 177, 177, 0.25);
    width: calc(100% + 40px);
    transform: translateX(-20px);
}

.sticky-btn .btn {
    width: 100%;
}

@media screen and (max-width: 1023px) {
    .sticky-btn {
        display: flex;
    }
}


.btn {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border: inherit;
    font-family: 'Nunito';
    font-weight: 700;
    font-size: 16px;
    line-height: 21.82px;
}


.btn--green {
    border-radius: 31px;
    padding: 15px 10px;
    color: #ffffff;
    background-color: #A4D65E;
    box-shadow: 0px 4px 10px 0px #86B741;
    transition: all 0.3s ease-in-out;
}

@media (hover: hover) and (pointer: fine) {
    .btn--green:hover {
        background-color: #9dcb5c;
        box-shadow: 0px 4px 10px 0px #a4d65e;
        transition: all 0.3s ease-in-out;
    }
}

.btn--green-solid {
    border-radius: 31px;
    padding: 15px 10px;
    color: #a4d65e;
    background-color: #ffffff;
    box-shadow: inset 0px 0px 0px 1px #a4d65e;
    transition: all 0.3s ease-in-out;
}

@media (hover: hover) and (pointer: fine) {
    .btn--green-solid:hover {
        color: #9dcb5c;
        box-shadow: inset 0px 0px 0px 1px #9dcb5c;
        transition: all 0.3s ease-in-out;
    }
}

.btn--gray {
    padding: 8px;
    border-radius: 8px;
    background-color: #F3F5F9;
    transition: all 0.3s ease-in-out;
}

@media (hover: hover) and (pointer: fine) {
    .btn--gray:hover {
        box-shadow: 0 6px 20px #F3F5F9;
        transition: all 0.3s ease-in-out;
    }
}

.btn--blue {
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    background-color: #005EB8;
    transition: all 0.3s ease-in-out;
}



.btn--green:disabled {
    cursor: default;
    background-color: rgba(164, 214, 94, 0.4);
    box-shadow: none;
}

.btn--green--disabled {
    cursor: default;
    background-color: rgba(164, 214, 94, 0.4);
    box-shadow: none;
}

.personal-data .btn {
    margin: 20px auto 30px;
    padding: 16px 32px;
}

/*----------------------------fields---------------------------------------------------------*/

.fields {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}

.fileds__row {
    display: flex;
    gap: 8px;
}

@media screen and (max-width: 1023px) {
    .fields {
        row-gap: 12px;
    }
}

.field {
    display: flex;
    flex-direction: column;
}

.field button {
    /*display: none;*/
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
    color: #005EB8;
    font-weight: 600;
}

.field__placeholder {
    margin-bottom: 4px;
    font-family: 'Nunito';
    font-weight: 400;
    font-size: 16px;
    line-height: 22.08px;
}

.field__input {
    position: relative;
    display: flex;
    width: 100%;
}

.field__img {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
}

.field input {
    width: 100%;
    padding: 16px 28px 16px 20px;
    border-radius: 8px;
    background-color: #F3F5F9;
    border: none;
    transition: all 0.3s ease-in-out;
}


.field textarea {
    min-height: 78px;
    resize: none;
    width: 100%;
    padding: 16px 28px 16px 20px;
    border-radius: 8px;
    background-color: #F3F5F9;
    border: none;
    transition: all 0.3s ease-in-out;
}

.field__error-text {
    font-family: 'Helvetica';
    font-weight: 400;
    font-size: 14px;
    line-height: 19.32px;
    margin-top: 4px;
    text-align: right;
    color: #B00020;
}

.field__error input {
    background-color: #F9F3F3;
    box-shadow: inset 0 0 0 1px #B00020;
    outline: none;
}


@media (hover: hover) and (pointer: fine) {
    .field__error textarea:hover {
        background-color: #F9F3F3;
        box-shadow: inset 0 0 0 1px #B00020;
    }

    .field input:hover {
        box-shadow: inset 0 0 0 1px #005EB8;
        transition: all 0.3s ease-in-out;
    }

    .field textarea:hover {
        box-shadow: inset 0 0 0 1px #005EB8;
        transition: all 0.3s ease-in-out;
    }
}


.field input:focus {
    box-shadow: inset 0 0 0 2px #005EB8;
    transition: all 0.3s ease-in-out;
}

.field textarea:focus {
    box-shadow: inset 0 0 0 2px #005EB8;
    transition: all 0.3s ease-in-out;
}

.personal-data__error {
    font-family: 'Helvetica';
    font-weight: 400;
    font-size: 14px;
    line-height: 19.32px;
    margin-top: 4px;
    color: #B00020;
}

/*----------------------------personal-data---------------------------------------------------------*/

.personal-data__container {
    max-width: 400px;
    font-family: 'Nunito';
    font-weight: 400;
}

.personal-data__title {
    margin-bottom: 24px;
}

.personal-data__case {
    width: 450px;
    display: flex;
    flex-direction: column;
}

.personal-data__title-popup {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 24px;
}


.personal-data__info {
    margin: 24px 0px;
    font-family: 'Helvetica';
    font-weight: 300;
    font-size: 14px;
    line-height: 19.32px;
    letter-spacing: 1px;
    color: #9CA0A9;
}

.personal-data__btn {
    background-color: #ffffff;
    width: 100%;
    margin-top: auto;
}

.personal-data__btn .btn {
    width: 100%;
}

@media screen and (max-width: 1023px) {
    .personal-data__container {
        max-width: none;
    }

    .personal-data__btn {
        position: sticky;
        bottom: -20px;
        padding: 12px 24px;
    }

    .personal-data__case {
        border-radius: 0;
        width: 100vw;
        height: 100dvh;
        overflow-y: auto;
    }


    .personal-data__title {
        margin-bottom: 12px;
    }

    .personal-data__info {
        margin: 20px 0px;
    }

    .personal-data .flex__right {
        display: none;
    }
}

/*----------------------------phone-confirm---------------------------------------------------------*/

.phone-confirm {
    width: 450px;

}

.phone-confirm__btn-submit {
    margin-top: 24px;
    width: 100%;
}

.phone-confirm__title {
    margin-bottom: 40px;
    font-weight: 700;
    font-size: 20px;
    line-height: 27px;
    max-width: 270px;
}

.phone-confirm__text {
    font-size: 14px;
    line-height: 19px;
    color: #9CA0A9;
    margin: 24px 0px;
}

.phone-confirm__btn::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url("/local/templates/.default/components/bitrix/system.auth.authorize/flat/img/repeat.svg");
    background-repeat: no-repeat;
    background-position: center;
}

.phone-confirm__btn {
    display: flex;
    align-items: center;
    column-gap: 16px;
    color: #005EB8;
    font-size: 16px;
    font-weight: 500;
    line-height: 21px;
    text-decoration: underline;
}

@media screen and (max-width: 1023px){
    .phone-confirm {
        border-radius: 0;
        width: 100vw;
        height: 100dvh;
    }
}

/*----------------------------fixes---------------------------------------------------------*/
.lk-tabs__profile-columns.lk-tabs__profile-columns-centered {
    margin-left: unset;
}

[v-cloak] {
    display: none !important;
}

.colored-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 14px;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
}

.colored-block.green {
    background-color: #F4FFE9;
    color: #587A29;
}

.phone-confirm__before-message {
    margin-bottom: 12px;
}
/* End */
/* /local/templates/.default/components/bitrix/system.auth.authorize/flat/style.css?17422191798152 */
