.product-page {
  background: rgba(255, 255, 255, 0.84);
  padding: 50px 40px;
  margin-bottom: 10px;
  font-family: georgia, palatino, "book antiqua", "palatino linotype", serif;
}

.product-page__top {
  display: flex;
  margin-bottom: 50px;
  font-size: 15px;
  color: #404041;
}

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

.product-page__top__arrows {
  display: flex;
}

.product-page__top__arrows a {
  display: flex;
  color: #404041;
}

.product-page__top__arrows a span {
  padding: 0 5px;
}

.product-page__breadcrumbs a {
  color: #404041;
}

.product-page__breadcrumbs .current {
  opacity: 0.5;
}

.product-page__content__inner {
  display: flex;
}

.product-page__left {
  width: 100%;
  max-width: calc(100% - 350px);
  padding-right: 30px;
  font-size: 17px;
  color: #404041;
}

.product-page__left pre {
  width: 100%;
  text-overflow: ellipsis;
  white-space: pre-wrap;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  font-family: georgia, palatino, "book antiqua", "palatino linotype", serif;
}

.product-page__left pre p {
  white-space: normal;
}

.product-page__right {
  min-width: 350px;
  max-width: 350px;
}

.product-page__right h1 {
  color: #575757;
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 30px;
}

.product-page__right .price {
  display: block;
  margin-bottom: 20px;
  color: #575757;
  font-size: 20px;
}

.product-page__right .amount {
  display: block;
  margin-bottom: 10px;
  color: #575757;
  font-size: 15px;
}

.product-page__right .input-wrapper {
  color: #575757;
  margin-bottom: 30px;
  position: relative;
}

.product-page__right .input-wrapper input {
  border: 1px solid #c9c9c9;
  padding: 10px 15px;
  font-size: 15px;
}

.product-page__right button {
  line-height: 1.5;
  width: 100%;
  color: #EFF0E1;
  background-color: #A57D6B;
  font-size: 16px;
  border: none;
  padding: 10px 0;
  cursor: pointer;
}

.product-page__right button:focus {
  outline: none;
}

.product-page__comment-area {
  padding: 20px 12px 10px 12px;
  background: #eff0e1;
  color: #404041;
  font-family: georgia, palatino, "book antiqua", "palatino linotype", serif;
}

.product-page__comment-area__count {
  line-height: 1.1;
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 10px;
}

.product-page__comment-area__add-comment {
  display: flex;
}

.product-page__comment-area__add-comment__left {
  margin-right: 10px;
  position: relative;
}

.product-page__comment-area__add-comment__left img {
  width: 50px;
  height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}

.product-page__comment-area__add-comment__left .fas {
  cursor: pointer;
  opacity: 0;
  position: absolute;
  top: 2px;
  right: 2px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  color: #000;
  padding: 4px;
  transition: opacity 0.2s;
  display: inline-block;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Free" !important;
}

.product-page__comment-area__add-comment__left:hover .fas {
  opacity: 1;
}

.product-page__comment-area__add-comment__right {
  width: 100%;
}

.product-page__comment-area__add-comment__right textarea {
  width: 100%;
  height: 50px;
  resize: none;
  margin-bottom: 10px;
  border-radius: 5px;
  padding: 6px 12px;
  font-family: georgia, palatino, "book antiqua", "palatino linotype", serif;
}

.product-page__comment-area__add-comment__right .stars {
  display: flex;
}

.product-page__comment-area__add-comment__right .stars .full {
  display: none;
}

.product-page__comment-area__add-comment__right .stars .star {
  margin-right: 2px;
}

.product-page__comment-area__add-comment__right .stars .star.active .full {
  display: block;
}

.product-page__comment-area__add-comment__right .stars .star.active .empty {
  display: none;
}

.product-page__comment-area__add-comment__bottom {
  display: flex;
}

.product-page__comment-area__add-comment__bottom__left span,
.product-page__comment-area__add-comment__bottom__right span {
  margin-bottom: 10px;
  display: block;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.product-page__comment-area__add-comment__bottom__left {
  margin-right: 60px;
}

.product-page__comment-area__add-comment__bottom__right {
  width: 100%;
}

.product-page__comment-area__add-comment__bottom__right .double {
  display: flex;
}

.product-page__comment-area__add-comment__bottom__right .left {
  margin-right: 30px;
  width: 100%;
}

.product-page__comment-area__add-comment__bottom__right .left input {
  width: 100%;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 6px 12px;
  font-size: 14px;
  margin-bottom: 10px;
}

.product-page__comment-area__add-comment__bottom__right .left input:last-of-type {
  margin-bottom: 0;
}

.product-page__comment-area__add-comment__bottom__right .right button {
  color: black;
  background-image: linear-gradient(to bottom, #a57d6b, #836050);
  border: 1px solid #836050;
  padding: 6px 12px;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
}

.product-page__comment-area__add-comment__bottom__right .right button:focus {
  outline: none;
}

.product-page__comment-area__add-comment__bottom__right .right button:disabled {
  opacity: 0.7;
}

.product-page__pics {
  flex-direction: column;
  margin-bottom: 20px;
  position: relative;
}

.product-page__pics .zoom-box-container {
  position: absolute;
  right: 10px;
  top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  border-radius: 50%;
  opacity: 0.5;
}

.product-page__pics .zoomed-image {
  min-height: 500px;
  margin: 0 0 5px 0 !important;
}

.product-page__pics .sidebar {
  flex-direction: row !important;
  margin-left: 10px;
}

.product-page__pics .sidebar img, .product-page__pics .sidebar .iframe {
    position: relative;
    cursor: pointer;
  width: 50px !important;
  height: 50px;
  margin: 0 5px 0 0 !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
}

.product-page__pics .zoomed-image iframe {
    width: 100%;
    height: 500px ;
    
    
    
}






.product-page__pics .sidebar .iframe iframe {
    width: 100%;
    height: 100%;
}



.product-page__pics .sidebar .iframe .overlay {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.product-page__pics .sidebar img:last-of-type, .product-page__pics .sidebar .iframe:last-of-type {
  margin-right: 0;
}

.product-page .swiper-container {
  display: none;
}

@media (max-width: 960px) {
  .product-page {
    margin-top: 10px;
    max-width: calc(100% - 40px) !important;
  }

  .product-page__comment-area {
    max-width: calc(100% - 40px) !important;
  }

  .product-page__content__inner {
    display: block;
  }

  .product-page__top.desktop {
    display: none;
  }

  .product-page__top.mobile {
    display: block;
    margin-bottom: 30px;
  }

  .product-page__top.mobile a {
    display: flex;
    align-items: center;
  }

  .product-page__top.mobile svg {
    margin-right: 10px;
  }

  .product-page__top.mobile span {
    display: block;
    color: #404041;
    font-size: 15px;
  }

  .product-page__left {
    max-width: unset;
    padding-right: 0;
    flex-direction: column;
  }

  .product-page__right {
    max-width: unset;
    min-width: unset;
    width: 100%;
    margin-bottom: 40px;
  }

  .product-page__right.fake {
    display: none;
  }

  .product-page .swiper-container {
    display: block;
    padding-bottom: 45px;
    width: 100%;
  }

  .product-page .swiper-container img {
    max-width: 100%;
    max-height: 500px;
  }

  .product-page .swiper-container iframe {
      width: 100%;
      height: 500px;
  }

  .product-page .swiper-slide,
  .product-page__left {
    display: flex;
    justify-content: center;
  }

  .product-page .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    background: transparent;
    border-radius: 50%;
    box-shadow: #404041 0 1px 0, #404041 1px 0 0, #404041 0 -1px 0, #404041 -1px 0 0;
    margin: 5px !important;
  }

  .product-page .swiper-pagination-bullet-active {
    background: #404041;
  }

  .product-page .vanilla-zoom {
    display: none;
  }
}

@media (max-width: 800px) {
  .product-page .swiper-container img, .product-page .swiper-container iframe {
    max-height: 400px;
  }
}

@media (max-width: 600px) {
  .product-page .swiper-container img, .product-page .swiper-container iframe {
    max-height: 300px; 
  }
}


