input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
    -webkit-text-fill-color: inherit !important;
    background-color: transparent !important;
}
.header-mobile__left {
    display: flex;
    align-items: center;
    gap: 15px;
}
.select_option.inactive.inactive_cross {
    pointer-events: none;
    cursor: not-allowed;
    
}
#modal-not-found svg:not(.svg-full) [fill]{
    fill: inherit;
}

#modal-not-found svg:not(.svg-full) [fill] {
    fill: #0A5EC4;
}

#modal-not-found svg:not(.svg-full) [stroke] {
    stroke: #0A5EC4;
}

#modal-not-found .modal-thank__icon {
    justify-content: center;
}

#modal-not-found  .modal-thank__title {
    justify-content: center;
    display: flex;
    margin-bottom: 30px;
    margin-top: 0;
    color: #074FA8;
}

#modal-not-found  p.modal-thank__text {
    font-size: 16px;
    line-height: 1.5;
    margin-top: 20px;
}

#modal-not-found a.btn {
    width: 100%;
    margin-bottom: 20px;
}

#modal-not-found a:not(.btn) {
    font-size: 16px;
    display: flex;
    justify-content: center;
    color: #0A5EC4;
}

.preloader {
    width: 411px;
    height: 411px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: 9999;
    box-sizing: border-box;
}

.pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #0a5ec4;
    border-radius: 50%;
    opacity: 0;
    animation: pulse-animate 1.3s ease-out infinite;
}

.pulse:nth-child(2) {
    animation-delay: 0.5s;
}

.pulse:nth-child(3) {
    animation-delay: 1s;
}

@keyframes pulse-animate {
    0% {
        transform: scale(0);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

#modal-thank-cal .modal-thank__title {
    font-weight: 700;
    line-height: 133%;
    font-style: normal;
    font-weight: 700;
    font-size: 36px ;
    line-height: 133%;
    text-align: center;
    color: #0A5EC4;
}
#modal-thank-cal .modal-thank__text {
    margin-top: 28px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: #1A1A1A;
}

#modal-calc-trigger .modal__title{
    text-align: center;
}
.installment__btns,.partnership__btns {
 
    display: grid;
    flex-wrap: wrap;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.btn-gray{
    background-color: #F3F3F3;
    color:#1A1A1A;
    }
    .btn-gray:hover{
        color:inherit;
    }

.installment__form,.checkcontact__form  {
    display: flex;
    flex-direction: column
}

.installment__submit.disabled {

}
@supports (row-gap: clamp(0.625rem,0.3897058824rem + 1.1764705882vw,1.25rem)) {
    .installment__form,.checkcontact__form{
        row-gap:clamp(.625rem,.3897058824rem + 1.1764705882vw,1.25rem)
    }
    
}

@supports not (row-gap: clamp(0.625rem,0.3897058824rem + 1.1764705882vw,1.25rem)) {
    .installment__form,.checkcontact__form {
        row-gap:calc(.625rem + .625 * (100vw - 20rem) / 53.125)
    }
}

.installment__field,.checkcontact__field {
    position: relative
}

.installment__field input {
    height: 54px;
    outline: none
}

.installment__field input,.installment__field textarea, .installment__field label.file-upload,.checkcontact__field input,.partnership__field label.file-upload {
    font-size: 16px;
    line-height: 1.5;
    width: 100%;
    padding: 15px;outline: none;
    border: 1.5px solid #e6e6e6;
    border-radius: 10px;
    transition: border .3s ease-in-out
}

@media (max-width: 29.99875em) {
    .installment__field input,.installment__field textarea,.checkcontact__field input,.partnership__field__field input,.partnership__field__field textarea {
        font-size:14px
    }
}

.installment__field input:not(:-moz-placeholder-shown)+.installment__field-placeholder,.installment__field textarea:not(:-moz-placeholder-shown)+.installment__field-placeholder,
.checkcontact__field input:not(:-moz-placeholder-shown)+.checkcontact__field-placeholder{
    top: -14px;
    font-size: 12px;
    background-color: #fff;
    color: var(--text)
}

.installment__field input:focus+.installment__field-placeholder,.installment__field input:not(:placeholder-shown)+.installment__field-placeholder,.installment__field textarea:focus+.installment__field-placeholder,.installment__field textarea:not(:placeholder-shown)+.installment__field-placeholder,  .installment__field.focus .installment__field-placeholder,
.checkcontact__field input:focus+.checkcontact__field-placeholder,.checkcontact__field input:not(:placeholder-shown)+.checkcontact__field-placeholder,.checkcontact__field textarea:focus+.checkcontact__field-placeholder,.checkcontact__field textarea:not(:placeholder-shown)+.checkcontact__field-placeholder,  .checkcontact__field.focus .checkcontact__field-placeholder {
    top: -8px;
    font-size: 12px;
    background-color: #fff;
    color: var(--text)
}

.installment__field input:not(:-moz-placeholder-shown),.installment__field textarea:not(:-moz-placeholder-shown),.checkcontact__field input:not(:-moz-placeholder-shown) {
    border-color: var(--accent)
}

.installment__field input:focus,.installment__field input:not(:placeholder-shown),.installment__field textarea:focus,.installment__field textarea:not(:placeholder-shown),.checkcontact__field input:focus {
    border-color: var(--accent)
}

.installment__field-placeholder,.checkcontact__field-placeholder {
    position: absolute;
    top: 15px;
    left: 15px;
    line-height: 1.5;
    color: #b3b3b3;
    pointer-events: none;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 16px;
    transition-duration: .15s;
}

.installment__field-placeholder span, .checkcontact__field-placeholder span{
    color: #ff7171
}



.installment__field textarea {
    min-height: 88px;
    max-height: 120px;
    outline: none;
    max-width: 100%;
    min-width: 100%
}

.installment__checkbox,.installment__comment {
    font-size: 12px;
    line-height: 130%;
    display: flex;
    align-items: center;
}

.installment__comment {
    color: #333
}

.installment__submit--full,.checkcontact__submit--full  {
    width: 100%
}

.installment__title {
    font-weight: 700;
    line-height: 133%;
    color: var(--accent)
}

@media (max-width: 29.99875em) {
    .installment__title {
        font-size:clamp(1.125rem,1.0308823529rem + .4705882353vw,1.375rem)
    }
}

.installment-page__wrapper{
    margin: 0 auto;
}
.installment__header_title{
font-style: normal;
font-weight: 700;
font-size: 50px;
line-height: 125%;
letter-spacing: -1px;
text-align: center;
color: #1A1A1A;
}

.installment__header_caption-post-data{
margin-top: 15px;
font-style: normal;
display: flex;
justify-content: center;
align-items: center;
gap:15px;
font-weight: 400;
font-size: 16px;
line-height: 150%;
color: #000000;
text-align: center;
}
.installment__header_caption-post-data:before{
   content: url(../img/calc/warning.svg);
   height: 24px;
   width: 24px;
    }

@media (max-width: 29.99875em) {
    .installment__header_title {
        font-size: 24px;
    }
}

.checkbox-wrapper {
	color: rgba(60, 46, 73, .5);
	font-size: 14px;
	font-weight: 400;
	line-height: .938rem;
    display: flex;
    align-items: flex-start;
}


.checkbox-wrapper input[type="checkbox"]{
	display: none !important;
}
.checkbox-wrapper label{
	position: relative;
    text-align: left;
    padding-left: 30px;
    font-size: 12px;
	cursor:pointer;
}
.checkbox-wrapper label a{
    color:var(--accent);
    text-decoration: underline;
}
.checkbox-wrapper label:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	margin: auto;
	width: 15px;
	height: 15px;
	background-repeat: no-repeat;
	background: transparent;
	border: 1.5px solid #1A1A1A;
	border-radius: 5px;
	background-repeat: no-repeat;
	background-position: center;
}
.checkbox-wrapper input:checked + label:before {
	background-image: url(../img/check_wh.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-color:var(--accent);
	border: 1px solid var(--accent);
}

.checkbox-wrapper.btn_checkout_final{
	margin-top: 0;
}
.checkbox-wrapper_custom {
	margin-bottom: 15px;
	margin-top: 10px;
}
.checkbox-wrapper_custom .checkbox-wrapper.pl_0{
padding-left: 0;
margin-left:0;
}
.checkbox-wrapper_custom .checkbox-wrapper{
	margin-top: 5px;
}
	.checkbox-wrapper{
		position: relative;
	}
.checkbox-notification {
    position: absolute;
    top: 54px;
    left: 0;
    background: #fff;
    padding: 7px 10px;
    border-radius: 5px;
    display: none;
    color: #f33;
    border: 1px solid #f33;
    font-weight: 400;
    font-size: 13px;
}

.checkbox-notification::after {
    content: '';
    position: absolute;
    top: -6px;
    left: 31px;
    transform: translateX(-51%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid #f33;
  }
  
  .checkbox-notification::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 31px;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid #ffffff;
    z-index: 1;
  }



  @media (max-width: 29.99875em) {
  .checkbox-notification {
        font-size: 11px;
        padding: 8px;
    }
  }

.calc-trigger-checkbox  input[type="radio"]{
	display: none !important;
}

.calc-trigger-checkbox label{
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    border: 1.5px solid #CCCCCC;
    border-radius: 10px;
    gap:10px;
    font-weight: 500;
    font-size: 16px;
    line-height: 135%;
    color: #1A1A1A;
    cursor:pointer;
}

.calc-trigger-checkbox label span+span{
font-weight: 500;
font-size: 14px;
line-height: 130%;
color: #808080;

}
.installment-page .error-input .file-upload, .installment-page .error-input select,  .installment-page .error-input input {
    border-color:#f33 !important;
    }
.calc-trigger-checkbox label span i {
    font-style: normal;
    position: absolute;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 130%;
    color: #0A5EC4;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 4px 8px;
    gap: 10px;
    right: 11px;
    top: 14px;
    background: #F0F7FF;
    border-radius: 4px;
    z-index: 2;
}
.calc-trigger-checkbox input:checked + label{
    border-color:#0A5EC4;
}

input[type="file"] {
    display: none;
}

.installment__field label.file-upload,.partnership__field label.file-upload {
    display: flex;
    flex-direction: row;
    padding: 20px 20px 20px 25px;
    background: #F3F3F3;
    border: 1px dashed #B3B3B3;
    border-radius: 10px;
    flex: none;
    order: 2;
    align-self: stretch;
    cursor:pointer;
}
.installment__field.file-uploaded label.file-upload, .partnership__field.file-uploaded label.file-upload{
    background: #F0F7FF;
    border: 1px dashed #6BA1E3;
    color:#1A1A1A;
    font-weight: 500;
}
.installment__field label.file-upload .installment__field-placeholder,.partnership__field label.file-upload .partnership__field-placeholder{
    position: static;
    width: 70%;
    padding: 0;
    -webkit-line-clamp: none; 
    -webkit-box-orient: vertical;
}
.partnership__field-placeholder{
    font-size: 14px;
}
.installment__field.file-uploaded label.file-upload .installment__field-placeholder,.partnership__field.file-uploaded label.file-upload .partnership__field-placeholder{
    color:#1A1A1A;
    font-weight: 500;
}
.installment__field span.upload-icon,.success-icon,.partnership__field span.upload-icon {
    position: absolute;
    right: 20px;
    top: 0;
    bottom: 0;
    height: 43px;
    display: flex;
    margin: auto;
    gap:15px;
    align-items: center;

}
.installment__field span.success-icon a,.partnership__field span.success-icon a {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 130%;
    color: #0A5EC4;
    border-bottom: 1px dotted #0A5EC4;
}
.cart-page__aside-polyt a{
    color: #0A5EC4;
}
.installment__progress, .partnership__progress {
    margin: 50px auto;
    display: flex;
    justify-content: space-between;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 135%;
    text-align: center;
    color: #E6E6E6;
    width: 100%;
    max-width: 340px;
    position: relative;
}
.installment__progress_cart{
    max-width: 193px;
}
#modal-partnership .partnership__progress{
    max-width: 150px;
    margin: 0px auto;
}


#quick-installment,#full-installment{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.installment__step{
    max-width: 480px;width:100%;
}
.installment__step {
    opacity: 0;
    transform: translateY(20px); /* Начальное смещение вниз */
    transition: opacity 0.4s ease, transform 0.4s ease; /* Анимация для opacity и transform */
    display: none; /* Скрываем по умолчанию */
}

.installment__step.visible {
    opacity: 1;
    transform: translateY(0); /* Возвращаем в исходное положение */
    display: block; /* Показываем шаг */
}
.installment__step_two{
    max-width: 740px;width:100%;
}
.installment__form.installment__form_two_column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.step {
    position: relative;
    z-index: 1;
}

.step::after {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background-color: #E6E6E6;
    border-radius: 50%;
    margin: 5px auto 0;
    transition: all 1.3s ease 0s;
}
.step.proccessed::after {
    background-color: #fff;
    box-shadow: 0 0 0 1px var(--accent) inset;
}
.step.active::after {
    background-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent) inset;
}
.step.active,.step.proccessed {
   
   color: var(--accent);
}
.installment__progress::before, .partnership__progress::before {
    content: '';
    position: absolute;
    left: 27px;
    right: 29px;
    height: 2px;
    background-color: #E6E6E6;
    z-index: 0;
    transform: translateY(-50%);
    bottom: 5px;
}

.step:nth-child(1)::before,
.step:nth-child(2)::before,
.step:nth-child(3)::before {
    top: 46%;
    content: '';
    position: absolute;
    left: 30px;
    height: 2px;
    width:0;
    background-color: #0a5ec4;
    z-index: 0;
    transform: translateY(13px); 
    transition: all 1.3s ease 0s;
    
}

.step.active:nth-child(1)::before{
    left: 27px;
    width: 135px;
}

.step.active:nth-child(2)::before {
    left: 31px;
    width: 132px;
}

.step:nth-child(3)::before {
    left: auto;
    right: 0;
}

.installment__field select {
    height: 54px;
    outline: none;
    font-size: 16px;
    line-height: 1.5;
    width: 100%;
    padding: 15px;
    border: 1.5px solid #e6e6e6;
    border-radius: 10px;
    transition: border .3s ease-in-out;
    appearance: none; /* Remove default arrow */
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path fill="%23B3B3B3" d="M2 4l4 4 4-4H2z"/></svg>') no-repeat right 15px center;
    background-size: 12px;
    cursor: pointer;
}

.installment__field select option:disabled{
    color: #b3b3b3 !important;
}


.installment__field select[value="0"]{
    position: absolute;
    top: 10px;
    left: 10px;
    line-height: 1.5;
    color: #b3b3b3;
    pointer-events: none;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 16px;
    transition-duration: .15s;
    padding: 5px;
}
.other_doc_add{
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: #0A5EC4;
    border-bottom: 1.5px dashed #0A5EC4;
    display: inline-flex;
    width: fit-content;
}
@media (max-width: 29.99875em) {
    .installment__form.installment__form_two_column {

        grid-template-columns: 1fr;
        gap: 10px;
    }
}



/*Детализация договора*/

/* Устанавливаем минимальную высоту секции на весь экран */
.checkcontact {
    display: flex;
    flex-direction: column;
}

/* Контейнер для управления расположением */
.checkcontact .container {
    display: flex;
    flex-direction: column;
}

/* Колонка для содержимого */
.checkcontact-column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Шапка с небольшим отступом сверху */
.checkcontact-header {
    width: 100%;
    padding: 20px 0; /* Небольшой отступ сверху и снизу */
    text-align: center;
    margin-top: 20px;
    position: relative;
}
.checkcontact-header_logo_img a {
    display: block;
    overflow: hidden;
}
/* Центрирование wrapper по вертикали и горизонтали */
.checkcontact-page__wrapper {
    max-width: 370px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    /* Убираем 100% высоту, чтобы позволить центрирование */
    height: auto; /* Высота по содержимому */
    display: flex;    
    flex-direction: column;
    justify-content: center; /* Центрирование содержимого по вертикали */
    flex-grow: 1; /* Занимает доступное пространство */
}

/* Футер прижат к низу */
.checkcontact-footer,.checkcontact-data-footer {
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 130%;
    color: #000000;
    text-align: center;
    padding: 0 0 30px;
    width: 100%;
}

/* Существующие стили для логотипа */
.checkcontact-header_logo {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.checkcontact-header_logo_separate {
    width: 1px;
    height: 33px;
    background-color: #B3B3B3;
}

/* Существующие стили заголовка */
.checkcontact_title {
    font-weight: 700;
    font-size: 22px;
    line-height: 133%;
    text-align: center;
    color: #1A1A1A;
}


.checkcontact-data-header {
    background: #FFFFFF;
    box-shadow: 0px 4px 100px rgba(2, 35, 77, 0.1);
}
.checkcontact-data-header_logo{
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: flex-end;
    position: relative;
    margin-bottom: 15px;
}
/*.checkcontact-data-header_logo .logout{
    position: absolute;
    right: 0;
    top: 50%;
    font-size: 14px;
    opacity: 0.5;
    margin-top: -9px;
}*/
.checkcontact-data-header_logo_separate {
    width: 1px;
    height: 33px;
    background-color: #B3B3B3;
}


.checkcontact-data-page__wrapper_meta_fields {
    background: #F3F3F3;
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.checkcontact-data-page__wrapper {
    padding: 15px 0 40px;
}


.checkcontact-data-page__wrapper_meta_table {
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #E6E6E6;
}

.checkcontact-data-page__wrapper_meta_field {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: #808080;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

span.checkcontact-data-page__wrapper_meta_fields_value {
    color: #1A1A1A;
    font-weight: 500;
    display: flex;
    flex-direction: row;
    gap: 3px;
}

.checkcontact-data-page__wrapper_meta_title {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #CCCCCC;
}

span.checkcontact-data-page__wrapper_meta_title_number {
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    line-height: 133%;
 color: #1A1A1A;
    flex: none;
    order: 0;
    flex-grow: 0;
}

span.checkcontact-data-page__wrapper_meta_title_total {
    display: flex;
    flex-direction: row;
    gap: 8px;
    color: #808080;
    align-items: center;
}

span.checkcontact-data-page__wrapper_meta_title_total span {
    display: flex;
    flex-direction: row;
    gap: 3px;
    font-weight: 700;
    color: #1A1A1A;
    font-size: 18px;
}
.checkcontact-data .currency{
    font-style: normal;
}

.checkcontact-data-page__wrapper_table {
    padding: 0 40px 0;
    overflow-x: auto;
}

.checkcontact-data-page__wrapper_table table, .checkcontact-data-page__wrapper_table td,.checkcontact-data-page__wrapper_table th {
    border: none;
    padding: 0;
}
.checkcontact-data-page__wrapper_table_header{
    padding: 35px 40px 0;
}
.checkcontact-data-page__wrapper_table_header h3 {/* История платежей */
    

/* Norms/H4 */
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 135%;
/* or 24px */
    

/* Gray/Gray 900 */
    color: #1A1A1A;


/* Inside auto layout */
}

.checkcontact-data-page__wrapper_table th {/* ДАТА СОБЫТИЯ */
    

/* Norms/Caption */
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 130%;
/* identical to box height, or 16px */
    

/* Gray/Gray 500 */
    color: #808080;


/* Inside auto layout */
    text-transform: uppercase;
}

.checkcontact-data-page__wrapper_table th:first-child {
    width: 11%;
}

.checkcontact-data-page__wrapper_table th,.checkcontact-data-page__wrapper_table td {
    padding: 25px 0;
}

.checkcontact-data-page__wrapper_table table {
    border-collapse: collapse; /* Убираем стандартные промежутки */
}

.checkcontact-data-page__wrapper_table td:not(:last-child), .checkcontact-data-page__wrapper_table th:not(:last-child) {
    padding-right: 15px; /* Расстояние между соседними ячейками по горизонтали */
}

.checkcontact-data-page__wrapper_table td {
    font-style: normal;
    font-size: 12px;
    line-height: 130%;
    color: #1A1A1A;
    font-weight: 400;
}

.checkcontact-data-page__wrapper_table tr {
    border-top: 1px solid #E6E6E6;
}

.checkcontact-data-page__wrapper_table thead tr:first-child {
    border: none;
}

.checkcontact-data-page__wrapper_table td.status span
 {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 3px 8px;
    border-radius: 12px;
    width: min-content;
    text-align: center;
    color:#0A5EC4;
    background: #E6F1FF;
    white-space: nowrap;
}
.checkcontact-data-page__wrapper_table td.status-paid-late span
 {
   color:#C40ABD;
    background: #FFE6FF;
    white-space: normal;
   
}
.checkcontact-data-page__wrapper_table td.status-overdue span{
    color:#FF3333;
    background:  #FFEBEB;
}
.checkcontact-data-page__wrapper_table td.status-paid span{
    color:#0FBA68;
    background:  #E6FFE8;
}
.pay-link span{
    color:#B3B3B3;
    border-bottom:1px dashed #B3B3B3; 
}
.pay-link a{
    color:#0A5EC4;
    border-bottom:1px dashed #0A5EC4;
}
div#search-result {
    margin-top: 23px;
    font-size: 14px;
    text-align: center;
}
div#search-result a {
    color:#0a5ec4;
    text-decoration: underline;
}


.checkcontact-data-page__wrapper_table_footer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
    padding: 17px 20px;
    border-radius: 15px;
    background-color: #F3F3F3;
    justify-content: space-between;
    margin: 15px 30px 15px;
}

.checkcontact-data-page__wrapper_table_footer .btn{
    font-size: 14px;
    padding: 11px 22px;
    height: 40px;
}
.checkcontact-data-page__wrapper_table_footer_left_items {
    display: flex;
    flex-direction: row;
    gap: 40px;
}

.checkcontact-data-page__wrapper_table_footer_left_item {/* Общая сумма */

    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    color: #808080;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.checkcontact-data-page__wrapper_table_footer_left_item span + span {
    font-size: 16px;
    font-weight: 500;
    color: #1A1A1A;
}
.modal-contract {
    width: 550px;
    padding: 40px;
}
.modal-contract a.btn {
    width: 100%;
}
.modal__nav {
    display: flex;
    flex-direction: row;
    gap: 15px;
    margin-bottom: 15px;
    margin-top: 15px;
}
.modal__nav a {
    cursor: pointer;
    text-decoration: none;
    padding: 8px 0;
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    color: #999999;
}

.modal__nav a.active {
    border-bottom: 2px solid #0A5EC4;
    color: #1A1A1A;
}

.modal__tab {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
.modal__text {
    font-size: 16px;line-height: 1.5;
}
.modal__text p {
    margin-bottom: 8px;
    display: block;
}
#modal-not-found.modal-thank {
    width: 470px;
}
.section-calc__info-total{
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    min-height: 30px;
}
.cart-page__installment-info-value {
    display: flex;
    align-items: center;
    gap: 10px;
}
.section-calc__info-total button{
    background: rgb(192 218 249);
    width: 30px;
    height: 30px;
    display: inline-flex;
    justify-content: center;
    border-radius: 5px;
    font-size: 25px;
    line-height: 27px;
}
.cart-page__installment-info-value button{
    background: rgb(192 218 249);
    width: 30px;
    height: 30px;
    display: inline-flex;
    justify-content: center;
    border-radius: 5px;
    font-size: 25px;
    line-height: 27px;
}
@media (max-width: 29.99875em) {
    .installment__field-placeholder,.installment__field select {
        font-size:12px;
        top: 17px
    }
    .installment__field-placeholder {
        left: 15px;
    }
    .installment__progress {
        margin: 25px auto;
    }
    .installment__field label.file-upload {
        padding: 15px 15px 15px 15px;
    }
    span.success-icon img , .upload-icon img{
        width: 25px;
    }
    .installment__field span.upload-icon, .success-icon{
        gap:10px;
    }
    .installment__field span.success-icon a {
        font-size: 12px;
    }
    .installment__field label.file-upload .installment__field-placeholder {
        font-size: 12px;
    }
    .installment__header_caption-post-data {
        margin-top: 10px;
        gap: 10px;
        font-size: 14px;
    }
    .installment__progress {

        font-size: 14px;
    }
    .checkcontact-data-page__wrapper {
        padding: 15px 0;
    }
    .checkcontact-data-page__wrapper_meta_title {
        flex-direction: column;
       gap:15px;
    }
    .checkcontact-data-page__wrapper_meta_fields {
        padding: 15px 15px;
    }
    .checkcontact-data-page__wrapper_table {
        padding: 29px 15px 15px;
    }
    .checkcontact-data-page__wrapper_table th, .checkcontact-data-page__wrapper_table td {
        padding: 8px 0;
    }
    .checkcontact-data-page__wrapper_table th {
        min-width: 125px;
    }
    .checkcontact-data-page__wrapper_table th:last-child {
        min-width: 0;
    }
    .checkcontact-data-page__wrapper_table th:nth-child(5) {
        min-width: 220px;
    }
    
   
    
    .checkcontact-data-page__wrapper_table_header img {
        display: block !important;
        width: 76px;
        position: absolute;
        top: 22px;
        right: 24px;
    }
    .checkcontact-data-page__wrapper_table_footer_left_items {
        gap: 10px;
    }
    .checkcontact-data-page__wrapper_table_footer {
        flex-direction: column;
        flex-wrap: wrap;
        gap: 15px;
        padding: 17px 15px;
        margin: 15px 0 0;
        border-radius: 0 0 15px 15px;
    }
    .checkcontact-data-page__wrapper_table_footer_right {
        display: flex ;
        justify-content: flex-end;
        width: 100%;
    }
    .modal__text p.modal__caption{
        font-size: 12px;
        color:#808080;
        margin-top: 20px;
    }
    .modal-contract.fancybox-content {
        padding: 20px;
    }
    .modal-contract .modal__text {
        font-size: 14px;
    }
    .modal__nav a {
        font-size: 14px;
    }
    .checkcontact-data-page__wrapper_table_footer_left_item span + span {
        font-size: 14px;
    }
    .checkcontact {
        /*min-height: calc(100vh - 50px);*/
    }
    .checkcontact-footer{
        padding: 0 0 15px;
    }
    .checkcontact-data-page__wrapper_table_header-wr {
        position: relative;
        z-index: 5;
    }

}

/* Эффект вибрации */
@keyframes vibrate {
    0% { transform: translateX(0); }
    20% { transform: translateX(-15px); }
    40% { transform: translateX(15px); }
    60% { transform: translateX(0); }
    80% { transform: translateX(0); }
    100% { transform: translateX(0); }
}

.vibrate {
    animation: vibrate 1s linear;
}

.partnership__step {
    row-gap: clamp(.625rem, .3897058824rem + 1.1764705882vw, 1.25rem);
    flex-direction: column;
    display: flex;
}
#modal-partnership .step.active:nth-child(1)::before
 {
    width: 95px;
}

#modal-partnership .step:nth-child(1)::before, #modal-partnership .step:nth-child(2)::before, #modal-partnership .step:nth-child(3)::before {
    top: 52%;
}
div#partnership_photo_div {
    position: relative;
}

.modal__field-radio {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
}

.modal__field-radio input {
    width: 20px;
    height: 20px;
}

.sale_action_modal__field.modal__field {
    height: 70px;
}

.sale_action_modal__field span.modal__field-placeholder {
    position: static;
    font-size: 14px;
    display: block;
    padding: 0;
    margin-bottom: 15px;
}
.pay_modal__field.modal__field .modal__field-placeholder {
    position: static;
    padding: 0;
    font-size: 14px;
    margin-bottom: 15px;
}
.pay_modal__field.modal__field select {
    font-size: 16px;
    line-height: 1.5;
    width: 100%;
    padding: 15px;
    border: 1.5px solid #e6e6e6;
    border-radius: 10px;
    outline: none;
}
.modal__field textarea::placeholder {
    font-size: 14px;
}

.modal__field textarea::-webkit-input-placeholder {
    font-size: 14px;
}

.modal__field textarea::-moz-placeholder {
    font-size: 14px;
}

.modal__field textarea:-ms-input-placeholder {
    font-size: 14px;
}
.modal-partnership{
    width: 560px;
}
#modal-partnership .modal__field-placeholder{
    display: block;
    font-size: 14px;
}
/* Обёртка для select */
.modal__field.select-wrapper {
    position: relative;
    width: 100%;
}

/* Стили для select */
.modal__field select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    padding: 10px 30px 10px 10px; /* Пространство для стрелки */
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    cursor: pointer;
    outline: none;
}

/* Кастомная SVG-стрелка */
.modal__field.select-wrapper::after {
    content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="8" viewBox="0 0 12 8"><path fill="none" stroke="%23B3B3B3" stroke-width="2" stroke-linecap="round" d="M1 1l5 5 5-5"/></svg>');
    position: absolute;
    top: 69%;
    right: 20px;
    transform: translateY(-50%);
    pointer-events: none;
}

/* Стили для placeholder */
.modal__field select:invalid {
    color: #999;
}

/* Для IE10+ */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .modal__field select::-ms-expand {
        display: none;
    }
}

/* Фокус и ховер */
.modal__field select:focus {
    outline: none;
    border-color: #0a5ec4;
    box-shadow: 0 0 5px rgba(10, 94, 196, 0.3);
}

/* Анимация стрелки при открытии */
.modal__field.select-wrapper.select-open::after {
    transform: translateY(-50%) rotate(180deg);
}
.error-input, #modal-partnership .error-input .file-upload, #modal-partnership .error-input select, #modal-partnership .error-input input, #modal-partnership .error-input textarea{
    border-color:#f33 !important;
    }

    .header-mobile-menu {
        position: fixed;
        top: 50px;
        left: -280px;
        width: 280px;
        height: auto; padding: 30px 0;
        background: rgba(255, 255, 255, 0.93);
        transition: left 0.3s ease-in-out;
        z-index: 1000;
        
    }
    span.header-mobile-menu_close {
        position: absolute;
        top: 20px;
        right: 25px;
    }
    .header-mobile-menu li a {
        font-size: 16px;
        color: #000000;
        display: block;
        padding: 10px 25px;
        font-weight: 600;
    }
    ul.header_mobile-menu-ul {
       
    }
    .header-mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(26, 26, 26, 0);
        transition: all 0.3s ease-in-out;
        z-index: 999;
       opacity: 0;
       visibility: hidden;
       background: rgba(26, 26, 26, 0.4);
    }
    
    .header-mobile-menu.active {
        left: 0;
      
    }
    
    .header-mobile-overlay.active {
        opacity: 1;
       visibility: visible;
       
    }
    a.partner__logo {
        height: 100%;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

/* Кнопки изменения ежемесячного платежа в калькуляторе */
.section-calc__payment-btn {
    /* фон кнопок калькулятора */
    background: rgb(192 218 249);
    transition: background-color 0.2s ease, color 0.2s ease;
}

.section-calc__payment-btn:hover {
    background-color: var(--accent);
    color: #fff;
}

/* Ежемесячный платеж в одну строку */
#monthly-payment {
    white-space: nowrap;
    padding-left: 40px;
    padding-right: 40px;
    min-width: 270px;
    text-align: center;
}

#monthly-payment-minus {
    position: absolute;
    left: 0;
}

#monthly-payment-plus {
    position: absolute;
    right: 0;
}

.section-calc__body,
.section-calc__info {
    align-self: flex-start;
}

.section-calc__info-orders {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn.section-calc__info-order--express {
    display: none !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
    padding: 9px 28px;
    height: 60px;
}

.section-calc__info-order--express.is-visible {
    display: flex !important;
}

.section-calc__info-order-title {
    display: block;
    font-weight: inherit;
    line-height: 1.25;
}

.section-calc__info-order-note {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.2;
}

.section-calc__info-order-note svg {
    flex-shrink: 0;
}
span#cart-monthly-payment {
    min-width: 125px;
    text-align: center;
}
    @media (max-width: 29.9988em) {
        .partnership__field-placeholder.modal__field-placeholder {
            font-size: 13px;
            top: 10px;
        }
        .partnership__step {
            row-gap: clamp(1rem, .3897058824rem + 1.1764705882vw, 1.35rem);
        }
        #modal-partnership button.f-button.is-close-btn {
            top: 5px;
            right: 5px;
        }
        .product-page__order{
            width: 100%;
        }
        .product-page__order-btns-add.btn {
            font-size: 17px;
            width: auto;
            padding: 0 15px;
            gap: 8px;
        }
        .modal__field input:focus+.modal__field-placeholder{
            white-space: nowrap;
        }
        .sale_action_modal__field.modal__field{
            margin-bottom: 30px;
        }
        .banks_action_modal__field.modal__field textarea:focus+.modal__field-placeholder,  .banks_action_modal__field.modal__field textarea:not(:placeholder-shown)+.modal__field-placeholder{
            line-height: 1.2;
            top:-30px;
        }
        .partner {
            height: auto;
            padding: 15px;
        }
        .partner a {
            height: 100%;
            width: 100%;
        }
        .partner__logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            width: 100%;
            height: 100%;
        }
        .section-calc__info {
         
            margin: 0 auto;
        }
    }

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: #FFFFFF;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-consent__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-consent__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-consent__text {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: #1A1A1A;
    flex: 1;
    min-width: 280px;
}

.cookie-consent__link {
    color: #0A5EC4;
    text-decoration: underline;
    transition: opacity 0.2s ease;
}

.cookie-consent__link:hover {
    opacity: 0.8;
}

.cookie-consent__buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-consent__btn {
    padding: 12px 24px;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.cookie-consent__btn--accept {
    background: #0A5EC4;
    color: #FFFFFF;
}

.cookie-consent__btn--accept:hover {
    background: #074FA8;
}

@media (max-width: 29.9988em) {
    .cookie-consent {
        padding: 15px 0;
    }
    
    .cookie-consent__container {
        padding: 0 15px;
    }
    
    .cookie-consent__content {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .cookie-consent__text {
        font-size: 13px;
        min-width: auto;
    }
    
    .cookie-consent__buttons {
        width: 100%;
    }
    
    .cookie-consent__btn {
        width: 100%;
        padding: 14px 24px;
    }
}

    