/*#product-compare.container {*/
/*  padding: 16px;*/
/*  --cmp-col-min: 243px;*/
/*  --cmp-col-width: 243px;*/
/*  --cmp-cols: 1;*/
/*  --cmp-card-width: 243px;*/
/*  --cmp-card-height: 399px;*/
/*}*/

#product-compare.container {
  padding: 16px;
  --cmp-col-min: 329px;
  --cmp-col-width: 329px;
  --cmp-cols: 1;
  --cmp-card-width: 329px;
  --cmp-card-height: 565px;
  --cmp-sticky-top: 0px;
  --cmp-sticky-z: 30;
  --cmp-sticky-bg: #f5f5f5;
  --cmp-sticky-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  --cmp-sticky-left: 0px;
  --cmp-sticky-width: 100%;
  --cmp-sticky-scroll-left: 0px;
  --cmp-sticky-card-gap: 10px;
  --cmp-sticky-card-width: var(--cmp-card-width);
  --cmp-sticky-card-height: 257px;
  --cmp-sticky-card-padding: 18px 16px 14px;
  --cmp-sticky-thumb-size: 118px;
  --cmp-sticky-action-icon: 28px;
  --cmp-sticky-cart-size: 64px;
  --cmp-sticky-name-size: 19px;
  --cmp-sticky-name-height: 1.2;
  --cmp-sticky-price-size: 56px;
  --cmp-sticky-price-old-size: 40px;
  --cmp-sticky-label-size: 18px;
  --cmp-sticky-review-size: 16px;
  --cmp-sticky-rating-icon: 20px;
  --cmp-sticky-article-size: 16px;
  --cmp-sticky-action-gap: 12px;
}

#product-compare .cat__breadcrumb {
  margin: 0 0 16px;
}

#product-compare .cmp__head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 3rem;
  margin: 0 0 16px;
}

#product-compare .cmp__title {
  margin: 0;
  font-family: 'Fact', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0;
  color: #000000;
}

#product-compare .cmp__only-diff {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin: 0;
  cursor: pointer;
  flex-shrink: 0;
  user-select: none;
}

#product-compare .cmp__only-diff-label {
  font-family: 'Fact', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0;
  color: #000000;
}

#product-compare .cmp__only-diff-input {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin: 0;
  border: 1px solid #8b8080;
  border-radius: 2px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background: #ffffff;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  outline: 0;
}

#product-compare .cmp__only-diff-input:hover {
  border-color: #f96332;
}

#product-compare .cmp__only-diff-input:checked {
  background: #f96332 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8l3.5 3.5L13 5' stroke='%23ffffff' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  border-color: #f96332;
}

#product-compare .cmp__only-diff-input:focus-visible {
  outline: 2px solid #f96332;
  outline-offset: 2px;
}

.cmp {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cmp__sticky {
  display: flex;
  position: fixed;
  top: var(--teplokram-header-offset, 120px);
  z-index: var(--cmp-sticky-z);
  margin-bottom: 0;
  background: var(--cmp-sticky-bg);
  left: var(--cmp-sticky-left);
  width: var(--cmp-sticky-width);
  overflow: hidden;
  box-sizing: border-box;
  flex-direction: column;
  align-items: stretch;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0.22s, top 0.18s ease;
}

#product-compare.cmp--cards-sticky .cmp__sticky {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0s, top 0.18s ease;
}

.cmp__sticky .cmp__products {
  background: #ffffff;
  box-shadow: var(--cmp-sticky-shadow);
}

.cmp__sticky .cmp__products--sticky {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: var(--cmp-sticky-card-width);
  position: relative;
  transform: translate3d(calc(var(--cmp-sticky-scroll-left) * -1), 0, 0);
  will-change: transform;
}

.cmp__sticky .cmp__product-cell {
  flex: 0 0 var(--cmp-sticky-card-width);
  height: var(--cmp-sticky-card-height);
  width: var(--cmp-sticky-card-width);
  min-width: var(--cmp-sticky-card-width);
  max-width: var(--cmp-sticky-card-width);
  border-top-width: 0;
}

.cmp__sticky .product-card__hover {
  display: none !important;
}

.cmp__sticky .product-card__img-footer {
  display: none;
}

.cmp__sticky .product-card__action-btn img {
  width: var(--cmp-sticky-action-icon);
  height: var(--cmp-sticky-action-icon);
}

#product-compare .cmp__sticky .product-card__action-btn[data-action-type="compare"] img,
#product-compare .cmp__inner .product-card__action-btn[data-action-type="compare"] img {
  filter: brightness(0) saturate(0) brightness(0.42) !important;
  transition: filter 0.2s ease;
}

#product-compare .cmp__sticky .product-card__action-btn--active[data-action-type="compare"] img,
#product-compare .cmp__inner .product-card__action-btn--active[data-action-type="compare"] img {
  filter: brightness(0) saturate(0) brightness(0.42) !important;
}

#product-compare .cmp__sticky .product-card__action-btn[data-action-type="compare"]:hover img,
#product-compare .cmp__inner .product-card__action-btn[data-action-type="compare"]:hover img {
  filter: brightness(0) saturate(100%) invert(55%) sepia(77%) saturate(600%) hue-rotate(336deg) brightness(104%) !important;
}

.cmp__sticky .product-card__cart-btn {
  width: var(--cmp-sticky-cart-size);
  height: var(--cmp-sticky-cart-size);
}

.cmp__sticky .product-card__cart-btn img {
  width: var(--cmp-sticky-action-icon);
  height: var(--cmp-sticky-action-icon);
}

.cmp__sticky .product-card__price-row,
.cmp__sticky .product-card__not-price-row {
  margin-top: 0;
}

.cmp__grid {
  display: grid;
  grid-template-columns: repeat(var(--cmp-cols), minmax(var(--cmp-col-min), 1fr));
  width: 100%;
}

.cmp__products {
  background: #ffffff;
  align-items: start;
}

.cmp__product-cell {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  max-width: none;
  height: var(--cmp-card-height);
  box-sizing: border-box;
  background: #ffffff;
  padding: 0;
  overflow: hidden;
  border-width: 0.5px 0.5px 0.5px 0.5px;
  border-style: solid;
  border-color: #8B8080;
}

#product-compare .cmp__products .product-card {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  max-width: none;
  height: var(--cmp-card-height);
  min-height: var(--cmp-card-height);
  margin: 0;
  padding: 16px;
  gap: 14px;
  border-radius: 8px;
  box-shadow: none;
  clip-path: none;
  background: #ffffff;
  box-sizing: border-box;
  overflow: hidden;
}

#product-compare .cmp__products .product-card:first-child {
  margin-left: 0;
}

#product-compare .cmp__products .product-card:hover {
  border-radius: 8px;
  z-index: auto;
  box-shadow: none;
}

.cmp__products .product-card__img-wrap {
  height: 297px;
  aspect-ratio: auto;
  flex-shrink: 0;
}

#product-compare .cmp__products .product-card__info,
#product-compare .cmp__products .product-card__actions,
#product-compare .cmp__recently .product-card__info,
#product-compare .cmp__recently .product-card__actions {
  display: none;
}

#product-compare .cmp__products .product-card__info,
#product-compare .cmp__products .product-card__actions {
  display: flex;
}

#product-compare .cmp__products .product-card__actions {
  justify-content: flex-end;
  gap: 6px;
}

#product-compare .cmp__products .product-card__action-btn img {
  width: 24px;
  height: 24px;
}

#product-compare .cmp__products .product-card__hover {
  display: none !important;
}

.cmp__products .product-card__meta {
  min-width: 0;
  width: 100%;
}

.cmp__products .product-card__meta-left {
  min-width: 0;
  overflow: hidden;
}

.cmp__products .product-card__price-row,
.cmp__products .product-card__not-price-row {
  margin-top: auto;
  flex-shrink: 0;
  min-width: 0;
  width: 100%;
  height: 67px;
}

#product-compare .cmp__products .product-card__prices {
  min-height: auto;
  min-width: 0;
  justify-content: flex-end;
  overflow: hidden;
  gap: 8px;
}

#product-compare .cmp__section-row .product-card__prices,
#product-compare .cmp__price .product-card__prices {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px 8px;
  min-width: 0;
}

#product-compare .cmp__products .product-card__price-old {
  font-family: 'Fact', sans-serif;
  font-weight: 400;
  line-height: 33.6px;
  color: #766f6e;
  text-decoration: none;
}

#product-compare .cmp__section-row .product-card__price-old,
#product-compare .cmp__price .product-card__price-old {
  font-family: 'Fact', sans-serif;
  font-weight: 400;
  line-height: 100%;
  color: #766f6e;
  text-decoration: line-through;
}

#product-compare .cmp__products .product-card__price-old span:first-child {
  font-family: 'Fact', sans-serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 33.6px;
  letter-spacing: 0;
  vertical-align: middle;
  text-decoration: line-through;
}

#product-compare .cmp__section-row .product-card__price-old span:first-child,
#product-compare .cmp__section-row .product-card__price-old-currency,
#product-compare .cmp__price .product-card__price-old span:first-child,
#product-compare .cmp__price .product-card__price-old-currency {
  font-family: 'Fact', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0;
  vertical-align: baseline;
  text-decoration: line-through;
}

#product-compare .cmp__products .product-card__price-old-currency {
  font-family: 'Fact', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 33.6px;
  letter-spacing: 0;
  vertical-align: middle;
  text-transform: uppercase;
  display: inline-block;
  transform: translateY(4px);
}

#product-compare .cmp__products .product-card__price {
  font-family: 'Fact', sans-serif;
  font-weight: 400;
  line-height: 33.6px;
  color: #f96332;
}

#product-compare .cmp__section-row .product-card__price,
#product-compare .cmp__price .product-card__price {
  font-family: 'Fact', sans-serif;
  font-weight: 400;
  line-height: 100%;
  color: #f96332;
}

#product-compare .cmp__products .product-card__price span:first-child {
  font-family: 'Fact', sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 33.6px;
  letter-spacing: 0;
  vertical-align: middle;
}

#product-compare .cmp__section-row .product-card__price span:first-child,
#product-compare .cmp__section-row .product-card__price-currency,
#product-compare .cmp__price .product-card__price span:first-child,
#product-compare .cmp__price .product-card__price-currency {
  font-family: 'Fact', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0;
  vertical-align: baseline;
}

#product-compare .cmp__products .product-card__price-currency {
  font-family: 'Fact', sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 33.6px;
  letter-spacing: 0;
  vertical-align: middle;
  text-transform: uppercase;
  display: inline-block;
  transform: translateY(5px);
}

#product-compare .cmp__section-row .product-card__price-currency,
#product-compare .cmp__price .product-card__price-currency {
  text-transform: uppercase;
}

.cmp__products .product-card__name,
.cmp__recently .product-card__name {
  min-width: 0;
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow: hidden;
}

.cmp__products .product-card__name a,
.cmp__recently .product-card__name a {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  overflow-wrap: anywhere;
  max-height: 28px;
  font-family: 'Fact', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0;
  color: #000000;
  text-decoration: none;
}

.cmp__products .product-card__stars img,
.cmp__products .product-card__reviews-icon {
  width: 24px;
  height: 24px;
}

.cmp__products .product-card__reviews-count {
  font-size: 18px;
  font-weight: 400;
}

.cmp__products .product-card__cart-btn {
  width: 36px;
  height: 36px;
}

.cmp__section-title {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  padding: 10px 16px;
  background: #ffffff;
  border-width: 0 0.5px 0.5px 0.5px;
  border-style: solid;
  border-color: #8B8080;
  font-family: 'Fact', sans-serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 100%;
  letter-spacing: 0;
  color: #000000;
  text-align: center;
}

.cmp__section-row {
  background: #ffffff;
}

.cmp__cell {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  max-width: none;
  padding: 10px 16px;
  overflow: hidden;
  word-break: break-word;
  overflow-wrap: anywhere;
  background: #ffffff;
  border-width: 0 0.5px 0.5px 0.5px;
  border-style: solid;
  border-color: #8B8080;
}

#product-compare .cmp__section-row > .cmp__cell,
#product-compare .cmp__section-row > .cmp__cell.cmp__cell--description {
  font-family: 'Fact', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  color: #000000;
}

#product-compare .cmp__section-row > .cmp__cell strike {
  font: inherit;
  color: inherit;
}

.cmp__cell--description {
  align-items: center;
  justify-content: center;
}

.cmp__cell.cmp__rating {
  flex-direction: column;
  gap: 8px;
}

.cmp__cell.cmp__price {
  flex-direction: column;
  gap: 0;
}

.cmp__rating-stars {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2px;
}

.cmp__rating-stars img {
  display: block;
  width: 16px;
  height: 16px;
}

#product-compare .cmp__rating-count {
  margin: 0;
  font-family: 'Fact', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  color: #000000;
}


.cmp__recently {
  margin-top: 16px;
  margin-bottom: 2rem;
}

.cmp__recently .slider__track {
  align-items: stretch;
}

.cmp__recently .product-card {
  flex: 0 0 var(--cmp-card-width);
  width: var(--cmp-card-width);
  min-width: var(--cmp-card-width);
  max-width: var(--cmp-card-width);
  height: var(--cmp-card-height);
  min-height: var(--cmp-card-height);
  padding: 16px;
  gap: 8px;
  box-sizing: border-box;
  overflow: hidden;
  flex-shrink: 0;
}

.cmp__recently .product-card__img-wrap {
  height: 197px;
  aspect-ratio: auto;
}


.cmp__recently .product-card__meta {
  justify-content: flex-start;
  min-width: 0;
  width: 100%;
}

.cmp__recently .product-card__meta-left {
  min-width: 0;
  overflow: hidden;
}

.cmp__recently .product-card__price-row,
.cmp__recently .product-card__not-price-row {
  margin-top: auto;
  min-width: 0;
  width: 100%;
}

.cmp__recently .product-card__prices {
  min-height: auto;
  min-width: 0;
  justify-content: flex-end;
  overflow: hidden;
  gap: 0;
}

.cmp__recently .product-card__price-old {
  font-family: 'Fact', sans-serif;
  font-weight: 400;
  line-height: 33.6px;
  color: #766f6e;
  text-decoration: none;
}

.cmp__recently .product-card__price-old span:first-child {
  font-family: 'Fact', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 33.6px;
  letter-spacing: 0;
  vertical-align: middle;
  text-decoration: line-through;
}

.cmp__recently .product-card__price-old-currency {
  font-family: 'Fact', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 33.6px;
  letter-spacing: 0;
  vertical-align: middle;
  text-decoration: line-through;
}

.cmp__recently .product-card__price {
  font-family: 'Fact', sans-serif;
  font-weight: 400;
  line-height: 33.6px;
  color: #f96332;
}

.cmp__recently .product-card__price span:first-child {
  font-family: 'Fact', sans-serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 33.6px;
  letter-spacing: 0;
  vertical-align: middle;
}

.cmp__recently .product-card__price-currency {
  font-family: 'Fact', sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 33.6px;
  letter-spacing: 0;
  vertical-align: middle;
  text-transform: uppercase;
}

.cmp__recently .product-card__stars img,
.cmp__recently .product-card__reviews-icon {
  width: 16px;
  height: 16px;
}

.cmp__recently .product-card__reviews-count {
  font-size: 14px;
}

.cmp__recently .product-card__cart-btn {
  width: 36px;
  height: 36px;
}

#product-compare.cmp--cards-sticky .cmp__inner > .cmp__products:not(.cmp__products--sticky) {
  visibility: hidden;
  height: var(--cmp-sticky-height, auto);
  overflow: hidden;
}

#product-compare.cmp--cards-sticky .cmp__sticky .cmp__products--sticky {
  /*width: max-content;*/
  min-width: 100%;
}

#product-compare.cmp--cards-sticky .cmp__sticky .cmp__product-cell {
  border-width: 0.5px 0.5px 0.5px 0.5px;
  padding: 16px;
  height: 257px;
}

#product-compare.cmp--cards-sticky .cmp__sticky .product-card {
  display: flex;
  column-gap: 18px;
  row-gap: 0;
  height: var(--cmp-sticky-card-height);
  min-height: var(--cmp-sticky-card-height);
  padding: var(--cmp-sticky-card-padding);
  gap: 0;
  border-radius: 10px;
  box-shadow: none;
  overflow: visible;
}

#product-compare.cmp--cards-sticky .cmp__sticky .product-card__img-wrap {
  grid-area: image;
  width: var(--cmp-sticky-thumb-size);
  height: var(--cmp-sticky-thumb-size);
  align-self: center;
  justify-self: start;
}

#product-compare.cmp--cards-sticky .cmp__sticky .product-card__name {
  grid-area: name;
  margin: 0;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

#product-compare.cmp--cards-sticky .cmp__sticky .product-card__name a {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  overflow-wrap: anywhere;
  font-size: var(--cmp-sticky-name-size);
  line-height: var(--cmp-sticky-name-height);
  max-height: 52px;
  font-weight: 700;
}

#product-compare.cmp--cards-sticky .cmp__sticky .product-card__meta {
  grid-area: meta;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--cmp-sticky-action-gap);
  align-self: start;
  margin-top: 2px;
}

#product-compare.cmp--cards-sticky .cmp__sticky .product-card__meta-left {
  flex: 1 1 auto;
}

#product-compare.cmp--cards-sticky .cmp__sticky .product-card__reviews {
  font-size: var(--cmp-sticky-review-size);
}

#product-compare.cmp--cards-sticky .cmp__sticky .product-card__stars img {
  width: var(--cmp-sticky-rating-icon);
  height: var(--cmp-sticky-rating-icon);
}

#product-compare.cmp--cards-sticky .cmp__sticky .product-card__reviews-icon {
  width: calc(var(--cmp-sticky-rating-icon) + 2px);
  height: calc(var(--cmp-sticky-rating-icon) + 2px);
}

#product-compare.cmp--cards-sticky .cmp__sticky .product-card__reviews-count {
  font-size: var(--cmp-sticky-review-size);
}

#product-compare.cmp--cards-sticky .cmp__sticky .product-card__actions {
  gap: var(--cmp-sticky-action-gap);
}

#product-compare.cmp--cards-sticky .cmp__sticky .product-card__info {
  grid-area: info;
  align-items: flex-start;
  justify-content: space-between;
  gap: 6px 10px;
  flex-wrap: wrap;
  font-size: var(--cmp-sticky-label-size);
  align-self: end;
  padding-top: 2px;
}

#product-compare.cmp--cards-sticky .cmp__sticky .product-card__availability,
#product-compare.cmp--cards-sticky .cmp__sticky .product-card__not-availability,
#product-compare.cmp--cards-sticky .cmp__sticky .product-card__available-order-only,
#product-compare.cmp--cards-sticky .cmp__sticky .product-card__article {
  font-size: var(--cmp-sticky-label-size);
  line-height: 1.15;
  font-weight: 700;
}

#product-compare.cmp--cards-sticky .cmp__sticky .product-card__article {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

#product-compare.cmp--cards-sticky .cmp__sticky .product-card__article strong {
  font-weight: 700;
  color: #000000;
}

#product-compare.cmp--cards-sticky .cmp__sticky .product-card__article-num {
  font-size: var(--cmp-sticky-article-size);
}

#product-compare.cmp--cards-sticky .cmp__sticky .product-card__price-row,
#product-compare.cmp--cards-sticky .cmp__sticky .product-card__not-price-row {
  grid-area: price;
  align-items: flex-end;
  justify-content: space-between;
  align-self: end;
  gap: 12px;
}

#product-compare.cmp--cards-sticky .cmp__sticky .product-card__prices {
  gap: 0;
}

#product-compare.cmp--cards-sticky .cmp__sticky .product-card__price-old span:first-child {
  font-size: var(--cmp-sticky-price-old-size);
}

#product-compare.cmp--cards-sticky .cmp__sticky .product-card__price span:first-child {
  font-size: var(--cmp-sticky-price-size);
}

#product-compare.cmp--cards-sticky .cmp__sticky .product-card__price-currency,
#product-compare.cmp--cards-sticky .cmp__sticky .product-card__price-old-currency {
  font-size: 24px;
  line-height: 1;
  margin-left: 0;
}

#product-compare.cmp--cards-sticky .cmp__sticky .product-card__price,
#product-compare.cmp--cards-sticky .cmp__sticky .product-card__price-old {
  line-height: 1;
}

#product-compare.cmp--cards-sticky .cmp__sticky .product-card__cart-btn,
#product-compare.cmp--cards-sticky .cmp__sticky .product-card__cart-btn-in-cart,
#product-compare.cmp--cards-sticky .cmp__sticky .product-card__cart-btn-available-order-only,
#product-compare.cmp--cards-sticky .cmp__sticky .product-card__cart-btn-not-available {
  width: var(--cmp-sticky-cart-size);
  height: var(--cmp-sticky-cart-size);
  border-radius: 8px;
}

#product-compare.cmp--cards-sticky .cmp__sticky .product-card--sticky-compare {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 18px 16px 14px;
  box-sizing: border-box;
  background: #ffffff;
  overflow: hidden;
}

#product-compare.cmp--cards-sticky .cmp__sticky .product-card__sticky-top {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  min-height: 24px;
  padding-bottom: 16px;
}

#product-compare.cmp--cards-sticky .cmp__sticky .product-card__sticky-top-container {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  min-width: 0;
  padding-bottom: 16px;
}

#product-compare.cmp--cards-sticky .cmp__sticky .product-card__sticky-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

#product-compare.cmp--cards-sticky .cmp__sticky .product-card__sticky-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #8f8181;
  flex-shrink: 0;
}

#product-compare.cmp--cards-sticky .cmp__sticky .product-card__sticky-action i {
  font-size: 30px;
  line-height: 1;
}

#product-compare.cmp--cards-sticky .cmp__sticky .product-card__sticky-action--active {
  color: #f96332;
}

#product-compare.cmp--cards-sticky .cmp__sticky .product-card__sticky-main {
  gap: 18px;
  flex: 1 1 auto;
  min-width: 0;
  min-height: 0;
}

#product-compare.cmp--cards-sticky .cmp__sticky .product-card__sticky-image-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 118px;
  width: 70px;
  height: 70px;
  min-width: 70px;
  max-width: 70px;
}

#product-compare.cmp--cards-sticky .cmp__sticky .product-card__sticky-image {
  position: absolute;
  inset: 0;
  width: 70px;
  height: 70px;
  object-fit: contain;
  transition: opacity 0.2s ease;
}

#product-compare.cmp--cards-sticky .cmp__sticky .product-card__sticky-image--primary {
  opacity: 1;
}

#product-compare.cmp--cards-sticky .cmp__sticky .product-card__sticky-image--secondary {
  opacity: 0;
}

#product-compare.cmp--cards-sticky .cmp__sticky .product-card__sticky-image-link--has-hover:hover .product-card__sticky-image--primary,
#product-compare.cmp--cards-sticky .cmp__sticky .product-card--hovered .product-card__sticky-image-link--has-hover .product-card__sticky-image--primary {
  opacity: 0;
}

#product-compare.cmp--cards-sticky .cmp__sticky .product-card__sticky-image-link--has-hover:hover .product-card__sticky-image--secondary,
#product-compare.cmp--cards-sticky .cmp__sticky .product-card--hovered .product-card__sticky-image-link--has-hover .product-card__sticky-image--secondary {
  opacity: 1;
}

#product-compare.cmp--cards-sticky .cmp__sticky .product-card__sticky-content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  gap: 16px;
}

#product-compare.cmp--cards-sticky .cmp__sticky .product-card__sticky-name {
  margin: 0;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

#product-compare.cmp--cards-sticky .cmp__sticky .product-card__sticky-name a {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: 'Fact', sans-serif;
  font-size: 14px;
  line-height: 1.18;
  font-weight: 500;
  color: #000000;
  text-decoration: none;
}

#product-compare.cmp--cards-sticky .cmp__sticky .product-card__sticky-name-rating {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 auto;
  min-width: 0;
  max-width: 100%;
}

#product-compare.cmp--cards-sticky .cmp__sticky .product-card__sticky-rating {
  display: flex;
  align-items: center;
  gap: 12px;
}

#product-compare.cmp--cards-sticky .cmp__sticky .product-card__sticky-stars {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

#product-compare.cmp--cards-sticky .cmp__sticky .product-card__sticky-stars img {
  width: 24px;
  height: 24px;
}

#product-compare.cmp--cards-sticky .cmp__sticky .product-card__sticky-reviews {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #8f8181;
}

#product-compare.cmp--cards-sticky .cmp__sticky .product-card__sticky-reviews-icon {
  width: 24px;
  height: 24px;
}

#product-compare.cmp--cards-sticky .cmp__sticky .product-card__sticky-reviews-count {
  font-family: 'Fact', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  color: #8B8080;
}

#product-compare.cmp--cards-sticky .cmp__sticky .product-card__sticky-info {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 6px 12px;
}

#product-compare.cmp--cards-sticky .cmp__sticky .product-card__sticky-availability {
  font-family: 'Fact', sans-serif;
  font-size: 14px;
  line-height: 1.15;
  font-weight: 700;
  color: #329913;
}

#product-compare.cmp--cards-sticky .cmp__sticky .product-card__sticky-availability--out {
  color: #8f8181;
}

#product-compare.cmp--cards-sticky .cmp__sticky .product-card__sticky-availability--preorder {
  color: #3e77aa;
}

#product-compare.cmp--cards-sticky .cmp__sticky .product-card__sticky-article {
  font-family: 'Fact', sans-serif;
  font-size: 14px;
  line-height: 1.15;
  font-weight: 700;
  color: #000000;
  white-space: nowrap;
}

#product-compare.cmp--cards-sticky .cmp__sticky .product-card__sticky-article strong {
  font-weight: 700;
}

#product-compare.cmp--cards-sticky .cmp__sticky .product-card__sticky-article-num {
  font-weight: 400;
  color: #8f8181;
}

#product-compare.cmp--cards-sticky .cmp__sticky .product-card__sticky-price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

#product-compare.cmp--cards-sticky .cmp__sticky .product-card__sticky-prices {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0;
  min-width: 0;
  height: 67px;
}

#product-compare.cmp--cards-sticky .cmp__sticky .product-card__sticky-price-old {
    position: relative;
    display: inline-block;
    font-family: 'Fact', sans-serif;
    line-height: 1;
    color: #8f8181;
}

#product-compare.cmp--cards-sticky .cmp__sticky .product-card__sticky-price-old::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 65%;
    height: 2px;
    background: currentColor;
    transform: translateY(-50%);
}

#product-compare.cmp--cards-sticky .cmp__sticky .product-card__sticky-price-old span:first-child {
  font-size: 30px;
  line-height: 1;
  font-weight: 400;
}

#product-compare.cmp--cards-sticky .cmp__sticky .product-card__sticky-price-old-currency {
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

#product-compare.cmp--cards-sticky .cmp__sticky .product-card__sticky-price {
  font-family: 'Fact', sans-serif;
  line-height: 1;
  color: #f96332;
}

#product-compare.cmp--cards-sticky .cmp__sticky .product-card__sticky-price span:first-child {
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
}

#product-compare.cmp--cards-sticky .cmp__sticky .product-card__sticky-price-currency {
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

#product-compare.cmp--cards-sticky .cmp__sticky .product-card__sticky-cart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 8px;
  background: #f96332;
  color: #ffffff;
}

#product-compare.cmp--cards-sticky .cmp__sticky .product-card__sticky-cart-btn img {
  width: 24px;
  height: 24px;
}

.cmp__wrap {
  overflow-x: auto;
  overflow-y: visible;
  box-sizing: border-box;
  padding-bottom: 20px;
  background: transparent;
  border: none;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.cmp__wrap--scrollable {
  overflow-x: scroll;
  scrollbar-width: thin;
  scrollbar-color: #8b8080 transparent;
}

.cmp__wrap--scrollable::-webkit-scrollbar {
  height: 8px;
  -webkit-appearance: none;
  appearance: none;
}

.cmp__wrap--scrollable::-webkit-scrollbar-track {
  background: transparent;
}

.cmp__wrap--scrollable::-webkit-scrollbar-thumb {
  background-color: #8b8080;
  border-radius: 4px;
}

.cmp__wrap:not(.cmp__wrap--scrollable)::-webkit-scrollbar {
  display: none;
  height: 0;
}

.cmp__inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: #ffffff;
}

.cmp__inner > .cmp__products {
  background: #ffffff;
}

#product-compare.cmp--scrollable .cmp__inner {
  width: max-content;
  min-width: 100%;
}

#product-compare.cmp--scrollable .cmp__grid {
  grid-template-columns: repeat(var(--cmp-cols), var(--cmp-col-width));
  width: max-content;
  min-width: 100%;
}

#product-compare.cmp--scrollable .cmp__product-cell {
  width: var(--cmp-col-width);
  min-width: var(--cmp-col-width);
  max-width: var(--cmp-col-width);
}

#product-compare.cmp--scrollable .cmp__products . {
  flex: 0 0 var(--cmp-card-width);
  width: 328px;
  min-width: 328px;
  max-width: 328px;
}

#product-compare.cmp--scrollable .cmp__cell {
  width: var(--cmp-col-width);
  min-width: var(--cmp-col-width);
  max-width: var(--cmp-col-width);
}

#product-compare.cmp--scrollable .cmp__section-title {
  min-width: calc(var(--cmp-col-width) * var(--cmp-cols));
}

@media (max-width: 1199px) {
  #product-compare.cmp--scrollable .cmp__products . {
    flex: 0 0 var(--cmp-card-width);
    width: var(--cmp-card-width);
    min-width: var(--cmp-card-width);
    max-width: var(--cmp-card-width);
    padding: 16px;
    gap: 8px;
  }

  #product-compare .cmp__recently .product-card {
    flex: 0 0 var(--cmp-card-width);
    width: var(--cmp-card-width);
    min-width: var(--cmp-card-width);
    max-width: var(--cmp-card-width);
    padding: 16px;
    gap: 8px;
  }

  #product-compare .cmp__products .product-card:first-child,
  #product-compare .cmp__recently .product-card:first-child {
    margin-left: 0;
  }

  #product-compare .cmp__products .product-card__img-wrap,
  #product-compare .cmp__recently .product-card__img-wrap {
    height: 197px;
  }

  #product-compare .cmp__products .product-card__name a,
  #product-compare .cmp__recently .product-card__name a {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
    line-height: 14px;
    max-height: 28px;
  }

  #product-compare .cmp__products .product-card__stars img,
  #product-compare .cmp__recently .product-card__stars img,
  #product-compare .cmp__products .product-card__reviews-icon,
  #product-compare .cmp__recently .product-card__reviews-icon {
    width: 16px;
    height: 16px;
  }

  #product-compare .cmp__products .product-card__reviews-count,
  #product-compare .cmp__recently .product-card__reviews-count {
    font-size: 14px;
  }

  #product-compare .cmp__products .product-card__price-old span:first-child {
    font-size: 30px;
    line-height: 33.6px;
  }

  #product-compare .cmp__products .product-card__price-old-currency {
    font-size: 18px;
    line-height: 33.6px;
  }

  #product-compare .cmp__products .product-card__price span:first-child {
    font-size: 40px;
    line-height: 33.6px;
  }

  #product-compare .cmp__products .product-card__price-currency {
    font-size: 22px;
    line-height: 33.6px;
  }

  #product-compare .cmp__recently .product-card__price-old span:first-child {
    font-size: 20px;
    line-height: 33.6px;
  }

  #product-compare .cmp__recently .product-card__price-old-currency {
    font-size: 16px;
    line-height: 33.6px;
  }

  #product-compare .cmp__recently .product-card__price span:first-child {
    font-size: 30px;
    line-height: 33.6px;
  }

  #product-compare .cmp__recently .product-card__price-currency {
    font-size: 22px;
    line-height: 33.6px;
  }
}
