.product-content {
  display: flex;
  flex-direction: row;
  column-gap: 100px;
  padding-bottom: 50px;
}
@media (max-width: 768px) {
  .product-content {
    flex-direction: column;
  }
}
.product-content__left {
  max-width: 520px;
}
@media (max-width: 576px) {
  .product-content__left {
    width: 100%;
  }
}
@media (min-width: 769px) and (max-width: 991px) {
  .product-content__left {
    max-width: 300px;
  }
}
@media (max-width: 768px) {
  .product-content__left {
    display: block;
    margin: 0 auto;
  }
}
.product-labels {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px 21px;
  margin-bottom: 20px;
}
.product-labels__item {
  display: flex;
  align-items: center;
  background-color: var(--color-main);
  padding: 10px 15px;
}
.product-labels__item:first-of-type {
  background-color: var(--color-orange);
}
.product-labels__item:last-of-type {
  background-color: var(--color-green);
}
.product-labels__item p {
  color: #fff;
  margin: 0;
}
.product-h1 {
  margin-top: 0;
  margin-bottom: 21px;
}
.product-h1 h1 {
  font-size: 26px;
  line-height: 1.25;
}
.product-secondary {
  display: flex;
  align-items: center;
  column-gap: 18px;
  margin-bottom: 26px;
}
.product-code {
  background: #f2f2f2;
  padding: 12px;
  min-width: 152px;
}
.product-code p {
  text-align: center;
  color: #000;
  margin: 0;
}
.product_rating {
  padding: 8px 12px;
  min-width: 152px;
  border: var(--border);
  margin: 0;
  justify-content: center;
}
.count_rating {
  margin-left: 10px;
}
.product-group {
  display: flex;
  align-items: center;
  column-gap: 25px;
  margin-bottom: 25px;
}
.product-item-quantity {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.product-bonus {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.product-prices {
  margin-bottom: 30px;
}
.main-price {
  font-size: 26px;
}
.product-prices .special-price {
  color: #2d2d32;
  margin-right: 20px;
}
.price-old {
  margin-right: 20px;
}
.price-old:after {
  border-color: inherit;
  transform: none;
}
.product-special {
  display: flex;
  align-items: flex-end;
}
.price-label-percent.product-percent {
  margin: 0;
}
.price-label-percent.product-percent .percent-label {
  font-weight: 500;
  border-radius: 14px;
  background: #ec2424;
  padding: 4px 10px;
}
.product-control {
  column-gap: 28px;
  row-gap: 1.5rem;
}
.product-control .buttons-checkout {
  flex-grow: initial;
}
.product-control .buttons-checkout button {
  max-width: 100% !important;
  width: 272px;
  padding: 12px;
  color: #fff;
}
.product-quantity {
  margin: 0;
  width: 127px;
}
.product-quantity .stepper {
  max-width: 100%;
  background-color: var(--stepper-bg);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
}
.product-quantity .stepper__input {
  border: none;
  background-color: transparent;
  padding: 10px;
  text-align: center;
  position: relative;
  z-index: 2;
  width: 50px;
  height: 30px;
  border-radius: 5px;
}
.product-quantity .stepper__controls {
  top: 0;
  left: 16px;
  right: 16px;
  bottom: 0;
  width: calc(100% - 32px);
  height: 100%;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.product-quantity .stepper__controls button {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
}
.product-quantity .stepper__controls button:before {
  display: none !important;
}
.product-quantity .stepper__controls button[disabled] {
  opacity: 0.4;
}
#product hr {
  margin-top: 30px;
  margin-bottom: 16px;
}
.product-short__description p:last-of-type {
  margin-bottom: 0;
}
.product-short__description-title {
  margin-bottom: 15px;
}
.short-decr__link {
  margin-top: 15px;
  color: var(--color-main);
}
#product .form-group {
  margin-bottom: 20px;
}
#product .control-label {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  margin-bottom: 16px;
}
#product .input-option {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 20px;
}
#product .radio {
  margin: 0;
}
#product .radio label {
  display: flex;
  align-items: center;
  justify-content: center;
  /* width: 38px;
  height: 34px;
  padding: 0; */
  padding: 7px;
  width: fit-content;
  border: 1px solid var(--color-main);
  border-radius: 4px;
  color: #191919;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
}
#product label:has(input[type='radio']:checked) {
  color: #fff;
  background-color: var(--color-main);
}
.product-bottom .tab-nav {
  box-shadow: none;
  border: var(--border);
  padding: 22px 30px;
}
.product-bottom .tab-nav .nav-tabs li a {
  font: inherit;
  padding: 0 !important;
  margin-right: 20px !important;
}
.product-bottom .tab-nav .nav-tabs li.active {
  font-weight: 700;
  font-size: 22px;
}
.product-bottom .tab-content {
  box-shadow: none;
  border: var(--border);
  padding: 40px 30px;
}
.product-bottom #tab-description .tab-title {
  margin-bottom: 20px;
}
.product-bottom #tab-description p {
  font: inherit;
  margin-bottom: 0px;
}
.product-bottom #tab-specification table thead h3 {
  margin: 0px;
}
.product-bottom #tab-specification table thead td {
  padding: 0px;
}
.product-bottom #tab-specification table tbody tr td {
  border: none;
  padding: 20px 0px 0px;
}
.product-bottom #tab-specification table tbody tr td:first-of-type {
  text-align: left;
}
.product-bottom #tab-specification table tbody tr td:last-of-type {
  text-align: left;
}
.product-swiper__wrapper {
  position: relative;
}
#product-swiper {
  height: 500px;
  margin-bottom: 35px;
}
@media (max-width: 576px) {
  #product-swiper {
    height: 100%;
  }
}
#product-swiper .image-additional {
  margin: 0;
}
#product-swiper .swiper-wrapper {
  height: 100%;
}
#product-swiper .swiper-wrapper .swiper-slide {
  height: 100%;
}
#product-swiper .swiper-wrapper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
}
#product-swiper .swiper-wrapper .swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
}
.product-swiper__wrapper .swiper-button-next,
.product-swiper__wrapper .swiper-button-prev {
  width: 40px;
  height: 40px;
  background-image: none;
  border-radius: 50%;
  background-color: var(--stepper-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  transform: translateY(-50%);
}
.product-swiper__wrapper .swiper-button-next svg path,
.product-swiper__wrapper .swiper-button-prev svg path {
  stroke: var(--color-stepper);
}
.product-swiper__wrapper .swiper-button-prev {
  left: 0px;
}
.product-swiper__wrapper .swiper-button-next {
  right: 0px;
}
.product-swiper__wrapper .product-card-rating__icons-btns {
  z-index: 1;
}
.product-content .image-additional {
  margin-right: 16px;
  width: auto;
}
.product-content .image-additional .thumbnail,
.product-content .image-additional-main .thumbnail {
  border: none;
  margin: 0;
  padding: 0;
}
.product-review_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}
.fa-star,
.fa-star-half-o {
  font-size: 17px;
}
.fa-star,
.fa-star-half-o {
  color: orange;
}
.product-review_block {
  display: flex;
  justify-content: center;
  gap: 62px;
  margin-bottom: 30px;
}
.product-review-score {
  font-size: 64px;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  inset: 14px 0px 0px 0px;
  height: 40px;
}
.product-review-star {
  margin-bottom: 20px;
}
.star-number {
  font-size: 20px;
  font-weight: 500;
  line-height: 20px;
}
.product-review-star-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-bottom: 10px;
}
.product-review-total {
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
  color: rgba(51, 51, 51, 0.63);
}
.bar-container,
.bar {
  width: 323px;
  height: 10px;
  background-color: rgba(217, 217, 217, 1);
  text-align: center;
  color: white;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}
.bar {
  background-color: var(--color-main);
}
/* .bar-5 {
  width: 50%;
}
.bar-4 {
  width: 20%;
}
.bar-3 {
  width: 40%;
}
.bar-2 {
  width: 10%;
}
.bar-1 {
  width: 5%;
} */
.product-review-block {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.product-review-author {
  display: flex;
  gap: 40px;
  align-items: center;
  /* flex-wrap: wrap; */
}
.review-author-star {
  /* width: 100%; */
  display: flex;
  align-items: center;
  gap: 6px;
}
.product-review_footer {
  display: flex;
  gap: 26px;
}
.product-review_replay {
  position: relative;
  display: flex;
  gap: 5px;
}
.product-review_replay:after {
  content: '';
  height: 14px;
  width: 1px;
  background: rgba(161, 161, 161, 1);
  position: absolute;
  left: 122px;
  top: 5px;
}
.product-review_show-comments {
  display: flex;
  gap: 10px;
}
.product-review_comments-number {
  position: relative;
  color: white;
  z-index: 1;
  margin: 0 7px;
}
.product-review_comments-number:after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  top: -1px;
  left: -8px;
  background: var(--color-main);
  z-index: -1;
  border-radius: 50%;
}
.product-review_replay-link {
  flex: 1 0 auto;
}
.product-review_date,
.product-review_replay > a {
  color: rgba(163, 163, 163, 1);
}
.product-review_author-name {
  margin-bottom: 13px;
}
@media (max-width: 625px) {
  .product-review_block,
  .product-review-author,
  .product-review_footer {
    gap: 14px;
  }
  .product-review-right {
    max-width: 165px;
  }
  .product-review-score {
    font-size: 40px;
  }
  .product-review_show-comments,
  .product-review-total,
  .product-review_replay-comment {
    font-size: 14px;
  }
  .product-review_replay:after {
    left: 105px;
  }
  .product-review-left {
    flex: 1 0 auto;
  }
}
