#kolauto-slider-wrapper {
    width: 100%;
    background: #f2f1f5;
    overflow: hidden;
}

.kolauto-slider {
    width: 100%;
    overflow: visible; 
}

.kolauto-slider .swiper-button-prev,
.kolauto-slider .swiper-button-next {
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.8); 
    border-radius: 50%;
    color: #273d9e !important;
    z-index: 10;
    margin: 0; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.kolauto-slider .swiper-button-prev:after,
.kolauto-slider .swiper-button-next:after {
    font-size: 18px;
    font-weight: bold;
}

.kolauto-slider .swiper-button-prev { left: calc(20% - 60px); }
.kolauto-slider .swiper-button-next { right: calc(20% - 60px); }

.kolauto-slider .swiper-button-prev:hover,
.kolauto-slider .swiper-button-next:hover {
    background: #273d9e;
    color: #fff !important;
}

.kolauto-slider .swiper-slide {
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.kolauto-slide {
    width: 100%;

    aspect-ratio: var(--slider-ratio, 16 / 9); 
    
    border-radius: 20px;
    background-size: contain; 
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    opacity: 0.35;
    transform: scale(0.85);
    filter: blur(3px);
    will-change: transform, opacity;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.6s ease, 
                filter 0.6s ease;
}

.swiper-slide-active .kolauto-slide {
    opacity: 1;
    transform: scale(1);
    filter: blur(0px);
}

.kolauto-btn {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: #273d9e;
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    z-index: 2;
    transition: background 0.3s;
}

.kolauto-btn:hover {
    background: #1e2f7a;
}

.swiper-button-next, .swiper-button-prev { color: #000; }
.swiper-pagination { position: relative !important; margin-top: 25px; }
.swiper-pagination-bullet-active { background: #4e5bd9; }

@media (max-width: 768px) {
    .kolauto-slider .swiper-button-prev { left: 10px; }
    .kolauto-slider .swiper-button-next { right: 10px; }
    
    .kolauto-slider .swiper-slide { width: 85%; }

    .kolauto-slide {
        opacity: 0.5;
        transform: scale(0.9);
        filter: blur(0px); 
    }
	
.kolauto-btn {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: #273d9e;
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    z-index: 2;
    transition: background 0.3s;
}	
	
	
.kolauto-slider .swiper-button-prev, .kolauto-slider .swiper-button-next {
    top: 45%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    color: #273d9e !important;
    z-index: 10;
    margin: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}	
	
	
}

/* Модалка */
/* Общий контейнер модалки */
.kolauto-modal {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
}

.kolauto-modal.is-active {
    display: flex !important;
}

/* Контентная область */
.kolauto-modal-content {
    background: #ffffff !important;
    padding: 50px 40px 40px !important;
    border-radius: 30px !important;
    width: 95% !important;
    max-width: 500px !important;
    position: relative !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3) !important;
    text-align: center !important;
}

/* Кнопка закрытия */
.kolauto-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 28px;
    cursor: pointer;
    color: #333 !important;
    opacity: 0.5;
    transition: 0.3s;
}

.kolauto-close:hover {
    opacity: 1;
}

/* Заголовки */
.kolauto-modal-content h2 {
    color: #002c5f !important;
    font-size: 26px !important;
    font-weight: 700 !important;
    margin: 0 0 10px !important;
    font-family: sans-serif !important;
}

.kolauto-modal-content p {
    color: #666 !important;
    font-size: 15px !important;
    line-height: 1.4 !important;
    margin-bottom: 30px !important;
}

/* Поля формы */
.kolauto-field {
    margin-bottom: 25px !important;
}

.kolauto-field label {
    display: block !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #999 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    margin-bottom: 5px !important;
}

/* Инпуты и селекты */
.kolauto-modal-content input[type="text"],
.kolauto-modal-content input[type="tel"],
.kolauto-modal-content select {
    width: 100% !important;
    border: none !important;
    border-bottom: 2px solid #eee !important;
    border-radius: 0 !important;
    padding: 10px !important;
    font-size: 16px !important;
    color: #333 !important;
    text-align: center !important;
    background: transparent !important;
    outline: none !important;
    transition: border-color 0.3s !important;
}

.kolauto-modal-content input:focus,
.kolauto-modal-content select:focus {
    border-bottom-color: #002c5f !important;
}

/* Кнопка "Отправить заявку" */
.kolauto-submit {
    background: #004a99 !important; /* Насыщенный синий */
    color: #ffffff !important;
    width: 100% !important;
    padding: 18px !important;
    border: none !important;
    border-radius: 15px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    margin-top: 15px !important;
    transition: background 0.3s, transform 0.2s !important;
    box-shadow: 0 4px 15px rgba(0, 74, 153, 0.3) !important;
}

.kolauto-submit:hover {
    background: #003366 !important;
    transform: translateY(-2px) !important;
}

/* Ошибки валидации (текст "Важно заполнить") */
.wpcf7-not-valid-tip {
    color: #ff4d4d !important;
    font-size: 12px !important;
    margin-top: 5px !important;
    display: block !important;
}

.wpcf7-response-output {
    border: none !important;
    font-size: 14px !important;
    margin-top: 15px !important;
    padding: 10px !important;
    color: #333 !important;
}

.form-control {

	height: calc(2.5em + .75rem + 2px)!important; 
}
