/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Oct 31 2025 | 14:41:41 */
/* Общие стили для отключения outline */
:active, :hover, :focus, input {
    outline: 0;
    outline-offset: 0;
}

/* Отключение выделения текста для всех элементов 
* {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}*/

/* Отключение подтягивания номеров телефонов на числовых полях для iPhone */
body {
    font-feature-settings: 'pnum' on, 'lnum' on;
}

/* CSS-переменные */
:root {

}

/* Преимущества на главном экране */
@media (min-width: 768px) {
  .main-feats-list .main-feat-text:not(:last-child) {
    border-right: 1px solid #ECECEB30;
  }
}

/* Оформление слайдера в блоке "О пректе" */
.w-slider-dot.w-active {
	background: var(--accent-main) !important;
    width: 14px !important;
    height: 8px !important;
    transition: all .5s cubic-bezier(1, 0, 0, 1);
}
.w-slider-nav.w-round>div {
    width: 8px;
    height: 8px;
	margin: 0 3px!important;
    background: var(--secondary-text);
	border-radius: 3px;
	border: none;
}

.wpcf7 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.wpcf7-form-control-wrap {
    display: block;
    margin-bottom: 10px;/* Правильный отступ между полями и ошибками!!! */
	width: 100%;
}
.wpcf7 .form-field,
.wpcf7 select{
	width: 100%;
	background: transparent;
	color: var(--black);
	border-radius: 0px;
	border: 1px solid var(--secondary-text);
	padding: 10px;
	margin: 0px;
	font-size: 14px;
}
.wpcf7 .form-field:focus {
	border: 1px solid var(--accent-main);
}
/* Standard */
.wpcf7 .form-field::placeholder {
    color: secondary-text;
}
/* Firefox 18-50 */
.wpcf7 .form-field::-moz-placeholder {
    color: #A4A4A4;
}
/* Internet Explorer 10-11 */
.wpcf7 .form-field:-ms-input-placeholder {
    color: #A4A4A4;
}
/* Microsoft Edge Legacy (EdgeHTML) */
.wpcf7 .form-field::-ms-input-placeholder {
    color: #A4A4A4;
}
.wpcf7 label {
	font-weight: 400;
	font-size: 14px;
	margin-right: 15px;
	margin-bottom: 0px;
	color: var(--black);
}
.wpcf7 label a {
	color: var(--primary-black);
}
.wpcf7 .form-btn {
	background: var(--accent-main);
	color: var(--primary-black);
	font-weight: 600;
	padding: 12px 55px;
	border-radius: 50px;
	border: none;
	transition: all 0.5s cubic-bezier(.77, 0, .175, 1);
	cursor: pointer;
}
.wpcf7 .form-btn:hover {
	background: #f1cd4d;
}
wpcf7 .wpcf7-not-valid-tip {
	margin-left: 10px;
	font-size: 14px;
	color: var(--red);
}
/* Уведомления об ошибках */
.wpcf7 .wpcf7-not-valid-tip {
	display: inline;
	margin-left: 7px;
	padding: 2px 5px;
	font-size: 14px;
	color: #ff0000;
}
/* Общий стиль для всех сообщений */
.wpcf7-response-output {
    padding: 15px;
    margin: 20px 0;
    border-radius: 0px;
    font-weight: 500;
    text-align: center;
	font-size: 14px;
}
/* Успешная отправка — зелёный фон */
.wpcf7-response-output.wpcf7-mail-sent-ok {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
/* Ошибки — красный фон */
.wpcf7-response-output.wpcf7-mail-sent-ng,
.wpcf7-response-output.wpcf7-validation-errors {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
/* Спам — серый */
.wpcf7-response-output.wpcf7-spam-blocked {
    background-color: #e2e3e5;
    color: #383d41;
    border: 1px solid #d6d8db;
}
/* phone coutry list */
.iti.iti--allow-dropdown {
	width: 100%;
}
.iti__selected-flag {
	padding: 10px !important;
}
.iti__flag {
	margin-right: 5px !important;
}
.iti__flag-container:hover {
	background: var(--secondary-light-yellow);
}
.iti__country {
    padding: 2px 0 !important;
}
.iti__country-list {
	padding: 10px !important;
}
.iti__flag-box, .iti__country-name {
    margin-right: 5px !important;
	font-size: 14px;
}
.wpcf7 .iti__selected-flag::after{
	content: '*';
	position: absolute;
	right: 15px;
	top: 0px;
	opacity: .7;
	font-size: 14px;
}

 /* Анимация тултипа в прайсе */
.price-info-tooltip {
	display: none;
	opacity: 0;
    inset: auto 30px 30px auto;
	transition: all .5s cubic-bezier(1, 0, 0, 1); 
}
.price-info-tooltip.visible {
	opacity: 1;
  	display: block;
}


/* Общие стили слайдера */
.blocks {
	overflow: hidden;
}
.swiper {
    overflow: visible;
}
.price-time-wrap {
    align-items: flex-start;
}
.swiper-pagination {
	bottom: -30px!important;
}
.swiper-pagination .swiper-pagination-bullet{
	width: 8px;
    height: 8px;
	margin: 0 3px!important;
    background: #B3B2B2;
	border-radius: 3px;
	border: none;
}
.swiper-pagination .swiper-pagination-bullet-active {
	background: var(--accent-main) !important;
    width: 14px !important;
    height: 8px !important;
    transition: all .5s cubic-bezier(1, 0, 0, 1);
}
/* стили слайдера с галереей */
.swiper.gallery{
	/* отступы чтобы не обрезался масштабируемый слайд */
	padding: 40px 0;
}

.swiper.gallery .swiper-slide{
	opacity:0.46; 
	transition: 0.2s ease-out;
	transition-property:opacity, transform;
	max-width: 33.3333%;
	aspect-ratio: 4/3;
}

.swiper.gallery .swiper-slide.swiper-slide-active{
	/* стили для центрального слайда */
	transform-origin:center;
	opacity:1;
	transform: scale(1.244);
	z-index:1;
}

.swiper.gallery .gallery-photo{
    height: 100%;
	min-height:0;
}

.swiper.gallery .gallery-swiper-nav{
	position: absolute;
    top: 50%;
    z-index: 1;
    transform: translateY(-50%);
	/* растягиваем положение на всю ширину слайдера */
    left: 0;
    right: 0;
	/* расчет ширины контейнера с кнопками: вся ширина - 2 ширины слайда + размер увеличеного слайда (24% от 33.3333%) + ширина двух кнопок */
    width: calc(100% - 66.6666% + ((33.3333% / 100) * 24.4) + 120px);
    justify-content: space-between;
    margin: 0 auto;
	/* делаем сам контейнер не кликабельным, чтобы он не мешал прокрутке перетаскиванием */
	pointer-events: none;
}

.swiper.gallery .gallery-swiper-nav .for-gall-prev, 
.swiper.gallery .gallery-swiper-nav .for-gall-next{
	/* стили кнопки делаем кликабельными */
	pointer-events: all;
} 

@media (max-width: 767px){
	.swiper.gallery{
		padding:0;
		width:100vw;
		transform: translate3d(-50%, 0, 0);
		margin-left: 50%;
	}
	
	.swiper.gallery .gallery-swiper-nav{
		display:none;
	}
	
	.swiper.gallery .swiper-slide{
		max-width: none;
		opacity:1;
	}
	
	
	.swiper.gallery .swiper-slide.swiper-slide-active{
		transform: none;
		z-index:1;
	}
}

/* конец стилей слайдера с галереей */

