:root {
  --sectionMargin: 32px;
  --h1Title: 32px;
  --h2Title: 24px;
  --h3Title: 18px;
}
html,
body {
  scroll-behavior: smooth;
}
@media (min-width: 768px) {
  :root {
    --sectionMargin: 45px;
    --h1Title: 32px;
    --h2Title: 32px;
    --h3Title: 20px;
  }
}
@media (min-width: 1025px) {
  :root {
    --sectionMargin: 80px;
  }
}
.bg-blue-light {
  background-color: var(--blue) !important;
}
.bg-pink-light {
  background-color: var(--pink) !important;
}
.bg-orange-light {
  background-color: var(--orange) !important;
}
.bg-violet-light {
  background-color: var(--violet) !important;
}
.bg-green-light {
  background-color: var(--green) !important;
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* cart styles */
/* Стили из cart.html */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.intec-content-wrapper {
  width: 100%;
}
.basket-body {
  width: 100%;
}
.ns-bitrix.c-basket.c-basket-template-2 .basket-total-container {
  padding: 0;
}
.page-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: baseline;
      align-items: baseline;
  gap: 8px;
  margin-bottom: 20px;
}
.page-header h1 {
  font-size: 22px;
  font-weight: 500;
  color: #1a1a2e;
  margin: 0;
}
.page-header .count {
  font-size: 14px;
  font-weight: 300;
  color: #9aa3b2;
}
.layout {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 12px;
}
.items-col {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 12px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}
input[type="checkbox"] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 5px;
  border: 2px solid #d0d5e0;
  background: #fff;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  transition: background 0.15s, border-color 0.15s;
  position: relative;
}
input[type="checkbox"]:checked {
  background: #4a90e2;
  border-color: #4a90e2;
}
input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  top: 4px;
  left: 3px;
}
/* Стиль для неопределенного состояния чекбокса (частично выбрано) */
input[type="checkbox"]:indeterminate {
  background: #4a90e2;
  border-color: #4a90e2;
}
input[type="checkbox"]:indeterminate::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 2px;
  background: #fff;
  top: 8px;
  left: 3px;
}
.select-all {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding: 16px;
}
.select-all-left {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 12px;
}
.select-all-left label {
  font-size: 15px;
  font-weight: 500;
  color: #1a1a2e;
  cursor: pointer;
  margin: 0;
}
.btn-icon {
  background: none;
  border: none;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  border-radius: 6px;
  padding: 0;
}
.btn-icon:hover {
  color: #6b7a99;
}
.btn-icon.heart {
  color: #e05a5a;
}
.item-card {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 20px 72px 1fr;
      grid-template-columns: 20px 72px 1fr;
  -ms-grid-rows: auto auto;
      grid-template-rows: auto auto;
  gap: 12px;
  padding: 16px;
  -ms-flex-align: start;
      align-items: start;
}
.item-card input[type="checkbox"] {
  -ms-grid-column: 1;
      grid-column: 1;
  -ms-grid-row: 1;
      grid-row: 1;
}
.item-card .item-image {
  -ms-grid-column: 2;
      grid-column: 2;
  -ms-grid-row: 1;
      grid-row: 1;
  width: 72px;
  height: 72px;
}
.item-card .item-info {
  -ms-grid-column: 3;
      grid-column: 3;
  -ms-grid-row: 1;
      grid-row: 1;
}
.item-card .item-right {
  grid-column: 2 / 4;
  -ms-grid-row: 2;
      grid-row: 2;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-align: start;
      align-items: flex-start;
  gap: 12px;
}
.item-card .item-right .price-block {
  margin-left: auto;
  text-align: right;
}
.item-image {
  border-radius: 8px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  overflow: hidden;
  background: #e8eaee;
}
.tile-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2d4e 40%, #1a1a2e 60%, #3a3a5e 100%);
  position: relative;
}
.tile-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 8px, rgba(255, 255, 255, 0.04) 8px, rgba(255, 255, 255, 0.04) 9px);
}
.glue-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #e8f4e8 0%, #c8e6c8 50%, #a8d4a8 100%);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #2e7d32;
  text-align: center;
  padding: 8px;
  letter-spacing: 0.5px;
}
.item-info {
  -ms-flex: 1;
      flex: 1;
  min-width: 0;
}
.item-name {
  font-size: 13px;
  font-weight: 500;
  color: #1a1a2e;
  line-height: 1.4;
  margin-bottom: 8px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.item-actions {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
  gap: 8px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.discount-badge {
  display: inline-block;
  background: #ff6b6b;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
}
.qty-block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: start;
      align-items: flex-start;
  gap: 8px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.qty-control {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  background: #f0f2f6;
  border-radius: 10px;
  overflow: hidden;
}
.qty-btn {
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: #6b7a99;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  transition: background 0.15s;
  line-height: 1;
  padding: 0;
}
.qty-btn:hover {
  background: #e0e4ec;
}
.qty-value {
  min-width: 32px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a2e;
  padding: 0 4px;
}
.unit-tabs {
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
}
.unit-tab {
  font-size: 12px;
  color: #9aa3b2;
  cursor: pointer;
  padding: 2px 4px;
  border-radius: 4px;
}
.unit-tab.active {
  background: #4a90e2;
  color: #fff;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 6px;
}
.price-block {
  min-width: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-align: start;
      align-items: flex-start;
}
.price-per-unit {
  font-size: 11px;
  color: #9aa3b2;
  margin-bottom: 4px;
  white-space: nowrap;
}
.price-old {
  font-size: 12px;
  color: #b0bac9;
  text-decoration: line-through;
  margin-top: 2px;
  -ms-flex-order: 2;
      order: 2;
}
.price-main {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a2e;
  white-space: nowrap;
  -ms-flex-order: 1;
      order: 1;
}
.summary {
  padding: 16px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 16px;
}
.promo-row {
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.promo-input {
  -ms-flex: 1;
      flex: 1;
  min-width: 0;
  padding: 11px 14px;
  border: none;
  background: #eef1f7;
  border-radius: 10px;
  font-size: 14px;
  color: #9aa3b2;
  outline: none;
  font-family: 'Inter', sans-serif;
  transition: background 0.15s;
}
.promo-input:focus {
  background: #e4e8f2;
}
.promo-input:-ms-input-placeholder {
  color: #b0bac9;
}
.promo-input::placeholder {
  color: #b0bac9;
}
.btn-apply {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 11px 16px;
  background: #2d3a5e;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.15s;
  white-space: nowrap;
}
.btn-apply:hover {
  background: #3a4a78;
}
.summary-rows {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 10px;
}
.summary-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  font-size: 14px;
}
.summary-row .label {
  color: #6b7a99;
}
.summary-row .value {
  color: #1a1a2e;
  font-weight: 500;
}
.summary-row .value.discount {
  color: #e05a5a;
}
.summary-divider {
  height: 1px;
  background: #eef1f7;
}
.summary-total {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
}
.summary-total .total-label {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a2e;
}
.summary-total .total-value {
  font-size: 19px;
  font-weight: 700;
  color: #1a1a2e;
}
.btn-order {
  width: 100%;
  padding: 13px;
  background: #4a90e2;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s, transform 0.1s;
  letter-spacing: 0.2px;
}
.btn-order:hover {
  background: #3a7fd4;
}
.btn-order:active {
  transform: scale(0.99);
}
.meta-dot {
  color: #9aa3b2;
  margin: 0 4px;
}
.basket-total {
  width: 100%;
}
.basket-total[data-code="basket-total-top"] {
  margin-bottom: 12px;
}
/* Скрываем ненужные блоки */
.basket-items-search-wrapper,
.basket-items-count-info,
.basket-items-panel,
.gifts,
.bx-sale-gift-main-phone,
[data-entity="basket-gifts-container"],
.basket-gifts,
.sale-basket-gifts-section,
.catalog-block-header,
.basket-gifts-list,
.basket-gifts-item,
[class*="gift"],
[id*="basket-gifts"] {
  display: none !important;
}
/* Стили для инпута количества */
.basket-item-amount-filed.qty-value {
  width: 40px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a2e;
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: textfield;
}
.basket-item-amount-filed.qty-value::-webkit-outer-spin-button,
.basket-item-amount-filed.qty-value::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Медиа-запросы */
@media (min-width: 576px) {
  .select-all {
    padding: 18px 20px;
  }
  .item-card {
    -ms-grid-columns: 20px 80px 1fr;
        grid-template-columns: 20px 80px 1fr;
    gap: 14px;
    padding: 18px;
  }
  .item-card .item-image {
    width: 80px;
    height: 80px;
    border-radius: 12px;
  }
  .item-name {
    font-size: 14px;
  }
  .price-main {
    font-size: 18px;
  }
  .price-per-unit {
    font-size: 12px;
  }
  .qty-btn {
    width: 30px;
    height: 30px;
    font-size: 17px;
  }
  .qty-value {
    min-width: 36px;
    font-size: 14px;
  }
  .summary {
    padding: 18px;
  }
  .summary-total .total-label {
    font-size: 17px;
  }
  .summary-total .total-value {
    font-size: 20px;
  }
  .btn-order {
    font-size: 15px;
    padding: 14px;
  }
}
@media (min-width: 768px) {
  .page-header h1 {
    font-size: 26px;
  }
  .page-header .count {
    font-size: 15px;
  }
  .item-card {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: start;
        justify-content: start;
    padding: 20px 24px;
  }
  .item-card .item-image {
    width: 88px;
    height: 88px;
    border-radius: 16px;
  }
  .item-card .item-right {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-positive: 1;
        flex-grow: 1;
  }
  .item-card .item-right .price-block {
    margin-left: auto;
    text-align: right;
  }
  .item-card .qty-block {
    -ms-flex-align: center;
        align-items: center;
  }
  .price-main {
    font-size: 20px;
  }
  .price-per-unit {
    font-size: 12px;
  }
  .qty-btn {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }
  .qty-value {
    min-width: 40px;
    font-size: 15px;
  }
  .summary {
    padding: 20px;
  }
  .summary-total .total-label {
    font-size: 18px;
  }
  .summary-total .total-value {
    font-size: 22px;
  }
  .btn-order {
    font-size: 16px;
    padding: 15px;
  }
}
@media (min-width: 992px) {
  .item-info {
    max-width: 261px;
    min-width: 0;
  }
  .item-card .item-image {
    width: 90px;
    height: 90px;
    border-radius: 24px;
  }
  .item-name {
    font-size: 12px;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    line-height: 1.4;
  }
  .page-header h1 {
    font-size: 32px;
  }
  .page-header .count {
    font-size: 16px;
  }
  .item-card .qty-block {
    max-width: 80px;
  }
  .layout {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 280px;
        grid-template-columns: 1fr 280px;
    gap: 20px;
    -ms-flex-align: start;
        align-items: start;
  }
  .summary-col {
    position: sticky;
    top: 20px;
  }
}
@media (min-width: 1200px) {
  .item-info {
    max-width: 300px;
  }
  .item-card .item-image {
    width: 120px;
    height: 120px;
    border-radius: 24px;
  }
  .item-name {
    font-size: 13px;
  }
  .item-card .qty-block {
    max-width: 106px;
  }
  .layout {
    -ms-grid-columns: 1fr 460px;
        grid-template-columns: 1fr 460px;
    gap: 24px;
  }
  .price-main {
    font-size: 20px;
  }
}
/* end cart styles */
/* sites styles */
.order-btn {
  width: 100%;
  background: #5893f7;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 15px;
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  letter-spacing: 0.01em;
}
.order-btn:hover {
  background: #1d4ed8;
}
.order-btn:active {
  transform: scale(0.99);
}
.order-btn.loading {
  opacity: 0.7;
  cursor: not-allowed;
}
.checkbox-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
}
.checkbox-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.checkbox-custom {
  width: 18px;
  height: 18px;
  border: 2px solid #c0c5d0;
  border-radius: 5px;
  background: #fff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  transition: 0.2s;
}
.checkbox-custom svg {
  display: none;
  width: 11px;
  height: 11px;
  color: #fff;
}
.checkbox-input:checked + .checkbox-custom {
  background: #5893f7;
  border-color: #5893f7;
}
.checkbox-input:checked + .checkbox-custom svg {
  display: block;
}
.page-wrapper {
  max-width: 1460px;
  width: 100%;
  margin: 0 auto;
}
.h1-title {
  color: inherit;
  font-size: var(--h1Title);
  font-weight: 500;
  line-height: normal;
  margin: 1em 0;
}
.h1-title b {
  font-weight: 600;
}
.h1-title:first-child {
  margin-top: 0;
}
.h1-title:last-child {
  margin-bottom: 0;
}
.h2-title {
  color: inherit;
  font-size: var(--h2Title);
  font-weight: 500;
  line-height: normal;
  margin: 1.3em 0 0.8em 0;
}
.h2-title b {
  font-weight: 600;
}
.h2-title:first-child {
  margin-top: 0;
}
.h2-title:last-child {
  margin-bottom: 0;
}
.h3-title {
  color: inherit;
  font-size: var(--h3Title);
  font-weight: 500;
  line-height: normal;
  margin: 1em 0;
}
.h3-title b {
  font-weight: 600;
}
.h3-title:first-child {
  margin-top: 0;
}
.h3-title:last-child {
  margin-bottom: 0;
}
.intec-content .intec-content-wrapper {
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}
.intec-content .layout:has(.left-col+.sidebar) .left-col,
.intec-content .layout:has(.left-col+.sidebar) .sidebar {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
@media (max-width: 768px) {
  .page-wrapper {
    padding: 0 16px;
  }
}
@media (min-width: 992px) {
  .intec-content:has(.layout) {
    overflow: visible;
  }
  .intec-content:has(.layout) .summary-col,
  .intec-content:has(.layout) .sidebar {
    position: sticky;
    top: 150px;
  }
  .intec-content .layout:has(.left-col+.sidebar) {
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-direction: row;
        flex-direction: row;
  }
  .intec-content .layout:has(.left-col+.sidebar) .left-col {
    width: 100%;
    -ms-flex: 1;
        flex: 1;
    max-width: calc(100% - 20px - 300px);
    position: relative;
    overflow: hidden;
  }
  .intec-content .layout:has(.left-col+.sidebar) .sidebar {
    width: 300px;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    margin: 0;
    max-width: inherit;
  }
  .intec-content .layout:has(.items-col+.summary-col) {
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-direction: row;
        flex-direction: row;
  }
  .intec-content .layout:has(.items-col+.summary-col) .items-col {
    width: 100%;
    -ms-flex: 1;
        flex: 1;
    max-width: calc(100% - 20px - 300px);
    position: relative;
    overflow: hidden;
  }
  .intec-content .layout:has(.items-col+.summary-col) .summary-col {
    width: 300px;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
  }
}
@media (min-width: 1250px) {
  .intec-content .layout:has(.left-col+.sidebar) .left-col {
    max-width: calc(100% - 20px - 360px);
  }
  .intec-content .layout:has(.left-col+.sidebar) .sidebar {
    width: 360px;
  }
  .intec-content .layout:has(.items-col+.summary-col) .items-col {
    max-width: calc(100% - 20px - 360px);
  }
  .intec-content .layout:has(.items-col+.summary-col) .summary-col {
    width: 360px;
  }
}
@media (min-width: 1500px) {
  .intec-content .layout:has(.left-col+.sidebar) .left-col {
    max-width: calc(100% - 20px - 466px);
  }
  .intec-content .layout:has(.left-col+.sidebar) .sidebar {
    width: 466px;
  }
  .intec-content .layout:has(.items-col+.summary-col) .items-col {
    max-width: calc(100% - 20px - 466px);
  }
  .intec-content .layout:has(.items-col+.summary-col) .summary-col {
    width: 466px;
  }
}
/* end sites styles ___ */
.img-bg-cover,
.img-bg-contain {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}
.img-bg-contain {
  bottom: 0;
  right: 0;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
}
@supports (object-fit: cover) {
  .img-bg-cover {
    height: 100%;
    object-fit: cover;
  }
}
@supports (object-fit: contain) {
  .img-bg-contain {
    height: 100%;
    object-fit: contain;
    max-width: inherit;
    max-height: inherit;
    right: auto;
    bottom: auto;
  }
}
.breadcrumbs {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.breadcrumbs .breadcrumbs-item {
  max-width: 100%;
}
.popup-message-box {
  text-align: center;
  padding: 10px 0 10px 0;
}
.popup-message-box .popup-message-title {
  font-weight: 400;
  font-size: 18px;
  text-align: center;
  line-height: 1.33333333;
  margin-bottom: 10px;
}
.popup-message-box .popup-message-title:last-child {
  margin-bottom: 0;
}
.frm-popup {
  display: block;
  position: relative;
  margin: 0;
  color: #808080;
}
.frm-popup [placeholder]::-webkit-input-placeholder {
  color: #808080;
}
.frm-popup [placeholder]:-moz-placeholder {
  color: #808080;
}
.frm-popup [placeholder]::-moz-placeholder {
  color: #808080;
}
.frm-popup [placeholder]:-ms-input-placeholder {
  color: #808080;
}
.frm-popup .frm-row,
.frm-popup .frm-row-submit {
  margin: 0 -5px 24px -5px;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.frm-popup .frm-row:last-child,
.frm-popup .frm-row-submit:last-child {
  margin-bottom: 0;
}
.frm-popup .frm-row-submit .btn {
  width: 100%;
}
.frm-popup .frm-field {
  width: 100%;
  padding: 0 5px;
  margin: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.frm-popup textarea.form-input {
  height: 46px;
  min-height: 46px;
  padding-top: 7px;
  padding-bottom: 7px;
  resize: vertical;
  width: 100%;
}
.frm-popup .form-input {
  border: 1px solid #b0bbcb;
  border-radius: 10px;
  padding: 4px 10px;
  background: #fff;
  box-shadow: none;
  font-size: 8px;
  font-weight: 400;
  color: #808080;
  width: 100%;
  height: 36px;
}
.frm-popup .order-btn {
  min-height: 48px;
  padding-top: 6px;
  padding-bottom: 6px;
  font-size: 18px;
  font-weight: 500;
}
.frm-popup .checkbox-wrapper {
  position: relative;
  width: 100%;
  gap: 12px;
  font-size: 12px;
  line-height: 15px;
  color: inherit;
  font-weight: inherit;
}
.frm-popup .checkbox-wrapper a {
  color: #5893F7;
  font-weight: 400;
  text-decoration: underline;
}
.frm-popup .checkbox-wrapper a:hover {
  text-decoration: none;
}
.frm-popup .checkbox-wrapper .checkbox-custom {
  width: 30px;
  height: 30px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
body.popup-open {
  overflow: hidden;
}
.popup-outer-box {
  display: none;
  padding: 20px;
  animation: fadein ease 0.2s;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  position: fixed;
  z-index: 100;
  background: rgba(0, 0, 0, 0.7);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.popup-outer-box::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.popup-outer-box.active {
  display: -ms-flexbox;
  display: flex;
}
.popup-att .popup-box {
  color: #fff;
  background: #5893F7;
}
.popup-att .popup-box .btn-popup-close {
  background-color: #5893F7;
  fill: #fff;
}
.popup-att .popup-box .btn-popup-close:hover {
  fill: #fff;
  background-color: #5893F7;
}
.popup-box {
  display: -ms-flexbox;
  display: flex;
  margin: auto;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  overflow: visible;
  width: 300px;
  border-radius: 16px;
  padding: 33px 40px 22px 40px;
  max-width: 100%;
  max-height: inherit;
  background-color: #EFF4FA;
  z-index: 20;
}
.popup-box .popup-title-wrap,
.popup-box .popup-footer-wrap {
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.popup-box .popup-content-wrap {
  width: 100%;
}
.popup-box .btn-popup-close {
  position: absolute;
  top: 0;
  left: 100%;
  margin-left: 22px;
  z-index: 2;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #fff;
  border: none;
  fill: #808080;
}
.popup-box .btn-popup-close:hover {
  background-color: #fff;
  fill: #000;
}
@media (max-width: 767px) {
  .section-heading h1 {
    font-size: 24px;
    font-weight: 500;
  }
}
@media (max-width: 479px) {
  .popup-outer-box {
    padding-top: 80px;
  }
  .popup-box .btn-popup-close {
    top: auto;
    bottom: 100%;
    left: auto;
    right: 0;
    margin: 0 0 22px 0;
  }
}
@media (min-width: 700px) {
  .popup-message-box {
    text-align: center;
  }
  .popup-message-box .popup-message-title {
    font-size: 32px;
    line-height: 1.375;
  }
  .frm-popup textarea.form-input {
    height: 60px;
    min-height: 60px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .frm-popup .form-input {
    height: 60px;
    padding: 0 21px;
    font-size: 14px;
    border-radius: 12px;
  }
  .frm-popup .order-btn {
    min-height: 60px;
  }
  .popup-box {
    width: 526px;
    padding: 50px 72px;
  }
}
@media (min-width: 1025px) {
  .frm-popup textarea.form-input {
    height: 70px;
    min-height: 70px;
    padding-top: 22px;
    padding-bottom: 22px;
  }
  .frm-popup .form-input {
    height: 70px;
    padding: 0 24px;
    font-size: 16px;
  }
  .frm-popup .order-btn {
    min-height: 70px;
    font-size: 20px;
  }
  .frm-popup .checkbox-wrapper {
    font-size: 15px;
    line-height: 19px;
  }
  .popup-box {
    width: 750px;
    padding: 60px 70px;
  }
  .popup-message .popup-box {
    width: 558px;
  }
}
/* ----------------------------------- *\
			items styles
\* ----------------------------------- */
:is([class^="item-tile"]):hover .elm-photo.photo-cover img,
:is([class^="item-tile"]):hover .tile-photo.photo-cover img {
  transform: scale(1.03);
}
.elm-photo {
  display: block;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  line-height: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.elm-photo .button-image-zoom {
  position: absolute;
  bottom: 14px;
  right: 14px;
}
.elm-photo.photo-play:hover:after {
  background-color: var(--clr-att-second);
}
.elm-photo.photo-play:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--clr-att) url(../img/icons/play.svg) center no-repeat;
  background-size: 24px auto;
  transition: all ease 0.2s;
  margin: auto;
}
.elm-photo.photo-play:before {
  display: block !important;
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0;
  z-index: 2;
}
.elm-photo.photo-zoom:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  opacity: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--clr-att) url(../img/icons/zoom.svg);
  background-size: 24px auto;
  transition: all ease 0.2s;
}
.elm-photo.photo-zoom:hover:after {
  opacity: 1;
}
.elm-photo:before {
  content: "";
  display: none;
  padding-top: 100%;
}
.elm-photo img {
  display: block;
  position: relative;
  width: 100%;
  transition: all ease-out 1s;
}
.elm-photo.photo-cover:before {
  display: block;
}
.elm-photo.photo-cover img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.elm-photo.photo-contain:before {
  display: block;
}
.elm-photo.photo-contain img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
@supports (aspect-ratio: 1) {
  .elm-photo:not(.photo-cover, .photo-contain) {
    aspect-ratio: inherit !important;
  }
  .photo-cover,
  .photo-contain {
    aspect-ratio: 1;
  }
  .photo-cover:before,
  .photo-contain:before {
    display: none !important;
  }
}
.elm-price {
  white-space: nowrap;
}
.elm-price.price-old {
  text-decoration: line-through;
}
[data-unit]:after {
  content: attr(data-unit);
  font-family: 'Arial', 'Roboto', 'Open Sans', sans-serif;
}
.elm-ico,
.button-ico,
.menu-ico,
.frm-ico,
.tab-ico,
.lbl-ico {
  display: block;
  position: relative;
  overflow: hidden;
  width: 40px;
  height: 40px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.elm-ico img,
.button-ico img,
.menu-ico img,
.frm-ico img,
.tab-ico img,
.lbl-ico img,
.elm-ico [class*="icon-"],
.button-ico [class*="icon-"],
.menu-ico [class*="icon-"],
.frm-ico [class*="icon-"],
.tab-ico [class*="icon-"],
.lbl-ico [class*="icon-"],
.elm-ico .i,
.button-ico .i,
.menu-ico .i,
.frm-ico .i,
.tab-ico .i,
.lbl-ico .i,
.elm-ico svg,
.button-ico svg,
.menu-ico svg,
.frm-ico svg,
.tab-ico svg,
.lbl-ico svg {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
}
.elm-overlay {
  display: none;
  animation: fadein ease 0.2s;
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 120;
}
.elm-overlay.active {
  display: block;
}
.elm-sticker {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: #000;
  height: 27px;
  line-height: 27px;
  border-radius: 5px;
  padding: 0 12px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
}
/* ----------------------------------- *\
			items styles
\* ----------------------------------- */
.item-tile-question {
  font-weight: 300;
  font-size: 16px;
  line-height: normal;
  color: var(--secondary-1);
  text-align: left;
  border-radius: 16px;
  background: var(--gray2);
  position: relative;
  overflow: hidden;
}
.item-tile-question:has(.tile-button-toggle) .tile-content-wrap {
  position: relative;
  height: 0;
  overflow: hidden;
  interpolate-size: allow-keywords;
  transition: all ease 0.2s;
  padding-bottom: 0;
  margin-top: 0;
}
.item-tile-question:has(.tile-button-toggle) .tile-button-toggle {
  padding-right: 48px;
}
.item-tile-question:has(.tile-button-toggle) .tile-button-toggle.active:before {
  transform: rotate(180deg);
}
.item-tile-question:has(.tile-button-toggle) .tile-button-toggle:before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  background: url(../images/icons/arrow-toggle.svg) center no-repeat;
  background-size: 100% auto;
  top: 50%;
  right: 33px;
  margin: -12px -12px 0 0;
  transition: all ease 0.2s;
}
.item-tile-question:has(.tile-button-toggle.active) .tile-content-wrap {
  height: auto;
  padding-bottom: 24px;
  margin-top: -8px;
}
.item-tile-question .tile-button-toggle {
  display: block;
  position: relative;
  font-weight: 400;
  font-size: 18px;
  color: var(--dark);
  transition: all ease 0.2s;
  text-decoration: none;
  padding: 24px;
}
.item-tile-question .tile-button-toggle:hover {
  text-decoration: none;
}
.item-tile-question .tile-content-wrap {
  padding: 0 24px 24px 24px;
  margin-top: -8px;
}
.item-tile-plus {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  font-size: 16px;
  line-height: normal;
  font-weight: 300;
  color: var(--dark);
  text-align: left;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 12px;
  padding: 24px;
  min-height: 100%;
}
.item-tile-plus .tile-title-wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 20px;
}
.item-tile-plus .elm-ico {
  width: 32px;
  height: 32px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.item-tile-plus .tile-title {
  margin: 0;
  color: inherit;
}
@media (min-width: 768px) {
  .item-tile-plus {
    font-size: 20px;
    padding: 24px;
    min-height: 235px;
    height: 100%;
  }
}
@media (min-width: 1025px) {
  .item-tile-plus {
    min-height: 0;
  }
}
/* ----------------------------------- *\
			content styles
\* ----------------------------------- */
.news-detail {
  margin-bottom: var(--sectionMargin);
  position: relative;
  font-weight: 300;
  font-size: 16px;
  line-height: 138%;
  margin-left: auto;
  margin-right: auto;
  max-width: 860px;
  color: #1c1e21;
}
.news-detail .news-date-time {
  margin-bottom: 16px;
  display: inline-block;
  max-width: 100%;
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  padding: 11px 12px;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  background: var(--orange);
}
.news-detail .blog-sections {
  height: auto;
  margin: 0 0 12px 0;
  gap: 12px;
}
.news-detail .blog-sections__item--name {
  padding: 9px 10px 9px 10px;
  font-weight: 600;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0em;
  text-align: center;
  color: rgba(6, 6, 15, 0.87);
}
.news-detail .tiles-box,
.news-detail .contents-box,
.news-detail .article-rate-box,
.news-detail .authors-box,
.news-detail .news-products {
  margin-bottom: 48px;
}
.news-detail .tiles-box:last-child,
.news-detail .contents-box:last-child,
.news-detail .article-rate-box:last-child,
.news-detail .authors-box:last-child,
.news-detail .news-products:last-child {
  margin-bottom: 0;
}
.news-detail .table-wrapper table {
  margin: 0;
}
.news-detail > .elm-photo,
.news-detail .detail-text > .elm-photo {
  border-radius: 16px;
  height: 238px;
  margin: 16px 0 16px 0;
  aspect-ratio: inherit;
  width: 100%;
}
.news-detail > .elm-photo:last-child,
.news-detail .detail-text > .elm-photo:last-child {
  margin-bottom: 0;
}
.news-detail > .elm-photo:first-child,
.news-detail .detail-text > .elm-photo:first-child {
  margin-top: 0;
}
.news-detail > .elm-photo:not(.photo-cover, .photo-contain),
.news-detail .detail-text > .elm-photo:not(.photo-cover, .photo-contain) {
  height: auto;
}
.news-detail h1,
.news-detail h2,
.news-detail h3,
.news-detail h4,
.news-detail h5,
.news-detail h6 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.25;
  color: inherit;
  margin: 48px 0 16px 0;
}
.news-detail h1:first-child,
.news-detail h2:first-child,
.news-detail h3:first-child,
.news-detail h4:first-child,
.news-detail h5:first-child,
.news-detail h6:first-child {
  margin-top: 0;
}
.news-detail h1:last-child,
.news-detail h2:last-child,
.news-detail h3:last-child,
.news-detail h4:last-child,
.news-detail h5:last-child,
.news-detail h6:last-child {
  margin-bottom: 0;
}
.news-detail p,
.news-detail ul,
.news-detail ol,
.news-detail table,
.news-detail .table-wrapper {
  margin-bottom: 1em;
}
.news-detail p:last-child,
.news-detail ul:last-child,
.news-detail ol:last-child,
.news-detail table:last-child,
.news-detail .table-wrapper:last-child {
  margin-bottom: 0;
}
.news-detail .table-wrapper table,
.news-detail .table-wrapper .table,
.news-detail table,
.news-detail .table {
  font-size: 14px;
  color: inherit;
  border-collapse: collapse;
  border-radius: 0;
}
.news-detail .table-wrapper table th,
.news-detail .table-wrapper .table th,
.news-detail table th,
.news-detail .table th,
.news-detail .table-wrapper table td,
.news-detail .table-wrapper .table td,
.news-detail table td,
.news-detail .table td {
  font-size: 1em;
  line-height: normal;
  color: inherit;
  padding: 11px 10px;
  border: 1px solid var(--gray-main);
  border-bottom-width: 2px;
  border-radius: 0;
  font-weight: 300;
}
.news-detail .table-wrapper table thead th,
.news-detail .table-wrapper .table thead th,
.news-detail table thead th,
.news-detail .table thead th,
.news-detail .table-wrapper table thead td,
.news-detail .table-wrapper .table thead td,
.news-detail table thead td,
.news-detail .table thead td {
  font-weight: 400;
}
.news-detail .table-wrapper table tbody tr:last-child th,
.news-detail .table-wrapper .table tbody tr:last-child th,
.news-detail table tbody tr:last-child th,
.news-detail .table tbody tr:last-child th,
.news-detail .table-wrapper table tbody tr:last-child td,
.news-detail .table-wrapper .table tbody tr:last-child td,
.news-detail table tbody tr:last-child td,
.news-detail .table tbody tr:last-child td {
  border-bottom-width: 1px;
}
.news-detail .table-wrapper table,
.news-detail .table-wrapper .table {
  width: 100%;
}
.news-detail .table-wrapper table th:first-child,
.news-detail .table-wrapper .table th:first-child,
.news-detail .table-wrapper table td:first-child,
.news-detail .table-wrapper .table td:first-child {
  border-left: none;
}
.news-detail .table-wrapper table th:last-child,
.news-detail .table-wrapper .table th:last-child,
.news-detail .table-wrapper table td:last-child,
.news-detail .table-wrapper .table td:last-child {
  border-right: none;
}
.news-detail .table-wrapper table tbody tr:last-child th,
.news-detail .table-wrapper .table tbody tr:last-child th,
.news-detail .table-wrapper table tbody tr:last-child td,
.news-detail .table-wrapper .table tbody tr:last-child td {
  border-bottom: none;
}
.news-detail .table-wrapper table thead tr:first-child th,
.news-detail .table-wrapper .table thead tr:first-child th,
.news-detail .table-wrapper table thead tr:first-child td,
.news-detail .table-wrapper .table thead tr:first-child td {
  border-top: none;
}
.news-detail .table-wrapper {
  border: 1px solid var(--gray-main);
  border-radius: 12px;
  overflow: hidden;
}
.news-detail ul,
.news-detail ol {
  line-height: inherit;
  font-size: inherit;
  font-weight: inherit;
}
.news-detail ul li,
.news-detail ol li {
  margin: 0 0 10px 0;
  padding: 0 0 0 24px;
  position: relative;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
}
.news-detail ul li:last-child,
.news-detail ol li:last-child {
  margin-bottom: 0;
}
.news-detail ul li:before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  background: var(--dark);
  border-radius: 50%;
  position: absolute;
  left: 12px;
  top: 0.86em;
  margin: -2px 0 0 -2px;
}
.news-detail ol li:before {
  color: #979797;
}
.news-detail b {
  font-weight: 600;
}
.news-products .slider-inner-wrap {
  position: relative;
}
.news-products .slider-inner-wrap .button-slider {
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -24px;
}
.news-products .slider-inner-wrap .button-slider-next {
  left: auto;
  right: 0;
}
.news-products .slider-inner-wrap .slider-wrap {
  margin: 0;
  border: 1px solid var(--gray-main);
  position: relative;
  border-radius: 12px;
}
.news-products .slider-inner-wrap .slider {
  margin: 0;
  padding: 0;
}
.news-products .slider-inner-wrap .sl-wrap {
  width: 216px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-left: 1px solid var(--gray-main);
  margin: 0;
  height: auto;
  min-height: 100%;
}
.news-products .slider-inner-wrap .sl-wrap:first-child {
  border-left: none;
}
.news-products .slider-inner-wrap .sl-wrap.catalog__card {
  width: 216px;
}
.news-products .slider-inner-wrap .product-card {
  border-radius: 0;
  border: none;
  width: 100%;
}
.article-rate-box,
.authors-box {
  position: relative;
  margin-bottom: var(--sectionMargin);
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid #ebeff9;
}
.article-rate-box .buttons-inner-wrap,
.authors-box .buttons-inner-wrap {
  -ms-flex-align: center;
      align-items: center;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.article-rate-box h2,
.authors-box h2,
.article-rate-box h3,
.authors-box h3 {
  font-size: 20px;
}
.authors-box {
  padding-top: 0;
  border-top: none;
  margin-top: 0;
}
.authors-box .btn-author {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #6996ed;
  text-decoration: none;
  gap: 15px;
}
.authors-box .btn-author .button-ico {
  width: 48px;
  height: 48px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.authors-box .btn-author:hover {
  color: #6996ed;
  text-decoration: underline;
}
.contents-box {
  margin-bottom: var(--sectionMargin);
  position: relative;
  font-size: 14px;
}
.contents-box:has(li:nth-child(7)) .more-button-wrap {
  display: block;
}
.contents-box:has(li:nth-child(7)):has(.contents-button-more:not(.active)) li:nth-child(4) ~ li {
  display: none;
}
.contents-box .more-button-wrap {
  margin-top: 10px;
  display: none;
}
.contents-box .contents-button-more {
  display: inline-block;
  position: relative;
  color: #6996ed;
  text-decoration: underline;
}
.contents-box .contents-button-more:hover {
  color: #6996ed;
  text-decoration: none;
}
.contents-box .contents-button-more [data-show]:before {
  content: attr(data-show);
}
.contents-box .contents-button-more.active [data-hide]:before {
  content: attr(data-hide);
}
.contents-box ol {
  margin-bottom: 0 !important;
}
.contents-box ol a {
  text-decoration: underline;
  color: inherit;
}
.tiles-box {
  position: relative;
  margin-bottom: var(--sectionMargin);
  padding: 0;
}
.tiles-box .items-wrap {
  margin: 0 -10px;
  gap: 24px 0;
}
.tiles-box .item-wrap {
  width: 100%;
  padding: 0 10px;
  margin: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.tiles-box .item-wrap.wrap-full {
  width: 100% !important;
}
.text-box {
  padding: 0;
  margin-bottom: var(--sectionMargin);
  position: relative;
  font-size: 16px;
  line-height: 1.38;
  font-weight: 300;
}
.text-box p,
.text-box ul,
.text-box ol {
  margin-bottom: 1.38em;
}
.text-box p:last-child,
.text-box ul:last-child,
.text-box ol:last-child {
  margin-bottom: 0;
}
.text-box a:not(:hover) {
  text-decoration: underline;
}
.promo-box {
  margin-bottom: var(--sectionMargin);
  position: relative;
  font-size: 18px;
  color: var(--white);
  padding: 0;
}
.promo-box .box-inner-wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  min-height: 390px;
  gap: 33px;
  padding: 39px 26px 26px 26px;
  -ms-flex-pack: center;
      justify-content: center;
}
.promo-box .bg-inner-wrap {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 20px;
}
.promo-box .bg-inner-wrap:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(134deg, rgba(45, 54, 69, 0.8) 0%, rgba(45, 54, 69, 0.3) 100%);
  z-index: 3;
}
.promo-box .head-inner-wrap,
.promo-box .action-inner-wrap {
  position: relative;
  z-index: 4;
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.promo-box .head-inner-wrap {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  width: 503px;
  max-width: 100%;
  padding: 14px 14px 28px 24px;
}
.promo-box .section-title {
  color: inherit;
  margin-bottom: 30px;
}
.title-inner-wrap {
  position: relative;
  margin-bottom: 24px;
}
.box-inner-wrap {
  position: relative;
}
.bg-full-wrap {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100dvw;
  min-width: var(--min);
  transform: translateX(-50%);
  overflow: hidden;
}
.bg-inner-wrap {
  position: relative;
  overflow: hidden;
}
.bg-box {
  position: relative;
  z-index: 2;
}
.bg-box:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100dvw;
  min-width: var(--min);
  transform: translateX(-50%);
  overflow: hidden;
  background: var(--clr-bg-light);
}
.bg-box > *:last-child {
  margin-bottom: 0;
}
[id*="section"] {
  scroll-margin-top: 30px;
}
.catalog .type-collection .product-card__wrap .product-card__color img {
  position: absolute;
  width: 100%;
  height: 100%;
}
.product-card__color {
  position: relative;
}
.product-card__color img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.type-contain img {
  object-fit: contain !important;
}
.type-cover img {
  object-fit: cover !important;
}
.card.select-all {
  box-shadow: 0 6px 38px 0 rgba(78, 44, 198, 0.06);
  border: 1px solid rgba(98, 116, 144, 0.3);
  padding: 22px 23px;
  margin: 0 0 4px 0;
}
.card.select-all .btn-icon {
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
}
.card.select-all .btn-icon img,
.card.select-all .btn-icon svg {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: all ease 0.2s;
  width: 24px;
  height: auto;
}
.card.select-all .btn-icon:not(:hover) img,
.card.select-all .btn-icon:not(:hover) svg {
  opacity: 0.4;
}
.card .radio-group .radio-item > .delivery-fields-block {
  max-width: calc(100% - 30px);
  margin-top: 0;
}
.card .form-row {
  gap: 20px 16px;
}
.card .toggle-label {
  font-size: 16px;
}
.card .form-input {
  height: 52px;
  padding: 0 18px;
  font-size: 14px;
}
.card:has(.item-card) {
  border-radius: 0;
  border: none;
  padding: 0;
  background: none;
  box-shadow: none;
}
.item-card {
  border: 1px solid rgba(98, 116, 144, 0.3);
  box-shadow: 0 6px 38px 0 rgba(78, 44, 198, 0.06);
  padding: 23px;
  border-radius: 16px;
}
.item-card .price-block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 5px 25px;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0;
}
.item-card .price-per-unit {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  text-align: right;
  max-width: 100%;
  white-space: normal;
  color: var(--secondary-1);
}
.item-card .price-old {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  text-decoration: line-through;
  color: var(--gray-main);
  max-width: 100%;
  white-space: normal;
  text-align: right;
}
.item-card .price-main {
  font-weight: 500;
  font-size: 24px;
  color: var(--dark);
  margin: 0;
  max-width: 100%;
  white-space: normal;
  text-align: right;
}
.item-card .item-name {
  font-weight: 300;
  font-size: 16px;
}
.item-card .item-info {
  width: 270px;
  max-width: 270px;
  -ms-flex: 0 0 270px;
      flex: 0 0 270px;
}
.item-card .item-right {
  -ms-flex-pack: end;
      justify-content: flex-end;
  max-width: calc(100% - 270px - 20px - 90px - 42px);
}
.item-card .item-image {
  position: relative;
  overflow: hidden;
}
.item-card .qty-block {
  width: 120px;
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
}
.item-card .price-block {
  max-width: calc(100% - 120px - 12px);
}
.item-card .item-actions .btn-icon {
  width: 20px;
  height: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
}
.item-card .item-actions .btn-icon:not(:hover, .active) {
  color: rgba(98, 116, 144, 0.3);
}
.item-card .item-actions .btn-icon img,
.item-card .item-actions .btn-icon svg {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  opacity: 1;
  margin: auto;
}
.item-card .item-actions .btn-icon img *,
.item-card .item-actions .btn-icon svg * {
  fill: inherit;
  opacity: 1;
}
.ns-bitrix.c-basket.c-basket-template-2 .basket-item-image,
.ns-bitrix.c-basket.c-basket-template-2 .basket-item-image-link {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: auto;
  height: auto;
  max-width: inherit;
  max-height: inherit;
}
.ns-bitrix.c-basket.c-basket-template-2 .basket-item-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: inherit;
  object-fit: cover;
}
.basket-items-wrapper .basket-item.card {
  margin-bottom: 16px;
}
.basket-items-wrapper .basket-item-alerts {
  margin: 16px 0;
}
.basket-items-wrapper .basket-item-alerts:first-child {
  margin-top: 0;
}
.basket-items-wrapper .basket-item-alerts:last-child {
  margin-bottom: 0;
}
.basket-items-wrapper .basket-item-alerts .basket-alert-wrap {
  margin: 0 !important;
}
.ns-bitrix.c-basket.c-basket-template-2 .basket-item {
  border-radius: 0;
  background: none;
  box-shadow: none;
}
.ns-bitrix.c-basket.c-basket-template-2 .basket-item:hover {
  box-shadow: none;
}
.ns-bitrix.c-basket.c-basket-template-2 .basket-total-container {
  border-radius: 16px;
  border: 1px solid rgba(98, 116, 144, 0.3);
  box-shadow: 0 6px 38px 0 rgba(78, 44, 198, 0.06);
}
.basket-total-container .summary,
.order-summary {
  padding: 23px;
  gap: 32px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  width: 100%;
}
.basket-total-container .summary .frm-field:has(.basket-coupon-alert),
.order-summary .frm-field:has(.basket-coupon-alert) {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 10px;
}
.basket-total-container .summary .frm-field:has(.basket-coupon-alert) .info-title,
.order-summary .frm-field:has(.basket-coupon-alert) .info-title {
  -ms-flex: 1;
      flex: 1;
  width: auto;
  -ms-flex-order: 2;
      order: 2;
}
.basket-total-container .summary .frm-field:has(.basket-coupon-alert) .elm-ico,
.order-summary .frm-field:has(.basket-coupon-alert) .elm-ico {
  width: 24px;
  height: 24px;
  -ms-flex-order: 1;
      order: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-align: center;
  line-height: 24px;
}
.basket-total-container .summary .promo-row,
.order-summary .promo-row {
  margin-bottom: 0;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex-direction: row;
      flex-direction: row;
}
.basket-total-container .summary .summary-row,
.order-summary .summary-row {
  font-size: 16px;
  font-weight: 300;
  color: var(--dark);
  margin: 0;
}
.basket-total-container .summary .summary-row .label,
.order-summary .summary-row .label {
  color: inherit;
  font-weight: 300;
}
.basket-total-container .summary .summary-row .meta-dot ~ span,
.order-summary .summary-row .meta-dot ~ span {
  color: var(--secondary-1);
}
.basket-total-container .summary .summary-row .value,
.order-summary .summary-row .value {
  color: inherit;
  font-weight: 400;
}
.basket-total-container .summary .summary-line,
.order-summary .summary-line {
  font-size: 16px;
  font-weight: 300;
  color: var(--dark);
  margin: 0;
}
.basket-total-container .summary .summary-line .summary-count,
.order-summary .summary-line .summary-count {
  color: inherit;
  font-weight: 300;
}
.basket-total-container .summary .summary-line .meta-dot ~ span,
.order-summary .summary-line .meta-dot ~ span {
  color: var(--secondary-1);
}
.basket-total-container .summary .summary-line .val,
.order-summary .summary-line .val {
  color: inherit;
  font-weight: 400;
}
.basket-total-container .summary .summary-total,
.order-summary .summary-total {
  color: var(--dark);
  margin: 0;
}
.basket-total-container .summary .summary-total .total-label,
.order-summary .summary-total .total-label {
  font-size: 24px;
  font-weight: 500;
  color: inherit;
}
.basket-total-container .summary .summary-total .total-value,
.order-summary .summary-total .total-value {
  font-size: 24px;
  font-weight: 500;
  color: inherit;
}
.basket-total-container .summary .promo-input,
.order-summary .promo-input {
  width: auto;
  -ms-flex: 1;
      flex: 1;
  min-width: 0;
}
.basket-total-container .summary .btn-order,
.order-summary .btn-order,
.basket-total-container .summary .order-btn,
.order-summary .order-btn {
  font-size: 18px;
  font-weight: 500;
  border-radius: 12px;
  padding-top: 10px;
  width: auto;
  padding-bottom: 10px;
}
.basket-total-container .summary .btn-apply,
.order-summary .btn-apply,
.basket-total-container .summary .promo-btn,
.order-summary .promo-btn {
  font-weight: 500;
  font-size: 18px;
  padding: 0 19px;
  border-radius: 12px;
}
.basket-total-container .summary .btn-apply:not(:hover),
.order-summary .btn-apply:not(:hover),
.basket-total-container .summary .promo-btn:not(:hover),
.order-summary .promo-btn:not(:hover) {
  background-color: var(--secondary-1);
  border-color: var(--secondary-1);
}
.basket-total-container .summary .consent-checkbox,
.order-summary .consent-checkbox {
  margin: 0 0 -20px 0 !important;
}
.basket-total-container .summary .consent-checkbox:last-child,
.order-summary .consent-checkbox:last-child {
  margin-bottom: 0 !important;
}
.basket-total-container .summary .consent-checkbox input,
.order-summary .consent-checkbox input {
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -10px;
}
.order-summary .summary-total {
  color: var(--dark);
}
.order-summary .summary-total > span:first-child {
  font-size: 24px;
  font-weight: 500;
  color: inherit;
}
.order-summary .summary-total > span:last-child {
  font-size: 24px;
  font-weight: 500;
  color: inherit;
}
.catalog .product-card {
  padding: 19px;
}
.catalog .product-card .product-card__header {
  margin-bottom: 20px;
}
.catalog .product-card .product-card__body {
  margin-bottom: 20px;
}
.catalog .product-card .product-card__colors {
  gap: 3px;
}
.catalog .product-card .product-card__color {
  width: 37px;
  height: 37px;
  border-radius: 7px;
  max-width: 37px;
  min-width: 37px;
  max-height: 37px;
  min-height: 37px;
  overflow: hidden;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.catalog .product-card .product-card__color:not(:has(img, svg)) {
  width: auto;
  min-width: 0;
  max-width: inherit;
  white-space: nowrap;
  border-radius: 0;
  padding-right: 5px;
}
.catalog .product-card .product-card__color:not(:has(img, svg)):last-child {
  padding-right: 0;
}
.catalog .product-card .product-card__price {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 5px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.catalog .product-card .product-card__price .product-card__price--sale {
  transform: none;
}
.catalog .type-tile .product-card__color {
  width: 42px;
  height: 42px;
  min-height: 42px;
  min-width: 42px;
  max-width: 42px;
  max-height: 42px;
}
.catalog .type-collection .product-card__title {
  font-weight: 400;
  font-size: 16px;
  color: var(--dark);
  height: auto;
  min-height: 0;
  margin: 0 0 4px 0;
}
.catalog .type-collection .product-card__title a:not(:hover) {
  color: inherit;
}
.catalog .type-collection .product-card__brand {
  font-weight: 300;
  font-size: 11px;
  color: var(--gray-main);
}
.catalog .type-collection .product-card__brand a:not(:hover) {
  color: inherit;
}
.catalog .catalog__card {
  position: relative;
}
.catalog .catalog__card:hover {
  z-index: 18;
}
.catalog .catalog__card:hover .product-card__controls {
  pointer-events: auto;
}
.catalog .catalog__card .product-card__controls {
  pointer-events: none;
}
.swiper-items .product-card {
  border-radius: 0 !important;
}
@media (max-width: 1024px) {
  .breadcrumbs {
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .breadcrumbs::-webkit-scrollbar {
    width: 0;
    height: 0;
  }
  .breadcrumbs .breadcrumbs-item {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    white-space: nowrap;
  }
  .catalog__right .catalog__card.type-collection,
  .catalog__right .catalog__card.type-tile {
    width: 50%;
  }
  .catalog__right .product-card {
    border-radius: 0 !important;
  }
}
@media (max-width: 872px) {
  .banner-section {
    position: relative;
  }
  .banner-section .banner {
    position: relative;
  }
  .banner-section .banner__text {
    color: var(--secondary-1);
    position: relative;
    z-index: 3;
  }
  .banner-section .banner__left {
    width: 600px;
  }
  .banner-section .banner__right {
    width: 330px;
    position: absolute;
    bottom: 0;
    left: 520px;
    margin: 0;
  }
}
@media (max-width: 768px) {
  .catalog .catalog__card.type-collection .product-card__controls {
    position: relative;
    background: none;
    border: none;
    border-radius: 0;
    opacity: 1;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    padding: 16px 0 0 0;
    margin: 0;
  }
  .catalog .product-card {
    padding: 21px;
  }
  .catalog .product-card .product-card__header {
    margin-bottom: 18px;
  }
  .catalog .product-card .product-card__footer {
    margin-bottom: 5px;
  }
  .catalog .product-card .product-card__body {
    margin-bottom: 25px;
  }
  .catalog .product-card .product-card__color {
    width: 42px;
    height: 42px;
    min-height: 42px;
    max-width: 42px;
    min-width: 42px;
    max-height: 42px;
  }
  .catalog .product-card .tabs-contents {
    margin-top: 20px;
  }
  .catalog .product-card .product-card__button .button {
    padding-top: 11px;
    padding-bottom: 11px;
  }
  .catalog .type-tile .product-card__color {
    width: 32px;
    height: 32px;
    max-width: 32px;
    min-width: 32px;
    min-height: 32px;
    max-height: 32px;
  }
}
@media (max-width: 767px) {
  .product__body-col--stocks {
    -ms-flex-direction: column;
        flex-direction: column;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }
  .item-card .item-info {
    width: auto;
    max-width: 100%;
  }
  .item-card .item-right {
    max-width: 100%;
  }
  .banner-section .banner__text {
    width: 100%;
  }
  .banner-section .banner__right {
    display: none;
  }
}
@media (max-width: 639px) {
  .news-products .slider-inner-wrap .sl-wrap {
    width: 50%;
    border-top: 1px solid var(--gray-main);
    height: 100%;
    margin: 0;
    -ms-flex-item-align: stretch;
        -ms-grid-row-align: stretch;
        align-self: stretch;
  }
  .news-products .slider-inner-wrap .sl-wrap.catalog__card {
    width: 50%;
  }
  .news-products .slider-inner-wrap .sl-wrap:first-child {
    border-left: 1px solid var(--gray-main);
  }
  .news-products .slider-inner-wrap .slider {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    transform: none !important;
    height: auto !important;
    gap: 0;
    height: auto;
    -ms-flex-align: stretch;
        align-items: stretch;
    margin: -1px 0 0 -1px;
    width: calc(100% + 1px);
  }
  .news-products .slider-inner-wrap .button-slider {
    display: none;
  }
  .tiles-box.mb-bottom-banner {
    margin-bottom: 0;
  }
  .promo-box {
    font-size: 15px;
    padding-bottom: 80px;
  }
  .promo-box .bg-full-wrap {
    bottom: 80px;
  }
  .promo-box .box-inner-wrap {
    min-height: 0;
    padding: 40px 16px 18px 16px;
  }
  .promo-box .head-inner-wrap {
    padding: 10px 22px;
  }
  .promo-box .action-inner-wrap {
    position: absolute;
    bottom: -80px;
    left: 0;
    right: 0;
  }
  .promo-box .action-inner-wrap .btn {
    width: 100%;
  }
  .promo-box .section-title {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: normal;
  }
}
@media (max-width: 479px) {
  .catalog__right .catalog__card.type-collection,
  .catalog__right .catalog__card.type-tile {
    width: 100%;
  }
}
@media (max-width: 459px) {
  .catalog__right .swiper .view__card .view__card-wrap {
    -ms-flex-direction: column;
        flex-direction: column;
  }
  .catalog__right .swiper .view__card .view__card-img {
    max-width: 100%;
    width: 100%;
  }
  .catalog__right .swiper .view__card .view__card-info {
    width: 100%;
  }
}
@media (min-width: 480px) and (max-width: 639px) {
  .catalog .type-tile .product-card__color {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
  }
}
@media (min-width: 640px) {
  .tiles-box .item-wrap {
    width: 50%;
  }
}
@media (min-width: 768px) {
  .news-detail .catalog__card {
    width: 33.33%;
  }
  .news-detail .blog-sections,
  .news-detail .news-date-time {
    margin-bottom: 32px;
  }
  .news-detail > .elm-photo,
  .news-detail .detail-text > .elm-photo {
    height: 260px;
    margin-bottom: 20px;
  }
}
@media (min-width: 992px) {
  .catalog__right .catalog__card.type-collection .product-card {
    border-radius: 0 !important;
  }
  .catalog__right .catalog__card.type-collection:first-child .product-card {
    border-top-left-radius: 16px !important;
  }
  .catalog__right .catalog__card.type-collection:last-child .product-card {
    border-bottom-right-radius: 16px !important;
  }
  .catalog__right .catalog__card.type-collection:nth-child(3) .product-card {
    border-top-right-radius: 16px !important;
  }
  .catalog__right .catalog__card.type-collection:nth-child(3n+1):last-child .product-card {
    border-bottom-left-radius: 16px !important;
  }
  .catalog__right .catalog__card.type-collection:nth-child(3n+1):has(+.catalog__card:last-child) .product-card {
    border-bottom-left-radius: 16px !important;
  }
  .catalog__right .catalog__card.type-collection:nth-child(3n+1):has(+.catalog__card+.catalog__card:last-child) .product-card {
    border-bottom-left-radius: 16px !important;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .catalog__right .catalog__card.type-tile .product-card {
    border-radius: 0 !important;
  }
  .catalog__right .catalog__card.type-tile:first-child .product-card {
    border-top-left-radius: 16px !important;
  }
  .catalog__right .catalog__card.type-tile:last-child .product-card {
    border-bottom-right-radius: 16px !important;
  }
  .catalog__right .catalog__card.type-tile:nth-child(3) .product-card {
    border-top-right-radius: 16px !important;
  }
  .catalog__right .catalog__card.type-tile:nth-child(3n+1):last-child .product-card {
    border-bottom-left-radius: 16px !important;
  }
  .catalog__right .catalog__card.type-tile:nth-child(3n+1):has(+.catalog__card:last-child) .product-card {
    border-bottom-left-radius: 16px !important;
  }
  .catalog__right .catalog__card.type-tile:nth-child(3n+1):has(+.catalog__card+.catalog__card:last-child) .product-card {
    border-bottom-left-radius: 16px !important;
  }
}
@media (min-width: 992px) and (max-width: 1249px) {
  .item-card .item-info {
    width: 200px;
    max-width: 200px;
  }
  .item-card .item-right {
    max-width: calc(100% - 200px - 20px - 90px - 42px);
  }
}
@media (min-width: 1024px) and (max-width: 1399px) {
  .catalog__right .swiper .view__card .view__card-wrap {
    -ms-flex-direction: column;
        flex-direction: column;
  }
  .catalog__right .swiper .view__card .view__card-img {
    max-width: 100%;
    width: 100%;
  }
  .catalog__right .swiper .view__card .view__card-info {
    width: 100%;
  }
}
@media (min-width: 1025px) {
  .news-products .slider-inner-wrap .sl-wrap.catalog__card {
    width: 300px;
  }
  .news-detail .news-products .slider-inner-wrap .sl-wrap.catalog__card {
    width: 216px;
  }
  .news-detail .catalog__card {
    width: 25%;
  }
  .news-detail .tiles-box,
  .news-detail .contents-box,
  .news-detail .article-rate-box,
  .news-detail .authors-box,
  .news-detail .news-products {
    margin-bottom: 32px;
  }
  .news-detail > .elm-photo,
  .news-detail .detail-text > .elm-photo {
    margin: 32px 0;
    height: 490px;
  }
  .news-detail h1,
  .news-detail h2,
  .news-detail h3,
  .news-detail h4,
  .news-detail h5,
  .news-detail h6 {
    margin: 32px 0 16px 0;
  }
  .news-detail h1,
  .news-detail h2 {
    margin-bottom: 24px;
  }
  .news-detail h1 {
    font-size: 32px;
  }
  .news-detail h3,
  .news-detail h4,
  .news-detail h5,
  .news-detail h6 {
    font-size: 14px;
    margin-bottom: 24px;
    margin-top: 40px;
  }
  .news-detail p,
  .news-detail ul,
  .news-detail ol,
  .news-detail table,
  .news-detail .table-wrapper {
    margin-bottom: 1.2em;
  }
  .tiles-box .items-pluses .item-wrap:nth-child(4),
  .tiles-box .items-pluses .item-wrap:nth-child(5) {
    width: 50%;
  }
  .tiles-box .item-wrap {
    width: 33.33%;
    padding: 0 15px;
  }
  .tiles-box .items-wrap {
    gap: 24px 0;
    margin: 0 -15px;
  }
  .promo-box {
    font-size: 24px;
  }
  .promo-box .box-inner-wrap {
    min-height: 468px;
    padding: 60px 125px;
    gap: 58px;
  }
  .promo-box .head-inner-wrap {
    padding: 14px 10px 24px 24px;
    width: 620px;
  }
  .promo-box .section-title {
    margin-bottom: 10px;
    font-size: 40px;
    line-height: normal;
  }
}
@media (min-width: 1025px) and (max-width: 1200px) {
  .catalog .type-tile .product-card__color {
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
  }
}
@media (min-width: 1201px) {
  .catalog .product-card .product-card__color {
    width: 34px;
    height: 34px;
    max-width: 34px;
    max-height: 34px;
    min-height: 34px;
    min-width: 34px;
  }
  .catalog .type-tile .product-card__color {
    width: 24px;
    height: 24px;
    max-width: 24px;
    max-height: 24px;
    min-height: 24px;
    min-width: 24px;
  }
  .catalog__right .catalog__card.type-tile .product-card {
    border-radius: 0 !important;
  }
  .catalog__right .catalog__card.type-tile:first-child .product-card {
    border-top-left-radius: 16px !important;
  }
  .catalog__right .catalog__card.type-tile:last-child .product-card {
    border-bottom-right-radius: 16px !important;
  }
  .catalog__right .catalog__card.type-tile:nth-child(4) .product-card {
    border-top-right-radius: 16px !important;
  }
  .catalog__right .catalog__card.type-tile:nth-child(4n+1):last-child .product-card {
    border-bottom-left-radius: 16px !important;
  }
  .catalog__right .catalog__card.type-tile:nth-child(4n+1):has(+.catalog__card:last-child) .product-card {
    border-bottom-left-radius: 16px !important;
  }
  .catalog__right .catalog__card.type-tile:nth-child(4n+1):has(+.catalog__card+.catalog__card:last-child) .product-card {
    border-bottom-left-radius: 16px !important;
  }
  .catalog__right .catalog__card.type-tile:nth-child(4n+1):has(+.catalog__card+.catalog__card+.catalog__card:last-child) .product-card {
    border-bottom-left-radius: 16px !important;
  }
}
@media (min-width: 1400px) {
  .catalog .product-card {
    padding: 23px;
  }
  .catalog .product-card .product-card__color {
    width: 44px;
    height: 44px;
    max-width: 44px;
    max-height: 44px;
    min-height: 44px;
    min-width: 44px;
  }
  .catalog .product-card .product-card__brand {
    font-size: 14px;
  }
  .catalog .product-card .tabs-contents {
    margin-top: 20px;
  }
  .catalog .type-tile .product-card__color {
    width: 32px;
    height: 32px;
    max-width: 32px;
    max-height: 32px;
    min-height: 32px;
    min-width: 32px;
  }
  .catalog .type-collection .product-card__title {
    font-size: 20px;
    line-height: 1.15;
  }
  .catalog .catalog__card.type-collection .product-card__controls {
    padding-top: 20px;
    padding-left: 23px;
    padding-right: 23px;
    padding-bottom: 23px;
  }
}
/* ----------------------------------- *\
			inputs elements styles
\* ----------------------------------- */
[data-items] {
  overflow: visible;
}
[data-items]:after {
  content: attr(data-items);
  height: 20px;
  line-height: 20px;
  z-index: 5;
  padding: 0 4px;
  text-align: center;
  border-radius: 10px;
  position: absolute;
  bottom: 50%;
  left: 50%;
  right: auto;
  top: auto;
  background: var(--primary-2-default);
  color: var(--white);
  font-weight: 500;
  font-size: 12px;
  min-width: 20px;
}
/* autofill icons delete */
.form-input[placeholder] {
  text-overflow: ellipsis;
}
.form-input {
  text-overflow: ellipsis;
}
select.form-input,
input.form-input-select {
  display: block;
  text-overflow: ellipsis;
  width: 100%;
  padding-right: 30px;
  background-image: url(../img/icons/arrow-select.svg);
  background-position: right 20px center;
  background-color: #fff;
  background-repeat: no-repeat;
  -moz-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  appearance: none!important;
  line-height: 1em;
  text-indent: 0.01px;
  outline: none;
  cursor: pointer;
}
select.form-input.form-input-clear,
input.form-input-select.form-input-clear {
  height: auto;
  border: none;
  min-height: 0;
  border-radius: 0;
  box-shadow: none;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  font-size: 1em;
  line-height: inherit;
  padding: 0 16px 0 0;
  color: inherit;
  font-weight: bold;
  background-image: url(../img/icons/arrow-select.png);
  background-size: 8px auto;
  background-repeat: no-repeat;
  background-position: right center;
}
select::-ms-expand {
  display: none;
}
select.form-input:required:invalid {
  color: #444;
}
.btn {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  position: relative;
  text-align: center;
  -ms-flex-pack: center;
      justify-content: center;
  overflow: hidden;
  max-width: 100%;
  vertical-align: middle;
  height: 48px;
  padding: 0 19px;
  border-radius: 12px;
  background: var(--yellow);
  border: 1px solid var(--yellow);
  color: var(--white);
  gap: 10px;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
}
.btn:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  text-decoration: none;
  color: var(--white);
}
.btn .button-ico,
.btn:before,
.btn:after {
  width: 24px;
  height: 24px;
  transition: all ease 0.2s;
}
.btn .button-title-border {
  border-bottom: 1px solid;
  line-height: 1;
}
.btn .button-title {
  display: block;
  position: relative;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.btn .button-title[data-title]:before {
  content: attr(data-title);
}
.btn .button-title[data-show]:before {
  content: attr(data-show);
}
.btn.active .button-title[data-title-active]:before {
  content: attr(data-title-active);
}
.btn.active .button-title[data-hide]:before {
  content: attr(data-hide);
}
.btn .button-active-add .button-title:before,
.btn .button-active-toggle .button-title:before {
  content: attr(data-title);
}
.btn .button-active-add .button-ico-active,
.btn .button-active-toggle .button-ico-active {
  display: none;
}
.btn .button-active-add.active .button-title:before,
.btn .button-active-toggle.active .button-title:before {
  content: attr(data-title-active);
}
.btn .button-active-add.active:has(.button-ico-active) .button-ico,
.btn .button-active-toggle.active:has(.button-ico-active) .button-ico {
  display: none;
}
.btn .button-active-add.active:has(.button-ico-active) .button-ico-active,
.btn .button-active-toggle.active:has(.button-ico-active) .button-ico-active {
  display: block;
}
.btn .button-ico:only-child {
  margin: 0 auto;
}
.btn:has(.button-ico:only-child) {
  aspect-ratio: 1;
  width: auto;
  padding: 0;
}
.button-image-zoom {
  height: 36px;
  padding: 0 12px;
  border-color: var(--base-white);
  background-color: var(--base-white);
  font-weight: 300;
  font-size: 14px;
  line-height: 129%;
  color: var(--dark);
  border-radius: 6px;
  gap: 10px;
  z-index: 4;
}
.button-image-zoom:hover {
  border-color: var(--yellow);
  color: var(--dark);
  background-color: var(--base-white);
}
.button-image-zoom .button-ico {
  filter: none;
}
.button-arrow .button-title:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin: -2px 0 0 4px;
  width: 24px;
  height: 24px;
  background: url(../img/icons/arrow-toggle.svg) center no-repeat;
  background-size: 24px auto;
  transition: all ease 0.2s;
}
.button-arrow.active .button-title:after {
  transform: rotate(180deg);
}
.btn.active .button-active-toggle:before {
  opacity: 0;
}
.btn.active .button-active-toggle:after {
  opacity: 1;
}
.button-border:not(:hover) {
  color: var(--yellow);
  background-color: transparent;
}
.button-full {
  width: 100%;
  padding: 0 15px;
}
.button-link {
  width: auto;
  height: auto;
  line-height: 24px;
  color: inherit;
  white-space: normal;
  -ms-flex-align: center;
      align-items: center;
  padding: 0;
  min-width: 0;
  background: none;
  border: none;
  border-radius: 0;
  font-weight: inherit;
}
.button-link:hover {
  border: none;
  background: none;
  color: var(--yellow);
}
.btn-action-ico {
  min-width: 0;
  border-radius: 0;
  padding: 0;
  margin: 0;
  font-size: 0;
  display: block;
  position: relative;
  overflow: hidden;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  text-decoration: none;
  transition: all ease 0.2s;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.btn-action-ico.btn {
  min-width: 0;
  min-height: 0;
  padding: 0;
  display: block;
}
.btn-action-ico:before,
.btn-action-ico:after,
.btn-action-ico [class*="icon-"],
.btn-action-ico img,
.btn-action-ico svg {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  transition: all ease 0.2s;
  fill: inherit;
}
.btn-action-ico img,
.btn-action-ico svg {
  display: block;
  width: auto;
  height: auto;
  max-width: 24px;
  max-height: 24px;
}
.btn-action-ico:before,
.btn-action-ico:after {
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px auto;
}
.btn-action-ico:hover {
  text-decoration: none;
}
.btn-action-ico.ico-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  z-index: 20;
  background: var(--base-white);
  box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.15);
  cursor: pointer;
}
.btn-action-ico.ico-arrow:before {
  background-image: url(../images/arrow-slider.svg);
}
.btn-action-ico.ico-arrow:hover {
  background-color: var(--gray2);
}
.btn-action-ico.ico-arrow.swiper-button-disabled {
  cursor: default;
  opacity: 0;
}
.btn-action-ico.ico-arrow-prev:before {
  transform: rotate(180deg);
}
.btn-action-ico.ico-rate-down,
.btn-action-ico.ico-rate-up {
  height: 56px;
  width: 144px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 16px;
  background: rgba(235, 239, 249, 0.4);
  border: none;
}
.btn-action-ico.ico-rate-down:before,
.btn-action-ico.ico-rate-up:before {
  background-image: url(../images/icons/rate.svg);
  opacity: 0.6;
}
.btn-action-ico.ico-rate-down:hover,
.btn-action-ico.ico-rate-up:hover {
  background: rgba(235, 239, 249, 0.6);
}
.btn-action-ico.ico-rate-down.active,
.btn-action-ico.ico-rate-up.active {
  background: #ebeff9;
}
.btn-action-ico.ico-rate-down.active:before,
.btn-action-ico.ico-rate-up.active:before {
  opacity: 1;
}
.btn-action-ico.ico-rate-down:before {
  transform: rotate(180deg);
}
.btn-action-ico.button-active-close:after,
.btn-action-ico.button-active-toggle:after {
  opacity: 0;
}
.btn-action-ico.button-active-close.active:before,
.btn-action-ico.button-active-toggle.active:before {
  opacity: 0;
}
.btn-action-ico.button-active-close.active:after,
.btn-action-ico.button-active-toggle.active:after {
  opacity: 1;
}
.btn-action-ico.button-active-close:after {
  background-image: url(../img/icons/close.svg);
}
/* ----------------------------------- *\
			forms elements styles
\* ----------------------------------- */
.frm-row,
.frm-field,
.frm-row-submit {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  line-height: 1;
}
.frm-field {
  display: block;
  width: 100%;
}
.frm-select {
  position: relative;
  display: block;
  overflow: hidden;
  line-height: 1;
}
.frm-select input {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  opacity: 0;
  margin: 0;
  padding: 0;
}
.frm-select input:checked ~ label:after {
  opacity: 1;
}
.frm-select label {
  display: block;
  position: relative;
  cursor: pointer;
}
.frm-select label:before,
.frm-select label:after {
  content: "";
  display: block;
  position: absolute;
}
.frm-select label:after {
  opacity: 0;
}
.frm-select input[type="radio"] ~ label:before {
  border-radius: 50%;
}
.frm-select input[type="radio"] ~ label:after {
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  border-radius: 50%;
  background: #000;
}
.frm-select input:checked ~ label:after {
  opacity: 1;
}
.frm-select label:after {
  border-radius: 0;
  border: none;
  background: url(../img/icons/chk.svg) center / 24px auto no-repeat;
  opacity: 0;
}
.frm-select a {
  color: inherit;
}
.frm-select a:hover {
  color: var(--clr-att);
}
/* ----------------------------------- *\
			structura
\* ----------------------------------- */
.menu-panel-box {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--white);
  box-shadow: 0 6px 38px 0 rgba(78, 44, 198, 0.06);
  border-top: 1px solid rgba(98, 116, 144, 0.3);
}
.menu-panel-box .actions-inner-wrap {
  display: -ms-flexbox;
  display: flex;
}
.menu-panel-box .action-wrap {
  -ms-flex: 1;
      flex: 1;
}
.menu-panel-box .btn-action {
  display: block;
  position: relative;
  width: 100%;
  overflow: hidden;
  transition: all ease 0.2s;
  font-weight: 300;
  font-size: 12px;
  color: var(--secondary-1);
  padding: 8px 5px 0 5px;
  height: 54px;
  text-decoration: none;
  text-align: center;
}
.menu-panel-box .btn-action[data-items]:after {
  bottom: auto;
  top: 4px;
}
.menu-panel-box .btn-action .button-ico {
  width: 24px;
  height: 24px;
  margin: 0 auto;
  color: rgba(98, 116, 144, 0.3);
  transition: all ease 0.2s;
}
.menu-panel-box .btn-action .button-ico svg {
  fill: currentColor;
  width: 20px;
  height: 20px;
}
.menu-panel-box .btn-action .button-ico svg * {
  fill: currentColor;
}
.menu-panel-box .btn-action.active {
  color: var(--base-primary-default);
}
.menu-panel-box .btn-action.active .button-ico {
  color: var(--base-primary-default);
}
@media (max-width: 1024px) {
  body:has(.menu-panel-box) .intec-template-layout-footer.footer {
    padding-bottom: 70px;
  }
  .menu-panel-box {
    display: block;
  }
}
