

/* Start:/local/templates/profparket_10.2019/components/bitrix/catalog/catalog_v2/style.css?176218557329908*/
/* ==========================================================================
   VARIABLES (Основные переменные дизайна)
   ========================================================================== */
:root {
  /* Цвета */
  --color-primary: #6da86e;
  --color-primary-dark: #087e78;
  --color-accent: #719c91;
  --color-sale: #d0021b;
  --color-gray-dark: #525252;
  --color-gray: #a5a5a5;
  --color-gray-mid: #bdbdbd;
  --color-gray-light: #d6d6d6;
  --color-gray-very-light: #e4e4e4;
  --color-gray-bg: #f3f3f3;
  --color-white: #fff;
  --color-black #000;
  --color-outline: #c0cfda;
  --color-disabled: #a9adb4;
  --color-tab-border: #1485ce;
  --color-tab-inactive: #039be5;

  /* Размеры */
  --menu-item-height: 34px;
  --border-radius: 3px;
  --transition-duration: 0.3s;
}

/* ==========================================================================
   SECTIONS MENU (Главное меню)
   ========================================================================== */
.sections-menu,
.sections-menu ul {
  margin: 9px;
  padding: 0;
  list-style: none;
  font-size: 0.75rem;
}

.sections-menu__item {
  margin: 0 10px;
}

.sections-menu__link {
  box-sizing: border-box;
  font-size: 0.75rem;
  line-height: 13px;
  margin-bottom: 3px;
  padding: 0 10px 7px;
  text-transform: uppercase;
  display: block;
  text-decoration: none;
  color: inherit;
}

.sections-menu__item--root,
.sections-menu__item--root-selected {
  position: relative;
  display: inline-block;
  text-align: center;
  padding: 2px;
}

.sections-menu__button {
  display: block;
  height: var(--menu-item-height);
  font-size: 0.75rem;
  text-transform: uppercase;
  vertical-align: middle;
  padding: 10px 2px;
  line-height: 16px;
  background: var(--color-gray-light);
  position: relative;
  font-weight: 700;
}

.sections-menu__button::after {
  content: '';
  display: block;
  clear: both;
  width: 0;
  height: 0;
  border-right: 14px solid transparent;
  border-top: var(--menu-item-height) solid var(--color-gray-light);
  position: absolute;
  top: 0;
  right: -14px;
}

.sections-menu__button::before {
  content: '';
  display: block;
  clear: both;
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-bottom: var(--menu-item-height) solid var(--color-gray-light);
  position: absolute;
  top: 0;
  left: -14px;
}

.sections-menu__item--root-selected > .sections-menu__link {
  background: var(--color-primary);
}

.sections-menu__submenu {
  position: absolute;
  display: none;
  z-index: 500;
  height: auto;
  margin: 0;
  top: var(--menu-item-height);
  left: -11px;
  padding: 10px 10px 10px 0;
  width: 350px;
  border-radius: var(--border-radius);
  background: linear-gradient(to right, var(--color-primary-dark), var(--color-primary));
  color: var(--color-white);
  box-shadow: 0 1px 2px rgba(235, 235, 235, 1);
  overflow: hidden;
}

.sections-menu__submenu .sections-menu__link {
  text-align: left;
  color: var(--color-white);
  margin-bottom: 0;
  text-transform: none;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.sections-menu__submenu .sections-menu__item {
  margin: 0;
}

.sections-menu__item--selected .sections-menu__link {
  background-color: var(--color-gray-light);
  color: var(--color-gray-dark);
  margin: 0 3px;
}

.sections-menu__button:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.sections-menu__button:hover::after {
  border-top-color: var(--color-primary);
}

.sections-menu__button:hover::before {
  border-bottom-color: var(--color-primary);
}

.sections-menu__item:hover .sections-menu__submenu,
.sections-menu__item.jsvhover .sections-menu__submenu {
  display: block;
}

/* ==========================================================================
   SUBSECTION MENU (Подменю)
   ========================================================================== */
.sections-submenu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sections-submenu__item {
  float: left;
  position: relative;
  display: table;
  text-align: center;
  padding: 2px;
}

.sections-submenu__link {
  display: table-cell;
  font-size: 0.6875rem;
  text-transform: uppercase;
  vertical-align: middle;
  line-height: 8px;
  color: inherit;
  text-decoration: none;
}

.submenu-button {
  padding: 2px 10px;
}

.submenu-button__link {
  padding: 10px 4px;
  height: 28px;
  display: inline-block;
  text-align: center;
  background: var(--color-accent);
  color: var(--color-white);
  font-weight: 700;
  text-decoration: none;
  position: relative;
}

.submenu-button__link::before {
  content: '';
  border: 10px solid transparent;
  border-top-width: 14px;
  border-bottom-width: 14px;
  border-right-color: var(--color-accent);
  position: absolute;
  left: -8px;
}

.submenu-button__link::after {
  content: '';
  border: 10px solid transparent;
  border-top-width: 14px;
  border-bottom-width: 14px;
  border-left-color: var(--color-accent);
  position: absolute;
  width: 0;
  height: 0;
  right: -8px;
  top: 0;
}

.sections-submenu__link:hover .submenu-button__link,
.sections-submenu__link--selected .submenu-button__link {
  background: var(--color-primary);
}

.sections-submenu__link:hover .submenu-button__link::before,
.sections-submenu__link--selected .submenu-button__link::before {
  border-right-color: var(--color-primary);
}

.sections-submenu__link:hover .submenu-button__link::after,
.sections-submenu__link--selected .submenu-button__link::after {
  border-left-color: var(--color-primary);
}

/* ==========================================================================
   PRODUCT DETAIL (Страница товара)
   ========================================================================== */
.product-item-detail-info-section {
  padding: 0 20px;
}

.collection_catalog {
  margin-top: 35px;
}

.product-item-detail-info-container {
  margin-bottom: 20px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.product-item-detail-info-container-title {
  margin-bottom: 3px;
  color: var(--color-black);
  font-weight: 700;
  font-size: 13px;
}

.product-item-detail-pay-block {
  position: relative;
  margin-bottom: 15px;
  padding: 20px 20px 0;
  border: 1px solid var(--color-gray-very-light);
  border-radius: var(--border-radius);
  background-color: var(--color-white);
}

.product-item-detail-compare-container {
  position: relative;
  margin: 0 -20px;
  padding: 4px 15px;
  min-height: 30px;
  border-top: 1px solid var(--color-gray-very-light);
  background: var(--color-gray-bg);
  box-shadow: inset 0 1px 1px 0 #eee;
  color: #4e4e4e;
  vertical-align: middle;
  font-size: 0.75rem;
  line-height: 20px;
}

.product-item-detail-price-current {
  color: var(--color-sale);
  white-space: nowrap;
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 33px;
  transition: font-size 0.2s ease;
}

.product-item-detail-price-old {
  color: var(--color-gray-mid);
  text-decoration: line-through;
  white-space: nowrap;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 17px;
}

.product-item-scu-container {
  padding: 0 0 2px;
}

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

.product-item-scu-item-list {
  overflow: hidden;
  margin: 0 0 0 -2px;
  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%;
  vertical-align: middle;
}

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

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

.product-item-scu-item-color-block {
  position: relative;
  padding-top: 100%;
  outline: 1px solid var(--color-outline);
  cursor: pointer;
  transition: outline var(--transition-duration) ease;
}

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

.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 var(--color-outline);
  cursor: pointer;
  transition: outline var(--transition-duration) ease;
}

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

.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: 0.6875rem;
  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;
  overflow: hidden;
  outline-color: var(--color-disabled) !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-selected-scu-container {
  word-spacing: 1px;
}

.product-item-selected-scu {
  display: inline-block;
  overflow: hidden;
  padding: 0 5px;
  min-width: 22px;
  height: 22px;
  outline: 1px solid var(--color-outline);
  vertical-align: middle;
  text-align: center;
  text-transform: uppercase;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.6875rem;
  line-height: 22px;
}

.product-item-selected-scu-color {
  background-position: center;
  background-size: 20px 20px;
  background-repeat: no-repeat;
}

.product-item-amount {
  padding: 0 0 2px;
  text-align: center;
}

.product-item-amount-field-btn-plus,
.product-item-amount-field-btn-minus {
  position: relative;
  display: inline-block;
  min-width: 22px;
  height: 22px;
  border-radius: 2px;
  background-color: #f2f2f2;
  color: var(--color-white);
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
  transition: background-color var(--transition-duration) ease, opacity var(--transition-duration) ease;
}

.product-item-amount-field-btn-plus:hover,
.product-item-amount-field-btn-minus:hover {
  background: #d3d3d3;
}

.product-item-amount-field-btn-plus::after,
.product-item-amount-field-btn-minus::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  opacity: .8;
  transition: opacity var(--transition-duration) ease;
}

.product-item-amount-field-btn-disabled.product-item-amount-field-btn-plus::after,
.product-item-amount-field-btn-disabled.product-item-amount-field-btn-minus::after {
  opacity: .3 !important;
  cursor: default;
}

.product-item-amount-field-btn-disabled.product-item-amount-field-btn-plus:hover,
.product-item-amount-field-btn-disabled.product-item-amount-field-btn-minus:hover {
  background-color: #f2f2f2;
}

.product-item-amount-field-btn-plus::after {
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMCIgaGVpZ2h0PSIzMCIgdmlld0JveD0iMCAwIDMwIDMwIj4gIDxwYXRoIGZpbGw9IiM1MjVDNjgiIGZpbGwtcnVsZT0iZXZlbm9kZCIgZD0iTTE4LDEyIEwxOCwwIEwxMiwwIEwxMiwxMiBMMCwxMiBMMCwxOCBMMTIsMTggTDEyLDMwIEwxOCwzMCBMMTgsMTggTDMwLDE4IEwzMCwxMiBMMTgsMTIgWiIvPjwvc3ZnPg==") no-repeat center;
  background-size: 10px;
}

.product-item-amount-field-btn-minus::after {
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMCIgaGVpZ2h0PSIzMCIgdmlld0JveD0iMCAwIDMwIDMwIj4gIDxyZWN0IHdpZHRoPSIzMCIgaGVpZ2h0PSI2IiB5PSIxMiIgZmlsbD0iIzUyNUM2OCIgZmlsbC1ydWxlPSJldmVub2RkIi8+PC9zdmc+") no-repeat center;
  background-size: 10px;
}

.product-item-amount-field-btn-plus:hover::after,
.product-item-amount-field-btn-minus:hover::after {
  opacity: 1;
}

.product-item-amount-field {
  display: inline-block;
  padding: 0;
  max-width: 50px;
  width: auto;
  height: 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  background: transparent !important;
  color: var(--color-black);
  vertical-align: middle;
  text-align: center;
  font-weight: 700;
  font-size: 19px;
  line-height: 22px;
  transition: border var(--transition-duration) ease;
}

.product-item-amount-field:focus {
  outline: none !important;
}

.product-item-amount-description-container {
  color: var(--color-gray);
  white-space: nowrap;
  font-size: 0.75rem;
}

.product-item-amount-description-container strong {
  color: #333;
  white-space: nowrap;
}

.product-item-amount-label-container {
  margin: 5px 0;
  color: var(--color-gray);
  font-weight: 700;
  font-size: 0.75rem;
}

.product-item-quantity {
  color: #333;
  font-weight: 400;
  font-size: 0.75rem;
}

.btn.product-item-detail-buy-button {
  position: relative;
  display: block;
  margin: 0 auto 20px;
  max-width: 250px;
  width: 100%;
  height: 50px;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.75rem;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.product-item-detail-short-card-btn .btn.product-item-detail-buy-button {
  margin: 0;
}

.btn.product-item-detail-buy-button span {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  display: inline-white;
  min-height: 16px;
  max-width: 100%;
  white-space: normal;
  line-height: 16px;
  transform: translateY(-50%);
}

.btn-link.product-item-detail-buy-button {
  height: 25px;
}

/* ==========================================================================
   PRODUCT SLIDER (Слайдер товара)
   ========================================================================== */
.product-item-detail-slider-container {
  position: relative;
  max-width: 100%;
  background: transparent;
  transition: background-color 0.8s ease;
}

.product-item-detail-slider-block {
  position: relative;
  box-sizing: border-box;
  padding-top: 56.25%;
  height: 0;
}

.product-item-detail-slider-block.product-item-detail-slider-block-square {
  padding-top: 100%;
}

.product-item-detail-slider-images-container {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.product-item-detail-slider-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  opacity: 0;
  transition: opacity 0.25s linear;
}

.product-item-detail-slider-image.active {
  z-index: 10;
  opacity: 1;
}

.product-item-detail-slider-image img {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  outline: 1px solid transparent;
  background-position: left;
  background-repeat: no-repeat;
}

.product-item-detail-slider-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 180;
  height: 3px;
}

.product-item-detail-slider-controls-block {
  padding: 10px 0;
  text-align: center;
}

.product-item-detail-slider-controls-image {
  position: relative;
  display: inline-block;
  overflow: hidden;
  width: 65px;
  height: 65px;
  outline: 1px solid var(--color-outline);
  background-color: var(--color-white);
  text-align: center;
  cursor: pointer;
}

.product-item-detail-slider-controls-image.active {
  outline-width: 2px;
}

.product-item-detail-slider-controls-image img {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 65px;
  max-height: 65px;
  width: auto;
  height: auto;
  transform: translateY(-50%) translateX(-50%);
}

.product-item-detail-slider-left,
.product-item-detail-slider-right {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 111;
  display: block;
  width: 25%;
  background: var(--color-white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='30' viewBox='0 0 16 30'%3E%3Cpolygon fill='%23000000' fill-rule='evenodd' points='16 50 2 36 16 22 15 21 1 35 0 36 1 37 15 51' transform='translate(0 -21)'/%3E%3C/svg%3E") no-repeat center;
  opacity: .57;
  cursor: pointer;
  transition: all var(--transition-duration) ease;
}

.product-item-detail-slider-left {
  left: 0;
}

.product-item-detail-slider-right {
  right: 0;
  transform: rotate(180deg);
}

.product-item-detail-slider-left:hover,
.product-item-detail-slider-right:hover {
  background-color: rgba(255, 255, 255, .4);
  opacity: .8;
}

.product-item-detail-slider-close {
  display: none;
}

.product-item-detail-slider-container.popup .product-item-detail-slider-close {
  position: absolute;
  top: 4px;
  right: 110px;
  bottom: 0;
  z-index: 150;
  display: block;
  width: 50px;
  height: 50px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpolygon fill='%23000000' fill-rule='evenodd' points='16 15.1 8.944 8 16 1 15.006 0 8.05 7 .994 0 0 1 7.056 8 0 15.1 .994 16 8.05 9 15.006 16'/%3E%3C/svg%3E") no-repeat center;
  opacity: .27;
  cursor: pointer;
  transition: all var(--transition-duration) ease;
}

.product-item-detail-slider-container.popup .product-item-detail-slider-close:hover {
  opacity: 1;
}

.product-item-detail-slider-container.popup .product-item-detail-slider-right {
  right: 105px;
}

.product-item-detail-slider-container.magnified .product-item-detail-slider-image {
  z-index: 100;
}

.product-item-detail-slider-container.magnified .product-item-detail-slider-image img {
  outline-color: #ddd;
}

.product-item-detail-slider-container.magnified .product-item-detail-slider-left,
.product-item-detail-slider-container.magnified .product-item-detail-slider-right {
  z-index: 50;
}

.product-item-detail-slider-container.magnified .product-item-label-text,
.product-item-detail-slider-container.magnified .product-item-label-ring {
  opacity: 0;
}

.product-item-detail-slider-container.popup {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999999;
  background: var(--color-white);
  animation-name: imgPopupShow;
  animation-duration: 0.3s;
}

.product-item-detail-slider-container.popup .product-item-detail-slider-images-container {
  right: 105px;
}

.product-item-detail-slider-container.popup .product-item-detail-slider-block {
  padding-top: 0;
  height: 100vh;
}

.product-item-detail-slider-container.popup .product-item-detail-slider-image {
  position: absolute;
  top: 50%;
  left: 50%;
  max-height: 100vh;
  width: calc(100% - 150px);
  transform: translateY(-50%) translateX(-50%);
}

@keyframes imgPopupShow {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.product-item-detail-slider-container.popup .product-item-detail-slider-image img {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  cursor: default;
}

.product-item-detail-slider-container.popup .product-item-detail-slider-controls-block {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  padding: 20px;
  border-left: 1px solid #d3d3d3;
  background-color: var(--color-white);
}

.product-item-detail-slider-container.popup .product-item-detail-slider-controls-image {
  display: block;
  margin-bottom: 20px;
}

.product-item-detail-slider-container.popup .product-item-label-text,
.product-item-detail-slider-container.popup .product-item-label-ring {
  display: none;
}

/* ==========================================================================
   PRODUCT LABELS (Ярлыки товара)
   ========================================================================== */
.product-item-label-text,
.product-item-label-ring {
  position: absolute;
  z-index: 190;
  opacity: 1;
  transition: opacity 0.45s ease;
}

.product-item-label-text span,
.product-item-label-ring {
  display: inline-block;
  clear: both;
  margin-bottom: 2px;
  background: #f42c2c;
  color: var(--color-white);
  vertical-align: middle;
  text-align: center;
  transition: all 0.25s ease;
}

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

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

.product-item-label-text.product-item-label-small span {
  margin-bottom: 1px;
  padding: 2px 7px;
  font-weight: 400;
  font-size: 13px;
  line-height: 14px;
}

.product-item-label-text.product-item-label-big span {
  padding: 4px 10px;
  font-size: 13px;
  line-height: 17px;
}

.product-item-label-ring {
  box-sizing: border-box;
  border-radius: 50%;
  font-weight: 700;
}

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

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

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

.product-item-label-center {
  left: 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%;
  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 {
  transform: translateY(-50%) translateX(-50%);
}

/* ==========================================================================
   PRODUCT TABS (Табы товара)
   ========================================================================== */
.product-item-detail-tabs-container {
  min-height: 60px;
  border-bottom: 1px solid #ededed;
  background: var(--color-white);
}

.product-item-detail-tabs-list {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-item-detail-tabs-list::after {
  display: table;
  clear: both;
  content: "";
}

.product-item-detail-tab {
  float: left;
  min-height: 60px;
}

.product-item-detail-tab-link {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  padding: 10px 25px;
  height: 60px;
  color: var(--color-tab-inactive);
  vertical-align: middle;
  text-transform: uppercase;
  text-overflow: ellipsis;
  font-weight: 700;
  font-size: 13px;
  line-height: 45px;
  transition: all 0.25s ease;
}

.product-item-detail-tab-link:hover,
.product-item-detail-tab.active .product-item-detail-tab-link {
  color: var(--color-black);
}

.product-item-detail-tab-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 0;
  background: var(--color-tab-border);
  content: "";
  transition: all 0.25s ease;
}

.product-item-detail-tab-link:hover::after,
.product-item-detail-tab.active .product-item-detail-tab-link::after {
  height: 3px;
}

.product-item-detail-tab-link:active:after {
  height: 6px;
}

.product-item-detail-tab-content {
  padding: 25px 0;
}

.product-item-detail-tabs-container-fixed {
  position: fixed;
  top: -100px;
  right: 0;
  left: 0;
  z-index: 1000;
  background-color: var(--color-white);
  box-shadow: 0 4px 14px 0 rgba(32, 54, 74, .23);
  transition: top 0.35s linear;
  min-height: 45px;
  background: var(--color-white);
}

.product-item-detail-tabs-container-fixed.active {
  top: 0;
  opacity: 1;
}

.product-item-detail-tabs-container-fixed .product-item-detail-tabs-list {
  margin: 0 auto;
  max-width: 1048px;
}

.product-item-detail-tabs-container-fixed .product-item-detail-tab {
  min-height: 45px;
}

.product-item-detail-tabs-container-fixed .product-item-detail-tab-link {
  padding: 10px 25px;
  height: 45px;
  line-height: 25px;
}

.product-item-detail-short-card-fixed {
  position: fixed;
  top: -85px;
  right: 0;
  left: 0;
  z-index: 1010;
  box-sizing: border-box;
  padding: 7px 0 8px;
  height: 85px;
  background-color: var(--color-white);
  box-shadow: 0 4px 14px 0 rgba(32, 54, 74, .23);
  transition: top 0.22s linear;
}

.product-item-detail-short-card-fixed.active {
  top: 0;
  opacity: 1;
}

.product-item-detail-short-card-fixed.active + .product-item-detail-tabs-container-fixed.active {
  top: 85px;
}

.product-item-detail-short-card-fixed .product-item-detail-short-card-content-container {
  margin: 0 auto;
  max-width: 1048px;
}

.product-item-detail-short-card-content-container table {
  min-width: 100%;
  border-collapse: collapse;
}

.product-item-detail-short-card-image {
  padding-right: 15px;
  width: 80px;
  vertical-align: middle;
  text-align: left;
}

.product-item-detail-short-card-image img {
  max-width: none;
  height: 65px;
}

.product-item-detail-short-title-container {
  max-width: 650px;
}

.product-item-detail-short-title-text {
  display: block;
  color: var(--color-black);
  text-overflow: ellipsis;
  font-size: 1rem;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.product-item-detail-short-card-price {
  padding: 0 10px;
  vertical-align: middle;
  text-align: right;
}

.product-item-detail-short-card-btn {
  padding-left: 10px;
  min-width: 120px;
}

.product-item-detail-tab-content {
  display: none;
}

.product-item-detail-tab-content.active {
  display: block;
}

.product-item-detail-tab-content h3 {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 0.875rem;
}

.product-item-detail-properties {
  display: block;
  overflow: hidden;
  margin: 0;
  max-width: 560px;
  color: var(--color-gray);
  font-size: 0.75rem;
}

.product-item-detail-properties dl {
  clear: both;
}

.product-item-detail-properties dt {
  float: left;
  clear: both;
  font-weight: 400;
}

.product-item-detail-properties dd {
  float: right;
  margin-bottom: 3px;
  margin-left: 5px;
  color: var(--color-black);
}

/* ==========================================================================
   UTILITY CLASSES (Вспомогательные классы)
   ========================================================================== */
.no-select {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

input[type='number'] {
  -moz-appearance: textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

/* ==========================================================================
   MEDIA QUERIES (Адаптивность)
   ========================================================================== */
@media (max-width: 992px) {
  .product-item-detail-info-section {
    padding: 0;
  }
  .product-item-detail-tabs-container {
    display: none !important;
  }
  .product-item-detail-tab-content {
    display: block !important;
  }
}

@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;
  }
  .product-item-label-ring.product-item-label-small,
  .product-item-scalable-card.hover .product-item-label-ring.product-item-label-small {
    width: 20px;
    height: 20px;
    font-size: 13px;
    line-height: 20px;
  }
  .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-detail-slider-container.popup .product-item-detail-slider-images-container {
    right: 0;
  }
  .product-item-detail-slider-container.popup .product-item-detail-slider-block {
    height: calc(100vh - 111px);
  }
  .product-item-detail-slider-container.popup .product-item-detail-slider-image {
    width: 90%;
  }
  .product-item-detail-slider-container.popup .product-item-detail-slider-image img {
    max-height: calc(100vh - 115px);
  }
  .product-item-detail-slider-container.popup .product-item-detail-slider-controls-block {
    position: absolute;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    overflow-x: auto;
    max-height: 111px;
    border-top: 1px solid #d3d3d3;
    border-left: none;
    white-space: nowrap;
  }
  .product-item-detail-slider-container.popup .product-item-detail-slider-controls-image {
    display: inline-block;
    margin-bottom: 0;
  }
  .product-item-detail-slider-container.popup .product-item-detail-slider-close {
    right: 10px;
    z-index: 200;
  }
  .product-item-detail-slider-left,
  .product-item-detail-slider-right {
    max-width: 75px;
  }
  .product-item-detail-slider-container.popup .product-item-detail-slider-right {
    right: 0;
  }
}
/* End */


/* Start:/local/templates/profparket_10.2019/components/bitrix/catalog.smart.filter/.default/style.css?167995080019735*/
.bx-filter {
	width: 100%;
	min-width: 220px;
	font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
	margin-bottom: 20px;
}
.bx-filter .bx-filter-section {
	/*background: #edf6fc; /* color */
	position: relative;
}
.bx-filter .bx-filter-section>.row {
	padding: 0 5px;
}
.catalog-filter-title {
	font-size: 18px;
	color: #000;
	text-transform: uppercase;
	margin-top: 15px;
	margin-bottom: 18px;
	border-bottom: 1px solid #ccc;
	padding-bottom: 12px;

}
@media (max-width: 768px) {
	.catalog-filter-title {
		border: none;
		background: #79b715;
		color: #ffffff;
		font-size: 14px;
		display: block;
		text-align: center;
		line-height: 2.5em;
		border-radius: 4px;
		font-weight: 500;
		border-bottom: 2px solid #679b10;
		box-shadow: 0 1px 0 #57840b;
		white-space: nowrap;
		padding-bottom: 0;
	}
	.catalog-filter form {
		display: none;
	}
	.catalog-filter form.show {
			display: block;
	}
}
/*Sections*/

.bx-filter .bx-filter-parameters-box {
	position: relative;
}
.bx-filter .bx-filter-parameters-box-title {
	position: relative;
	font-size: 14px;
	color: #000;
	padding-bottom: 15px;
}
@media (min-width: 992px) {
	.bx-filter .bx-filter-section .col-md-4:nth-child(3n+1) {
		clear: both;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.bx-filter .bx-filter-section .col-md-4:nth-child(2n+1) {
		clear: both;
	}
}
.bx-filter .bx-filter-parameters-box-title span {
	color: #000;
	border-bottom: 1px solid transparent;
	cursor: pointer;
}
.bx-filter .bx-filter-parameters-box-title span:hover {
	border-color: #000;
}
.bx-filter .bx-filter-parameters-box.bx-active .bx-filter-parameters-box-title span {
	/*color: #95a1a8;*/
}
.bx-filter .bx-filter-parameters-box.bx-active .bx-filter-parameters-box-title span:hover {
	/*color: #758087;*/
	border-color: transparent;
}
.bx-filter .bx-filter-block {
	display: none;
	-webkit-transition: padding .3s ease;
	-moz-transition: padding .3s ease;
	-ms-transition: padding .3s ease;
	-o-transition: padding .3s ease;
	transition: padding .3s ease;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}
.bx-filter .bx-filter-button-box .bx-filter-block,
.bx-filter .bx-filter-parameters-box.bx-active .bx-filter-block {
	display: block;
}
.bx-filter .bx-filter-parameters-box.bx-active .bx-filter-block i.bx-ft-sub {
	font-size: 14px;
	font-style: normal;
	display: block;
	padding-bottom: 5px;
}
.bx-filter-parameters-box-container {
	padding-bottom: 20px;
}
.bx-filter-parameters-box-container .checkbox:first-child {
	margin-top: 0;
}
.bx-filter .bx-filter-parameters-box-container-block {
	font-size: 11px;
	color: #3f3f3f;
}
/*
* INPUTS
*
*/

.bx-filter .bx-filter-input-container {}
.bx-filter .bx-filter-input-container input {
	display: block;
	width: 100%;
	font-size: 18px;
	height: 38px;
	margin: 0;
	padding: 0 4px;
	border: 1px solid #ccd5db;
	border-radius: 2px;
	background: #fff;
	outline: none
}
.bx-retina .bx-filter .bx-filter-input-container input {
	border-style: solid;
	border-width: 1px;
	-webkit-border-image: url(/local/templates/profparket_10.2019/components/bitrix/catalog.smart.filter/.default/images/border_default.png) 2 repeat;
	-moz-border-image: url(/local/templates/profparket_10.2019/components/bitrix/catalog.smart.filter/.default/images/border_default.png) 2 repeat;
	-o-border-image: url(/local/templates/profparket_10.2019/components/bitrix/catalog.smart.filter/.default/images/border_default.png) 2 repeat;
	border-image: url(/local/templates/profparket_10.2019/components/bitrix/catalog.smart.filter/.default/images/border_default.png) 2 repeat;
}
/*.bx-filter .bx-filter-input-container input:focus {
	border-color: #499fd8;
}
.bx-retina .bx-filter .bx-filter-input-container input:focus {
	-webkit-border-image: url(/local/templates/profparket_10.2019/components/bitrix/catalog.smart.filter/.default/images/active.png) 2 repeat;
	   -moz-border-image: url(/local/templates/profparket_10.2019/components/bitrix/catalog.smart.filter/.default/images/active.png) 2 repeat;
		 -o-border-image: url(/local/templates/profparket_10.2019/components/bitrix/catalog.smart.filter/.default/images/active.png) 2 repeat;
			border-image: url(/local/templates/profparket_10.2019/components/bitrix/catalog.smart.filter/.default/images/active.png) 2 repeat;
}

/*
COLOR
*/
.bx-ios .bx-filter .bx-filter-input-container input {
	/* Fix of input shadow for IOS browsers. */

	background-image: -webkit-linear-gradient(#ffffff 0%, #ffffff 100%);
	background-image: linear-gradient(#ffffff 0%, #ffffff 100%);
}
.bx-filter .bx-filter-button-box {
	clear: both;
}
/*
*Track
*
*/

.bx-filter .bx-ui-slider-track-container {
	padding-top: 35px;
	padding-bottom: 25px;
}
.bx-filter .bx-ui-slider-track {
	position: relative;
	height: 7px;
	/*background: #d8e9f0;/* COLOR */
}
.bx-filter .bx-ui-slider-part {
	position: absolute;
	top: -6px;
	width: 1px;
	height: 17px;
	background: #a2bfc7;
}
.bx-filter .bx-ui-slider-part.p1 {
	left: -1px;
}
.bx-filter .bx-ui-slider-part.p2 {
	left: 25%;
}
.bx-filter .bx-ui-slider-part.p3 {
	left: 50%;
}
.bx-filter .bx-ui-slider-part.p4 {
	left: 75%;
}
.bx-filter .bx-ui-slider-part.p5 {
	right: -1px;
}
.bx-filter .bx-ui-slider-part span {
	font-size: 11px;
	/*font-weight: bold;*/

	position: absolute;
	top: -16px;
	left: 50%;
	display: block;
	width: 100px;
	margin-left: -50px;
	text-align: center;
	color: #000;
}
.bx-filter .bx-ui-slider-part.p2 span,
.bx-filter .bx-ui-slider-part.p3 span,
.bx-filter .bx-ui-slider-part.p4 span {
	color: #6b8086;
}
.bx-filter .bx-ui-slider-range,
.bx-filter .bx-ui-slider-pricebar,
.bx-filter .bx-ui-slider-pricebar-vd,
.bx-filter .bx-ui-slider-pricebar-vn,
.bx-filter .bx-ui-slider-pricebar-v {
	position: absolute;
	top: 0;
	bottom: 0;
}
.bx-filter .bx-ui-slider-range {
	z-index: 50;
	background: #d6d6d6;
}
.bx-filter .bx-ui-slider-pricebar {
	z-index: 100;
}
.bx-filter .bx-ui-slider-pricebar-vd {
	z-index: 60;
	background: #087E78;/* COLOR */
}
.bx-filter .bx-ui-slider-pricebar-vn {
	z-index: 70;
	/*background: #087E78;*//* COLOR */
}
.bx-filter .bx-ui-slider-pricebar-v {
	z-index: 80;
	background: #087E78;/* COLOR */
}
.bx-filter .bx-ui-slider-handle {
	position: absolute;
	top: 100%;
	width: 12px;
	height: 22px;
	border-bottom: none;
}
.bx-filter .bx-ui-slider-handle:hover {
	-webkit-cursor: grab;
	-ms-cursor: grab;
	-o-cursor: grab;
	cursor: grab;
}
.bx-filter .bx-ui-slider-handle:active {
	-webkit-cursor: grabbing;
	-ms-cursor: grabbing;
	-o-cursor: grabbing;
	cursor: grabbing;
}
.bx-filter .bx-ui-slider-handle.left {
	left: 0;
	margin-left: -12px;
	border-radius: 20px 0 0 0;
	background: #087E78;
	/* COLOR */
	/*background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAARCAYAAADUryzEAAAArUlEQVQ4y6WSQQ6FMAhEXbjyXwzOpBdx5bXKbYRWLFSJ2m8ysVHfzGA7DH9cuKVfNwwM40ZzZzJlmE3WTjjNfF9Fn2EwMH5pUGYWOJ3w6wZ4wDKz6rUBumQPPxrUmT0IxuxpqxYLQ7MOG5TaHtbk1iza5+VauW5dfdcYSDKcMLkP7wxdA5sMQWV/BkwDTY7mtAfHjpJ/Ihj4DoIgXZ9J+siaimi6rimLgSw87qod+1BRTwMJRYoAAAAASUVORK5CIIA=) no-repeat right top;*/
}
.bx-filter .bx-ui-slider-handle.right {
	right: 0;
	margin-right: -12px;
	border-radius: 0 20px 0 0;
	background: #087E78;
	/* COLOR */
	/*background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAARCAYAAADUryzEAAAAq0lEQVQ4y6WSQRKDIAxFXXSlF0vOZC+SlddKblMUUhKCraIzX9Ahj58PE268TE8e3GSFJ5BUTDskaRl1QFk8BsHs4BCMQMruVEe+l4kWglFu5yLEZKDFXyeXIFoEpg3z738mJTzXhncj75+QtqjnJENO2sG4I1VXDtR3ogv7O1dHxV10gi75EGILiE78RRKy33AOq07i+Us4kRamkOPGptesQjeXIjZjO+fXB+hjUU/S3Z+WAAAAAElFTkSuQmCC) no-repeat left top;*/
}

/*
*	Select
*
*/

.bx-filter .bx-filter-select-container {
	display: block;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	height: 35px;
	border-radius: 3px;
	border: 1px solid #ccd5db;
}
.bx-retina .bx-filter .bx-filter-select-container {
	border-style: solid;
	border-width: 1px;
	-webkit-border-image: url(/local/templates/profparket_10.2019/components/bitrix/catalog.smart.filter/.default/images/border_default.png) 2 repeat;
	-moz-border-image: url(/local/templates/profparket_10.2019/components/bitrix/catalog.smart.filter/.default/images/border_default.png) 2 repeat;
	-o-border-image: url(/local/templates/profparket_10.2019/components/bitrix/catalog.smart.filter/.default/images/border_default.png) 2 repeat;
	border-image: url(/local/templates/profparket_10.2019/components/bitrix/catalog.smart.filter/.default/images/border_default.png) 2 repeat;
}
/* COLOR */
/*.bx-filter .bx-filter-select-container.bx-active,
.bx-filter .bx-filter-select-container:focus {
	border-color: #499fd8;
}
.bx-retina .bx-filter .bx-filter-select-container.bx-active,
.bx-retina .bx-filter .bx-filter-select-container:focus {
	-webkit-border-image: url(/local/templates/profparket_10.2019/components/bitrix/catalog.smart.filter/.default/images/active.png) 2 repeat;
	   -moz-border-image: url(/local/templates/profparket_10.2019/components/bitrix/catalog.smart.filter/.default/images/active.png) 2 repeat;
		 -o-border-image: url(/local/templates/profparket_10.2019/components/bitrix/catalog.smart.filter/.default/images/active.png) 2 repeat;
			border-image: url(/local/templates/profparket_10.2019/components/bitrix/catalog.smart.filter/.default/images/active.png) 2 repeat;
}*/
.bx-filter .bx-filter-select-block {
	position: relative;
	display: block;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	height: 33px;
	margin: 0;
	padding: 0 33px 0 10px;
	border: none;
	border-radius: 2px;
	background: #fff;
}
.bx-filter .bx-filter-select-text {
	font-size: 15px;
	line-height: 33px;
	overflow: hidden;
	max-width: 100%;
	height: 33px;
	cursor: pointer;
	vertical-align: middle;
	white-space: nowrap;
	text-overflow: ellipsis;
	-ms-text-overflow: ellipsis;
}
.bx-filter .bx-filter-select-text.fix {
	min-width: 120px;
}
.bx-filter .bx-filter-select-text label {
	cursor: pointer;
}
.bx-filter .bx-filter-select-arrow {
	position: absolute;
	top: 0;
	right: 0;
	width: 34px;
	height: 33px;
	cursor: pointer;
	background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAECAYAAABCxiV9AAAAG0lEQVQY02OYOXPmf1yYAQRwSsAATglkBch8ADy7LKHqFrgoAAAAAElFTkSuQmCC') no-repeat center;
}
/*
*	Select popup
*
*/

.bx-filter-select-popup {
	background: #fff;
	padding: 0;
	min-width: 173px;
}
.bx-filter-select-popup ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.bx-filter-select-popup ul li {
	display: block;
	text-align: left;
	vertical-align: middle;
}
.bx-filter-select-popup ul li:first-child {
	border-bottom: 1px solid #e5e5e5;
	padding-bottom: 5px;
	margin-bottom: 5px;
}
.bx-filter-select-popup ul li label {
	font-size: 14px;
	line-height: 26px;
	display: block;
	text-align: left !important;
	overflow: hidden;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	height: 26px;
	padding: 0 5px;
	cursor: pointer;
	vertical-align: middle;
	white-space: nowrap;
	text-overflow: ellipsis;
	-ms-text-overflow: ellipsis;
	color: #575757;
}
.bx-filter-select-popup ul li label.selected,
.bx-filter-select-popup ul li label:hover {
	color: #000;
	background: #f3f8fa;
}
.bx-filter-select-popup ul li label.disabled {
	color: #b8b8b8;
	background: transparent;
}
.bx-filter-select-popup ul li .bx-filter-param-text {
	line-height: 34px !important;
}
/*
* TAGS
*
*/

.bx-filter .bx-filter-tag {
	padding: 18px;
	/*border-top: 1px solid #d7eaf7;/* COLOR */
	/*border-bottom: 1px solid #d7eaf7;/* COLOR */
}
.bx-filter .bx-tag-link {
	font-size: 12px;
	text-decoration: none;
	/*color: #68939e;/* COLOR */
	text-shadow: none;
}
.bx-filter .bx-tag-link.bx-active,
.bx-filter .bx-tag-link:hover {
	color: #1d3d46;
}
/*
*	LABEL
*
*/
.bx-filter .bx-filter-param-label {
	min-height: 20px;
	font-weight: normal;
	cursor: pointer;
}

.bx-filter .bx-filter-param-btn-inline .bx-filter-param-label {
	float: left;
	display: block;
	margin-right: 5px;
}
.bx-filter .bx-filter-param-btn-block .bx-filter-param-label {
	display: block;
}
.bx-filter .bx-filter-param-label {
	/*font-size: 13px;*/
}
.bx-filter .bx-filter-param-label.dib {
	display: inline-block;
}
.bx-filter .bx-filter-param-text {
	font-weight: normal;
}
.bx-filter .bx-filter-param-label.disabled .bx-filter-param-text {
	color: #6c6c6c;
}
.bx-filter-select-popup .bx-filter-param-label.bx-active {
	background: #f3f8fa;
}
/*
*	Checkbox / Radio 
*
*/

.bx-filter .bx-filter-input-checkbox {}
.bx-filter .bx-filter-input-checkbox input[type=radio],
.bx-filter .bx-filter-input-checkbox input[type=checkbox] {}
.bx-filter .bx-filter-input-checkbox .bx-filter-param-text {
	display: inline-block;
	text-align: left;
}
/*
* 	BTN 
*
*/
.bx-filter .btn {
	text-align: center;
	padding: 10px 12px;
}
.bx-filter-button-flex {
	display: flex;
}
.bx-filter .btn-buy {
	display: inline-block;
	width: 40%;
	margin-right: 5%;
}
.bx-filter .btn:first-child {
	margin-right: 10px;
}
.bx-filter .btn-buy:nth-child(2) {
	background: #d81f1f;
	border-bottom: 2px solid #D83F3F;
	box-shadow: 0 1px 0 #A50117;
}
.bx-filter .bx-filter-param-btn {
	font-weight: normal;
	display: inline-block;
	width: 38px;
	height: 38px;
	padding: 6px;
	text-align: center;
	text-decoration: none;
	color: #000;
	vertical-align: middle;
	border: 1px solid #ccd5db;
	border-radius: 2px;
	background: #fff;
	position: relative;
	-webkit-transition: border .3s ease, box-shadow .1s ease, color .3s ease;
	-moz-transition: border .3s ease, box-shadow .1s ease, color .3s ease;
	-ms-transition: border .3s ease, box-shadow .1s ease, color .3s ease;
	-o-transition: border .3s ease, box-shadow .1s ease, color .3s ease;
	transition: border .3s ease, box-shadow .1s ease, color .3s ease;
	cursor: pointer;
}
.bx-retina .bx-filter .bx-filter-param-btn {
	border-style: solid;
	border-width: 1px;
	-webkit-border-image: url(/local/templates/profparket_10.2019/components/bitrix/catalog.smart.filter/.default/images/border_default.png) 2 repeat;
	-moz-border-image: url(/local/templates/profparket_10.2019/components/bitrix/catalog.smart.filter/.default/images/border_default.png) 2 repeat;
	-o-border-image: url(/local/templates/profparket_10.2019/components/bitrix/catalog.smart.filter/.default/images/border_default.png) 2 repeat;
	border-image: url(/local/templates/profparket_10.2019/components/bitrix/catalog.smart.filter/.default/images/border_default.png) 2 repeat;
}
/* COLOR */
/*.bx-filter .bx-filter-param-label.bx-active .bx-filter-param-btn,
.bx-filter .bx-filter-param-btn:hover,
.bx-filter .bx-filter-param-btn:active,
.bx-filter .bx-filter-param-btn:focus {
	border-color: #499fd8;
}
.bx-retina .bx-filter .bx-filter-param-label.bx-active .bx-filter-param-btn,
.bx-retina .bx-filter .bx-filter-param-btn:hover,
.bx-retina .bx-filter .bx-filter-param-btn:active,
.bx-retina .bx-filter .bx-filter-select-container:focus {
	-webkit-border-image: url(/local/templates/profparket_10.2019/components/bitrix/catalog.smart.filter/.default/images/active.png) 2 repeat;
	   -moz-border-image: url(/local/templates/profparket_10.2019/components/bitrix/catalog.smart.filter/.default/images/active.png) 2 repeat;
		 -o-border-image: url(/local/templates/profparket_10.2019/components/bitrix/catalog.smart.filter/.default/images/active.png) 2 repeat;
			border-image: url(/local/templates/profparket_10.2019/components/bitrix/catalog.smart.filter/.default/images/active.png) 2 repeat;
}*/
/* --- colors */
.bx-filter .bx-filter-param-btn.bx-color-sl {}

.bx-filter .bx-filter-param-label.disabled .bx-filter-param-btn.bx-color-sl {
	background: transparent;
	box-shadow: none
}
.bx-filter .bx-filter-param-label.disabled .bx-filter-param-btn.bx-color-sl {
	position: relative;
}
.bx-filter .bx-filter-param-label.disabled .bx-filter-param-btn.bx-color-sl:before {
	position: absolute;
	bottom: 0;
	right: 0;
	top: 0;
	left: 0;
	content: ' ';
	display: block;
	z-index: 100;
	background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAAA/UlEQVQ4y5WSQQ6CQAxFOSBuwAtoAitc4R6MkKgYJULUi8Ax4DgKm9o/45BxBBNJmkB/33T6qUVEHkfDUXHY1sQD7V2DWg+JJox3lOZ3enYdf5IzAjnQkvxGa64Fg2S9PV3JXa4ozoovWEGbY0nOIqDkfIVeQ5hBAOQsAy5guO8FbEJxVqqDZ+rUuQ6rziJ3VLkBcs05BBxlF1nIADrJESYgE0YhAER0KH5DphEKFDNPuG1AhTAi4jnRWV17FNYhcT3NHLzLzuUnjI0YHP203EWY8ENqNsAq5Y3Qf4NuhIT7wTBsDxgIbRjvCfCUe6ozoFCuXIukj5c/lhy1/gvSDM3b8PrjegAAAABJRU5ErkJggg==") no-repeat center;
	opacity: .7;
}
.bx-filter .bx-filter-param-btn .bx-filter-param-text {
	line-height: 26px;
}
/*
* BTN P/M
*
*/

.bx-filter .bx-filter-param-btn.bx-spm {
	width: 23px;
	min-width: 23px;
	height: 23px;
	line-height: 23px;
	font-weight: normal;
	padding: 0;
	font-size: 17px;
	color: #767b7e;
	vertical-align: top;
	border-radius: 50%;
	background-color: transparent;
}
.bx-filter .bx-filter-param-btn.bx-spm.bx-plus {
	background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAAMCAYAAAC0qUeeAAAANUlEQVQoz2NgwAQsQMzJQCSwAeKGQa7YFKoAhmOgim3QsAxIcSFUkhC2GaqhgQ4UgNgFmwQAij8OUFmBFssAAAAASUVORK5CIIA=") no-repeat center;
}
.bx-filter .bx-filter-param-btn.bx-spm.bx-minus {
	background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAACCAYAAABhYU3QAAAAG0lEQVQYV2NgYGDgBuI4AlgGiBn4gLicAFYGAAFkBwE95V42AAAAAElFTkSuQmCC") no-repeat center;
}
.bx-filter .bx-filter-param-btn.bx-spm:active {
	outline: none !important;
	box-shadow: inset 0 2px 3px rgba(0, 0, 0, .12);
}
.bx-filter span.bx-spm {
	font-size: 18px;
	/*font-weight:bold;*/

	line-height: 23px;
	display: inline-block;
	height: 23px;
	margin: 0 10px;
	vertical-align: middle;
	color: #000;
}
/*
*	icon
*
*/

.bx-filter-select-popup .bx-filter-select-text-icon,
.bx-filter .bx-filter-select-text-icon {
	line-height: 33px;
	position: relative;
	display: inline-block;
	width: 23px;
	height: 23px;
	margin-top: -4px;
	margin-right: 2px;
	vertical-align: middle;
	border-radius: 2px;
}
.bx-filter-select-popup .bx-filter-btn-color-icon,
.bx-filter .bx-filter-btn-color-icon {
	line-height: 24px;
	/*position:relative;*/
	/*top:4px;*/

	border-radius: 2px;
	display: inline-block;
	width: 24px;
	height: 24px;
	vertical-align: middle;
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .05);
	-webkit-background-size: cover;
	background-size: cover;
}
.bx-filter-select-popup .bx-filter-btn-color-icon {
	width: 20px;
	height: 20px;
	margin: 2px 0;
	top: 0 !important;
}
.bx-filter .bx-filter-select-block .bx-filter-btn-color-icon {
	top: -1px !important;
}
.bx-filter-btn-color-icon.all {
	position: relative;
	border: none;
	box-shadow: none
}
.bx-filter-btn-color-icon.all:after,
.bx-filter-btn-color-icon.all:before {
	position: absolute;
	width: 60%;
	height: 60%;
	background: #fff;
	content: " ";
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .2);
}
.bx-filter-btn-color-icon.all:after {
	right: 0;
	bottom: 0;
}
.bx-filter-btn-color-icon.all:before {
	top: 0;
	left: 0;
}
.bx-filter .bx-filter-param-label.disabled .bx-filter-btn-color-icon {
	opacity: .2;
}
/*
* 	BIZ
*
*/

.bx-filter .bx-filter-parameter-biz {
	font-size: 14px;
	line-height: 15px;
	display: inline-block;
	margin-right: 10px;
	text-decoration: none;
	color: #1485ce;
	border-bottom: 1px dashed;
}
.bx-filter .bx-filter-parameter-biz:hover {
	text-decoration: none;
	border-bottom: 1px solid;
}
.bx-filter .bx-filter-parameter-biz.bx-active {
	position: relative;
	/*padding-left:20px;*/

	color: #000;
	border-color: transparent;
}
/*
*	BTN result and reset 
*
*/

.btn-themes {
	/*background-color: #1485CE;/* COLOR */
	/*border-color: #1485CE;/* COLOR */
	color: #FFF
}
.btn-themes.bx-active,
.btn-themes.focus,
.btn-themes:active,
.btn-themes:focus,
.btn-themes:hover{
	/*background-color: #53A4D8;/* COLOR */
	/*border-color: #53A4D8;/* COLOR */
	color: #FFF
}
/*
* 	Result Popup
*
*/

.bx-filter .bx-filter-popup-result {
	font-size: 13px;
	font-weight: normal;
	position: absolute;
	z-index: 915;
	display: none;
	line-height: normal;
	margin-top: -7px;
	margin-left: 10px;
	padding: 0 10px;
	white-space: nowrap;
	color: #3f3f3f;
	min-height: 37px;
	line-height: 18px;
	border-style: solid;
	border: 1px solid #C6DCE7;
}
.bx-filter .bx-filter-popup-result.left {
	border-width: 2px 10px 2px 2px;
	-webkit-border-image: url(/local/templates/profparket_10.2019/components/bitrix/catalog.smart.filter/.default/images/result_popup_left.png) 4 20 4 4 repeat;
	-moz-border-image: url(/local/templates/profparket_10.2019/components/bitrix/catalog.smart.filter/.default/images/result_popup_left.png) 4 20 4 4 repeat;
	-o-border-image: url(/local/templates/profparket_10.2019/components/bitrix/catalog.smart.filter/.default/images/result_popup_left.png) 4 20 4 4 repeat;
	border-image: url(/local/templates/profparket_10.2019/components/bitrix/catalog.smart.filter/.default/images/result_popup_left.png) 4 20 4 4 fill repeat;
}
.bx-filter .bx-filter-popup-result.right {
	border-width: 2px 2px 2px 10px;
	-webkit-border-image: url(/local/templates/profparket_10.2019/components/bitrix/catalog.smart.filter/.default/images/result_popup_right.png) 4 4 4 20 repeat;
	-moz-border-image: url(/local/templates/profparket_10.2019/components/bitrix/catalog.smart.filter/.default/images/result_popup_right.png) 4 4 4 20 repeat;
	-o-border-image: url(/local/templates/profparket_10.2019/components/bitrix/catalog.smart.filter/.default/images/result_popup_right.png) 4 4 4 20 repeat;
	border-image: url(/local/templates/profparket_10.2019/components/bitrix/catalog.smart.filter/.default/images/result_popup_right.png) 4 4 4 20 fill repeat;
}

.bx-filter .bx-filter-popup-result.right {
	left: 97%;
}
.bx-filter .bx-filter-popup-result.left {
	right:97%;
}
.bx-filter-horizontal .bx-filter-popup-result{
	display: inline-block;
	position: relative;
	left: auto;
	right: auto;
	bottom: -7px;
}
.bx-filter .bx-filter-popup-result a {
	color: #0073a3;
	line-height: 10px;
}
.bx-filter .bx-filter-popup-result a:hover {
	text-decoration: none;
}
.bx-filter .bx-filter-popup-result-close {
	display: none;
}
@media (max-width: 767px) {
	.bx-touch .bx-filter .bx-filter-popup-result {
		font-size: 12px;
		line-height: 14px;
		position: fixed !important;
		z-index: 1001;
		top: auto !important;
		right: 0 !important;
		bottom: 0 !important;
		left: 0 !important;
		margin-top: 0;
		margin-left: 0;
		width: auto;
		height: auto;
		padding: 10px;
		border-radius: 2px;
		border: 1px solid #c6dae7;
		background: rgba(255,255,255,.9);
	}
	.bx-touch .bx-filter .bx-filter-popup-result br{display: none;}
	.bx-filter .bx-filter-popup-result .arrow {
		display: none;
	}
}
/* End */


/* Start:/local/templates/profparket_10.2019/css/catalog-optimized.css?17668460786341*/
/* КРИТИЧЕСКИЙ CSS для мгновенной отрисовки */
.catalog-section__row { display: flex; flex-wrap: wrap; }
.catalog-section__image { position: relative; overflow: hidden; }
.catalog-section__image img { width: 100%; height: auto; display: block; }

/* Оптимизированные стили с микро-анимациями */
.my-prop-table_code span {
    color: #79b715;
    font-weight: 700;
    margin-left: 10px;
    transition: color 0.2s ease;
}

.catalog-section__image-brand {
    position: absolute;
    bottom: 5px;
    width: 95%;
    top: 0;
    left: 10px;
    z-index: 2;
}

.custom-item-danil {
    width: 50%;
}

.custom-item-danil p {
    margin-bottom: 5px !important;
}

.custom-items-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-top: 15px;
}

.my-article {
    width: 20px;
    overflow: hidden;
    position: relative;
}

.modal-header {
    text-align: center;
}

.modal-header h5 {
    padding: 0px!important;
    margin-left: auto;
    margin-right: auto;
}

.close {
    margin-left: 0px!important;
}

#id_product {
    display: none;
}

/* Микро-анимации для улучшения UX */
.random-button-block {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    transform: translateZ(0); /* Аппаратное ускорение */
}

.random-button-block:active {
    transform: scale(0.95);
    opacity: 0.8;
}

.catalog-sort__links a {
    transition: opacity 0.2s ease;
}

.catalog-sort__links a:active {
    opacity: 0.7;
}

.catalog-section__item {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    backface-visibility: hidden; /* Улучшение производительности */
}

.catalog-section__item:active {
    transform: translateY(2px);
}

/* Затемнение при наведении на кнопки */
.random-button-block:hover {
    filter: brightness(0.9);
    background-color: #5a8a10;
}

.ajax_compare_btn:hover .random-button-block,
.ajax_basket_card:hover .random-button-block,
.ajax_card:hover .random-button-block {
    filter: brightness(0.85);
    background-color: #5a8a10;
}

/* Затемнение для кнопок в модальных окнах */
.modal .btn:hover,
#main-ajax .btn:hover,
#main-basket-ajax .btn:hover {
    filter: brightness(0.9);
    background-color: #5a8a10;
}

/* Затемнение для кнопок сортировки */
.catalog-sort__links a:hover {
    filter: brightness(0.8);
}

/* Затемнение для кнопки сброса */
.catalog-sort_half a:hover {
    filter: brightness(0.8);
}

/* Плавные переходы для всех эффектов наведения */
.random-button-block,
.modal .btn,
#main-ajax .btn,
#main-basket-ajax .btn,
.catalog-sort__links a,
.catalog-sort_half a {
    transition: all 0.2s ease-in-out;
}

/* Стили для распродажи */
.catalog-section__image-sale {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff4444;
    color: white;
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
    z-index: 3;
    text-transform: uppercase;
}

/* Базовые стили для структуры */
.catalog-section__col {
    margin-bottom: 1.5rem;
}

.catalog-section__col > * {
    height: 100%;
}

/* Стили для отступов секций */
.catalog-detail__inner {
    margin-bottom: 20px;
}

.catalog-top-sections {
    margin: 1rem 0;
}

/* Стили для формы выбора количества товаров */
.catalogPerPageCover {
    display: inline-block;
    margin-left: 15px;
}

.catalogPerPageCover form {
    display: inline-block;
    margin-left: 5px;
}

.catalogPerPageCover select {
    padding: 2px 5px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

/* ===== ОПТИМИЗАЦИИ ДЛЯ МОБИЛЬНЫХ УСТРОЙСТВ ===== */

@media (max-width: 1199.98px) {
    .custom-item-danil {
        width: 50%;
    }
}

@media (max-width: 767.98px) {
    .custom-item-danil {
        width: 100%;
    }
    
    .catalog-section__image-brand {
        width: 90%;
        left: 5px;
    }
    
    .my-article {
        width: auto;
        overflow: visible;
    }
    
    /* ОПТИМИЗАЦИЯ: Упрощенные анимации для мобильных */
    .random-button-block:active {
        transform: scale(0.98); /* Более легкая анимация */
    }
    
    .catalog-section__item:active {
        transform: translateY(1px); /* Более легкая анимация */
    }
}

@media (max-width: 575.98px) {
    .catalog-section__image-brand {
        width: 85%;
        left: 2px;
    }
    
    /* ОПТИМИЗАЦИЯ: Отключение сложных эффектов на самых маленьких экранах */
    .random-button-block:hover,
    .ajax_compare_btn:hover .random-button-block,
    .ajax_basket_card:hover .random-button-block,
    .ajax_card:hover .random-button-block,
    .modal .btn:hover,
    #main-ajax .btn:hover,
    #main-basket-ajax .btn:hover,
    .catalog-sort__links a:hover,
    .catalog-sort_half a:hover {
        filter: none; /* Убираем filter для производительности */
    }
}

/* ===== ДОПОЛНИТЕЛЬНЫЕ ОПТИМИЗАЦИИ ПРОИЗВОДИТЕЛЬНОСТИ ===== */

/* Оптимизация для reduce-motion */
@media (prefers-reduced-motion: reduce) {
    .random-button-block,
    .catalog-section__item,
    .catalog-sort__links a,
    .modal .btn,
    #main-ajax .btn,
    #main-basket-ajax .btn,
    .catalog-sort__links a,
    .catalog-sort_half a {
        transition: none;
    }
    
    .random-button-block:active,
    .catalog-section__item:active {
        transform: none;
    }
}

/* Оптимизация рендеринга */
.catalog-section__image {
    transform: translateZ(0);
    will-change: transform;
}

/* Оптимизация для старых устройств */
@media (max-width: 767.98px) and (orientation: portrait) {
    .catalog-section__item {
        transform: translateZ(0);
    }
}

/* Оптимизация загрузки изображений */
.catalog-section__image img {
    loading: lazy;
    decoding: async;
}
/* End */


/* Start:/local/templates/profparket_10.2019/components/bitrix/catalog.section/catalog_slider/style.css?17602086492252*/
.catalog-section__item-slider{
	height: 355px!important;
}
.catalog-section__info-slider {
    margin-top: 10px;
    margin-bottom: 10px;
    height: 100px;
    overflow: hidden;
    position: relative;
}
.catalog-section__button{
	position: absolute;
	bottom: 22px;
	left: 5%;
	width: 60%;

.wee-el-top {
float:left;
width:200px;
height:250px;
overflow:hidden;
}

.wee-el-top a.product-image{
   display: block;
width:180px;
height:160px;
border: 5px solid #F5F3F3;
overflow:hidden;
}

.wee-el-top a.product-image:hover{
border: 5px solid #999;

}
.wee-el-top h2 {
    line-height: 20px;
    margin: 5px 6px 10px;
    font-size: 16px;
    font-weight: normal;
}

.wee-el-top h2 a {
    color: #514742;

}
.wee-el-top h2 a:hover {
}
.regular-price {
    font-size: 16px;
    color: #514742;
}
.price {
  /*  color: #514742;*/
    font-family: 'Oswald';
    font-size: 20px;
    font-weight: normal !important;
padding-left:6px;
/* background:url(/local/templates/profparket_10.2019/components/bitrix/catalog.section/catalog_slider/images/rouble.gif) right bottom no-repeat; */
}


.decor {
    background: url("/local/templates/profparket_10.2019/components/bitrix/catalog.section/catalog_slider/images/cat444.gif") no-repeat scroll left top transparent;
    float: left;
    height: 170px;
    margin: 0 14px 20px 0;
    padding: 5px;
    position: relative;
    width: 137px;
}

.decore_img {
    display: block;
    height: 141px;
    margin-top: 0;
    overflow: hidden;
    position: relative;
    width: 137px;
  text-decoration: none;
}
.decore_img a {
text-decoration:none;
}

.decore_img a:hover {
text-decoration:underline;
}

.decore_img .name_new {
    text-align: right;
}
.decore_img:hover .name_new div {
text-decoration:underline;
}
.decore_img .name_new {
    height: 32px;
    line-height: 10px;
    margin-bottom: 8px;
    overflow: hidden;
}

.decore_img .name_new div {
  /*  background-color: #EC8908;*/
    bottom: 0;
    color: #000;
    font-size: 11px;
    padding: 0px 3px 0px 7px;
    text-align: left;
    text-decoration: none;
    width: 127px;
	text-shadow: 1px 1px 0 #FFFFFF;
}

div.price {
    bottom: 6px;
    font-size: 12px;
    left: 7px;
    position: absolute;
    text-shadow: 1px 1px 0 #FFFFFF;
    width: 135px;
}

div.price span {
    font-size: 15px;
}


div.price span sup{
    font-size: 8px;
}

span.measure_word {
    font-size: 12px;
}
img.no_picture {
margin-left:17px;
}
/* End */
/* /local/templates/profparket_10.2019/components/bitrix/catalog/catalog_v2/style.css?176218557329908 */
/* /local/templates/profparket_10.2019/components/bitrix/catalog.smart.filter/.default/style.css?167995080019735 */
/* /local/templates/profparket_10.2019/css/catalog-optimized.css?17668460786341 */
/* /local/templates/profparket_10.2019/components/bitrix/catalog.section/catalog_slider/style.css?17602086492252 */
