

/* Start:/local/templates/zoo_red/components/bitrix/catalog/korm_rus/style.css?1724680135690*/
.section-list {
	display: flex;
	gap: var(--gutter);
	flex-wrap: wrap;
	margin-bottom: var(--gutter);
}

.section-item {
	position: relative;
	display: block;
	text-decoration: none;
	padding: 10px 25px;
	padding-right: 50px;
	height: 44px;
	border-radius: 22px;
	border: 1px solid #dcdcdc;
	text-decoration: none;
	transition: .2s;
}

.section-item:hover {
	text-decoration: none;
	border-color: var(--main-color);
	color: var(--main-color);
}

.section-item::after {
	position: absolute;
	display: block;
	font-family: korm;
	content: '\e803';
	font-size: 18px;
	right: 25px;
	top: 9px;
}

@media only screen and (max-width : 576px) {
	.section-list {
		gap: calc(var(--gutter) / 2);
	}
}
/* End */


/* Start:/local/templates/zoo_red/components/bitrix/catalog.smart.filter/smart.mobile.filter/style.css?17246801357489*/
.mobile_filter_button {
    background-color: #ff9900;
    font-size: 0.9rem;
    color: #fff;
    padding: 10px 0;
    border-radius: 3px;
    text-decoration: none;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    border: none;
    cursor: pointer;
    border: none;
    margin-bottom: calc(2 * var(--gutter));
  }

  .filter-panel > form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-height: 100%;
  }
  
  .smart-filter {
    display: flex;
    flex-direction: column;
    background: none;
    padding: 0;
    flex: 1;
    overflow-y: auto;
  }
  
  .smart-filter-parameters-box {
    margin: 0;
    border-bottom: 1px solid #d8e6ec;
    display: flex;
    flex-direction: column;
  }
  
  .smart-filter_title {
    padding: 15px;
    background: #fff;
    position: relative;
    cursor: pointer;
    font-size: 18px;
    color: #4d7185;
    margin: 0;
    font-weight: normal;
    /* border-bottom: 1px solid #d8e6ec; */
  }
  
  .smart-filter_title:before {
    position: absolute;
    top: 13px;
    right: 15px;
    font-family: korm;
    content: "\f107";
    font-size: 21px;
  }
  
  .smart-filter_title.active:before {
    transform: rotate(180deg);
  }
  
  .bx_filter_block_expanded > div {
    /* border-top: 1px solid #d8e6ec; */
    background: #fff;
    padding: 15px;
    padding-top: 0;
  }
  
  .smart-filter_checkbox input {
    display: none;
  }
  
  .smart-filter_checkbox label {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px;
  }
  
  .smart-filter_checkbox label span {
    flex: 1;
    text-transform: lowercase;
    font-weight: normal;
  }
  
  .smart-filter_checkbox label span:first-letter {
    text-transform: uppercase;
  }
  
  .smart-filter_checkbox label i {
    content: '';
    display: inline-block;
    width: 17px;
    height: 17px;
    flex-shrink: 0;
    flex-grow: 0;
    border: 1px solid #adb5bd;
    border-radius: 0.25em;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 60% 60%;
  }
  
  .smart-filter_checkbox input:checked + label i {
    border-color: #0b76ef;
    background-color: #0b76ef;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
  }
  
  .smart-filter_checkbox input:not(:disabled):not(:checked) + label i:hover {
    border-color: #b3d7ff;
  }
  
  .smart-filter_checkbox input:not(:disabled):active + label i {
    background-color: #b3d7ff;
    border-color: #b3d7ff;
  }
  
  .smart-filter_checkbox input:focus + label i {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  }
  
  .smart-filter_checkbox input:focus:not(:checked) + label i {
    border-color: #80bdff;
  }
  
  .smart-filter_checkbox input:disabled + label i {
    background-color: #e9ecef;
  }
  
  .smart-filter_buttons {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column; 
    gap: 10px;
    margin-bottom: 60px;
  }
  
  .smart-filter_buttons button#set_filter {
    background-color: #00a8f5;
    font-size: 0.9rem;
    color: #fff;
    padding: 10px 0;
    border-radius: 3px;
    text-decoration: none;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    border: none;
    cursor: pointer;
    border: none;
  }
  
  .smart-filter_buttons button#set_filter[disabled], .smart-filter_buttons button#set_filter[disabled]:hover {
    background-color: #ededed;
    color: #b1b5bc;
    cursor: default;
  }
  
  .smart-filter_buttons button#del_filter {
    background: #f7f7f7;
    color: #4c4c4c;
    font-size: 0.9rem;
    padding: 10px 0;
    border-radius: 3px;
    text-decoration: none;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    border: none;
    cursor: pointer;
    border: none; 
  }
  
  .smart-filter_buttons button#set_filter:hover {
    background: #0079b2;
  }
  
  .smart-filter_buttons button#del_filter:hover {
    background: #f1f1f1;
  }
  
  .smart-filter-popup-result {
    display: none;
    padding: 18px;
    padding-bottom: 10px;
    text-align: center;
    background: #d8e6ec;
    width: 100%;
  }
  
  .smart-filter-popup-result a {
    display: block;
    padding: 8px;
    color: #00a8f5;
  }
  
  .smart-filter-container-modef {
    position: relative;
    width: 100%;
    display: block;
    clear: both;
    order: 3;
  }

  .smart-filter_bottons {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .smart-filter_bottons button {
    display: inline-block;
    color: #fff;
    background: var(--main-color);
    font-weight: 500;
    padding: 12px 26px;
    border: none;
    border-radius: 100px;
  }

  .smart-filter_bottons button#del_filter {
    background: #3a302e;
  }

  .smart-filter_bottons button:hover {
    opacity: .85;
  }
  
  
  .smart-filter_bottons button:disabled {
    opacity: 0.4;
    cursor: default;
  }
  
  /* No used styles*/
  
  .smart-filter-slider-track-container {
    padding: 20px 10px 10px 10px; }
  .smart-filter-slider-track {
    position: relative;
    height: 4px;
    border-radius: 2px;
    background: #E1E1E1; }
  .smart-filter-slider-ruler {
    position: absolute;
    top: -6px;
    width: 1px;
    height: 17px;
    background: #a2bfc7; }
  .smart-filter-slider-ruler span {
    position: absolute;
    top: -16px;
    left: 50%;
    display: block;
    margin-left: -50px;
    width: 100px;
    color: #000;
    text-align: center;
    font-size: 11px; }
  .smart-filter-slider-range {
    z-index: 50; }
  .smart-filter-slider-range, .smart-filter-slider-price-bar, .smart-filter-slider-price-bar-vd, .smart-filter-slider-price-bar-vn, .smart-filter-slider-price-bar-v {
    position: absolute;
    top: 0;
    bottom: 0; }
  .smart-filter-slider-price-bar-v {
    background: var(--c0); }
  .smart-filter-slider-handle {
    position: absolute;
    top: 100%;
    margin-top: -9px;
    width: 15px;
    z-index: 100;
    height: 15px;
    background: #F28F00;
    border-radius: 100%; }
  .smart-filter-slider-handle:hover {
    cursor: grab;
    z-index: 110; }
  .smart-filter-slider-handle:active {
    cursor: grabbing;
    z-index: 110; }
  .smart-filter-slider-handle.left {
    left: 0;
    margin-left: -5px; }
  .smart-filter-slider-handle.right {
    right: 0;
    margin-right: -5px; }
  
  .smart-filter-digits {
    display: flex;
    justify-content: space-between; }
  .smart-filter-digits input {
    width: 48%;
    text-align: center;
    background: #fff;
    border: none;
    height: 40px; }
  .smart-filter_radio input {
    display: none;
    position: absolute;
    left: -9999999999px; }
  .smart-filter_radio label {
    height: 30px;
    line-height: 30px;
    margin: 0ex 3px 3px 0px;
    display: inline-block;
    cursor: pointer;
    font-size: 14px;
    padding: 0px 12px;
    background: #fff; }
  
  
  @media (min-width: 992px) {
  
    .smart-filter-popup-result a {
      color: #00a8f5;
      text-decoration: underline;
      display: block; 
    }
  
    .smart-filter_buttons {
      margin-bottom: 0;
    }
  }
/* End */


/* Start:/local/templates/zoo_red/components/bitrix/catalog.section.list/korm_rus/style.css?17246801352776*/
.catalog-section-list-item { }

.catalog-section-list-item-title {
	overflow: hidden;
	margin: 0;
	padding: 0;
	vertical-align: middle;
	text-align: center;
	text-overflow: ellipsis;
	font-size: 14px;
	line-height: 20px;
}

.catalog-section-list-item-link {
	vertical-align: middle;
	font-size: 14px;
	line-height: 20px;
}

.catalog-section-list-item-counter {
	vertical-align: middle;
	font-size: 12px;
	line-height: 20px;
}

.catalog-section-list-item-description { font-size: 13px; }

.catalog-section-list-item-img {
	display: block;
	padding-top: 100%;
	width: 100%;
	border: 1px solid #ccc;
	border-radius: 2px;
	background-color: #fff;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	transition: 250ms linear all;
}

.catalog-section-list-item-img:hover { border-color: var(--theme-color-primary); }

/* region Line */
.catalog-section-list-line-list {
	padding: 0;
	list-style: none;
}

.catalog-section-list-line-list .catalog-section-list-item {
	display: flex;
	margin-bottom: 15px;
	align-items: flex-start;
}

.catalog-section-list-line-list .catalog-section-list-item-title { text-align: left; }

.catalog-section-list-line-img-container {
	padding-right: 15px;
	min-width: 75px;
	width: 75px;
}

.catalog-section-list-line-list .catalog-section-list-titles {
	margin: 0;
	line-height: 20px;
}

/*endregion*/

/*region Text */
.catalog-section-list-text-list {
	padding: 0;
	list-style: none;
	column-count: 3;
}

.catalog-section-list-text-list .catalog-section-list-item-title { text-align: left; }

@media (max-width: 767px) {
	.catalog-section-list-text-list { column-count: 1; }
}

/*endregion*/

/*region Tile */

.catalog-section-list-tile-list {
	padding: 0;
	list-style: none;
}

.catalog-section-list-tile-img-container { width: 100%; }

/*endregion*/

/* list */

.catalog-section-list-list { margin-bottom: 30px; }

.catalog-section-list-list .catalog-section-list-item {
	padding: 0;
	line-height: 16px;
}

.catalog-section-list-list .catalog-section-list-item:before { content: '' !important }

.catalog-section-list-list-title {
	display: inline-block;
	margin: 0;
	margin-bottom: 10px;
	padding: 0;
	vertical-align: top;
	font-weight: normal;
	font-size: 12px;
	line-height: 16px;
}

.catalog-section-list-list-link {
	white-space: nowrap;
	font-size: 13px;
}

.catalog-section-list-list-link:hover { text-decoration: none }

.catalog-section-list-list-title span { font-size: 11px; }

@media (max-width: 639px) {
	.bx-touch .catalog-section-list-list .bx_catalog_line_title {
		margin-bottom: 5px;
		line-height: 12px;
	}

	.bx-touch .catalog-section-list-list .bx_catalog_line_title a { font-size: 12px; }
}

.catalog-section-list-list-title,
.catalog-section-list-list-link { transition: all 0.3s ease; }
/* End */


/* Start:/local/templates/zoo_red/components/bitrix/system.pagenavigation/page_navigation/style.css?17246801351036*/
.pagination {
	margin: var(--gutter) 0;
}

.pagination ul, .pagination li {
	list-style: none;
	padding: 0;
	margin: 0;
}

.pagination ul {
	display: flex;
	gap: 5px;
	justify-content: center;
	align-items: center;
}

.pagination ul li {
	width: 36px;
	height: 36px;
	border-radius: 18px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: bold;
}

.pagination ul li.active {
	background: var(--main-color);
	color: #fff;
}

.pagination ul li i {
	font-size: 0.8rem;
}

.pagination ul li a {
	text-decoration: none;
	color: #444;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 36px;
	height: 36px;
	transition: .2s;
}

.pagination ul li.prev span, .pagination ul li.next span {
	color: #d3d3d3;
}

.pagination ul li.prev a span, .pagination ul li.next a span {
	color: #444;
	transition: .2s;
}

.pagination ul li a:hover, .pagination ul li.prev a:hover span, .pagination ul li.next a:hover span {
	color: var(--main-color);
}
/* End */


/* Start:/local/templates/zoo_red/components/bitrix/catalog.item/bootstrap_v4/style.css?172502409416222*/
.catalog-section {
	display: flex;
	flex-direction: column;
	gap: var(--gutter);
}

.product-item-container > .item {
	display: grid;
	grid-template-columns: 25% auto;
	align-items: center;
	gap: var(--gutter);

	padding: var(--gutter);
	border-radius: 30px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
	transition: .2s;
}

.item-img {
	grid-row: 1 / 3;
}

.item-body {
	display: flex;
	flex-direction: column;
	gap: var(--item-gutter);
	flex: 1;
}

.item-body__title {
	color: #343a40;
	font-size: 14pt;
}

.item-body__title:hover {
	text-decoration: none;
}

.item-buttons {
	align-self: flex-start;
}

.sku-property {
	display: flex;
	flex-direction: column;
	gap: var(--item-gutter);
}

.sku-property__body {
	display: flex;
	flex-direction: column;
	gap: var(--gutter);
}

.sku-row {
	display: flex;
	justify-content: space-between;
	gap: var(--gutter);
}

.sku-row__title span {
	display: block;
}

.sku-row__title .property {
	font-size: 14pt;
}

.sku-row__title .quantity {
	font-size: 8pt;
}

.sku-row__price span {
	display: block;
	text-align: center;
}

.sku-row__price span.blur {
	filter: blur(4.3px);
}

.sku-row__price .price {
	font-size: 18pt;
}

.sku-row__price .old-price {
	font-size: 14pt;
	text-decoration: line-through;
}

.sku-row__buttons {
	flex: 0 0 320px;
}

.add-to-cart {
	display: flex;
	align-items: center;
	gap: calc(var(--item-gutter) / 2);
}

.quantity-block {
	display: flex;
	background: #fff;
	border-radius: 22px;
	padding: 4px;
	box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
}

.quantity-minus,
.quantity-plus {
	width: 36px;
	height: 36px;
	background: var(--main-color);
	color: #fff;
	border-radius: 18px;
	border: none;
	font-size: 18px;
	line-height: 36px;
	padding: 0;
	margin: 0;
}

.sku-row__buttons button:disabled {
	opacity: 0.4;
	cursor: default;
}

.quantity-input {
	width: 50px;
	margin: 0 5px;
	text-align: center;
	border: none;
}

.add-button {
	flex: 1;
	height: 44px;
	background: var(--main-color);
	color: #fff;
	border-radius: 22px;
	border: none;
	line-height: 36px;
	padding: 0 25px;
	margin: 0;
}

.quantity-in-cart-block {
	display: flex;
	width: 100%;
	align-items: center;
	background: #fbfbfb;
	border-radius: 22px;
	padding: 4px;
	box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
}

.quantity-in-cart-down,
.quantity-in-cart-up {
	width: 36px;
	height: 36px;
	background: #62d51b;
	color: #fff;
	border-radius: 18px;
	border: none;
	font-size: 18px;
	line-height: 36px;
	padding: 0;
	margin: 0;
}

.quantity-in-cart-value-container {
	flex: 1;
	margin: 0 5px;
	text-align: center;
}




.product-item-container {
	position: relative;
}

.product-item-container.hover {
	z-index: 17;
}

.product-item {
	display: block;
	box-sizing: border-box;
	padding-top: 15px;
	width: 100%;
	border: 1px solid transparent;
	border-radius: 2px;
	background: #fff;
	box-shadow: 0 0 0 0 rgba(0, 0, 0, .19);
}

.product-item-big-card .product-item,
.product-item-small-card .product-item {}

.product-item-line-card .product-item {
	border-bottom: 1px solid #dadada;
}

.bx-no-touch .product-item-container.hover .product-item {
	position: absolute;
	right: -15px;
	left: -15px;
	padding: 15px 15px 0;
	width: auto;
	border-color: transparent;
	box-shadow: 0 7px 15px 0 rgba(0, 0, 0, .19);
}

.bx-touch .product-item {
	padding: 15px 0 0;
	width: auto;
	background: #fff;
}

.bx-no-touch .product-item-container.hover .product-item {
	-webkit-animation: product-item-hover 300ms 1 ease;
	animation: product-item-hover 300ms 1 ease;
}

@-webkit-keyframes product-item-hover {
	0% {
		position: absolute;
		left: 0;
		right: 0;
		border: 1px solid transparent;
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
		padding-left: 0;
		padding-right: 0;
	}

	100% {
		border: 1px solid transparent;
		box-shadow: 0 7px 15px 0 rgba(0, 0, 0, .19);
		left: -15px;
		right: -15px;
		padding-left: 15px;
		padding-right: 15px;
	}
}

@keyframes product-item-hover {
	0% {
		position: absolute;
		left: 0;
		right: 0;
		border: 1px solid transparent;
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
		padding-left: 0;
		padding-right: 0;
	}

	100% {
		border: 1px solid transparent;
		box-shadow: 0 7px 15px 0 rgba(0, 0, 0, .19);
		left: -15px;
		right: -15px;
		padding-left: 15px;
		padding-right: 15px;
	}
}

/*Image*/
.product-item-image-wrapper {
	position: relative;
	display: block;
	padding-top: 100%;
	width: 100%;
	transition: all 300ms ease;
}

.product-item-image-original,
.product-item-image-alternative {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	transition: opacity 300ms linear;
}

.product-item-image-original {
	z-index: 11;
}

.product-item-image-alternative {
	z-index: 13;
	opacity: 0;
}

.bx-no-touch .product-item-container.hover .product-item-image-original {
	opacity: 0;
}

.bx-no-touch .product-item-container.hover .product-item-image-alternative {
	opacity: 1;
}

/*Image Slider*/
.product-item-image-slider-slide-container {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: block;
	overflow: hidden;
	width: 100%;
	height: 100%;
	transition: opacity 300ms ease;
}

.product-item-image-slide {
	position: relative;
	display: none;
	height: 100%;
	background-color: #fff;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	transition: .6s ease-in-out left;
}

@media all and (transform-3d),
(-webkit-transform-3d) {
	.product-item-image-slide {
		transition: transform .6s ease-in-out, -webkit-transform .6s ease-in-out;
		-webkit-backface-visibility: hidden;
		backface-visibility: hidden;
		-webkit-perspective: 1000px;
		perspective: 1000px;
	}

	.product-item-image-slide.next,
	.product-item-image-slide.active.right {
		left: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}

	.product-item-image-slide.prev,
	.product-item-image-slide.active.left {
		left: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}

	.product-item-image-slide.next.left,
	.product-item-image-slide.prev.right,
	.product-item-image-slide.active {
		left: 0;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

.product-item-image-slider-slide-container>.active,
.product-item-image-slider-slide-container>.next,
.product-item-image-slider-slide-container>.prev {
	display: block;
}

.product-item-image-slider-slide-container>.active {
	left: 0;
}

.product-item-image-slider-slide-container>.next,
.product-item-image-slider-slide-container>.prev {
	position: absolute;
	top: 0;
	width: 100%;
}

.product-item-image-slider-slide-container>.next {
	left: 100%;
}

.product-item-image-slider-slide-container>.prev {
	left: -100%;
}

.product-item-image-slider-slide-container>.next.left,
.product-item-image-slider-slide-container>.prev.right {
	left: 0;
}

.product-item-image-slider-progress-bar-container {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 1px;
}

.product-item-image-slider-progress-bar {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	display: block;
	height: 1px;
	background-color: var(--theme-color-primary);
	opacity: .8;
}

.product-item-image-slider-control-container {
	position: absolute;
	right: 0;
	bottom: 10px;
	left: 0;
	z-index: 15;
	display: block;
	padding: 0;
	text-align: center;
	opacity: 0;
	transition: opacity 300ms ease;
}

.product-item-container.hover .product-item-image-slider-control-container,
.product-item-line-card:hover .product-item-image-slider-control-container {
	opacity: 1;
}

.product-item-image-slider-control,
.product-item-image-slider-control.active {
	display: inline-block;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: rgba(128, 128, 128, .8);
	opacity: .6;
	cursor: pointer;
	transition: all 300ms ease;
}

.product-item-image-slider-control:hover,
.product-item-image-slider-control.active:hover {
	cursor: pointer;
}

.product-item-image-slider-control.active,
.product-item-image-slider-control:hover {
	background-color: var(--primary);
}

/*Label*/
.product-item-label-text,
.product-item-label-ring {
	position: absolute;
	z-index: 15;
}

.product-item-label-text span,
.product-item-label-ring {
	display: inline-block;
	clear: both;
	margin-bottom: 2px;
	background: #f42c2c;
	color: #fff;
	vertical-align: middle;
	text-align: center;
	transition: all 250ms ease;
}

.bx-red .product-item-label-text span,
.bx-red .product-item-label-ring {
	background-color: #fba90c;
}

.product-item-label-text>div,
.product-item-label-ring>div {
	line-height: 0;
}

/* TEXT */
.product-item-label-text span {
	padding: 2px 5px;
	vertical-align: middle;
	font-weight: bold;
}

/*SMALL*/
.product-item-label-text.product-item-label-small span,
.product-item-scalable-card.hover .product-item-label-text.product-item-label-small span {
	margin-bottom: 1px;
	padding: 2px 7px;
	font-weight: normal;
	font-size: 13px;
	line-height: 14px;
}

.product-item-big-card .product-item-label-text.product-item-label-small span {
	padding: 5px 12px;
	font-size: 16px;
	line-height: 21px;
}

/* BIG */
.product-item-label-text.product-item-label-big span,
.product-item-scalable-card.hover .product-item-label-text.product-item-label-big span {
	padding: 4px 10px;
	font-size: 13px;
	line-height: 17px;
}

.product-item-big-card .product-item-label-text.product-item-label-big span {
	padding: 5px 17px;
	font-size: 22px;
	line-height: 33px;
}

@media (max-width: 767px) {
	.product-item-label-text>div {
		line-height: 0;
	}

	.product-item-label-text.product-item-label-small span,
	.product-item-scalable-card.hover .product-item-label-text.product-item-label-small span {
		margin-bottom: 1px;
		padding: 2px 7px;
		font-size: 10px;
		line-height: 14px;
	}

	.product-item-big-card .product-item-label-text.product-item-label-small span,
	.product-item-label-text.product-item-label-big span,
	.product-item-scalable-card.hover .product-item-label-text.product-item-label-big span {
		margin-bottom: 1px;
		padding: 3px 12px;
		font-size: 14px;
		line-height: 16px;
	}

	.product-item-big-card .product-item-label-text.product-item-label-big span {
		padding: 3px 12px;
		font-size: 20px;
		line-height: 25px;
	}
}

/*RING*/
.product-item-label-ring {
	box-sizing: border-box;
	border-radius: 50%;
	font-weight: bold;
}

.product-item-label-ring.product-item-label-small,
.product-item-scalable-card.hover .product-item-label-ring.product-item-label-small {
	width: 40px;
	height: 40px;
	font-size: 14px;
	line-height: 40px;
}

.product-item-big-card .product-item-label-ring.product-item-label-small {
	width: 100px;
	height: 100px;
	font-size: 30px;
	line-height: 100px;
}

.product-item-label-ring.product-item-label-big,
.product-item-scalable-card.hover .product-item-label-ring.product-item-label-big {
	width: 50px;
	height: 50px;
	font-size: 18px;
	line-height: 50px;
}

.product-item-big-card .product-item-label-ring.product-item-label-big {
	width: 120px;
	height: 120px;
	font-size: 42px;
	line-height: 120px;
}

@media (max-width: 767px) {

	.product-item-label-ring.product-item-label-small,
	.product-item-scalable-card.hover .product-item-label-ring.product-item-label-small {
		--product-item-label-ring-size: 40px;
		width: var(--product-item-label-ring-size);
		height: var(--product-item-label-ring-size);
		line-height: var(--product-item-label-ring-size);
		font-size: 14px;
	}

	.product-item-big-card .product-item-label-ring.product-item-label-small,
	.product-item-label-ring.product-item-label-big,
	.product-item-scalable-card.hover .product-item-label-ring.product-item-label-big {
		width: 35px;
		height: 35px;
		font-size: 12px;
		line-height: 35px;
	}

	.product-item-big-card .product-item-label-ring.product-item-label-big {
		width: 70px;
		height: 70px;
		font-size: 24px;
		line-height: 70px;
	}
}

.product-item-label-top {
	top: -5px;
}

.product-item-label-center {
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.product-item-label-center>div {
	text-align: center;
}

.product-item-label-left {
	left: -5px;
}

.product-item-label-left>div {
	text-align: left;
}

.product-item-label-bottom {
	bottom: -5px;
}

.product-item-label-middle {
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.product-item-label-right {
	right: -5px;
}

.product-item-label-right>div {
	text-align: right;
}

.product-item-label-center.product-item-label-middle {
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}



/* SCU */
.product-item-line-card .product-item-scu-container {
	text-align: left;
}

.product-item-scu-container-title {
	color: #333;
	font-size: 12px;
}

.product-item-scu-block {}

.product-item-scu-block-title {
	font-size: 12px;
}

.product-item-scu-list {
	margin: 0;
}

.product-item-scu-item-list {
	overflow: hidden;
	margin: 0;
	padding: 0;
	list-style: none;
}

.product-item-scu-item-color-container,
.product-item-scu-item-text-container {
	display: inline-block;
	box-sizing: border-box;
	padding: 5px 3px;
	max-width: 100%;
}

.product-item-scu-item-text-container {
	min-width: 32px;
}

.product-item-scu-item-color-container {
	max-width: 38px;
	width: 25%;
}

.product-item-scu-item-color-block {
	position: relative;
	padding-top: 100%;
	outline: 1px solid #c0cfda;
	cursor: pointer;
}

.bx-no-touch .product-item-scu-item-color-block {
	transition: outline 200ms ease;
}

.bx-retina .product-item-scu-item-color-block {
	outline-width: .5px;
}

.product-item-scu-item-color-container.selected .product-item-scu-item-color-block {
	outline-width: 2px;
}

.bx-retina .product-item-scu-item.selected .product-item-scu-item-color-block {
	outline-width: 1px;
}

.product-item-scu-item-color {
	position: absolute;
	top: 2px;
	right: 2px;
	bottom: 2px;
	left: 2px;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}

.product-item-scu-item-text-block {
	position: relative;
	padding: 0 5px;
	outline: 1px solid #c0cfda;
	cursor: pointer;
}

.bx-no-touch .product-item-scu-item-text-block {
	transition: outline 300ms ease;
}

.bx-retina .product-item-scu-item-text-block {
	outline-width: .5px;
}

.product-item-scu-item-text-container.selected .product-item-scu-item-text-block {
	outline-width: 2px;
}

.bx-retina .product-item-scu-item.selected .product-item-scu-item-text-block {
	outline-width: 1px;
}

.product-item-scu-item-text {
	overflow: hidden;
	max-width: 100%;
	vertical-align: middle;
	text-align: center;
	text-transform: uppercase;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 11px;
	line-height: 18px;
}

.product-item-scu-item-color-container.notallowed .product-item-scu-item-color-block,
.product-item-scu-item-text-container.notallowed .product-item-scu-item-text-block {
	position: relative;
	outline-color: #a9adb4 !important;
}

.product-item-scu-item-color-container.notallowed .product-item-scu-item-color-block:after,
.product-item-scu-item-text-container.notallowed .product-item-scu-item-text-block:after {
	position: absolute;
	top: -2px;
	right: -2px;
	bottom: -2px;
	left: -2px;
	background: rgba(255, 255, 255, 0.75) url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNiIgaGVpZ2h0PSIyNiIgdmlld0JveD0iMCAwIDI2IDI2Ij4gIDxwYXRoIGZpbGw9IiNBOUFEQjQiIGZpbGwtcnVsZT0iZXZlbm9kZCIgZD0iTTE0LjM5MjEyNjgsMTMuMjMyMzAyOSBMMjUuOTkyLDEuNDE4IEwyNC42LDAgTDEyLjk5OTk5NTYsMTEuODE0NDM2NCBMMS40LDAgTDAuMDA5LDEuNDE5IEwxMS42MDc4Njg3LDEzLjIzMjI5NzUgTDAuNDczLDI0LjU3MyBMMS44NjUsMjUuOTkxIEwxMi45OTk5OTkzLDE0LjY1MDE2NDUgTDI0LjEzNCwyNS45OSBMMjUuNTI2LDI0LjU3MiBMMTQuMzkyMTI2OCwxMy4yMzIzMDI5IFoiLz48L3N2Zz4=) no-repeat center;
	background-size: 80% 80%;
	content: "";
}


.product-item-scu-item-text-block:hover,
.product-item-scu-item-color-block:hover,
.product-item-scu-item-text-container.selected .product-item-scu-item-text-block,
.product-item-scu-item-color-container.selected .product-item-scu-item-color-block {
	outline-color: #000;
}

@media only screen and (max-width : 576px) {
	.sku-row__title .property {
		font-size: 12pt;
	}
	.item-body__title {
		font-size: 12pt;
	}
}

/* End */


/* Start:/bitrix/components/bitrix/catalog.product.subscribe/templates/.default/style.min.css?16777774921413*/
.bx-catalog-subscribe-button{margin-bottom:6px;display:inline-block}.bx-catalog-popup-content{width:90%;max-width:280px}.bx-catalog-subscribe-form-container-label{font-size:13px;color:#5a6c77;padding-bottom:2px}.bx-catalog-subscribe-form-container-input{position:relative}.bx-catalog-subscribe-form-container-input input[type="text"]{display:block;width:100%;font-size:18px;height:38px;margin:0;padding:0 4px;border:1px solid #ccd5db;border-radius:2px;background:#f8fafc;outline:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bx-catalog-subscribe-form-star-required{color:#d93333}.bx-catalog-subscribe-form-container .bx-captcha{margin-bottom:10px}.bx-catalog-popup-message{font-weight:bold;min-width:240px;margin:0}.bx-catalog-subscribe-alert{background-color:#edf6fc;color:#000;font-size:15px;min-height:45px;text-align:center;padding:12px 40px 12px 60px;position:relative;width:280px}.bx-catalog-subscribe-aligner{display:inline-block;height:45px;margin-left:-1px;vertical-align:middle;width:1px}.bx-catalog-subscribe-alert-text{display:inline-block;vertical-align:middle}.bx-catalog-subscribe-alert-footer{text-align:center}.bx-catalog-subscribe-alert-popup{background-color:#edf6fc!important;border:1px solid #edf6fc!important;border-radius:3px!important;-webkit-box-shadow:0 19px 24px rgba(88,112,118,0.17)!important;box-shadow:0 19px 24px rgba(88,112,118,0.17)!important}
/* End */
/* /local/templates/zoo_red/components/bitrix/catalog/korm_rus/style.css?1724680135690 */
/* /local/templates/zoo_red/components/bitrix/catalog.smart.filter/smart.mobile.filter/style.css?17246801357489 */
/* /local/templates/zoo_red/components/bitrix/catalog.section.list/korm_rus/style.css?17246801352776 */
/* /local/templates/zoo_red/components/bitrix/system.pagenavigation/page_navigation/style.css?17246801351036 */
/* /local/templates/zoo_red/components/bitrix/catalog.item/bootstrap_v4/style.css?172502409416222 */
/* /bitrix/components/bitrix/catalog.product.subscribe/templates/.default/style.min.css?16777774921413 */
