.product-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.product-wrapper .page-title {
  width: 100%;
}
.product-wrapper .product-content {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.product-wrapper .product-content .product-image {
  position: relative;
}
.product-wrapper .product-content .product-image .slider-tabs {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.product-wrapper .product-content .product-image .slider-tabs .slider-tab {
  font-weight: 600;
  color: #656565;
  transition: all 0.3s;
  cursor: pointer;
}
.product-wrapper .product-content .product-image .slider-tabs .slider-tab.active {
  color: black;
}
.product-wrapper .product-content .product-image .slider-tabs .slider-tab:hover {
  color: var(--color-link-hover);
}
.product-wrapper .product-content .product-image .tab-content .image-content-item {
  display: none;
}
.product-wrapper .product-content .product-image .tab-content .image-content-item.active {
  display: block;
}
.product-wrapper .product-content .product-image .swiper {
  width: 100%;
  height: 100%;
}
.product-wrapper .product-content .product-image .swiper .swiper-wrapper {
  align-items: center;
}
.product-wrapper .product-content .product-image .swiper-slide {
  text-align: center;
  background: #444;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-wrapper .product-content .product-image .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-wrapper .product-content .product-image .swiper {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.product-wrapper .product-content .product-image .swiper-slide {
  background-size: cover;
  background-position: center;
}
.product-wrapper .product-content .product-image .swiperMain, .product-wrapper .product-content .product-image .swiperFaces {
  width: 100%;
  border: 1px solid #424242;
}
.product-wrapper .product-content .product-image .swiperMainThumbs, .product-wrapper .product-content .product-image .swiperFacesThumbs {
  box-sizing: border-box;
  padding: 10px 0;
}
.product-wrapper .product-content .product-image .swiperMainThumbs .swiper-wrapper, .product-wrapper .product-content .product-image .swiperFacesThumbs .swiper-wrapper {
  align-items: stretch;
}
.product-wrapper .product-content .product-image .swiperMainThumbs .swiper-slide, .product-wrapper .product-content .product-image .swiperFacesThumbs .swiper-slide {
  border: 1px solid #424242;
  overflow: hidden;
  height: unset !important;
  margin-right: 7px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.product-wrapper .product-content .product-image .swiperMainThumbs .swiper-slide, .product-wrapper .product-content .product-image .swiperFacesThumbs .swiper-slide {
  height: 100%;
  opacity: 0.4;
  border: 1px solid #424242;
}
.product-wrapper .product-content .product-image .swiperMainThumbs .swiper-slide-thumb-active, .product-wrapper .product-content .product-image .swiperFacesThumbs .swiper-slide-thumb-active {
  opacity: 1;
}
.product-wrapper .product-content .product-image .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-wrapper .product-content .product-info .product-article {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 5px;
}
.product-wrapper .product-content .product-info .product-article .article-title {
  color: #656565;
}
.product-wrapper .product-content .product-info .product-article .article-value {
  font-weight: 600;
  font-size: 1.1em;
}
.product-wrapper .product-content .product-info .product-brand {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 5px;
}
.product-wrapper .product-content .product-info .product-brand .brand-title {
  color: #656565;
}
.product-wrapper .product-content .product-info .product-brand .brand-value {
  font-weight: 600;
  font-size: 1.1em;
  max-height: 40px;
  max-width: 150px;
}
.product-wrapper .product-content .product-info .product-brand .brand-value img {
  width: auto;
  height: 100%;
  object-fit: cover;
}
.product-wrapper .product-content .product-info .product-props .product-props-title {
  font-weight: 600;
}
.product-wrapper .product-content .product-info .product-props .product-props-list {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.product-wrapper .product-content .product-info .product-props .product-props-list .product-props-item {
  display: none;
  flex-direction: row;
  align-items: baseline;
  justify-content: space-between;
  gap: 5px;
  width: 100%;
  transition: all 0.3s;
}
.product-wrapper .product-content .product-info .product-props .product-props-list .product-props-item.active {
  display: flex;
}
.product-wrapper .product-content .product-info .product-props .product-props-list .product-props-item .prop-line {
  display: block;
  border-bottom: 1px dotted #ccc;
  flex-grow: 1;
}
.product-wrapper .product-content .product-info .product-props .product-props-list .product-props-item .prop-value {
  font-weight: 600;
  max-width: 50%;
  text-align: right;
}
.product-wrapper .product-content .product-info .product-props .product-props-btn {
  margin-top: 10px;
  transition: all 0.3s;
  text-align: center;
}
.product-wrapper .product-aside {
  display: flex;
  flex-direction: column;
}
.product-wrapper .product-aside .product-totals {
  width: inherit;
  border: 1px solid #424242;
  background: white;
  position: relative;
}
.product-wrapper .product-aside .product-totals .product-totals-wrapper .totals-prices {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
.product-wrapper .product-aside .product-totals .product-totals-wrapper .totals-prices .price-title {
  display: flex;
  flex-direction: column;
}
.product-wrapper .product-aside .product-totals .product-totals-wrapper .totals-prices .price-title .title-val {
  font-weight: 600;
}
.product-wrapper .product-aside .product-totals .product-totals-wrapper .totals-prices .price-title .price-qty-comment {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-start;
}
.product-wrapper .product-aside .product-totals .product-totals-wrapper .totals-prices .price-values {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.product-wrapper .product-aside .product-totals .product-totals-wrapper .totals-prices .price-values .price-main {
  background: #7fab70;
  padding: 8px;
  border-radius: 5px;
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
}
.product-wrapper .product-aside .product-totals .product-totals-wrapper .totals-prices .price-values .price-main .price-value {
  font-weight: 600;
}
.product-wrapper .product-aside .product-totals .product-totals-wrapper .totals-prices .price-values .price-adv {
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
}
.product-wrapper .product-aside .product-totals .product-totals-wrapper .totals-prices .price-values .price-adv .price-value {
  font-weight: 600;
}
.product-wrapper .product-aside .product-totals .product-totals-wrapper .qty-block {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}
.product-wrapper .product-aside .product-totals .product-totals-wrapper .qty-block .qty-calc {
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
}
.product-wrapper .product-aside .product-totals .product-totals-wrapper .ad-qty {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  border: 1px solid #666666;
  background: #d0d0d0;
}
.product-wrapper .product-aside .product-totals .product-totals-wrapper .ad-qty span {
  margin-right: auto;
}
.product-wrapper .product-aside .product-totals .product-totals-wrapper .product-total-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.product-wrapper .product-aside .product-totals .product-totals-wrapper .product-total-info .product-totals-title {
  margin-right: auto;
  font-weight: 600;
}
.product-wrapper .product-aside .product-totals .product-totals-wrapper .product-total-info .product-totals-price {
  font-weight: 600;
}
.product-wrapper .product-aside .product-totals .product-totals-wrapper .product-order-btns {
  display: flex;
  flex-direction: column;
}
.product-wrapper .product-aside .order-info .info-tabs {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.product-wrapper .product-aside .order-info .info-tabs .info-tab {
  width: 50%;
  padding: 5px 10px;
  border: 1px solid #ababab;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  border-bottom: none;
}
.product-wrapper .product-aside .order-info .info-tabs .info-tab.active {
  background: #7fab70;
  cursor: unset;
}
.product-wrapper .product-aside .order-info .info-content {
  background: #7fab70;
  border-top: none;
}
.product-wrapper .product-aside .order-info .info-content .info-wrapper .info-block-list {
  display: none;
}
.product-wrapper .product-aside .order-info .info-content .info-wrapper .info-block-list.active {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-wrapper .product-info .product-desc {
  flex-grow: 1;
}
.product-wrapper .product-info .product-desc .product-article {
  display: flex;
  gap: 10px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
  margin-bottom: 5px;
}
.product-wrapper .product-info .product-desc .product-article .article-title {
  color: #656565;
}
.product-wrapper .product-info .product-desc .product-article .article-value {
  font-weight: 600;
  font-size: 1.1em;
}
.product-wrapper .product-info .product-desc .product-brand {
  display: flex;
  gap: 10px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
  margin-bottom: 5px;
}
.product-wrapper .product-info .product-desc .product-brand .brand-title {
  color: #656565;
}
.product-wrapper .product-info .product-desc .product-brand .brand-value {
  font-weight: 600;
  font-size: 1.1em;
  max-height: 40px;
  max-width: 150px;
}
.product-wrapper .product-info .product-desc .product-brand .brand-value img {
  width: auto;
  height: 100%;
  object-fit: cover;
}
.product-wrapper .product-info .product-desc .product-props .product-props-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}
.product-wrapper .product-info .product-desc .product-props .product-props-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.product-wrapper .product-info .product-desc .product-props .product-props-list .product-props-item {
  display: none;
  flex-direction: row;
  align-items: baseline;
  justify-content: space-between;
  gap: 5px;
  width: 100%;
  transition: all 0.3s;
}
.product-wrapper .product-info .product-desc .product-props .product-props-list .product-props-item.active {
  display: flex;
}
.product-wrapper .product-info .product-desc .product-props .product-props-list .product-props-item .prop-line {
  display: block;
  border-bottom: 1px dotted #ccc;
  flex-grow: 1;
}
.product-wrapper .product-info .product-desc .product-props .product-props-list .product-props-item .prop-value {
  font-weight: 600;
  max-width: 50%;
  text-align: right;
}
.product-wrapper .product-info .product-desc .product-props .product-props-btn {
  margin-top: 10px;
  transition: all 0.3s;
  text-align: center;
}
.product-wrapper .product-info .product-order {
  width: 40%;
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.product-wrapper .product-info .product-order .product-price-block {
  border: 1px solid #424242;
  border-radius: 10px;
  padding: 10px;
}
.product-wrapper .product-info .product-order .product-price-block .price-block-wrapper .prices {
  position: relative;
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 20px;
}
.product-wrapper .product-info .product-order .product-price-block .price-block-wrapper .prices .price-block {
  display: none;
}
.product-wrapper .product-info .product-order .product-price-block .price-block-wrapper .prices .price-block.active {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}
.product-wrapper .product-info .product-order .product-price-block .price-block-wrapper .prices .price-block.active .price-item {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: flex-start;
}
.product-wrapper .product-info .product-order .product-price-block .price-block-wrapper .prices .price-block.active .price-item.price-base {
  opacity: 0.5;
}
.product-wrapper .product-info .product-order .product-price-block .price-block-wrapper .prices .price-block.active .price-item.price-base .price-value {
  font-size: 13px;
  font-weight: 600;
}
.product-wrapper .product-info .product-order .product-price-block .price-block-wrapper .prices .price-block.active .price-item.price-base .price-measure {
  font-size: 10px;
}
.product-wrapper .product-info .product-order .product-price-block .price-block-wrapper .prices .price-block.active .price-item.price-current .price-value {
  font-size: 16px;
  font-weight: 600;
}
.product-wrapper .product-info .product-order .product-price-block .price-block-wrapper .prices .price-block.active .price-item.price-current .price-measure {
  font-size: 12px;
}
.product-wrapper .product-info .product-order .product-price-block .price-block-wrapper .prices .prices-total {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}
.product-wrapper .product-info .product-order .product-price-block .price-block-wrapper .prices .prices-total .total-title {
  font-size: 18px;
  font-weight: 600;
}
.product-wrapper .product-info .product-order .product-price-block .price-block-wrapper .prices .prices-total .price-item {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: flex-start;
}
.product-wrapper .product-info .product-order .product-price-block .price-block-wrapper .prices .prices-total .price-item.price-base {
  opacity: 0.5;
}
.product-wrapper .product-info .product-order .product-price-block .price-block-wrapper .prices .prices-total .price-item.price-base .price-value {
  font-size: 13px;
  font-weight: 600;
}
.product-wrapper .product-info .product-order .product-price-block .price-block-wrapper .prices .prices-total .price-item.price-base .price-measure {
  font-size: 10px;
}
.product-wrapper .product-info .product-order .product-price-block .price-block-wrapper .prices .prices-total .price-item.price-current .price-value {
  font-size: 16px;
  font-weight: 600;
}
.product-wrapper .product-info .product-order .product-price-block .price-block-wrapper .prices .prices-total .price-item.price-current .price-measure {
  font-size: 12px;
}
.product-wrapper .product-info .product-order .product-price-block .price-block-wrapper .qty-list {
  font-size: 13px;
  margin-bottom: 10px;
  opacity: 0.6;
}
.product-wrapper .product-info .product-order .product-price-block .price-block-wrapper .buy-block {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}
.product-wrapper .product-info .product-order .product-price-block .price-block-wrapper .buy-block .qty-block {
  width: calc(50% - 10px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-wrapper .product-info .product-order .product-price-block .price-block-wrapper .buy-block .qty-block .measure-types {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.product-wrapper .product-info .product-order .product-price-block .price-block-wrapper .buy-block .qty-block .measure-types .measure-btn {
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s;
  opacity: 0.5;
  cursor: pointer;
}
.product-wrapper .product-info .product-order .product-price-block .price-block-wrapper .buy-block .qty-block .measure-types .measure-btn:hover {
  opacity: 1;
  color: var(--color-link-active);
}
.product-wrapper .product-info .product-order .product-price-block .price-block-wrapper .buy-block .qty-block .measure-types .measure-btn.active {
  opacity: 1;
}
.product-wrapper .product-info .product-order .btn-adv {
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-wrapper .product-info .product-order .delivery-block {
  border: 1px solid #424242;
  border-radius: 10px;
  overflow: hidden;
}
.product-wrapper .product-info .product-order .delivery-block .delivery-block-title {
  background: #424242;
  padding: 5px 10px;
  color: white;
  font-size: 16px;
  font-weight: 600;
}
.product-wrapper .product-info .product-order .delivery-block .delivery-block-list {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-wrapper .product-info .product-order .delivery-block .delivery-block-list .delivery-block-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.product-wrapper .product-info .product-order .delivery-block .delivery-block-list .delivery-block-item .item-title {
  font-size: 15px;
  font-weight: 600;
}
.product-wrapper .product-info .product-order .delivery-block .delivery-block-list .delivery-block-item .item-text {
  font-size: 13px;
}
.product-wrapper .product-info .product-order .delivery-block .delivery-block-list .delivery-block-item .item-link {
  text-align: right;
  font-size: 11px;
  opacity: 0.6;
  cursor: pointer;
}
.product-wrapper .product-tabs .tab-items {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.product-wrapper .product-tabs .tab-items .tab-item {
  border: 1px solid #ababab;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom: none;
  cursor: pointer;
}
.product-wrapper .product-tabs .tab-items .tab-item.active {
  background: #ababab;
  cursor: unset;
}
.product-wrapper .product-tabs .tab-content {
  border: 1px solid #ababab;
}
.product-wrapper .product-tabs .tab-content .tab-content-item {
  display: none;
}
.product-wrapper .product-tabs .tab-content .tab-content-item.active {
  display: block;
  padding: 20px;
}

@media screen and (min-width: 1400px) {
  .product-wrapper {
    margin: 20px 0;
    gap: 20px;
  }
  .product-wrapper .product-content {
    width: calc(100% - 420px);
    gap: 20px;
  }
  .product-wrapper .product-content .product-image {
    width: 50%;
  }
  .product-wrapper .product-content .product-image .slider-tabs {
    gap: 10px;
    margin-bottom: 10px;
  }
  .product-wrapper .product-content .product-image .slider-tabs .slider-tab {
    font-size: 14px;
  }
  .product-wrapper .product-content .product-image .swiper {
    height: 300px;
  }
  .product-wrapper .product-content .product-image .swiper .swiper-slide {
    font-size: 18px;
  }
  .product-wrapper .product-content .product-image .swiper.swiperMain, .product-wrapper .product-content .product-image .swiper .swiperFaces {
    height: 500px;
    border-radius: 10px;
  }
  .product-wrapper .product-content .product-image .swiper.swiperMainThumbs, .product-wrapper .product-content .product-image .swiper .swiperFacesThumbs {
    height: 150px;
  }
  .product-wrapper .product-content .product-image .swiper.swiperMainThumbs .swiper-slide, .product-wrapper .product-content .product-image .swiper .swiperFacesThumbs .swiper-slide {
    border-radius: 10px;
  }
  .product-wrapper .product-content .product-image .swiper .swiperMainThumbs .swiper-slide, .product-wrapper .product-content .product-image .swiper .swiperFacesThumbs .swiper-slide {
    width: 25%;
    border-radius: 10px;
  }
  .product-wrapper .product-content .product-info {
    width: calc(50% - 20px);
    margin-top: 27px;
  }
  .product-wrapper .product-content .product-info .product-article .article-title {
    font-size: 14px;
  }
  .product-wrapper .product-content .product-info .product-article .article-value {
    font-size: 16px;
  }
  .product-wrapper .product-content .product-info .product-brand .brand-title {
    font-size: 14px;
  }
  .product-wrapper .product-content .product-info .product-brand .brand-value {
    font-size: 16px;
    max-height: 40px;
    max-width: 150px;
  }
  .product-wrapper .product-content .product-info .product-props {
    margin-top: 10px;
  }
  .product-wrapper .product-content .product-info .product-props .product-props-title {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .product-wrapper .product-content .product-info .product-props .product-props-list {
    gap: 8px;
  }
  .product-wrapper .product-content .product-info .product-props .product-props-list .product-props-item .prop-value {
    font-size: 13px;
  }
  .product-wrapper .product-aside {
    width: 400px;
    gap: 20px;
    margin-top: 27px;
  }
  .product-wrapper .product-aside .product-totals {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper {
    padding: 10px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .totals-prices {
    gap: 10px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .totals-prices .price-title {
    max-width: 150px;
    margin-bottom: 20px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .totals-prices .price-title .title-val {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .totals-prices .price-title .price-qty-comment span {
    font-size: 14px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .totals-prices .price-values .price-main .price-value {
    font-size: 18px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .totals-prices .price-values .price-main .price-measure {
    font-size: 13px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .totals-prices .price-values .price-adv {
    margin-top: 10px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .totals-prices .price-values .price-adv .price-value {
    font-size: 16px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .totals-prices .price-values .price-adv .price-measure {
    font-size: 13px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .qty-block {
    gap: 10px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .qty-block .qty-calc {
    width: calc(50% - 5px);
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .qty-block .qty-calc .calc-title {
    font-size: 12px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .qty-block .qty-calc .qty-input {
    width: calc(100% - 60px);
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .ad-qty {
    margin-top: 10px;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 10px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .ad-qty span {
    font-size: 12px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .product-total-info {
    gap: 10px;
    margin-bottom: 10px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .product-total-info .product-totals-title {
    font-size: 22px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .product-total-info .product-totals-price {
    font-size: 18px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .product-order-btns {
    gap: 10px;
  }
  .product-wrapper .product-aside .order-info .info-tabs .info-tab {
    font-size: 16px;
  }
  .product-wrapper .product-aside .order-info .info-content {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }
  .product-wrapper .product-aside .order-info .info-content .info-wrapper {
    padding: 20px;
  }
  .product-wrapper .product-tabs {
    margin-bottom: 20px;
  }
  .product-wrapper .product-tabs .tab-items .tab-item {
    padding: 5px 10px;
    font-size: 18px;
  }
  .product-wrapper .product-tabs .tab-content {
    border-bottom-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
  }
}
@media screen and (max-width: 1399px) and (min-width: 1200px) {
  .product-wrapper {
    margin: 20px 0;
    gap: 20px;
  }
  .product-wrapper .product-content {
    width: calc(100% - 370px);
    gap: 20px;
  }
  .product-wrapper .product-content .product-image {
    width: 50%;
  }
  .product-wrapper .product-content .product-image .slider-tabs {
    gap: 10px;
    margin-bottom: 10px;
  }
  .product-wrapper .product-content .product-image .slider-tabs .slider-tab {
    font-size: 14px;
  }
  .product-wrapper .product-content .product-image > .swiper {
    height: 300px;
    border-radius: 10px;
  }
  .product-wrapper .product-content .product-image > .swiper .swiper-slide {
    font-size: 18px;
    border-radius: 10px;
  }
  .product-wrapper .product-content .product-image > .swiper .swiperMain, .product-wrapper .product-content .product-image > .swiper .swiperFaces {
    height: 80%;
    border-radius: 10px;
  }
  .product-wrapper .product-content .product-image > .swiper .swiperMainThumbs, .product-wrapper .product-content .product-image > .swiper .swiperFacesThumbs {
    height: 50px;
    border-radius: 10px;
  }
  .product-wrapper .product-content .product-image > .swiper .swiperMainThumbs .swiper-slide, .product-wrapper .product-content .product-image > .swiper .swiperFacesThumbs .swiper-slide {
    border-radius: 10px;
  }
  .product-wrapper .product-content .product-image > .swiper .swiperMainThumbs .swiper-slide, .product-wrapper .product-content .product-image > .swiper .swiperFacesThumbs .swiper-slide {
    width: 25%;
    border-radius: 10px;
  }
  .product-wrapper .product-content .product-info {
    width: calc(50% - 20px);
    margin-top: 27px;
  }
  .product-wrapper .product-content .product-info .product-article .article-title {
    font-size: 14px;
  }
  .product-wrapper .product-content .product-info .product-article .article-value {
    font-size: 16px;
  }
  .product-wrapper .product-content .product-info .product-brand .brand-title {
    font-size: 14px;
  }
  .product-wrapper .product-content .product-info .product-brand .brand-value {
    font-size: 16px;
    max-height: 40px;
    max-width: 150px;
  }
  .product-wrapper .product-content .product-info .product-props {
    margin-top: 10px;
  }
  .product-wrapper .product-content .product-info .product-props .product-props-title {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .product-wrapper .product-content .product-info .product-props .product-props-list {
    gap: 8px;
  }
  .product-wrapper .product-content .product-info .product-props .product-props-list .product-props-item .prop-value {
    font-size: 13px;
  }
  .product-wrapper .product-aside {
    width: 350px;
    gap: 20px;
    margin-top: 27px;
  }
  .product-wrapper .product-aside .product-totals {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper {
    padding: 10px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .totals-prices {
    gap: 10px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .totals-prices .price-title {
    max-width: 150px;
    margin-bottom: 20px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .totals-prices .price-title .title-val {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .totals-prices .price-title .price-qty-comment span {
    font-size: 14px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .totals-prices .price-values .price-main .price-value {
    font-size: 18px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .totals-prices .price-values .price-main .price-measure {
    font-size: 13px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .totals-prices .price-values .price-adv {
    margin-top: 10px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .totals-prices .price-values .price-adv .price-value {
    font-size: 16px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .totals-prices .price-values .price-adv .price-measure {
    font-size: 13px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .qty-block {
    gap: 10px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .qty-block .qty-calc {
    width: calc(50% - 5px);
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .qty-block .qty-calc .calc-title {
    font-size: 12px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .qty-block .qty-calc .qty-input {
    width: calc(100% - 60px);
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .ad-qty {
    margin-top: 10px;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 10px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .ad-qty span {
    font-size: 11px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .product-total-info {
    gap: 10px;
    margin-bottom: 10px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .product-total-info .product-totals-title {
    font-size: 22px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .product-total-info .product-totals-price {
    font-size: 18px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .product-order-btns {
    gap: 10px;
  }
  .product-wrapper .product-aside .order-info .info-tabs .info-tab {
    font-size: 16px;
  }
  .product-wrapper .product-aside .order-info .info-content {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }
  .product-wrapper .product-aside .order-info .info-content .info-wrapper {
    padding: 20px;
  }
  .product-wrapper .product-tabs {
    margin-bottom: 20px;
  }
  .product-wrapper .product-tabs .tab-items .tab-item {
    padding: 5px 10px;
    font-size: 18px;
  }
  .product-wrapper .product-tabs .tab-content {
    border-bottom-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
  }
}
@media screen and (max-width: 1199px) and (min-width: 1024px) {
  .product-wrapper {
    margin: 20px 0;
    gap: 20px;
  }
  .product-wrapper .product-content {
    width: calc(100% - 370px);
    gap: 20px;
  }
  .product-wrapper .product-content .product-image {
    width: 50%;
  }
  .product-wrapper .product-content .product-image .slider-tabs {
    gap: 10px;
    margin-bottom: 10px;
  }
  .product-wrapper .product-content .product-image .slider-tabs .slider-tab {
    font-size: 14px;
  }
  .product-wrapper .product-content .product-image > .swiper {
    height: 300px;
    border-radius: 10px;
  }
  .product-wrapper .product-content .product-image > .swiper .swiper-slide {
    font-size: 18px;
    border-radius: 10px;
  }
  .product-wrapper .product-content .product-image > .swiper .swiperMain, .product-wrapper .product-content .product-image > .swiper .swiperFaces {
    height: 80%;
    border-radius: 10px;
  }
  .product-wrapper .product-content .product-image > .swiper .swiperMainThumbs, .product-wrapper .product-content .product-image > .swiper .swiperFacesThumbs {
    height: 50px;
    border-radius: 10px;
  }
  .product-wrapper .product-content .product-image > .swiper .swiperMainThumbs .swiper-slide, .product-wrapper .product-content .product-image > .swiper .swiperFacesThumbs .swiper-slide {
    border-radius: 10px;
  }
  .product-wrapper .product-content .product-image > .swiper .swiperMainThumbs .swiper-slide, .product-wrapper .product-content .product-image > .swiper .swiperFacesThumbs .swiper-slide {
    width: 25%;
    border-radius: 10px;
  }
  .product-wrapper .product-content .product-info {
    width: calc(50% - 20px);
    margin-top: 27px;
  }
  .product-wrapper .product-content .product-info .product-article .article-title {
    font-size: 14px;
  }
  .product-wrapper .product-content .product-info .product-article .article-value {
    font-size: 16px;
  }
  .product-wrapper .product-content .product-info .product-brand .brand-title {
    font-size: 14px;
  }
  .product-wrapper .product-content .product-info .product-brand .brand-value {
    font-size: 16px;
    max-height: 40px;
    max-width: 150px;
  }
  .product-wrapper .product-content .product-info .product-props {
    margin-top: 10px;
  }
  .product-wrapper .product-content .product-info .product-props .product-props-title {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .product-wrapper .product-content .product-info .product-props .product-props-list {
    gap: 8px;
  }
  .product-wrapper .product-content .product-info .product-props .product-props-list .product-props-item .prop-value {
    font-size: 13px;
  }
  .product-wrapper .product-aside {
    width: 350px;
    gap: 20px;
    margin-top: 27px;
  }
  .product-wrapper .product-aside .product-totals {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper {
    padding: 10px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .totals-prices {
    gap: 10px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .totals-prices .price-title {
    max-width: 150px;
    margin-bottom: 20px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .totals-prices .price-title .title-val {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .totals-prices .price-title .price-qty-comment span {
    font-size: 14px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .totals-prices .price-values .price-main .price-value {
    font-size: 18px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .totals-prices .price-values .price-main .price-measure {
    font-size: 13px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .totals-prices .price-values .price-adv {
    margin-top: 10px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .totals-prices .price-values .price-adv .price-value {
    font-size: 16px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .totals-prices .price-values .price-adv .price-measure {
    font-size: 13px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .qty-block {
    gap: 10px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .qty-block .qty-calc {
    width: calc(50% - 5px);
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .qty-block .qty-calc .calc-title {
    font-size: 12px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .qty-block .qty-calc .qty-input {
    width: calc(100% - 60px);
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .ad-qty {
    margin-top: 10px;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 10px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .ad-qty span {
    font-size: 11px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .product-total-info {
    gap: 10px;
    margin-bottom: 10px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .product-total-info .product-totals-title {
    font-size: 22px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .product-total-info .product-totals-price {
    font-size: 18px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .product-order-btns {
    gap: 10px;
  }
  .product-wrapper .product-aside .order-info .info-tabs .info-tab {
    font-size: 16px;
  }
  .product-wrapper .product-aside .order-info .info-content {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }
  .product-wrapper .product-aside .order-info .info-content .info-wrapper {
    padding: 20px;
  }
  .product-wrapper .product-tabs {
    margin-bottom: 20px;
  }
  .product-wrapper .product-tabs .tab-items .tab-item {
    padding: 5px 10px;
    font-size: 18px;
  }
  .product-wrapper .product-tabs .tab-content {
    border-bottom-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
  }
}
@media screen and (max-width: 1023px) and (min-width: 768px) {
  .product-wrapper {
    margin: 20px 0;
    gap: 20px;
  }
  .product-wrapper .product-content {
    width: 100%;
    gap: 20px;
  }
  .product-wrapper .product-content .product-image {
    width: 50%;
  }
  .product-wrapper .product-content .product-image .slider-tabs {
    gap: 10px;
    margin-bottom: 10px;
  }
  .product-wrapper .product-content .product-image .slider-tabs .slider-tab {
    font-size: 14px;
  }
  .product-wrapper .product-content .product-image > .swiper {
    height: 300px;
    border-radius: 10px;
  }
  .product-wrapper .product-content .product-image > .swiper .swiper-slide {
    font-size: 18px;
    border-radius: 10px;
  }
  .product-wrapper .product-content .product-image > .swiper .swiperMain, .product-wrapper .product-content .product-image > .swiper .swiperFaces {
    height: 80%;
    border-radius: 10px;
  }
  .product-wrapper .product-content .product-image > .swiper .swiperMainThumbs, .product-wrapper .product-content .product-image > .swiper .swiperFacesThumbs {
    height: 50px;
    border-radius: 10px;
  }
  .product-wrapper .product-content .product-image > .swiper .swiperMainThumbs .swiper-slide, .product-wrapper .product-content .product-image > .swiper .swiperFacesThumbs .swiper-slide {
    border-radius: 10px;
  }
  .product-wrapper .product-content .product-image > .swiper .swiperMainThumbs .swiper-slide, .product-wrapper .product-content .product-image > .swiper .swiperFacesThumbs .swiper-slide {
    width: 25%;
    border-radius: 10px;
  }
  .product-wrapper .product-content .product-info {
    width: calc(50% - 20px);
    margin-top: 27px;
  }
  .product-wrapper .product-content .product-info .product-article .article-title {
    font-size: 14px;
  }
  .product-wrapper .product-content .product-info .product-article .article-value {
    font-size: 16px;
  }
  .product-wrapper .product-content .product-info .product-brand .brand-title {
    font-size: 14px;
  }
  .product-wrapper .product-content .product-info .product-brand .brand-value {
    font-size: 16px;
    max-height: 40px;
    max-width: 150px;
  }
  .product-wrapper .product-content .product-info .product-props {
    margin-top: 10px;
  }
  .product-wrapper .product-content .product-info .product-props .product-props-title {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .product-wrapper .product-content .product-info .product-props .product-props-list {
    gap: 8px;
  }
  .product-wrapper .product-content .product-info .product-props .product-props-list .product-props-item .prop-value {
    font-size: 13px;
  }
  .product-wrapper .product-aside {
    width: 100%;
    gap: 20px;
    margin-top: 27px;
  }
  .product-wrapper .product-aside .product-totals {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper {
    padding: 10px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .totals-prices {
    gap: 10px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .totals-prices .price-title {
    max-width: 150px;
    margin-bottom: 20px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .totals-prices .price-title .title-val {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .totals-prices .price-title .price-qty-comment span {
    font-size: 14px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .totals-prices .price-values .price-main .price-value {
    font-size: 18px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .totals-prices .price-values .price-main .price-measure {
    font-size: 13px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .totals-prices .price-values .price-adv {
    margin-top: 10px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .totals-prices .price-values .price-adv .price-value {
    font-size: 16px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .totals-prices .price-values .price-adv .price-measure {
    font-size: 13px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .qty-block {
    gap: 10px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .qty-block .qty-calc {
    width: calc(50% - 5px);
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .qty-block .qty-calc .calc-title {
    font-size: 12px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .qty-block .qty-calc .qty-input {
    width: calc(100% - 60px);
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .ad-qty {
    margin-top: 10px;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 10px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .ad-qty span {
    font-size: 11px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .product-total-info {
    gap: 10px;
    margin-bottom: 10px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .product-total-info .product-totals-title {
    font-size: 22px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .product-total-info .product-totals-price {
    font-size: 18px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .product-order-btns {
    gap: 10px;
  }
  .product-wrapper .product-aside .order-info .info-tabs .info-tab {
    font-size: 16px;
  }
  .product-wrapper .product-aside .order-info .info-content {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }
  .product-wrapper .product-aside .order-info .info-content .info-wrapper {
    padding: 20px;
  }
  .product-wrapper .product-tabs {
    margin-bottom: 20px;
  }
  .product-wrapper .product-tabs .tab-items .tab-item {
    padding: 5px 10px;
    font-size: 18px;
  }
  .product-wrapper .product-tabs .tab-content {
    border-bottom-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
  }
}
@media screen and (max-width: 767px) {
  #breadcrumbs {
    display: none !important;
  }
  .product-wrapper {
    margin: 10px 0;
    gap: 10px;
  }
  .product-wrapper .page-title h1 {
    font-size: 14px;
  }
  .product-wrapper .product-content {
    width: 100%;
    gap: 10px;
  }
  .product-wrapper .product-content .product-image {
    width: 100%;
  }
  .product-wrapper .product-content .product-image .slider-tabs {
    gap: 10px;
    margin-bottom: 10px;
  }
  .product-wrapper .product-content .product-image .slider-tabs .slider-tab {
    font-size: 14px;
  }
  .product-wrapper .product-content .product-image > .swiper {
    height: 300px;
    border-radius: 10px;
  }
  .product-wrapper .product-content .product-image > .swiper .swiper-slide {
    font-size: 18px;
    border-radius: 10px;
  }
  .product-wrapper .product-content .product-image > .swiper .swiperMain, .product-wrapper .product-content .product-image > .swiper .swiperFaces {
    height: 80%;
    border-radius: 10px;
  }
  .product-wrapper .product-content .product-image > .swiper .swiperMainThumbs, .product-wrapper .product-content .product-image > .swiper .swiperFacesThumbs {
    height: 70px !important;
    border-radius: 10px;
  }
  .product-wrapper .product-content .product-image > .swiper .swiperMainThumbs .swiper-slide, .product-wrapper .product-content .product-image > .swiper .swiperFacesThumbs .swiper-slide {
    border-radius: 10px;
  }
  .product-wrapper .product-content .product-image > .swiper .swiperMainThumbs .swiper-slide, .product-wrapper .product-content .product-image > .swiper .swiperFacesThumbs .swiper-slide {
    width: 25%;
    border-radius: 10px;
  }
  .product-wrapper .product-content .product-info {
    width: 100%;
    margin-top: 27px;
  }
  .product-wrapper .product-content .product-info .product-article .article-title {
    font-size: 12px;
  }
  .product-wrapper .product-content .product-info .product-article .article-value {
    font-size: 14px;
  }
  .product-wrapper .product-content .product-info .product-brand .brand-title {
    font-size: 12px;
  }
  .product-wrapper .product-content .product-info .product-brand .brand-value {
    font-size: 14px;
    max-height: 40px;
    max-width: 100%;
  }
  .product-wrapper .product-content .product-info .product-props {
    margin-top: 10px;
  }
  .product-wrapper .product-content .product-info .product-props .product-props-title {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .product-wrapper .product-content .product-info .product-props .product-props-list {
    gap: 8px;
  }
  .product-wrapper .product-content .product-info .product-props .product-props-list .product-props-item .prop-value {
    font-size: 11px;
  }
  .product-wrapper .product-aside {
    width: 100%;
    gap: 20px;
    margin-top: 27px;
  }
  .product-wrapper .product-aside .product-totals {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper {
    padding: 10px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .totals-prices {
    gap: 10px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .totals-prices .price-title {
    max-width: 150px;
    margin-bottom: 20px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .totals-prices .price-title .title-val {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .totals-prices .price-title .price-qty-comment span {
    font-size: 14px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .totals-prices .price-values .price-main .price-value {
    font-size: 18px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .totals-prices .price-values .price-main .price-measure {
    font-size: 13px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .totals-prices .price-values .price-adv {
    margin-top: 10px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .totals-prices .price-values .price-adv .price-value {
    font-size: 16px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .totals-prices .price-values .price-adv .price-measure {
    font-size: 13px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .qty-block {
    gap: 10px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .qty-block .qty-calc {
    width: calc(50% - 5px);
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .qty-block .qty-calc .calc-title {
    font-size: 12px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .qty-block .qty-calc .qty-input {
    width: calc(100% - 60px);
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .ad-qty {
    margin-top: 10px;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 10px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .ad-qty span {
    font-size: 11px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .product-total-info {
    gap: 10px;
    margin-bottom: 10px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .product-total-info .product-totals-title {
    font-size: 22px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .product-total-info .product-totals-price {
    font-size: 18px;
  }
  .product-wrapper .product-aside .product-totals .product-totals-wrapper .product-order-btns {
    gap: 10px;
  }
  .product-wrapper .product-aside .order-info .info-tabs .info-tab {
    font-size: 16px;
  }
  .product-wrapper .product-aside .order-info .info-content {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }
  .product-wrapper .product-aside .order-info .info-content .info-wrapper {
    padding: 20px;
  }
  .product-wrapper .product-tabs {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .product-wrapper .product-tabs .tab-items .tab-item {
    padding: 5px 10px;
    font-size: 14px;
  }
  .product-wrapper .product-tabs .tab-content {
    border-bottom-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
  }
}

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