.header {
  position: relative;
  height: 68px;
  width: 100%;
}

.product {
  margin: 120px 0 100px;
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: space-between;
}
.product-title {
  position: relative;
  top: 0;
  left: 0;
  font-size: 2.25rem;
  color: #fafafa;
  line-height: 1.4;
  letter-spacing: -0.02em;
  width: 100%;
  margin: -10px 0 0;
}
.product-description {
  width: 33%;
}
.product-price {
  margin: 25px 0 40px;
  font-size: 1.5rem;
}
.product-param {
  font-weight: 300;
  line-height: 1.1;
  margin: 2px 0 3px;
}
.product-param-label {
  font-weight: 400;
  color: #e8e8e8;
}
.product-button {
  padding: 20px 45px;
}
.product-tabs {
  width: 100%;
  margin: 100px 0;
}
.product-tab-label {
  font-family: "Unbounded", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  background: #b7b7b7;
  color: #111111;
  border: 1px solid #b7b7b7;
  border-radius: 10px 10px 0 0;
  padding: 12px 20px;
  display: inline-block;
}
.product-tab-label:hover {
  cursor: pointer;
  border-color: #525252;
  background: transparent;
  color: #e8e8e8;
}
.product-tab-label.is-active {
  color: #e8e8e8;
  background: #39494c;
  border-color: #39494c;
}
.product-tab-text {
  background: #39494c;
  padding: 40px 65px;
  border-radius: 0 20px 20px 20px;
  display: none;
  color: #d6d6d6;
}
.product-tab-text.is-active {
  display: block;
}
.product-tab-text strong {
  font-weight: 500;
  color: #fff;
}
.product-tab-text p {
  margin: 15px 0;
}
.product-tab-text ul {
  margin: 0 0 0 20px;
}
.product-discount {
  left: 20%;
}

@media (min-width: 1025px) {
  .product-main-image {
    width: 74.4%;
  }
  .product-images {
    width: 67%;
    display: flex;
    flex-direction: row;
    gap: 2.2%;
    justify-content: space-between;
  }
  .product-images-slider {
    width: 23.4%;
  }
  .product-images-track {
    overflow-y: auto !important;
    scrollbar-width: none;
  }
  .product-images-track:-webkit-scrollbar {
    display: none; /* Chrome, Safari */
  }
  .product-images-track-scroll {
    display: block;
    width: 100%;
    padding: 5px;
    cursor: pointer;
    text-align: center;
    border: none;
    font-size: 25px;
    position: absolute;
    z-index: 1;
    opacity: 0.85;
    color: #c7e954;
  }
  .product-images-track-scroll.hidden {
    display: none;
  }
  .product-images-track-scroll:hover {
    background: rgba(57, 73, 76, 0.25);
  }
  .product-images-track-scroll-top {
    top: -1px;
  }
  .product-images-track-scroll-bottom {
    bottom: -1px;
  }
  .product-gallery {
    width: 211px;
    float: left;
    gap: 4.1%;
    display: flex;
    flex-direction: column;
  }
  .product-gallery-image:hover {
    cursor: pointer;
  }
  .product-gallery-image.is-active {
    position: relative;
  }
  .product-gallery-image.is-active:after {
    content: "";
    position: absolute;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    top: 0;
    left: 0;
    border: 1px solid #c7e954;
    border-radius: 20px;
  }
  .product-image-active {
    stroke: #c7e954;
    stroke-width: 1;
    fill: none;
  }
}
@media (max-width: 1024px) {
  .product {
    flex-direction: column;
    margin: 32px 0 100px;
    padding: 0 16px;
  }
  .product-images {
    width: 100%;
  }
  .product-images-track {
    padding: 0;
  }
  .product-images-slider {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .product-gallery-image-img {
    width: calc(100vw - 32px);
    height: calc(85vw - 32px);
    border-radius: 10px;
  }
  .product-title {
    font-size: 0.75rem;
    letter-spacing: 0;
    line-height: 1.3;
    margin: 15px 0 0;
  }
  .product-price {
    margin: 20px 0;
  }
  .product-description {
    width: 100%;
  }
  .product-param {
    margin: -3px 0;
  }
  .product-param-label {
    font-size: 0.875rem;
  }
  .product-param-value {
    font-size: 0.625rem;
    font-weight: 500;
  }
  .product-button {
    margin: 32px 0 0;
    padding: 20px;
    align-items: center;
  }
  .product-tabs {
    padding: 0 16px;
  }
  .product-tabs-wrap {
    display: flex;
  }
  .product-tab-label {
    color: #fafafa;
    font-size: 0.625rem;
    padding: 13px 10px;
    background: transparent;
    border-radius: 7px 7px 0 0;
    font-family: "TT Firs Neue", sans-serif;
    flex: 1;
    text-align: center;
    margin: 0 -1px 0 0;
    border-color: #525252;
  }
  .product-tab-label:last-child {
    margin: 0;
  }
  .product-tab-label.is-active {
    z-index: -1;
    color: #fafafa;
  }
  .product-tab-text {
    border-radius: 0;
    padding: 16px;
    color: #b7b7b7;
    font-weight: 300;
    line-height: 1.1;
  }
  .product-tab-text p {
    margin: 14px 0;
  }
  .product-tab-text p:first-child {
    margin: 0 0 14px 0;
  }
  .product-discount {
    left: 22px;
  }
}
@media (min-width: 471px) and (max-width: 1024px) {
  .product-button {
    width: 290px;
  }
}
/*# sourceMappingURL=product.css.map */
