.product-page {
  display: flex;
  margin-bottom: 60px;
}

.product-back {
  padding: 7px 14px;
}

.product-page__article {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 18px;
  color: #828282;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .product-page__article {
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 20px;
  }
}
.product-labels {
  display: flex;
  margin-bottom: 20px;
}
.product-labels .product-label {
  margin-right: 10px;
}
.product-labels .product-label:last-child {
  margin-right: 0;
}

.product-label {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 18px;
  padding: 4px 8px;
  border: 1px solid;
  border-radius: 4px;
}
.product-label.is-orange {
  border-color: #EC6608;
  color: #EC6608;
}
.product-label.is-purple {
  border-color: #604696;
  color: #604696;
}

@media screen and (max-width: 767px) {
  .product-label {
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 16px;
  }
}
.product-info__prices {
  display: flex;
  align-items: flex-end;
  margin-bottom: 20px;
}
.product-info__prices .discounted {
  font-style: normal;
  font-weight: bold;
  font-size: 32px;
  line-height: 36px;
  margin-right: 10px;
}
.product-info__prices .original {
  font-size: 20px;
  line-height: 30px;
  color: #828282;
  -webkit-text-decoration-line: line-through;
          text-decoration-line: line-through;
  padding-bottom: 1px;
}

@media screen and (max-width: 767px) {
  .product-info__prices .discounted {
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 24px;
    margin-right: 10px;
  }
  .product-info__prices .original {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 20px;
  }
}
.product-info__stock {
  margin-bottom: 20px;
}

.product-page__info {
  width: 100%;
  max-width: 480px;
}

@media screen and (max-width: 1023px) {
  .product-page__info {
    width: 100%;
    max-width: 100%;
  }
}
.product-info__buy {
  display: flex;
  width: 380px;
  margin-bottom: 20px;
}

.product-counter-container {
  display: flex;
}
.product-counter-container .counter {
  flex: 0 0 138px;
  margin-right: 10px;
}

@media screen and (max-width: 1023px) {
  .product-info__buy {
    width: 100%;
  }
  .product-info__buy .buy-btn {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    padding: 14px;
  }
  .product-counter-container {
    width: 100%;
  }
}
@media screen and (max-width: 320px) {
  .product-info__buy .buy-btn {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    padding: 12px;
    white-space: nowrap;
  }

  .buy-btn.is-icon-right svg {
    margin-left: 2px;
  }
}
.product-info__1click {
  width: 380px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
}
.product-info__1click .btn {
  margin-right: 10px;
}

.product-info__description {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 40px;
}

.product-info__properties {
  margin-bottom: 40px;
}

.properties-title {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 10px;
}

.properties-list {
  width: 380px;
}
.properties-list table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}
.properties-list table tr td {
  padding: 10px 10px;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  color: #333333;
  width: 50%;
  border-bottom: 1px solid #E0E0E0;
}
.properties-list table tr td:first-child {
  padding-left: 0;
}
.properties-list table tr td:last-child {
  padding-right: 0;
}
.properties-list.is-stock table tr td:first-child {
  width: 80%;
}

@media screen and (max-width: 767px) {
  .product-info__properties {
    margin-bottom: 20px;
  }

  .properties-list {
    width: 100%;
  }
}
.how-to-buy a.btn {
  width: auto;
  display: inline-flex;
  color: #008FD5;
  text-decoration: none;
  padding-right: 12px;
  padding-left: 12px;
}
.how-to-buy a.btn .btn__icon {
  margin-right: 8px;
}

.product-page__gallery {
  margin-right: 20px;
}

.gallery {
  display: flex;
}
.gallery__list {
  display: flex;
  flex-direction: column;
  margin-right: 20px;
}
.gallery__item {
  text-decoration: none;
  border: 1px solid transparent;
  box-sizing: border-box;
  border-radius: 4px;
  margin-bottom: 20px;
  width: 80px;
  height: 80px;
  padding: 3px;
}
.gallery__item:last-child {
  margin-bottom: 0;
}
.gallery__item.is-active {
  border-color: #E0E0E0;
}
.gallery__item img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.gallery__main {
  width: 580px;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery__main img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}
.gallery__main .empty-image {
  width: 200px;
}

.product-page__gallery-mobile {
  display: none;
}

@media screen and (max-width: 1023px) {
  .gallery {
    display: none;
  }

  .product-page__gallery-mobile {
    display: block;
  }

  .gallery-mobile__item {
    height: 480px;
    text-align: center;
    position: relative;
  }
  .gallery-mobile__item img {
    -o-object-fit: cover;
       object-fit: cover;
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
@media screen and (max-width: 767px) {
  .gallery-mobile__item {
    height: 260px;
  }
}
@media screen and (max-width: 1023px) {
  .product-page {
    flex-direction: column;
    margin-bottom: 20px;
  }
}
