@charset "UTF-8";
/**
needs bootstrap function str-replace()
 */
/**
* Метод дополняет svg-sprite.scss.
* Позволяет получить чистый урл элемента спрайта для использования в псевдоэлементах или background-image
* Example: content: url(get-svg-url('checkmark', $user-variables: (fill: 'tomato')));
* Example: background-image: url(get-svg-url('heart', $user-variables: (stroke: 'red', fill: 'pink')));
*/
/**
вертикальные отступы
для каждого цвета указываются в порядке как в $grid-breakpoints
 */
.shop-detail {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .shop-detail {
    display: grid;
    gap: 20px;
    grid-template-columns: 470px 1fr;
    grid-template-rows: repeat(2, max-content);
  }
}
@media (min-width: 992px) {
  .shop-detail {
    -moz-column-gap: 36px;
         column-gap: 36px;
    row-gap: 20px;
  }
}
@media (min-width: 1200px) {
  .shop-detail {
    grid-template-columns: 674px 1fr;
  }
}
@media (min-width: 1600px) {
  .shop-detail {
    grid-template-columns: 612px 483px 1fr;
  }
}
@media (min-width: 768px) {
  .shop-detail:not(:has(.shop-detail-sku)) .shop-detail-actions {
    grid-row: 1;
  }
}
@media (min-width: 768px) {
  .shop-detail:not(:has(.shop-detail-sku)) .shop-detail-actions--additional {
    grid-row: 2;
  }
}
@media (min-width: 768px) {
  .shop-detail:not(:has(.shop-detail-sku)) .shop-detail-info {
    grid-column: 2;
    grid-row: 3;
  }
}
@media (min-width: 768px) {
  .shop-detail-gallery {
    grid-column: 1;
    grid-row: 1/span 3;
  }
}
.shop-detail-actions {
  order: 3;
}
@media (min-width: 768px) {
  .shop-detail-actions {
    grid-column: 2;
    grid-row: 2;
  }
}
@media (min-width: 1600px) {
  .shop-detail-actions {
    grid-column: 3;
    grid-row: 1;
  }
}
@media (min-width: 768px) {
  .shop-detail-actions--additional {
    grid-column: 2;
    grid-row: 3;
  }
}
@media (min-width: 1600px) {
  .shop-detail-actions--additional {
    grid-column: 3;
    grid-row: 2;
  }
}
.shop-detail-info {
  order: 3;
}
@media (min-width: 768px) {
  .shop-detail-info {
    grid-column: 2;
    grid-row: 4;
  }
}
@media (min-width: 1600px) {
  .shop-detail-info {
    grid-row: 1/span 4 !important;
  }
}

.shop-detail-gallery__view {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  background-color: #fff;
  margin-bottom: 16px;
  height: 300px;
}
@media (min-width: 576px) {
  .shop-detail-gallery__view {
    height: 440px;
  }
}
@media (min-width: 768px) {
  .shop-detail-gallery__view {
    height: 300px;
  }
}
@media (min-width: 992px) {
  .shop-detail-gallery__view {
    height: 380px;
  }
}
@media (min-width: 1200px) {
  .shop-detail-gallery__view {
    height: 550px;
  }
}
.shop-detail-gallery__view .swiper-slide {
  height: 300px;
}
@media (min-width: 576px) {
  .shop-detail-gallery__view .swiper-slide {
    height: 440px;
  }
}
@media (min-width: 768px) {
  .shop-detail-gallery__view .swiper-slide {
    height: 300px;
  }
}
@media (min-width: 992px) {
  .shop-detail-gallery__view .swiper-slide {
    height: 380px;
  }
}
@media (min-width: 1200px) {
  .shop-detail-gallery__view .swiper-slide {
    height: 550px;
  }
}
.shop-detail-gallery__view img {
  position: absolute;
  inset: 20px;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  -o-object-fit: contain;
     object-fit: contain;
}
.shop-detail-gallery__control .js-shop-detail-gallery-thumbs {
  padding: 0 16px;
}
.shop-detail-gallery__control .js-shop-detail-gallery-thumbs .swiper-slide {
  position: relative;
  padding: 13px 19px;
  background-color: #fff;
  height: 76px;
  border-radius: 10px;
  cursor: pointer;
  overflow: hidden;
}
@media (min-width: 992px) {
  .shop-detail-gallery__control .js-shop-detail-gallery-thumbs .swiper-slide {
    height: 92px;
  }
}
.shop-detail-gallery__control .js-shop-detail-gallery-thumbs .swiper-slide.swiper-slide-thumb-active {
  border: 1px solid #72C38E;
}
.shop-detail-gallery__control .js-shop-detail-gallery-thumbs .swiper-slide img {
  position: absolute;
  inset: 13px;
  width: calc(100% - 26px);
  height: calc(100% - 26px);
  -o-object-fit: contain;
     object-fit: contain;
}
.shop-detail-gallery__control {
  display: none;
}
@media (min-width: 768px) {
  .shop-detail-gallery__control {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 12px;
  }
}
@media (min-width: 768px) and (min-width: 400px) {
  .shop-detail-gallery__control {
    margin-top: 12px;
  }
}
@media (min-width: 768px) and (min-width: 576px) {
  .shop-detail-gallery__control {
    margin-top: 12px;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .shop-detail-gallery__control {
    margin-top: 12px;
  }
}
@media (min-width: 768px) and (min-width: 992px) {
  .shop-detail-gallery__control {
    margin-top: 16px;
  }
}
@media (min-width: 768px) and (min-width: 1200px) {
  .shop-detail-gallery__control {
    margin-top: 16px;
  }
}
@media (min-width: 768px) and (min-width: 1600px) {
  .shop-detail-gallery__control {
    margin-top: 16px;
  }
}
@media (min-width: 768px) and (min-width: 1800px) {
  .shop-detail-gallery__control {
    margin-top: 16px;
  }
}
.shop-detail-gallery__button {
  width: 28px;
  height: 28px;
  padding: 0;
  border: none;
}
.shop-detail-gallery__button--prev:after {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  background: url() center no-repeat;
}
.shop-detail-gallery__button--prev:hover:after {
  background: url() center no-repeat;
}
.shop-detail-gallery__button--prev.swiper-button-disabled, .shop-detail-gallery__button--prev.is-disabled {
  pointer-events: none;
}
.shop-detail-gallery__button--prev.swiper-button-disabled:after, .shop-detail-gallery__button--prev.is-disabled:after {
  background: url() center no-repeat;
}
.shop-detail-gallery__button--next:after {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  background: url() center no-repeat;
}
.shop-detail-gallery__button--next:hover:after {
  background: url() center no-repeat;
}
.shop-detail-gallery__button--next.swiper-button-disabled, .shop-detail-gallery__button--next.is-disabled {
  pointer-events: none;
}
.shop-detail-gallery__button--next.swiper-button-disabled:after, .shop-detail-gallery__button--next.is-disabled:after {
  background: url() center no-repeat;
}
.shop-detail-gallery__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
@media (min-width: 768px) {
  .shop-detail-gallery__pagination {
    display: none;
  }
}
.shop-detail-gallery__pagination .swiper-pagination-bullet {
  background: #e4e4e4;
  width: 30px;
  height: 4px;
  border-radius: 10px;
  transition: all 0.3s ease 0s;
  cursor: pointer;
}
.shop-detail-gallery__pagination .swiper-pagination-bullet-active {
  background: #000;
}

.shop-detail__labels {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
}
.shop-detail__label {
  text-transform: uppercase;
  font-size: 10px;
  line-height: 24px;
  border-radius: 24px;
  padding: 0 12px;
  background-color: #E3B617;
  color: #fff;
}

.shop-detail-actions {
  background-color: #fff;
  padding: 20px;
  border-radius: 20px;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .shop-detail-actions {
    margin-bottom: 0;
  }
}
.shop-detail-actions:has(.shop-detail__tooltip.active) .shop-detail__prices {
  margin-bottom: 6px;
}

.shop-detail__nds-info {
  font-size: 14px;
  line-height: 1.4;
  color: #777777;
  margin-bottom: 6px;
}
.shop-detail__tooltip {
  display: none;
  background-color: #F6F6F6;
  border-radius: 10px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 6px 10px;
}
.shop-detail__tooltip.active {
  display: none;
}
@media (min-width: 768px) {
  .shop-detail__tooltip.active {
    display: block;
  }
}
.shop-detail__tooltip span {
  font-size: 16px;
  line-height: 1.6;
  color: #777777;
}
.shop-detail__tooltip i[data-tooltip-content] {
  border: 2px solid #AAAAAA;
  background-color: initial;
  color: #AAAAAA;
}
.shop-detail__tooltip i[data-tooltip-content]:hover {
  border: 2px solid #72C38E;
  background-color: #72C38E;
  color: #fff;
}
.shop-detail__in-stock {
  display: flex;
  font-weight: 700;
  line-height: 1.6;
  color: #72C38E;
  align-items: center;
  padding: 14px 0;
}
.shop-detail__in-stock:before {
  content: "";
  display: flex;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 17 16'%3e%3cpath d='m14.5 3.5-7 9.5L3 8.5' stroke='%2375C290' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
  margin-right: 5px;
  width: 16px;
  height: 16px;
}
.shop-detail__prices {
  display: flex;
  align-items: baseline;
}
.shop-detail__price {
  color: #000;
  font-weight: 700;
  margin-right: 12px;
}
.shop-detail__priceold {
  color: #808080;
  text-decoration: line-through;
}
.shop-detail__actionbutton {
  width: 100%;
}
.shop-detail__actionbutton + a {
  margin-top: 12px;
}
@media (min-width: 400px) {
  .shop-detail__actionbutton + a {
    margin-top: 12px;
  }
}
@media (min-width: 576px) {
  .shop-detail__actionbutton + a {
    margin-top: 12px;
  }
}
@media (min-width: 768px) {
  .shop-detail__actionbutton + a {
    margin-top: 12px;
  }
}
@media (min-width: 992px) {
  .shop-detail__actionbutton + a {
    margin-top: 24px;
  }
}
@media (min-width: 1200px) {
  .shop-detail__actionbutton + a {
    margin-top: 24px;
  }
}
@media (min-width: 1600px) {
  .shop-detail__actionbutton + a {
    margin-top: 24px;
  }
}
@media (min-width: 1800px) {
  .shop-detail__actionbutton + a {
    margin-top: 24px;
  }
}
.shop-detail__sticky {
  position: fixed;
  display: none;
  bottom: 0;
  left: 0;
  right: 0;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.0509803922);
  padding: 16px 0;
  z-index: 10;
}
@media (min-width: 768px) {
  .shop-detail__sticky {
    bottom: initial;
    top: 0;
  }
}
.shop-detail__sticky.active {
  display: flex;
}
.shop-detail__sticky .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.shop-detail__sticky .container .shop-detail__wrap {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
@media (min-width: 768px) {
  .shop-detail__sticky .container .shop-detail__wrap {
    flex-direction: row;
    align-items: end;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
.shop-detail__sticky .container .shop-detail__nds-info {
  margin-bottom: 4px;
}
.shop-detail__sticky .container .shop-detail__price {
  font-size: 24px;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .shop-detail__sticky .container .shop-detail__price {
    font-size: 28px;
  }
}
.shop-detail__sticky .container .shop-detail__prices {
  margin-bottom: 0;
}
.shop-detail__sticky .container .shop-detail__tooltip {
  margin-bottom: 0;
}
.shop-detail__sticky .container button {
  height: 58px;
  max-width: 130px;
  padding: 18px;
}
@media (min-width: 768px) {
  .shop-detail__sticky .container button {
    height: initial;
    max-width: 297px;
    padding: 18px 40px;
  }
}

.shop-detail__actionlink {
  display: flex;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  transition: none;
}
.shop-detail__actionlink:not(:last-of-type) {
  margin-bottom: 12px;
}
@media (min-width: 400px) {
  .shop-detail__actionlink:not(:last-of-type) {
    margin-bottom: 12px;
  }
}
@media (min-width: 576px) {
  .shop-detail__actionlink:not(:last-of-type) {
    margin-bottom: 12px;
  }
}
@media (min-width: 768px) {
  .shop-detail__actionlink:not(:last-of-type) {
    margin-bottom: 12px;
  }
}
@media (min-width: 992px) {
  .shop-detail__actionlink:not(:last-of-type) {
    margin-bottom: 16px;
  }
}
@media (min-width: 1200px) {
  .shop-detail__actionlink:not(:last-of-type) {
    margin-bottom: 16px;
  }
}
@media (min-width: 1600px) {
  .shop-detail__actionlink:not(:last-of-type) {
    margin-bottom: 16px;
  }
}
@media (min-width: 1800px) {
  .shop-detail__actionlink:not(:last-of-type) {
    margin-bottom: 16px;
  }
}
.shop-detail__actionlink::before {
  content: "";
  display: block;
  margin-right: 8px;
  width: 22px;
  height: 22px;
}
.shop-detail__actionlink.demo::before {
  content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 22 21'%3e%3cpath d='m12.292 9.122 5.986 5.986-4.17 4.17-5.986-5.986-2.768 4.183L1.56 2.56l14.915 3.794-4.183 2.768Z' stroke='%23000'/%3e%3c/svg%3e");
}
.shop-detail__actionlink.docs::before {
  content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 22 23'%3e%3cpath d='M13.885 2v4.126a1 1 0 0 0 1 1h4.532M13.885 2H6.584a3 3 0 0 0-3 3v13a3 3 0 0 0 3 3h9.833a3 3 0 0 0 3-3V7.126M13.885 2l5.532 5.126' stroke='%23000'/%3e%3cpath d='M13.74 14.765v-4.479H9.262' stroke='%23000'/%3e%3cpath d='m13.74 10.287-2.613 2.612-1.306 1.306-.653.653' stroke='%23000'/%3e%3c/svg%3e");
}
.shop-detail__actionlink.renew::before {
  content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 22 21'%3e%3cpath d='M19 15.389H7.194A5.194 5.194 0 1 1 7.194 5h7.084M19 15.389l-3.778 3.305M19 15.39l-3.778-3.306' stroke='%23000'/%3e%3c/svg%3e");
}
.shop-detail__actionlink.conversion::before {
  content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 23 22'%3e%3cg clip-path='url(%23a)'%3e%3cpath d='M13.118 8.013H1.672v6h11.446V18l8.554-6.987L13.118 4v4.013Z' stroke='%23000'/%3e%3c/g%3e%3cdefs%3e%3cclipPath id='a'%3e%3cpath fill='white' transform='translate(.672)' d='M0 0h22v22H0z'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e");
}
.shop-detail__actionlink:hover {
  color: #72C38E;
}
.shop-detail__actionlink:hover.demo::before {
  content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 22 21'%3e%3cpath d='m12.292 9.122 5.986 5.986-4.17 4.17-5.986-5.986-2.768 4.183L1.56 2.56l14.915 3.794-4.183 2.768Z' stroke='%2372C38E'/%3e%3c/svg%3e");
}
.shop-detail__actionlink:hover.docs::before {
  content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 22 23'%3e%3cpath d='M13.885 2v4.126a1 1 0 0 0 1 1h4.532M13.885 2H6.584a3 3 0 0 0-3 3v13a3 3 0 0 0 3 3h9.833a3 3 0 0 0 3-3V7.126M13.885 2l5.532 5.126' stroke='%2372C38E'/%3e%3cpath d='M13.74 14.765v-4.479H9.262' stroke='%2372C38E'/%3e%3cpath d='m13.74 10.287-2.613 2.612-1.306 1.306-.653.653' stroke='%2372C38E'/%3e%3c/svg%3e");
}
.shop-detail__actionlink:hover.renew::before {
  content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 22 21'%3e%3cpath d='M19 15.389H7.194A5.194 5.194 0 1 1 7.194 5h7.084M19 15.389l-3.778 3.305M19 15.39l-3.778-3.306' stroke='%2372C38E'/%3e%3c/svg%3e");
}
.shop-detail__actionlink:hover.conversion::before {
  content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 23 22'%3e%3cg clip-path='url(%23a)'%3e%3cpath d='M13.118 8.013H1.672v6h11.446V18l8.554-6.987L13.118 4v4.013Z' stroke='%2372C38E'/%3e%3c/g%3e%3cdefs%3e%3cclipPath id='a'%3e%3cpath fill='white' transform='translate(.672)' d='M0 0h22v22H0z'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e");
}

.shop-detail-sku {
  margin-bottom: 18px;
}
@media (min-width: 400px) {
  .shop-detail-sku {
    margin-bottom: 18px;
  }
}
@media (min-width: 576px) {
  .shop-detail-sku {
    margin-bottom: 18px;
  }
}
@media (min-width: 768px) {
  .shop-detail-sku {
    margin-bottom: 18px;
  }
}
@media (min-width: 992px) {
  .shop-detail-sku {
    margin-bottom: 32px;
  }
}
@media (min-width: 1200px) {
  .shop-detail-sku {
    margin-bottom: 32px;
  }
}
@media (min-width: 1600px) {
  .shop-detail-sku {
    margin-bottom: 32px;
  }
}
@media (min-width: 1800px) {
  .shop-detail-sku {
    margin-bottom: 32px;
  }
}
.shop-detail-sku__title {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 12px;
  color: #777777;
}
.shop-detail-sku__items {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.shop-detail-sku__item {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  display: block;
  color: #000;
  font-size: 16px;
  line-height: 1;
  border-radius: 10px;
  padding: 16px;
  min-width: 100px;
  border: 1px solid #e4e4e4;
}
.shop-detail-sku__item:hover, .shop-detail-sku__item.active {
  border: 1px solid #72C38E;
}
.shop-detail-sku__item.active {
  background-color: #fff;
}

.shop-detail-compatibility {
  margin-top: 18px;
}
@media (min-width: 400px) {
  .shop-detail-compatibility {
    margin-top: 18px;
  }
}
@media (min-width: 576px) {
  .shop-detail-compatibility {
    margin-top: 18px;
  }
}
@media (min-width: 768px) {
  .shop-detail-compatibility {
    margin-top: 18px;
  }
}
@media (min-width: 992px) {
  .shop-detail-compatibility {
    margin-top: 32px;
  }
}
@media (min-width: 1200px) {
  .shop-detail-compatibility {
    margin-top: 32px;
  }
}
@media (min-width: 1600px) {
  .shop-detail-compatibility {
    margin-top: 32px;
  }
}
@media (min-width: 1800px) {
  .shop-detail-compatibility {
    margin-top: 32px;
  }
}
.shop-detail-compatibility__title {
  color: #000;
  font-weight: 700;
  margin-bottom: 12px;
}
.shop-detail-compatibility__items {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.shop-detail-compatibility__item {
  display: block;
  line-height: 32px;
  padding: 0 16px;
  background-color: #fff;
  border-radius: 10px;
  font-size: 14px;
  color: #808080;
}

.shop-detail-properties {
  margin-top: 18px;
}
@media (min-width: 400px) {
  .shop-detail-properties {
    margin-top: 18px;
  }
}
@media (min-width: 576px) {
  .shop-detail-properties {
    margin-top: 18px;
  }
}
@media (min-width: 768px) {
  .shop-detail-properties {
    margin-top: 18px;
  }
}
@media (min-width: 992px) {
  .shop-detail-properties {
    margin-top: 32px;
  }
}
@media (min-width: 1200px) {
  .shop-detail-properties {
    margin-top: 32px;
  }
}
@media (min-width: 1600px) {
  .shop-detail-properties {
    margin-top: 32px;
  }
}
@media (min-width: 1800px) {
  .shop-detail-properties {
    margin-top: 32px;
  }
}
.shop-detail-properties__title {
  font-weight: 700;
  color: #000;
  margin-bottom: 12px;
}
.shop-detail-properties table {
  margin-bottom: 12px;
  --bs-table-bg: $gray-f3;
}
.shop-detail-properties table tr:last-of-type td {
  border-bottom: initial;
}
.shop-detail-properties table tr td {
  padding-top: 10px;
  padding-bottom: 10px;
  border-color: #DDDDDD;
}
.shop-detail-properties table tr td:first-of-type {
  width: 68.3%;
  color: #777777;
  padding-left: 0;
}

.shop-detail-tabs .sections-menu {
  padding: 0;
}
.shop-detail-tabs .sections-menu .menu__item {
  border: initial;
  padding: 10px 24px;
}
.shop-detail-tabs .sections-menu .menu__item:hover, .shop-detail-tabs .sections-menu .menu__item.active {
  cursor: pointer;
  border: 1.5px solid #000;
  background-color: #000;
}
.shop-detail-tabs .sections-menu .menu__item:hover .item-title, .shop-detail-tabs .sections-menu .menu__item.active .item-title {
  color: #fff;
}
.shop-detail-tabs .sections-menu .menu__item .item-title {
  color: #000;
}
.shop-detail-tabs .shop-detail-properties__title {
  display: none;
}
.shop-detail-tabs .shop-detail-properties table.table--stripped {
  margin-top: 0;
}
.shop-detail-tabs .shop-detail-properties table.table--stripped tr:last-of-type {
  border-bottom: initial;
}
.shop-detail-tabs .shop-detail-properties table.table--stripped tr:last-of-type td {
  border-bottom: initial;
}
.shop-detail-tabs .shop-detail-properties table.table--stripped tr td:first-of-type {
  padding-left: 0;
}

.shop-detail__additionallink {
  font-size: 18px;
  font-weight: 500;
  color: #444444;
  transition: none;
}
.shop-detail__additionallink span {
  font-weight: 700;
}
.shop-detail__additionallink:not(:last-child) {
  margin-bottom: 10px;
}
.shop-detail__additionallink.docs::after {
  content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 22 23'%3e%3cpath d='M13.885 2v4.126a1 1 0 0 0 1 1h4.532M13.885 2H6.584a3 3 0 0 0-3 3v13a3 3 0 0 0 3 3h9.833a3 3 0 0 0 3-3V7.126M13.885 2l5.532 5.126' stroke='%23000'/%3e%3cpath d='M13.74 14.765v-4.479H9.262' stroke='%23000'/%3e%3cpath d='m13.74 10.287-2.613 2.612-1.306 1.306-.653.653' stroke='%23000'/%3e%3c/svg%3e");
  display: block;
  margin-left: 6px;
  width: 22px;
  height: 22px;
}
.shop-detail__additionallink:hover.docs::after {
  content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 22 23'%3e%3cpath d='M13.885 2v4.126a1 1 0 0 0 1 1h4.532M13.885 2H6.584a3 3 0 0 0-3 3v13a3 3 0 0 0 3 3h9.833a3 3 0 0 0 3-3V7.126M13.885 2l5.532 5.126' stroke='%2372C38E'/%3e%3cpath d='M13.74 14.765v-4.479H9.262' stroke='%2372C38E'/%3e%3cpath d='m13.74 10.287-2.613 2.612-1.306 1.306-.653.653' stroke='%2372C38E'/%3e%3c/svg%3e");
}

a.shop-detail__additionallink {
  display: flex;
  color: #000;
  text-decoration: underline;
}
a.shop-detail__additionallink:hover {
  color: #72C38E;
}

.fancybox-container .comparison-table {
  max-width: 100%;
}
@media (min-width: 992px) {
  .fancybox-container .comparison-table {
    max-width: 845px;
  }
}
@media (min-width: 1200px) {
  .fancybox-container .comparison-table {
    max-width: 940px;
  }
}

.comparison-table.table-wrap {
  display: none;
}
.comparison-table.table-wrap .accordion {
  border: 1px solid #e4e4e4;
  padding: 24px;
}
.comparison-table.table-wrap .accordion:not(:last-of-type) {
  border-bottom: initial;
}
.comparison-table.table-wrap .accordion .accordion-header {
  display: flex;
  font-size: 20px;
  font-weight: 700;
  width: 100%;
  align-items: center;
  padding: 0 24px 0 0;
  border: none;
  outline: none;
  text-align: left;
  background-color: #fff;
  cursor: pointer;
}
.comparison-table.table-wrap .accordion .accordion-header:before {
  content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 21 20'%3e%3cg clip-path='url(%23a)'%3e%3cpath d='M1.506 5.833 10.672 15l9.167-9.167' stroke='%2372C38E' stroke-width='2'/%3e%3c/g%3e%3cdefs%3e%3cclipPath id='a'%3e%3cpath fill='white' transform='translate(.672)' d='M0 0h20v20H0z'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e");
  display: block;
  margin-right: 16px;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.5s ease;
}
.comparison-table.table-wrap .accordion .accordion-header.active {
  padding-bottom: 16px;
}
.comparison-table.table-wrap .accordion .accordion-header.active:before {
  transform: rotate(180deg);
  content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 21 20'%3e%3cg clip-path='url(%23a)'%3e%3cpath d='M1.506 5.833 10.672 15l9.167-9.167' stroke='%23000' stroke-width='2'/%3e%3c/g%3e%3cdefs%3e%3cclipPath id='a'%3e%3cpath fill='white' transform='translate(.672)' d='M0 0h20v20H0z'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e");
}
.comparison-table.table-wrap .accordion .accordion-content {
  display: none;
}
.comparison-table.table-wrap .accordion .accordion-content.active {
  display: block;
}
.comparison-table.table-wrap .accordion .comparison-table__inner {
  width: 100%;
  border-collapse: collapse;
}
.comparison-table.table-wrap .accordion .comparison-table__inner thead {
  background-color: #F4F4F4;
}
.comparison-table.table-wrap .accordion .comparison-table__inner thead th {
  line-height: 1.6;
  color: #000;
  padding: 16px 12px;
  border-bottom: 1px solid #e4e4e4;
  text-align: center;
}
.comparison-table.table-wrap .accordion .comparison-table__inner thead th:first-child {
  text-align: left;
}
.comparison-table.table-wrap .accordion .comparison-table__inner tbody tr:last-of-type td {
  border-bottom: initial;
}
.comparison-table.table-wrap .accordion .comparison-table__inner tbody td {
  font-size: 16px;
  line-height: 1.6;
  color: #000;
  padding: 16px 12px;
  border-bottom: 1px solid #e4e4e4;
  text-align: center;
}
.comparison-table.table-wrap .accordion .comparison-table__inner tbody td:first-child {
  text-align: left;
}

#shop-detail-compare .comparison-table.table-wrap {
  display: block;
}
#shop-detail-compare .comparison-table.table-wrap .accordion {
  background-color: #fff;
}

.shop-detail-info .shop-detail-predescription {
  color: #444444;
  line-height: 1.6;
}
.shop-detail-info span.dashed-link {
  padding-top: 12px;
}
.shop-detail-info span.dashed-link.show-all-properties, .shop-detail-info span.dashed-link.show-description {
  padding-top: 8px;
}
.shop-detail-info .shop-detail-properties table {
  margin-bottom: 0;
}

.shop-detail-tabs .inner-content #shop-detail-description,
.shop-detail-tabs .inner-content #shop-detail-properties,
.shop-detail-tabs .inner-content #shop-detail-payment {
  max-width: var(--content-max-width);
}
