/* product */
.product {
  background-color: #F5F5F7;
  margin-top: calc((70px + 10px) * -1);
  padding-top: calc(70px + 10px);
}
@media (min-width: 992px) {
  .product {
    margin-top: calc((70px + 20px) * -1);
    padding-top: calc(70px + 20px);
  }
}
.product .product-wrapper {
  width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: auto;
  align-items: stretch;
  padding-bottom: 30px;
}
@media (min-width: 992px) {
  .product .product-wrapper {
    grid-template-columns: 1fr 1fr;
    padding-bottom: 60px;
  }
}
.product .product-wrapper .product-head {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  grid-row: 1/2;
}
@media (min-width: 992px) {
  .product .product-wrapper .product-head {
    grid-row: unset;
  }
}
.product .product-wrapper .product-head .product_history_link {
  margin-bottom: 0;
}
.product .product-wrapper .product-head__top {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.product .product-wrapper .product-head__top .product-head__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.product .product-wrapper .product-head__top .product-head__info .product-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.product .product-wrapper .product-head__top .product-head__info .product-actions__btn {
  cursor: pointer;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(51, 51, 51, 0.05);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .product .product-wrapper .product-head__top .product-head__info .product-actions__btn {
    width: 35px;
    height: 35px;
  }
}
.product .product-wrapper .product-head__top .product-head__info .product-actions__btn svg {
  width: 16px;
  height: 16px;
}
.product .product-wrapper .product-head__top .product-head__info .product-actions__btn.is-active svg path {
  fill: #7E7E81;
}
.product .product-wrapper .product-head__top .product-head__title {
  margin: 0;
}
.product .product-wrapper .product-head__top .product-head__reviews .product-reviews {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.1;
}
.product .product-wrapper .product-head__top .product-head__reviews .product-reviews__stats {
  display: flex;
  align-items: center;
  gap: 5px;
}
.product .product-wrapper .product-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.1;
}
.product .product-wrapper .product-desc.product-desc--mobile {
  display: block;
}
@media (min-width: 992px) {
  .product .product-wrapper .product-desc.product-desc--mobile {
    display: none;
  }
}
.product .product-wrapper > .product-head {
  display: flex;
  margin-bottom: 25px;
}
@media (min-width: 992px) {
  .product .product-wrapper > .product-head {
    display: none;
  }
}
.product .product-wrapper .product-gallery {
  grid-row: 2/3;
  min-width: 0;
}
@media (min-width: 992px) {
  .product .product-wrapper .product-gallery {
    grid-row: unset;
    overflow: hidden;
    margin-top: calc((70px + 20px) * -1);
  }
}
@media (min-width: 1471px) {
  .product .product-wrapper .product-gallery {
    margin-left: 0 !important;
    overflow: unset;
  }
}
.product .product-wrapper .product-gallery__content {
  position: relative;
  display: flex;
  gap: 10px;
  padding-bottom: 70px;
  min-width: 0;
}
@media (min-width: 992px) {
  .product .product-wrapper .product-gallery__content {
    padding-bottom: 0;
    height: 100%;
  }
}
@media (min-width: 1471px) {
  .product .product-wrapper .product-gallery__content {
    --gallery-outside-left: clamp(0px, calc((100vw - 1275px) / 2), 110px);
    width: calc(100% + var(--gallery-outside-left));
    margin-left: calc(var(--gallery-outside-left) * -1) !important;
  }
}
.product .product-wrapper .product-gallery__content .product-gallery__thumbs {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  max-width: 100%;
  margin: 0;
  z-index: 2;
}
@media (min-width: 992px) {
  .product .product-wrapper .product-gallery__content .product-gallery__thumbs {
    /*top: 10px;
    left: 10px;
    bottom: 0;
    transform: unset;*/
  }
}
@media (min-width: 992px) {
  .product .product-wrapper .product-gallery__content .product-gallery__thumbs-slider {
    /* width: 50px;
     height: 100%;
     padding-bottom: 10px;*/
  }
}
.product .product-wrapper .product-gallery__content .product-gallery__thumbs-wrapper {
  display: flex;
}
.product .product-wrapper .product-gallery__content .product-gallery__thumbs-item {
  position: relative;
  cursor: pointer;
  width: 50px;
  min-width: 50px;
  height: 50px;
  flex-shrink: 0;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
  background: transparent;
}
.product .product-wrapper .product-gallery__content .product-gallery__thumbs-item:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  border: 1px solid #000000;
  pointer-events: none;
  transition: all 0.2s ease;
  z-index: 1;
}
.product .product-wrapper .product-gallery__content .product-gallery__thumbs-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.2s ease;
}
.product .product-wrapper .product-gallery__content .product-gallery__thumbs-item .thumb_video {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
}
.product .product-wrapper .product-gallery__content .product-gallery__thumbs-item.swiper-slide-thumb-active:after, .product .product-wrapper .product-gallery__content .product-gallery__thumbs-item:hover:after {
  opacity: 1;
}
.product .product-wrapper .product-gallery__content .product-gallery__slider {
  position: relative;
  flex: 1;
  width: 100%;
  height: 100%;
  margin: 0 -15px;
}
@media (min-width: 992px) {
  .product .product-wrapper .product-gallery__content .product-gallery__slider {
    margin: 0;
  }
}
.product .product-wrapper .product-gallery__content .product-gallery__slider.product-gallery__slider--one {
  padding-left: 0;
  padding-bottom: 0;
}
.product .product-wrapper .product-gallery__content .product-gallery__slider-slider {
  overflow: unset;
}
@media (min-width: 992px) {
  .product .product-wrapper .product-gallery__content .product-gallery__slider-slider {
    overflow: hidden;
    height: 100%;
  }
}
.product .product-wrapper .product-gallery__content .product-gallery__slider-item {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
}
.product .product-wrapper .product-gallery__content .product-gallery__slider-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
}
.product .product-wrapper .product-gallery__content .product-gallery__slider-item video {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}
@media (min-width: 992px) {
  .product .product-wrapper .product-gallery__content .product-gallery__slider-item video {
    height: 100%;
  }
}
.product .product-wrapper .product-gallery__content .product-gallery__slider .swiper-pagination {
  display: none;
  align-items: center;
  border-radius: 50px;
  height: 15px;
  width: auto !important;
  padding: 0 5px;
  left: 50% !important;
  transform: translateX(-50%);
  background: #d3d3d3;
}
@media (min-width: 992px) {
  .product .product-wrapper .product-gallery__content .product-gallery__slider .swiper-pagination {
    display: none !important;
  }
}
.product .product-wrapper .product-gallery__content .product-gallery__slider .swiper-pagination .swiper-pagination-bullet {
  width: 5px !important;
  height: 5px;
  background: #FFFFFF;
  opacity: 1;
  transition: all 0.2s ease;
}
.product .product-wrapper .product-gallery__content .product-gallery__slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 18px !important;
  border-radius: 50px;
}
.product .product-wrapper .product-gallery__content .product-gallery__slider .slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) !important;
  margin-top: 0 !important;
  box-shadow: 1px 4px 10px rgba(0, 0, 0, 0.05);
}
.product .product-wrapper .product-gallery__content .product-gallery__slider .slider-nav.swiper-button-lock {
  display: none;
}
.product .product-wrapper .product-gallery__content .product-gallery__slider .slider-nav.swiper-button-next {
  right: 25px !important;
}
@media (min-width: 1200px) {
  .product .product-wrapper .product-gallery__content .product-gallery__slider .slider-nav.swiper-button-next {
    right: 30px !important;
  }
}
.product .product-wrapper .product-gallery__content .product-gallery__slider .slider-nav.swiper-button-prev {
  left: 25px !important;
  transform: scaleX(-1) translateY(-50%) !important;
}
@media (min-width: 1200px) {
  .product .product-wrapper .product-gallery__content .product-gallery__slider .slider-nav.swiper-button-prev {
    left: 30px !important;
  }
}
.product .product-wrapper .product-content {
  position: relative;
  margin: 0 -15px;
  padding: 30px 15px;
  background-color: #FFFFFF;
}
@media (min-width: 992px) {
  .product .product-wrapper .product-content {
    margin-right: 0;
    margin-left: 0;
    margin-top: calc((70px + 20px) * -1);
    padding: calc(70px + 20px) 0 30px 30px;
  }
}
@media (min-width: 1200px) {
  .product .product-wrapper .product-content {
    padding: calc(70px + 20px) 0 40px 40px;
  }
}
.product .product-wrapper .product-content__background {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  pointer-events: none;
  background-color: #FFFFFF;
}
@media (min-width: 992px) {
  .product .product-wrapper .product-content__background {
    display: block;
  }
}
.product .product-wrapper .product-content__info {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 25px;
  z-index: 2;
}
@media (min-width: 992px) {
  .product .product-wrapper .product-content__info {
    gap: 30px;
  }
}
.product .product-wrapper .product-content__info > .product-head {
  display: none;
}
@media (min-width: 992px) {
  .product .product-wrapper .product-content__info > .product-head {
    display: flex;
  }
}
.product .product-wrapper .product-content__info .product-sku {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.product .product-wrapper .product-content__info .product-sku .product-sku__title {
  color: #000000;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.1;
}
.product .product-wrapper .product-content__info .product-sku .product-colors {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product .product-wrapper .product-content__info .product-sku .product-colors__list {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 15px;
  background: #F5F5F7;
}
.product .product-wrapper .product-content__info .product-sku .product-colors .prd-color {
  cursor: pointer;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  box-shadow: inset 2px 2px 7px 0px rgba(0, 0, 0, 0.25), 3px -1px 8px 0px rgba(0, 0, 0, 0.1);
}
.product .product-wrapper .product-content__info .product-sku .product-colors .prd-color.active {
  outline: 1px solid #000000;
  outline-offset: 2px;
}
.product .product-wrapper .product-content__info .product-sku .product-props-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.product .product-wrapper .product-content__info .product-sku .product-props-list .product-props {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product .product-wrapper .product-content__info .product-sku .product-props-list .product-props .product-props__values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (min-width: 992px) {
  .product .product-wrapper .product-content__info .product-sku .product-props-list .product-props .product-props__values.product-props__values--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 992px) {
  .product .product-wrapper .product-content__info .product-sku .product-props-list .product-props .product-props__values.product-props__values--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
.product .product-wrapper .product-content__info .product-sku .product-props-list .product-props .product-props__values .product-props__value {
  position: relative;
  cursor: pointer;
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 15px;
  padding: 10px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.1;
  border: 1px solid #E8E8E8;
  transition: all 0.2s ease;
}
@media (min-width: 992px) {
  .product .product-wrapper .product-content__info .product-sku .product-props-list .product-props .product-props__values .product-props__value {
    gap: 20px;
    padding: 15px;
    font-size: 14px;
  }
}
.product .product-wrapper .product-content__info .product-sku .product-props-list .product-props .product-props__values .product-props__value.active, .product .product-wrapper .product-content__info .product-sku .product-props-list .product-props .product-props__values .product-props__value:hover {
  border: 1px solid #000000;
}
.product .product-wrapper .product-content__info .product-sku .product-props-list .product-props .product-props__values .product-props__value.active .product-props__value-box:after, .product .product-wrapper .product-content__info .product-sku .product-props-list .product-props .product-props__values .product-props__value:hover .product-props__value-box:after {
  background-color: #000000;
}
.product .product-wrapper .product-content__info .product-sku .product-props-list .product-props .product-props__values .product-props__value-box {
  position: relative;
  width: 14px;
  height: 14px;
  border: 1px solid #000000;
}
.product .product-wrapper .product-content__info .product-sku .product-props-list .product-props .product-props__values .product-props__value-box:after {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  right: 1px;
  bottom: 1px;
  background-color: transparent;
  transition: all 0.2s ease;
}
.product .product-wrapper .product-content__info .product-sku .product-props-list .product-props .product-props__values .product-props__value-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
@media (min-width: 992px) {
  .product .product-wrapper .product-content__info .product-sku .product-props-list .product-props .product-props__values .product-props__value-info {
    gap: 7px;
  }
}
.product .product-wrapper .product-content__info .product-sku .product-props-list .product-props .product-props__values .product-props__value-info .value {
  font-size: 14px;
}
@media (min-width: 992px) {
  .product .product-wrapper .product-content__info .product-sku .product-props-list .product-props .product-props__values .product-props__value-info .value {
    font-size: 16px;
  }
}
.product .product-wrapper .product-content__info .product-stock {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 15px;
  width: 100%;
  background: #F5F5F7;
}
@media (min-width: 992px) {
  .product .product-wrapper .product-content__info .product-stock {
    max-width: 250px;
  }
}
.product .product-wrapper .product-content__info .product-stock__title {
  color: #000000;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.1;
}
.product .product-wrapper .product-content__info .product-stock__progress {
  width: 100%;
  overflow: hidden;
  height: 5px;
  position: relative;
  background: linear-gradient(90deg, #FF0308 0%, #FFDD00 45.55%, #EDF512 67.92%, #78B828 100%);
}
.product .product-wrapper .product-content__info .product-stock__progress::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  left: calc(var(--stock-fill-percent) * 1%);
  width: calc(100% - var(--stock-fill-percent) * 1%);
  background: #FFFFFF;
  transition: left 280ms ease, width 280ms ease;
}
.product .product-wrapper .product-content__info .product-stock__label {
  display: none;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.1;
  color: rgb(255, 52, 6);
  margin-top: -5px;
}
.product .product-wrapper .product-content__info .product-buy {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media (min-width: 992px) {
  .product .product-wrapper .product-content__info .product-buy {
    gap: 30px;
  }
}
.product .product-wrapper .product-content__info .product-buy .product-price {
  margin: 0;
}
.product .benefits-list {
  padding-bottom: 30px;
}
@media (min-width: 992px) {
  .product .benefits-list {
    padding-bottom: 60px;
  }
}
.product .benefits-list .benefits-item {
  background-color: #FFFFFF;
}

.product-chapter .chapter-nav {
  width: 100%;
  display: flex;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 0 15px;
  overflow-x: auto;
  background-color: #F5F5F7;
}
@media (min-width: 992px) {
  .product-chapter .chapter-nav {
    width: fit-content;
    justify-content: center;
    padding: 0;
    margin: 60px auto;
  }
}
.product-chapter .chapter-nav::-webkit-scrollbar {
  display: none;
}
.product-chapter .chapter-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-chapter .chapter-nav__item {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  height: 40px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  color: #000000;
  background: transparent;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.product-chapter .chapter-nav__item:hover {
  opacity: 0.5;
}
.product-chapter .chapter-nav__item.active {
  color: #FFFFFF;
  background-color: #000000;
}
.product-chapter .chapters {
  margin-bottom: 80px;
}
@media (min-width: 992px) {
  .product-chapter .chapters {
    margin-bottom: 100px;
  }
}
.product-chapter .chapters:last-child {
  margin-bottom: 0;
}
.product-chapter .product-graphic {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-bottom: 80px;
}
@media (min-width: 992px) {
  .product-chapter .product-graphic {
    gap: 100px;
    margin-bottom: 100px;
  }
}
.product-chapter .product-graphic:last-child {
  margin-bottom: 0;
}
.product-chapter .graphic-block .graphic-item {
  position: relative;
  overflow: hidden;
}
.product-chapter .graphic-block .graphic-item .title {
  color: inherit;
  margin: 0;
}
.product-chapter .graphic-block .graphic-item .desc {
  font-size: 16px;
  line-height: 1.1;
}
@media (min-width: 992px) {
  .product-chapter .graphic-block .graphic-item .desc {
    font-size: 16px;
  }
}
.product-chapter .graphic-block .graphic-item .desc ul,
.product-chapter .graphic-block .graphic-item .desc p {
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .product-chapter .graphic-block .graphic-item .desc ul,
  .product-chapter .graphic-block .graphic-item .desc p {
    margin-bottom: 15px;
  }
}
.product-chapter .graphic-block .graphic-item .desc ul:last-child,
.product-chapter .graphic-block .graphic-item .desc p:last-child {
  margin-bottom: 0;
}
.product-chapter .graphic-block .graphic-item .image--mobile + .image--desktop {
  display: none;
}
.product-chapter .graphic-block .graphic-item.graphic-item--white {
  color: #FFFFFF;
}
.product-chapter .graphic-block.graphic-block--big {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
.product-chapter .graphic-block.graphic-block--big .graphic-item__image {
  height: min(52.0834vw, 100vh);
  min-height: 500px;
}
@media (min-width: 992px) {
  .product-chapter .graphic-block.graphic-block--big .graphic-item__info {
    padding: 40px 0;
  }
}
@media (min-width: 769px) {
  .product-chapter .graphic-block.graphic-block--big .graphic-item__info .info {
    max-width: 400px;
  }
}
.product-chapter .graphic-block.graphic-block--double {
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px;
}
@media (min-width: 992px) {
  .product-chapter .graphic-block.graphic-block--double {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
.product-chapter .graphic-block.graphic-block--double .graphic-item__image {
  padding-bottom: 100%;
}
.product-chapter .graphic-block.graphic-block--double .graphic-item__info {
  margin: 0 -15px;
}
@media (min-width: 992px) {
  .product-chapter .graphic-block.graphic-block--double .graphic-item__info {
    padding: 20px 0;
    margin: 0;
  }
}
@media (min-width: 769px) {
  .product-chapter .graphic-block.graphic-block--double .graphic-item__info .info {
    max-width: 400px;
  }
}
.product-chapter .graphic-block.graphic-block--big .graphic-item, .product-chapter .graphic-block.graphic-block--double .graphic-item {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.product-chapter .graphic-block.graphic-block--big .graphic-item__info, .product-chapter .graphic-block.graphic-block--double .graphic-item__info {
  position: relative;
  display: flex;
  flex-direction: column;
  color: #000000;
  order: -1;
}
@media (min-width: 992px) {
  .product-chapter .graphic-block.graphic-block--big .graphic-item__info, .product-chapter .graphic-block.graphic-block--double .graphic-item__info {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    color: inherit;
    order: unset;
  }
}
.product-chapter .graphic-block.graphic-block--big .graphic-item__info .container, .product-chapter .graphic-block.graphic-block--double .graphic-item__info .container {
  height: 100%;
}
.product-chapter .graphic-block.graphic-block--big .graphic-item__info .info, .product-chapter .graphic-block.graphic-block--double .graphic-item__info .info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 15px;
  height: 100%;
}
@media (min-width: 992px) {
  .product-chapter .graphic-block.graphic-block--big .graphic-item__info .info, .product-chapter .graphic-block.graphic-block--double .graphic-item__info .info {
    gap: 15px;
  }
}
@media (max-width: 991px) {
  .product-chapter .graphic-block.graphic-block--big .graphic-item__info .info .title, .product-chapter .graphic-block.graphic-block--double .graphic-item__info .info .title {
    font-size: 25px;
  }
}
.product-chapter .graphic-block.graphic-block--desc .graphic-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 992px) {
  .product-chapter .graphic-block.graphic-block--desc .graphic-item {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
  }
}
.product-chapter .graphic-block.graphic-block--desc .graphic-item.graphic-item--left .graphic-item__info {
  order: -1;
}
.product-chapter .graphic-block.graphic-block--desc .graphic-item__image {
  padding-bottom: 100%;
}
.product-chapter .graphic-block.graphic-block--desc .graphic-item__info {
  display: flex;
  flex-direction: column;
  gap: 25px;
  order: -1;
}
@media (min-width: 992px) {
  .product-chapter .graphic-block.graphic-block--desc .graphic-item__info {
    order: 1;
    gap: 60px;
  }
}
.product-chapter .graphic-block.graphic-block--desc .graphic-item__info .info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 15px;
  height: 100%;
}
@media (min-width: 992px) {
  .product-chapter .graphic-block.graphic-block--desc .graphic-item__info .info {
    gap: 15px;
  }
}
.product-chapter .graphic-block.graphic-block--desc .graphic-item__info .notes {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.product-chapter .graphic-block.graphic-block--desc .graphic-item__info .notes-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.product-chapter .graphic-block.graphic-block--desc .graphic-item__info .notes-item__image {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}
.product-chapter .graphic-block.graphic-block--desc .graphic-item__info .notes-item__info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 16px;
  line-height: 1.1;
}
.product-chapter .graphic-block.graphic-block--desc .graphic-item__info .notes-item__info-title {
  font-weight: 600;
}
.product-chapter .graphic-block.graphic-block--video {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
.product-chapter .graphic-block.graphic-block--video .graphic-item {
  padding-bottom: 52.0834%;
  min-height: 500px;
  overflow: hidden;
}
.product-chapter .graphic-block.graphic-block--video .graphic-item .video_wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  margin: 0;
}
.product-chapter .technical {
  font-size: 14px;
  line-height: 1.2;
  color: #989898;
}
.product-chapter .technical .technical-title {
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .product-chapter .technical .technical-title {
    margin-bottom: 40px;
  }
}
.product-chapter .technical .technical-grid {
  display: grid;
  grid-template-columns: minmax(100px, 160px) minmax(160px, 1fr);
  gap: 20px 10px;
  align-items: start;
}
@media (min-width: 992px) {
  .product-chapter .technical .technical-grid {
    grid-template-columns: 180px minmax(0, 1fr) 180px minmax(0, 1fr);
    gap: 25px 20px;
  }
}
@media (min-width: 1200px) {
  .product-chapter .technical .technical-grid {
    grid-template-columns: 220px minmax(0, 1fr) 220px minmax(0, 1fr);
  }
}
.product-chapter .technical .technical-label {
  color: #989898;
}
.product-chapter .technical .technical-value {
  color: #000000;
  min-width: 0;
}

/* product_content */
.product_kit {
  margin-bottom: 30px;
  background: #fff;
  padding: 30px;
  border-radius: 30px;
}

.product_kit_title {
  color: #000000;
  font-size: 30px;
  font-weight: 600;
  line-height: 100%;
  text-align: center;
  margin-bottom: 30px;
}

.product_kit_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.product_kit_media {
  background: #f8f8f8;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.product_kit_media img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.product_kit_accordion .accordion {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 0;
}
@media (min-width: 992px) {
  .product_kit_accordion .accordion {
    grid-template-columns: 1fr 1fr;
  }
}
.product_kit_accordion .accordion .accordion__item {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px !important;
}
.product_kit_accordion .accordion .accordion__item.active .accordion__heading .icon {
  transform: scaleY(-1);
}
.product_kit_accordion .accordion .accordion__item .accordion__item-element {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product_kit_accordion .accordion .accordion__item .accordion__heading {
  cursor: pointer;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 10px;
  padding: 15px 15px 15px 0;
}
.product_kit_accordion .accordion .accordion__item .accordion__heading .accordion__thumb {
  max-width: 70px;
  object-fit: contain;
  flex-shrink: 0;
}
.product_kit_accordion .accordion .accordion__item .accordion__heading-right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.product_kit_accordion .accordion .accordion__item .accordion__heading-right .accordion__title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
  padding: 0;
}
.product_kit_accordion .accordion .accordion__item .accordion__heading-right .icon {
  display: inline-flex;
  width: 14px;
  min-width: 14px;
  height: 14px;
  min-height: 14px;
  transition: all 0.2s ease;
}
.product_kit_accordion .accordion .accordion__item .accordion__heading-right .icon:after, .product_kit_accordion .accordion .accordion__item .accordion__heading-right .icon:before {
  display: none;
}
.product_kit_accordion .accordion .accordion__item .accordion__content {
  padding: 0 35px 15px 80px;
  margin-top: -20px;
}
.product_kit_accordion .accordion .accordion__item .accordion__content p {
  font-size: 14px;
  line-height: 1.1;
  color: #A0A0A0;
}
.product_kit_accordion .accordion .accordion__item .accordion__content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .product_kit {
    padding: 20px;
  }
  .product_kit_grid {
    grid-template-columns: 1fr;
  }
  .product_kit_title {
    font-size: 20px;
  }
}
/* chapter */
.chapters_foto {
  position: relative;
  width: 100%;
  height: 680px;
}

.chapters_foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.chapters_big_foto_article {
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: absolute;
  top: 40px;
  padding: 0 280px;
}

.chapters_big_foto_title {
  color: #000000;
  font-size: 30px;
  font-weight: 600;
  line-height: 100%;
  text-align: center;
}

.chapters_big_foto_subtitle {
  color: var(--gray-desc);
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  text-align: center;
}

.chapters_wrapper_big {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.chapters_wrapper_cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 30px 0;
}

@media (max-width: 981px) {
  .chapters_wrapper_cards {
    grid-template-columns: 1fr;
  }
  .chapters_big_foto_article {
    padding: 0 20px;
  }
}
.chapters_card {
  box-shadow: 4px 5px 31px 0px rgba(0, 0, 0, 0.07);
  background: var(--white);
  overflow: hidden;
}

.chapters_card img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.chapters_card_article {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 8px 20px 20px 20px;
}

.chapters_foto_article {
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: absolute;
  bottom: 30px;
  padding: 0 30px;
}

.chapters_foto_title {
  color: #000000;
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  margin: 0;
}

.chapters_foto_subtitle {
  color: var(--gray-desc);
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
}

.chapters_foto_article-white .chapters_foto_title,
.chapters_foto_article-white .chapters_foto_subtitle,
.chapters_big_foto_article-white .chapters_big_foto_title,
.chapters_big_foto_article-white .chapters_big_foto_subtitle {
  color: var(--white);
}

/* video */
.video_wrapper {
  width: 100%;
  height: 678px;
  position: relative;
  overflow: hidden;
  margin-top: 30px;
}

.video_wrapper video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video_play {
  position: absolute;
  right: 40px;
  bottom: 40px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video_play i {
  font-size: 16px;
  color: #FFFFFF;
}

/* recent */
.swiper-button-prev:not(.slider-nav),
.swiper-button-next:not(.slider-nav) {
  pointer-events: all;
  width: 54px;
  height: 54px;
  background: #f0f0f0;
  padding: 13px;
  border-radius: 50%;
  color: #000000 !important;
  opacity: 1 !important;
}
@media (max-width: 991px) {
  .swiper-button-prev:not(.slider-nav),
  .swiper-button-next:not(.slider-nav) {
    pointer-events: all;
    width: 45px;
    height: 45px;
    background: #f0f0f0;
    padding: 13px;
    border-radius: 50%;
    color: #000000 !important;
    opacity: 1 !important;
  }
}

@media (max-width: 991px) {
  /* chapters */
  .chapters_foto {
    width: 100%;
    height: 460px;
  }
  .chapters_big_foto_article {
    padding: 0 15px;
    gap: 10px;
  }
  .chapters_big_foto_title {
    font-size: 18px;
  }
  .chapters_big_foto_subtitle {
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    display: -webkit-box;
  }
  .chapters_wrapper_big {
    grid-template-columns: repeat(1, 1fr);
  }
  .chapters_foto_article {
    gap: 10px;
  }
  .chapters_foto_title {
    font-size: 18px;
  }
  .chapters_foto_subtitle {
    font-size: 16px;
  }
  .chapters_wrapper_cards {
    grid-template-columns: repeat(1, 1fr);
  }
  .chapters_card {
    width: 100%;
  }
  .chapters_card img {
    width: 100%;
    height: 300px;
  }
  .chapters_card .chapters_foto_title {
    font-size: 25px;
  }
  /* video */
  .video_wrapper {
    height: 220px;
  }
  .video_play {
    right: 15px;
    bottom: 15px;
  }
  /* recent */
  .recent_swiper_arrows {
    position: absolute;
    width: 110px;
    bottom: 100px;
    right: 15px;
  }
}
@media (max-width: 981px) {
  .section-title {
    font-size: 30px;
    margin-bottom: 20px;
  }
}

/*# sourceMappingURL=single.css.map */
