/* about */
.about_img{
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    width: 40%;
}
.about_text{
    width: 50%;
}
.steps_div_icon img{
    padding: 16px;
    border-radius: 8px;
    background: var(--main);
}
.steps_div_icon::after{
    content: "";
    display: block;
    width: 100%;
    border: 1px dashed var(--main);
}
.steps_div:last-child .steps_div_icon::after{
    display: none;
}
.steps_div:first-child .steps_div_icon img{
    background: #6589FF;
}
.steps_div:nth-child(2) .steps_div_icon img{
    background: #4870F2;
}
.steps_div:nth-child(3) .steps_div_icon img{
    background: #335CDF;
}
.steps_text{
    padding-right: 10%;
}
.steps_div{
    width: calc(25% - 8px);
}

/* uslovia */
.uslovia_div{
    height: auto;
    position: relative;
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    padding: 24px;
    aspect-ratio: 1.9;
    width: calc(33% - 8px);
}
.numb{
    position: absolute;
    right: 10px;
    bottom: -30px;
    line-height: 1;
    font-size: 96px;
    font-weight: 500;
    color: var(--main);
    opacity: 0.1;
}

/* faq */
.faq_row{
    width: 50%;
}
.faq_container{
    width: 40%;
    height: auto;
}
.faq_header, .faq_body{
    padding: 24px 32px;
}
.faq_header{
    cursor: pointer;
}
.faq_body{
    padding-top: 0;
    display: none;
}
.toggle_faq{
    background: #F0F5FF;
    border-radius: 4px;
    width: 32px;
    min-width: 32px;
    aspect-ratio: 1;
    height: auto;
}
.faq_div{
    border: 1px solid var(--border);
    border-radius: 8px;
}
.faq_div_active .faq_body{
    display: block;
}
.faq_div_active .toggle_faq img{
    transform: rotate(180deg);
}
#faq .title{
    position: sticky;
    top: 160px;
}

/* cont */
.cont_text{
    width: 30%;
}
.map{
    width: 60%;
}
.cont_column p{
    color: #353535;
}
.cont_text a img{
    width: 36px;
    height: auto;
    aspect-ratio: 1;
}

/* footer */
footer{
    margin-top: 120px;
    background: #222222;
    padding: 64px 0px;
}
.offerta{
    font-size: 12px;
    color: #989898;
}
footer a, footer p, footer p.big{
    max-width: 340px;
    color: #fff;
}
footer a:hover{
    text-decoration: underline;
}

/* ur_page_sections */
#ur_page_sections{
    padding-top: 80px;
}
.ur_page_div{
    width: calc(50% - 12px);
    padding: 24px;
    background: var(--bg-light);
    border-radius: 8px;
    height: auto;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}
.ur_page_div a{
    color: var(--main);
    text-decoration: underline;
}
.alert_div{
    width: 100%;
    padding: 24px;
    border-radius: 8px;
    background: #FFEAEA;
}
.alert_div span{
    font-weight: 500;
}
.risk_div{
    padding: 24px;
    background: #FFFCF2;
    border-radius: 8px;
}

/* autorization */
.vector_man_img{
    width: 100%;
    max-width: 240px;
    height: auto;
}
.autorization_div, .registration_div, .text_404{
    max-width: 400px;
    width: 100%;
    text-align: center;
}
.verification_error_div{
    max-width: 580px;
    width: 100%;
    text-align: center;
}
form input, form select,
.cabinet_data_fields input{
    width: 100%;
    padding: 16px;
    border-radius: 4px;
    border: 1px solid var(--border);
}
form button{
    width: 100%;
    padding: 16px;
}

/* input checkbox */
input[type="checkbox"]{
    -webkit-appearance: none;
    appearance: none;
    width: 20px !important;
    min-width: 20px;
    height: 20px;
    padding: 0;
    border: 1px solid var(--main);
    border-radius: 4px;
    cursor: pointer;
    transition: .3s;
}
input[type="checkbox"]:checked{
    background-color: var(--main);
    border-color: var(--main);
    background-image: url('../img/icons/checkbox.svg');
    background-size: cover;
    background-position: center;
}
input[type="checkbox"]:active {
    filter: brightness(90%);
}
input[type="checkbox"]:hover:not(:disabled) {
    border-color: var(--main);
}
input[type="checkbox"]:focus {
    border-color: var(--main);
    outline: none;
    box-shadow: 0 0 0 0.25rem rgba(31, 38, 134, 0.3);
}
.form_check label{
    font-size: 14px;
    cursor: pointer;
    text-align: left;
}
.form_check label a{
    color: var(--main);
    text-decoration: underline;
}

/* text_page */
#text_page a{
    color: var(--main);
    text-decoration: underline;
}
#text_page h2{
    font-size: 28px;
    margin: 16px 0px 8px 0px;
}
#text_page h3{
    font-size: 20px;
    margin: 8px 0px;
    font-weight: 500;
}
#text_page h1{
    margin-bottom: 24px;
}

/* Верификация IDX — индикатор загрузки */
.cz-verify-loading {
    width: 100%;
    margin-top: 16px;
}
.cz-verify-loading[hidden] {
    display: none !important;
}
.cz-verify-loading__track {
    width: 100%;
    height: 6px;
    background: rgba(34, 113, 177, 0.15);
    border-radius: 3px;
    overflow: hidden;
}
.cz-verify-loading__bar {
    height: 100%;
    width: 40%;
    background: var(--main, #2271b1);
    border-radius: 3px;
    animation: cz-verify-indeterminate 1.2s ease-in-out infinite;
}
.cz-verify-loading__text {
    margin: 12px 0 0;
    font-size: 14px;
    text-align: center;
    color: var(--text, #2c3338);
    opacity: 0.85;
}
@keyframes cz-verify-indeterminate {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(350%); }
}

/* 404 */
#error h1{
    margin: 0px;
    font-size: 72px;
    color: var(--main);
}

/* cabinet */
.cabinet_wrap{
    width: calc(25% - 12px);
}
.cabinet_wrap a{
    padding: 16px 24px;
    border: 1px solid var(--bg-light);
    border-radius: 0px;
    width: 100%;
}
.cabinet_panel{
    width: calc(75% - 12px);
}
.cabinet_order, .cabinet_data, .cabinet_history{
    border: 1px solid var(--bg-light);
    border-radius: 0px;
    padding: 24px;
}
.cabinet_order h2, .cabinet_data h2, .cabinet_history h2{
    font-size: 24px;
}
.cabinet_tab.is-active{
    background: var(--bg-light);
}
#cabinet_order_form label, #cabinet_order_form,
.cabinet_data_fields label, .cabinet_data_fields{
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    align-items: start;
    justify-content: start;
}
.cz-notice-inline{
    padding: 16px;
    background: var(--bg-light);
    margin-bottom: 16px;
    color: var(--main);
}
.cabinet_panel a{
    text-decoration: underline;
}
th{
    font-weight: 400;
    background: var(--main);
    color: #fff;
}
td, th{
    padding: 8px 12px;
    border: 1px solid var(--border);
    text-align: left;
}
table{
    border-collapse: collapse;
}
.cabinet_status_rejected{
    color: red;
}