

/* Start:/local/templates/utwood__main/components/bitrix/catalog/catalog/style.css?174057418710062*/
.catalog{
	.container{
		h1{
			@media screen and (max-width: 767px) {
				font-size: 1.875rem;
				line-height: 1.2em;
			}
		}
	}


	.catalog__content{
		flex: 1;
		@media screen and (max-width: 767px) {
			width: 100%;
		}
	}

	.catalog__sidebar {

		width: 18.38rem;
		height: fit-content;

		p, a, input {
			font-weight: 400;
		}

		.sidebar__title {
			font-size: 1.25rem;
			font-weight: 600;
			position: relative;
			cursor: pointer;
		}



		.sidebar__section-subtitle {
			font-size: 1.00rem;
			font-weight: 500;
			margin: 0;
			cursor: pointer;
			display: flex;
			justify-content: space-between;
			align-items: center;
		}




	}

	.filter {

		display: flex;
		flex-direction: column;
		gap: 1.12rem;
		background-color: #ffffff;
		border-radius: 0.62rem;
		width: 100%;
		box-sizing: border-box;
		padding: 1.25rem 1.25rem 1.88rem 1.25rem;
		box-shadow: 0.00rem 0.25rem 0.50rem 0.00rem #0000000F;

		.filter-section {
			display: flex;
			flex-direction: column;
			gap: 1.00rem;
		}

		.filter-section-content {
			margin-bottom: 0.75rem;
			display: flex;
			flex-direction: column;
			gap: 0.56rem;
		}

		.filter-section.collapsed .sidebar__section-subtitle::after {
			transform: rotate(-90deg);
		}

		.filter-section.collapsed .filter-section-content {
			display: none;
		}

		.subcats {
			padding-left: 0.25rem;

			p {
				display: flex;
				align-items: center;
				gap: 0.38rem;
			}

			p::before {
				content: '';
				width: 0.25rem;
				height: 0.25rem;
				border-radius: 50%;
				background-color: #E6E6E6;
			}
		}


		.filter__buttons {
			display: flex;
			flex-direction: column;
			gap: 1.25rem;

			#show-results {
				font-size: 1.00rem;
				font-weight: 600;
				line-height: 1.31rem;
				width: 100%;
				height: 3.06rem;
			}

			#clear-filters {
				display: flex;
				align-items: center;
				justify-content: center;
				gap: 0.31rem;
				color: #222222;
				text-decoration: underline;
				text-decoration-skip-ink: none;
			}
		}

		.price-range-container {
			position: relative;
			height: 2.50rem; /* Увеличиваем высоту для текста */
			display: flex;
			align-items: center; /* Выравнивание содержимого по вертикали */
			justify-content: space-between; /* Размещение меток текста по краям */
		}

		.range-label {
			position: absolute;
			bottom: 0;
			font-size: 0.62rem; /* Располагаем текст выше прогресс-бара */
			font-weight: 400;
			color: #999999;
		}

		.range-label-min {
			left: 0;
		}

		.range-label-max {
			right: 0;
		}

		input[type="range"] {
			position: absolute;
			width: 100%;
			-webkit-appearance: none; /* Убираем стандартный стиль для Webkit-браузеров */
			appearance: none;
			background: transparent; /* Убираем стандартный трек */
			pointer-events: none;
			z-index: 2;
			margin: 0;
			height: 0.12rem; /* Высота трека для невидимого слоя */
		}

		input[type="range"]::-webkit-slider-thumb {
			pointer-events: auto;
			width: 0.69rem; /* Ширина кружка */
			height: 0.69rem; /* Высота кружка */
			background: #52A957; /* Цвет кружка */
			border-radius: 50%; /* Делает его кругом */
			cursor: pointer;
			border: none;
			-webkit-appearance: none;
		}

		input[type="range"]::-moz-range-thumb {
			pointer-events: auto;
			width: 0.69rem;
			height: 0.69rem;
			background: #52A957;
			border-radius: 50%;
			cursor: pointer;
			border: none;
		}

		input[type="range"]::-ms-thumb {
			pointer-events: auto;
			width: 0.69rem;
			height: 0.69rem;
			background: #52A957;
			border-radius: 50%;
			cursor: pointer;
			border: none;
		}

		.range-progress {
			position: absolute;
			height: 0.12rem;
			top: 50%;
			left: 0;
			transform: translateY(-50%);
			background: #28a745;
			z-index: 1;
			border-radius: 0.06rem;
		}

		.price-range-container::before {
			content: "";
			position: absolute;
			height: 0.12rem;
			width: 100%;
			background: #E6E6E6; /* Задний фон полного диапазона */
			top: 50%;
			left: 0;
			transform: translateY(-50%);
			z-index: 0; /* Фон позади прогресс бара */
		}


		.price-values {
			display: flex;
			width: 100%;
			justify-content: space-between;
			align-items: center;

			input {
				width: calc((100% - 0.62rem) / 2);
				padding: 0.50rem 0.62rem;
				font-family: "Montserrat", sans-serif;
				color: #999999;
				font-size: 0.88rem;
				border: 0.06rem solid #E6E6E6;
				border-radius: 0.25rem;
				margin: 0;
				box-sizing: border-box;
			}
		}


		.price-values input::-webkit-inner-spin-button,
		.price-values input::-webkit-outer-spin-button {
			-webkit-appearance: none; /* Убираем стрелочки в Webkit браузерах */
			margin: 0;
		}


		/* Общий стиль для чекбоксов */

		.filter-section label {
			display: flex;
			align-items: center;
			cursor: pointer;
		}

		.filter-section input[type="checkbox"] {
			display: none; /* Скрываем стандартный чекбокс */
		}

		.filter-section label:before {
			content: "";
			box-sizing: border-box;
			width: 1.00rem;
			height: 1.00rem;
			background: #FFFFFF;
			border: 0.06rem solid #BDBEC0;
			border-radius: 0.12rem;
			display: inline-block;
			margin-right: 0.62rem;
			flex-shrink: 0;
		}

		.filter-section input[type="checkbox"]:checked + label:before {
			border-color: #52A957;
			background: #FFFFFF;
			display: flex;
			align-items: center;
			justify-content: center;
		}

		.filter-section input[type="checkbox"]:checked + label:before {
			content: "";
			background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 9' width='11' height='9'%3E%3Cpath d='M1 4.80625L3.81571 8L10 1' fill='none' stroke='%2352A957' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center center;
			background-size: 0.69rem 0.56rem;
		}
	}

	.filter.collapsed .sidebar__title::after {
		transform: translateY(-50%) rotate(-90deg);
	}

	.filter.collapsed{
		padding-bottom: 1.25rem;
		.filter__buttons{
			display: none;

		}
	}

	.filter.collapsed .filter-section {
		display: none;
	}

	.catalog__wrapper {
		margin-top: 1.88rem;
		display: flex;
		flex-direction: row;
		gap: 2rem;
	}

	.catalog__sidebar {
		display: flex;
		flex-direction: column;
		gap: 1.88rem;
	}

	.catalog__products {
		width: auto;
	}

	.products__sort {
		margin-bottom: 1.25rem;
		display: flex;
		height: fit-content;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		.custom-select {
			position: relative;
			width: fit-content;
			font-family: Arial, sans-serif;

			.select-button {
				gap: 0.5rem;
				height: 2.69rem;
				display: flex;
				justify-content: space-between;
				align-items: center;
				width: 100%;
				background-color: white;
				border: 0.06rem solid #ccc;
				padding: 0.62rem;
				text-align: left;
				cursor: pointer;
				border-radius: 0.25rem;
			}

			.select-label {
				font-size: 0.875rem;
				margin-right: auto;
				@media screen and (max-width: 767px) {
					font-size: 0.875rem;
				}
			}

			.select-dropdown {
				display: none;
				position: absolute;
				top: 100%;
				left: 0;
				right: 0;
				background-color: #fff;
				border: 0.06rem solid #ccc;
				border-radius: 0.25rem;
				z-index: 1000;
				margin-top: 0.31rem;
				list-style-type: none;
				padding: 0;
				box-shadow: 0 0.25rem 0.38rem rgba(0, 0, 0, 0.1);
			}

			.select-dropdown li {
				padding: 0.62rem;
				cursor: pointer;
				a{
					font-size: 0.875rem;
				}
			}

			.select-dropdown li:hover {
				background-color: #f0f0f0;
			}
		}
		@media screen and (min-width: 1200px) {
			.filter-show-btn{
				display: none;
			}
		}
		@media screen and (max-width: 1199px) {
			.filter-show-btn{
				display: flex;
			}
		}
		.filter-show-btn{

			gap: 0.62rem;
			align-items: center;
			padding: 0.69rem 1.00rem;
			border-radius: 0.25rem;
			border: 0.06rem solid #E6E6E6
		}



	}

	.products__wrapper {
		width: 100%;
		gap: 2.00rem;
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
	}

	.products__pageControls{
		width: 100%;
		display: flex;
		flex-direction: column;
		margin-top: 1.88rem;
		gap: 1.88rem;
		align-items: center;
	}

	.products__wrapper-moreBtn{
		width: 15.94rem;
		height: 3.19rem;
		font-size: 1.12rem;
		font-weight: 600;
	}





	@media screen and (max-width: 1200px) {
		.catalog__wrapper{
			width: 100%;
		}
		.catalog__products{

		}

	}
	@media screen and (max-width: 1200px) {
		.catalog__sidebar{
			height: fit-content;
			background-color: #fff;
			display: flex;
			transform: translateX(125%);
			transition: 0.5s ease-in-out;
			position: fixed;
			z-index: 690;
			right: 0;
			top: 0;
			box-shadow: 0px 4px 8px 0px #0000000F, 0px 0px 4px 0px #0000000A;
			gap: 0;



			.filter:first-child{
				display: none;
			}
			.filter:last-child{
				display: flex;
				box-shadow: none;
			}

		}
		.catalog__products{
			width: 100%;
			.product__preview{
				width: calc((100% - 2.50rem)/3);
			}
		}
		.products__wrapper{
			gap: 1.25rem;
		}
	}
	@media screen and (max-width: 767px){
		.catalog__sidebar{
			width: 100%;



		}
		.filter{
			padding: 1.25rem 0.94rem;
		}
		.catalog__products{
			width: 100%;
			.product__preview{
				width: calc((100% - 0.62rem)/2);
			}
		}
		.products__wrapper{
			gap: 0.62rem;
		}
	}

	.bx-pagination.bx-green{
		margin-top: 3rem;
		.bx-active{
			span{
				background: #52A957!important;
			}
		}
	}



	.catalog__sidebar{
		.filter-close-btn{
			display: none;
			@media screen and (max-width: 1199px){
				padding: 1.25rem 1.25rem 0;
				display: flex;
				flex-direction: row;
				justify-content: space-between;
				align-items: center;
				p{
					font-size: 1.125rem;
					line-height: 1.2em;
					font-weight: 600;
				}

				svg{
					width: 1rem;
					height: 1rem;
				}
			}
		}
	}

}
/* End */


/* Start:/local/templates/utwood__main/components/bitrix/catalog.element/bootstrap_v4/style.css?174799814121905*/
/* Base Styles */
body {
  font-size: 1rem;
}

.singleProduct h2 {
  font-size: 2.12rem;
  margin-bottom: 1.88rem !important;
}

.singleProduct .container h2 {
  font-size: 2.12rem;
}

.singleProduct .product h1 {
  font-size: 1.88rem;
  margin-bottom: 1.88rem;
  line-height: 2.25rem;
}

.singleProduct .product .product__wrapper {
  display: flex;
  flex-direction: row;
  gap: 2rem;
}

.singleProduct .product .product__info-block__art.mob {
  display: none;
  font-size: 0.88rem;
  font-weight: 400;
}

.singleProduct .product .product__image-gallery {
  width: 40.38rem;
}

.singleProduct .product .product__image-gallery .mainSlider {
  height: 35rem;
}

.singleProduct .product .product__image-gallery .mainSlider .swiper-wrapper {
  height: 100%;
}

.singleProduct .product .product__image-gallery .gallery-mainSlide {
  height: 100%;
  box-sizing: border-box;
  border: 0.06rem solid #e4e4e4;
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.singleProduct .product .product__image-gallery .gallery-mainSlide img {
  border-radius: 1.25rem;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.singleProduct .product .product__image-gallery .gallery-thumbSlide {
  border: 1px solid #e4e4e4;
}

.singleProduct .product .product__image-gallery .swiper-slide-thumb-active {
  border: 0.06rem solid #52a957;
}

.singleProduct .product .product__image-gallery .thumbsSlider {
  margin-left: 0;
  margin-right: 0;
}

.singleProduct .product .product__image-gallery .thumbsWrapper {
  margin-top: 0.88rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.62rem;
}

.singleProduct .product .product__image-gallery .thumbsWrapper .swiper-button-next,
.singleProduct .product .product__image-gallery .thumbsWrapper .swiper-button-prev {
  position: static;
  margin: 0;
  height: 1rem;
  transition: 1s ease-in-out;
}

.singleProduct .product .product__image-gallery .thumbsWrapper .gallery-thumbSlide {
  padding: 0.12rem;
  box-sizing: border-box;
  border-radius: 0.62rem;
  width: 5.75rem;
  height: 5rem;
}

.singleProduct .product .product__image-gallery .thumbsWrapper .gallery-thumbSlide img {
  border-radius: 0.62rem;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.singleProduct .product .product__info-block {
  display: flex;
  flex-direction: column;
  gap: 1.88rem;
  width: 32rem;
}

.singleProduct .product .product__info-block .product__info-block__art {
  font-size: 0.88rem;
  font-weight: 400;
}

.singleProduct .product .product__info-block .product__info-block__actions {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.singleProduct .product .product__info-block .info-block__actions-btns {
  display: flex;
  flex-direction: row;
  gap: 0.62rem;
  align-items: center;
}

.singleProduct .product .product__info-block #addToFav {
  cursor: pointer;
  border: 0.06rem solid #ebebeb;
  border-radius: 50%;
}

.singleProduct .product .product__info-block .info-block__actions-btn {
  min-width: 2.75rem;
  min-height: 2.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  position: relative;
}

.singleProduct .product .product__info-block .info-block__actions-btn svg {
  cursor: pointer;
  width: 2.75rem;
  height: 2.75rem;
}

.singleProduct .product .product__info-block .info-block__actions-btn #yaShare .ya-share2__list.ya-share2__list_direction_horizontal {
  display: flex;
  align-items: center;
}

.singleProduct .product .product__info-block .info-block__actions-btn #yaShare .ya-share2__list.ya-share2__list_direction_horizontal .ya-share2__badge {
  max-height: 24px;
}

.singleProduct .product .product__info-block .info-block__actions-reviews {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.singleProduct .product .product__info-block .info-block__actions-reviews a {
  text-decoration: underline;
  color: #666666;
  font-weight: 400;
}

.singleProduct .product .product__info-block .info-block__actions-reviews__stars {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.singleProduct .product .product__info-block .info-block__actions-reviews__stars p {
  font-weight: 400;
  color: #666666;
}

.singleProduct .product .product__info-block .product__info-block__desc p {
  margin-bottom: 0.62rem;
  font-weight: 400;
}

.singleProduct .product .product__info-block .product__info-block__desc a {
  text-decoration: underline;
  color: #666666;
  font-weight: 400;
  text-decoration-skip-ink: none;
}

.singleProduct .product .product__info-block .product__info-block__properties {
  display: flex;
  flex-direction: column;
  gap: 0.62rem;
}

.singleProduct .product .product__info-block .product__info-block__properties .product__properties-prop {
  width: 100%;
  display: flex;
  align-items: center;
}

.singleProduct .product .product__info-block .product__info-block__properties .product__properties-prop p {
  font-weight: 400;
}

.singleProduct .product .product__info-block .product__info-block__properties .product__properties-prop-name,
.singleProduct .product .product__info-block .product__info-block__properties .product__properties-prop-value {
  flex-shrink: 0;
}

.singleProduct .product .product__info-block .product__info-block__properties .product__properties-dots {
  flex-grow: 1;
  overflow: hidden;
}

.singleProduct .product .product__info-block .product__info-block__properties .product__properties-dots::before {
  color: #52a957;
  opacity: 0.6;
  content: "................................................................................................................................................................................................................................................................";
  display: inline-block;
  width: 100%;
  white-space: nowrap;
}

.singleProduct .product .product__info-block .product__info-block__properties .product__properties-title {
  font-weight: 500;
}

.singleProduct .product .product__info-block .product__info-block__properties .product__properties-prop-name {
  padding-right: 0.31rem;
}

.singleProduct .product .product__info-block .product__info-block__properties .product__properties-prop-value {
  padding-left: 0.31rem;
}

.singleProduct .product .product__buy-block {
  position: relative;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  width: 23.5rem;
  gap: 3.75rem;
  padding: 1.12rem 1.25rem 1.88rem 1.25rem;
  box-shadow: 0rem 0.25rem 0.5rem 0rem #0000000f;
  height: fit-content;
  overflow: hidden;
  border-radius: 0.62rem;
  -webkit-border-radius: 0.62rem;
  -moz-border-radius: 0.62rem;
  -ms-border-radius: 0.62rem;
  -o-border-radius: 0.62rem;
}

.singleProduct .product .product__buy-block-sale-percent {
  position: absolute;
  top: 1.12rem;
  right: 1.25rem;
  padding: 0.25rem 0.5rem;
	/* background-color: red; */
	color: #E40000;
	font-weight: 600;
	font-size: 0.75rem;
	border-radius: 0.3rem;
	border: solid 1px #E40000;
	width: fit-content;
	-webkit-border-radius: 0.3rem;
	-moz-border-radius: 0.3rem;
	-ms-border-radius: 0.3rem;
	-o-border-radius: 0.3rem;
}

.singleProduct .product .product__buy-block .buy-block__info {
  display: flex;
  flex-direction: column;
  position: relative;
}

.singleProduct .product .product__buy-block .buy__block__order-cart::after {
  content: "";
  width: 37.5rem;
  height: 0.06rem;
  background-color: #f0f0f0;
  position: absolute;
  transform: scaleX(800%);
  z-index: 50;
  bottom: -1.88rem;
}

.singleProduct .product .product__buy-block .buy-block__stock {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.88rem;
  font-weight: 400;
}

.singleProduct .product .product__buy-block .buy-block__stock::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #52a957;
  border-radius: 50%;
}

.singleProduct .product .product__buy-block .buy-block__stock.notAvailable::before {
  background-color: #e40000;
}

.singleProduct .product .product__buy-block .buy-block__prices {
  margin-top: 1.44rem;
  display: flex;
  align-items: flex-start;
  gap: 0.88rem;
}

.singleProduct .product .product__buy-block .buy-block__prices .buy-block__new-price {
  font-size: 1.88rem;
  font-weight: 600;
}

.singleProduct .product .product__buy-block .buy-block__prices .buy-block__old-price {
  font-weight: 400;
  text-decoration-line: line-through;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #666666;
}

.singleProduct .product .product__buy-block .buy__block__order-cart {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 0.62rem;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 1.88rem;
}

.singleProduct .product .product__buy-block .buy__block__order-cart .order-cart__counter,
.singleProduct .product .product__buy-block .buy__block__order-cart .button.green {
  width: calc((100% - 0.62rem) / 2);
}

.singleProduct .product .product__buy-block .buy__block__order-cart .order-cart__counter {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0 0.62rem;
  align-items: center;
  height: 3.44rem;
  box-sizing: border-box;
  border-radius: 0.25rem;
  border: 0.06rem solid #f0f0f0;
}

.singleProduct .product .product__buy-block .buy__block__order-cart .order-cart__counter input {
  border: none;
  outline: none;
  text-align: center;
  width: 3.125rem;
  font-size: 1rem;
}

.singleProduct .product .product__buy-block .buy__block__order-cart .button {
  height: 3.44rem;
  font-size: 1.12rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.singleProduct .product .product__buy-block .buy__block__order-cart .button.white {
  width: 100%;
  text-align: center;
  border: 0.06rem solid #52a957;
}

.singleProduct .product .product__buy-block .buy__block__order-cart span {
  font-size: 1.12rem;
  font-weight: 500;
}

.singleProduct .product .product__buy-block .buy__block__order {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.singleProduct .product .product__buy-block .buy__block__order .buy__block__order-delivery {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.singleProduct .product .product__buy-block .buy__block__order .buy__block__order-delivery .order-delivery-item {
  display: flex;
  align-items: flex-start;
  gap: 0.88rem;
}

.singleProduct .product .product__buy-block .buy__block__order .buy__block__order-delivery .order-delivery-item p {
  font-size: 0.88rem;
}

.singleProduct .product .product__buy-block .buy__block__order .buy__block__order-delivery .order-delivery-item span {
  font-weight: 400;
  color: #52a957;
}

.singleProduct .content {
  margin-top: 6.25rem;
}

.singleProduct .content .content__nav .content__nav__wrapper {
  display: flex;
  position: relative;
  align-items: center;
  margin-bottom: 1.88rem;
}

.singleProduct .content .content__nav a {
  position: relative;
  padding: 0 1.25rem 0.88rem 1.25rem;
  font-size: 1.12rem;
  font-weight: 500;
  color: #666666;
  width: fit-content;
}

.singleProduct .content .content__nav a.active-nav-link {
  font-weight: 600;
  color: #222222;
}

.singleProduct .content .content__nav a.active-nav-link::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 0.12rem;
  background-color: #52a957;
  bottom: 0;
  left: 0;
}

.singleProduct .content .content__nav__wrapper::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 0.06rem;
  background-color: #e4e4e4;
  bottom: 0;
  left: 0;
}

.singleProduct .content .content__desc p {
  font-size: 1.12rem;
  font-weight: 400;
}

.singleProduct .content .content__desc {
  margin-bottom: 6.88rem;
}

.singleProduct .content .content__reviews {
  margin-bottom: 6.88rem;
}

.singleProduct .content .content__reviews .content__review__wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 40.5rem;
}

.singleProduct .content .content__reviews .review__star-score {
  display: flex;
  gap: 0.88rem;
  align-items: center;
}

.singleProduct .content .content__reviews .review__star-score p {
  color: #666666;
}

.singleProduct .content .content__reviews .review__star-score .review__score-stars {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.singleProduct .content .content__reviews .review__star-score .score_stars-star {
  cursor: pointer;
}

.singleProduct .content .content__reviews .review__star-score .score_stars-star path {
  fill: #e5e5e5;
}

.singleProduct .content .content__reviews .review__star-score .score_stars-star.active path {
  fill: #ffa800;
}

.singleProduct .content .content__reviews .review__inputs {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.singleProduct .content .content__reviews .review__inputs textarea {
  resize: none;
}

.singleProduct .content .content__reviews .review__inputs input,
.singleProduct .content .content__reviews .review__inputs textarea {
  box-sizing: border-box;
  width: 100%;
  position: relative;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: #222222;
  border: 0.06rem solid #e6e6e6;
  outline: none;
  border-radius: 0.25rem;
}

.singleProduct .content .content__reviews .review__inputs input:focus,
.singleProduct .content .content__reviews .review__inputs textarea:focus {
  outline: 0.06rem solid #666666;
}

.singleProduct .content .content__reviews .review__inputs div {
  position: relative;
}

.singleProduct .content .content__reviews .review__inputs label {
  line-height: 1.5rem;
  position: absolute;
  left: 1rem;
  top: 1rem;
  color: #666666;
  font-weight: 500;
}

.singleProduct .content .content__reviews .review__inputs label span {
  color: #e40000;
}

.singleProduct .content .content__reviews .review__submit-zone {
  display: flex;
  flex-direction: row;
  gap: 1.25rem;
  align-items: center;
}

.singleProduct .content .content__reviews .review__submit-zone p {
  font-size: 0.88rem;
}

.singleProduct .content .content__reviews .review__submit-zone p a {
  text-decoration: underline;
  text-decoration-skip-ink: none;
}

.singleProduct .content .content__reviews .review__submit-zone button {
  width: 13.31rem;
  height: 2.81rem;
  font-size: 1rem;
  font-weight: 600;
}

.singleProduct .content .content__banner {
  justify-content: space-between;
  background-color: #52a957;
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  padding: 3.12rem 3.75rem;
  gap: 3.12rem;
}

.singleProduct .content .content__banner p {
  color: #ffffff;
}

.singleProduct .content .content__banner p:nth-child(1) {
  width: fit-content;
  font-size: 2.12rem;
  font-weight: 600;
}

.singleProduct .content .content__banner p:nth-child(2) {
  width: fit-content;
  font-size: 1.25rem;
}

.singleProduct .content .content__banner button {
  width: 15.75rem;
  height: 3.19rem;
  font-size: 1.12rem;
  font-weight: 600;
}

.singleProduct .moreProducts {
  margin-top: 6.25rem;
  margin-bottom: 6.25rem;
}

#addToFav.active {
  fill: #52a957;
}

.product__info-block__quantity {
  font-size: 16px;
  font-weight: 600;
  border: 0.06rem solid #52a957;
  padding: 10px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.product__info-block__quantity span {
  width: 8px;
  height: 8px;
  background-color: #52a957;
  border-radius: 50%;
}

.catalog__products {
  margin-top: 7.5rem;
}



/* Media Queries */
@media screen and (max-width: 1200px) {
  .singleProduct h1 {
    margin-bottom: 1.25rem;
  }

  .singleProduct .product .product__wrapper {
    flex-direction: column;
    gap: 1.25rem;
  }

  .singleProduct .product .product__info-block__art.mob {
    display: inline-block;
  }

  .singleProduct .product .product__image-gallery {
    width: 100%;
    display: flex;
    flex-direction: row;
    height: 32.94rem;
  }

  .singleProduct .product .product__image-gallery .mainSlider {
    width: 38.12rem;
    height: 100%;
  }

  .singleProduct .product .product__image-gallery .thumbsWrapper {
    margin: 0;
    flex-direction: column;
    width: 6.62rem;
    height: 100%;
  }

  .singleProduct .product .product__image-gallery .thumbsWrapper .thumbsSlider {
    width: 100%;
    height: 100%;
  }

  .singleProduct .product .product__image-gallery .thumbsWrapper .thumbsSlider .gallery-thumbSlide {
    width: 100%;
    max-height: 5.75rem;
  }

  .singleProduct .product .product__image-gallery .thumbsWrapper .swiper-button-next,
  .singleProduct .product .product__image-gallery .thumbsWrapper .swiper-button-prev {
    height: auto;
    transform: rotateZ(90deg);
  }

  .singleProduct .product .product__image-gallery .thumbsWrapper .gallery-thumbSlide {
    width: 100%;
    height: auto;
  }

  .singleProduct .product .product__info-block {
    width: 100%;
  }

  .singleProduct .product .product__info-block .product__info-block__art {
    display: none;
  }

  .singleProduct .product .product__buy-block {
    width: 100%;
    flex-direction: row;
    gap: 2.5rem;
    padding: 1.25rem;
  }

  .singleProduct .product .product__buy-block .buy-block__info {
    width: 24.56rem;
  }

  .singleProduct .product .product__buy-block .buy__block__order {
    width: auto;
  }

  .singleProduct .product .product__buy-block .buy__block__order-cart::after {
    content: "";
    width: 0.06rem;
    height: 100vw;
    background-color: #f0f0f0;
    position: absolute;
    transform: scaleY(800%) translateY(-50%);
    z-index: 50;
    right: -1.25rem;
    top: -50%;
  }

  .singleProduct .content {
    margin-top: 5rem;
  }

  .singleProduct .content .content__desc {
    margin-bottom: 5rem;
  }

  .singleProduct .content .content__reviews {
    margin-bottom: 5rem;
  }

  .singleProduct .content .content__reviews .content__review__wrapper {
    width: 100%;
  }

  .singleProduct .content .content__banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.88rem;
    gap: 1.62rem;
  }

  .singleProduct .content .content__banner button {
    width: 14.5rem;
  }

  .singleProduct .moreProducts {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }

  .catalog__products {
    margin-top: 5rem;
  }
}

@media screen and (max-width: 767px) {
  .singleProduct h1 {
    font-size: 1.25rem;
    line-height: 1.5rem;
    margin-bottom: 0.94rem;
    word-break: break-word;
  }

  .singleProduct h2 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }

  .singleProduct .container h2 {
    margin-bottom: 1rem !important;
    font-size: 1.5rem;
  }

  .singleProduct .product h1 {
    margin-bottom: 1rem !important;
    font-size: 1.25rem;
    line-height: 1.2em;
  }

  .singleProduct .product .product__wrapper {
    gap: 1.88rem;
  }

  .singleProduct .product .product__image-gallery {
    flex-direction: column;
    gap: 0.62rem;
    height: auto;
  }

  .singleProduct .product .product__image-gallery .mainSlider {
    width: 100%;
    height: 100%;
  }

  .singleProduct .product .product__image-gallery .thumbsWrapper {
    width: 100%;
    flex-direction: row;
  }

  .singleProduct .product .product__image-gallery .thumbsWrapper .swiper-button-next,
  .singleProduct .product .product__image-gallery .thumbsWrapper .swiper-button-prev {
    height: 0.69rem;
    transform: none;
  }

  .singleProduct .product .product__image-gallery .thumbsWrapper .gallery-thumbSlide {
    width: 4.38rem;
    height: 3.88rem;
  }

  .singleProduct .product .product__info-block .product__info-block__actions {
    flex-direction: column;
    justify-content: flex-start;
    gap: 1.88rem;
    align-items: flex-start;
  }

  .singleProduct .product .product__info-block .product__info-block__properties .product__properties-prop p {
    font-size: 0.88rem;
  }

  .singleProduct .product .product__buy-block {
    padding: 1.12rem 0.94rem 1.25rem 0.94rem;
    flex-direction: column;
  }

  .singleProduct .product .product__buy-block .buy-block__info {
    width: 100%;
  }

  .singleProduct .product .product__buy-block .buy-block__info::after {
    content: "";
    width: 37.5rem;
    height: 0.06rem;
    background-color: #f0f0f0;
    position: absolute;
    transform: scaleX(800%);
    z-index: 50;
    bottom: -1.25rem;
  }

  .singleProduct .product .product__buy-block .buy-block__prices {
    margin-top: 0.62rem;
  }

  .singleProduct .product .product__buy-block .buy-block__prices .buy-block__new-price {
    font-size: 1.38rem;
  }

  .singleProduct .product .product__buy-block .buy-block__prices .buy-block__old-price {
    font-size: 0.88rem;
  }

  .singleProduct .product .product__buy-block .buy__block__order-cart .button {
    font-size: 1rem;
  }

  .singleProduct .product .product__buy-block .buy__block__order-cart span {
    font-size: 1rem;
  }

  .singleProduct .content {
    overflow-x: hidden;
  }

  .singleProduct .content .content__nav {
    overflow-x: scroll;
  }

  .singleProduct .content .content__nav .content__nav__wrapper {
    width: max-content;
    margin-bottom: 1.25rem;
  }

  .singleProduct .content .content__nav a {
    padding: 0 0.94rem 0.62rem 0.94rem;
    font-size: 1rem;
  }

  .singleProduct .content .content__nav::-webkit-scrollbar {
    display: none;
  }

  .singleProduct .content .content__reviews .content__review__wrapper {
    gap: 0.62rem;
  }

  .singleProduct .content .content__reviews .review__submit-zone {
    flex-direction: column;
    gap: 0.38rem;
  }

  .singleProduct .content .content__reviews .review__submit-zone button {
    width: 100%;
  }

  .singleProduct .content .content__banner {
    padding: 1.25rem 0.94rem;
    gap: 1.25rem;
    border-radius: 0.62rem;
  }

  .singleProduct .content .content__banner p:nth-child(1) {
    font-size: 1.5rem;
  }

  .singleProduct .content .content__banner p:nth-child(2) {
    font-size: 1rem;
  }

  .singleProduct .content .content__banner button {
    font-size: 1rem;
    width: 12.5rem;
    height: 2.81rem;
  }
}
/* End */


/* Start:/local/templates/.default/styles/modules/slider.css?17471390971434*/
.sliderContainer {
    padding: 0 !important;

    .slider__wrapper {
        display: flex;
        flex-direction: row;
        align-items: center;

        .swiper {
            height: fit-content;
            max-width: 100rem;
            padding: 0 1rem;
            width: 100%;
        }

        .swiper-pagination {
            margin-top: 1.875rem;
            position: static;
        }

        .swiper-wrapper {
            margin-top: 0.3125rem;
        }

        .swiper-slide {
            display: flex;
            height: auto;

            .product__preview {
                height: 100%;
            }
        }

        .swiper-button-prev, .swiper-button-next {
            position: absolute;
            min-width: 2.5rem;
            min-height: 2.5rem;


    }

    .swiper-pagination-bullet {
        background: rgba(82, 169, 87, 0.5);
    }

    .swiper-pagination-bullet-active {
        background: var(--green-color);
    }

}

}

@media screen and (max-width: 768px) {

    .sliderContainer {
        .slider__wrapper {
            .swiper-button-prev, .swiper-button-next {
                display: none;
            }
        }
    }

}
@media screen and (max-width: 1700px){
    .swiper-button-prev, .swiper-button-next{
        background-color: #fff;
        border-radius: 50%;
        max-width: 2.5rem;
        max-height: 2.5rem;
        box-shadow: 0px 0px 4px 0px #99999940;
    }

}
/* End */


/* Start:/bitrix/components/bitrix/catalog.store.amount/templates/.default/style.css?17399472882802*/
div.catalog-detail { position: static; border: 1px solid; zoom:1;}
div.catalog-detail-hover div.catalog-admin-links  { display: block; }
div.catalog-detail-hover { position: relative;}

div.catalog-detail-line
{
    font-size:1px;
    height:1px;
    line-height:1px;
    margin:12px 0;
    overflow:hidden;
    padding:0;
    background: url(/bitrix/components/bitrix/catalog.store.amount/templates/.default/images/title-line.gif) no-repeat;
}
div.catalog-detail-properties { clear: both; padding: 1em 0 0;  overflow: hidden; width: 80%; }
div.catalog-detail-property { margin: 0 0 1em; border-bottom:1px dotted; float: left; width: 100%;}
div.catalog-detail-property b { float: right; position: relative; padding-left: 3px;  font-weight:normal; }
div.catalog-detail-property grey { color:grey;  font-weight:lighter; }
div.catalog-detail-property span { float: left; position: relative; padding-right: 3px; zoom: 1;}
div.catalog-detail-properties-title { font-size: 1em; font-weight: bold; margin: 2em 0 1em; }


.bx_storege {}
.bx_storege h4{
    margin-bottom: 0;
}
.bx_storege hr{
    background: #e5e5e5;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2U1ZTVlNSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjUwJSIgc3RvcC1jb2xvcj0iI2U1ZTVlNSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background: -moz-linear-gradient(left, #e5e5e5 0%, #e5e5e5 50%, #ffffff 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%,#e5e5e5), color-stop(50%,#e5e5e5), color-stop(100%,#ffffff));
    background: -webkit-linear-gradient(left, #e5e5e5 0%,#e5e5e5 50%,#ffffff 100%);
    background: -o-linear-gradient(left, #e5e5e5 0%,#e5e5e5 50%,#ffffff 100%);
    background: -ms-linear-gradient(left, #e5e5e5 0%,#e5e5e5 50%,#ffffff 100%);
    background: linear-gradient(to right, #e5e5e5 0%,#e5e5e5 50%,#ffffff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e5e5e5', endColorstr='#ffffff',GradientType=1 );
    border: none;
    height: 1px;
}
.bx_storege ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
.bx_storege ul li{
    padding: 5px 0 20px;
    font-size: 12px;
    line-height: 17px;
}
.bx_storege ul li a{
    text-decoration: none;
    color: #2a65ae;
}
.bx_storege ul li a:hover{
    text-decoration: underline;
}
/* End */


/* Start:/local/templates/utwood__main/components/bitrix/catalog.section/recommended/style.css?17419482441308*/
.sliderContainer {
    .slider__wrapper {
        display: flex;
        flex-direction: row;
        align-items: center;
        .swiper-button-lock{
            display: flex;
        }
        .swiper {
            width: 100%;
            height: fit-content;
            max-width: 100.00rem;
            padding: 0.62rem;
        }

        .swiper-pagination {
            margin-top: 1.88rem;
            position: static;
        }

        .swiper-wrapper {
            margin-top: 0.31rem;
        }

        .swiper-slide {
            display: flex;

            .product__preview {
                height: 100%;
                width: 100%;
            }
        }

        .swiper-button-prev, .swiper-button-next {
            position: static;
            min-width: 2.50rem;
            min-height: 2.50rem;
        }

        .swiper-pagination-bullet {
            background: rgba(82, 169, 87, 0.5);
        }

        .swiper-pagination-bullet-active {
            background: var(--green-color);
        }

    }
}

@media screen and (max-width: 768px) {

    .sliderContainer {
        .slider__wrapper {
            .swiper-button-prev, .swiper-button-next {
                display: none;
            }
        }
    }

}
/* End */


/* Start:/local/templates/utwood__main/components/bitrix/catalog.item/bootstrap_v4/style.css?17479977744719*/
/* Base Styles */
.product__preview {
	box-shadow: 0 0.25rem 0.5rem 0 #0000000f;
	border-radius: 0.62rem;
	box-sizing: border-box;
	width: calc((100% - 6rem) / 4);
	height: auto;
	position: relative;
	padding: 1.25rem 1.25rem 1.69rem 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	justify-content: space-between;
}

.product__preview .product__preview__fav-btn {
	position: absolute;
	cursor: pointer;
	right: 0.62rem;
	top: 0.62rem;
}

.product__preview .product__preview-image {
	width: 15.88rem;
	height: 11rem;
	object-fit: contain;
	margin: 0 auto;
}

.product__preview .product__preview__title {
	font-size: 1rem;
	font-weight: 500;
	display: flex;
	flex-direction: column;
	gap: 0.62rem;
	flex-grow: 1;
}

.product__preview .product__preview__stock {
	font-size: 0.75rem;
	display: flex;
	align-items: center;
	font-weight: 400;
}

.product__preview .product__preview__stock::before {
	content: '';
	border-radius: 50%;
	background-color: #52a957;
	margin-right: 0.38rem;
	width: 0.4rem;
	height: 0.4rem;
}

.product__preview .product__preview__stock.notAvailable::before {
	background-color: #e40000;
}

.product__preview .product__preview__prices {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 0.94rem;
}

.product__preview .product__preview__prices .product__preview__prices-actual {
	font-weight: 600;
	font-size: 1.12rem;
}

.product__preview .product__preview__prices .product__preview__prices-old {
	font-size: 0.75rem;
	font-weight: 500;
	color: #999999;
	text-decoration-line: line-through;
}

.product__preview .product__preview__actions {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 1.25rem;
}

.product__preview .product__preview__actions .product__preview__actions-button {
	width: 7.62rem;
	height: 2.5rem;
}

.product__preview .product__preview__actions .product__preview__actions-counter {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 0.625rem;
	font-weight: 500;
}

.countOfCounter {
	border: none;
	outline: none;
	text-align: center;
	width: 3.125rem;
	font-size: 1rem;
}

.countOfCounter::-webkit-outer-spin-button,
.countOfCounter::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.countOfCounter {
	-moz-appearance: textfield;
}

.countOfCounter:hover {
	cursor: pointer;
}

.product__preview__fav-btn.active {
	fill: #52a957;
}

.decreaseCounter,
.increaseCounter {
	width: 1.375rem;
	height: 1.375rem;
	cursor: pointer;
}

.product__preview-stickers {
	width: calc(100% - 50px);
	position: absolute;
	left: 1.25rem;
	top: 1.25rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.product__preview-sticker {
	padding: 0.25rem 0.5rem;
	overflow: hidden;
	border-radius: 0.62rem;
	-webkit-border-radius: 0.62rem;
	-moz-border-radius: 0.62rem;
	-ms-border-radius: 0.62rem;
	-o-border-radius: 0.62rem;
}

.product__preview__prices-percent {
	padding: 0.25rem 0.5rem;
	/* background-color: red; */
	color: #E40000;
	font-weight: 600;
	font-size: 12px;
	border-radius: 0.3rem;
	border: solid 1px #E40000;
	width: fit-content;
	-webkit-border-radius: 0.3rem;
	-moz-border-radius: 0.3rem;
	-ms-border-radius: 0.3rem;
	-o-border-radius: 0.3rem;
}

/* Media Queries */
@media screen and (max-width: 1200px) {
	.product__preview {
		width: 14.5rem;
		gap: 0.94rem;
		padding: 1rem 1rem 1.25rem 1rem;
	}

	.product__preview .product__preview-image {
		width: 100%;
		height: auto;
		min-height: 1.25rem;
	}

	.product__preview .product__preview__fav-btn {
		top: 0.44rem;
		right: 0.44rem;
	}

	.product__preview .product__preview__prices {
		flex-direction: column-reverse;
		gap: 0;
		align-items: flex-start;
	}

	.product__preview .product__preview__actions>div {
		width: 100%;
	}

	.product__preview .product__preview__actions .product__preview__actions-button {
		width: 100%;
	}

	.product__preview .product__preview__actions .product__preview__actions-counter {
		display: none;
	}

	.countOfCounter {
		width: 2.2rem;
	}

	.product__preview-stickers {
		left: 0.62rem;
		top: 0.62rem;
	}
}

@media screen and (max-width: 767px) {
	.product__preview {
		width: 10rem;
		padding: 0.62rem;
		gap: 0.62rem;
	}

	.product__preview .product__preview__fav-btn {
		right: 0.25rem;
		top: 0.25rem;
	}

	.product__preview .product__preview__title {
		font-size: 0.88rem;
	}

	.product__preview .product__preview__stock {
		font-size: 0.62rem;
	}

	.product__preview .product__preview__prices .product__preview__prices-actual {
		font-size: 0.88rem;
	}

	.product__preview .product__preview__prices .product__preview__prices-old {
		font-size: 0.62rem;
	}

	.product__preview .product__preview__actions .product__preview__actions-button {
		font-size: 0.75rem;
	}
}
/* End */
/* /local/templates/utwood__main/components/bitrix/catalog/catalog/style.css?174057418710062 */
/* /local/templates/utwood__main/components/bitrix/catalog.element/bootstrap_v4/style.css?174799814121905 */
/* /local/templates/.default/styles/modules/slider.css?17471390971434 */
/* /bitrix/components/bitrix/catalog.store.amount/templates/.default/style.css?17399472882802 */
/* /local/templates/utwood__main/components/bitrix/catalog.section/recommended/style.css?17419482441308 */
/* /local/templates/utwood__main/components/bitrix/catalog.item/bootstrap_v4/style.css?17479977744719 */
