@charset "UTF-8";
.swiper-container {
  width: 100%;
  height: 44rem;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 62em) {
  .swiper-container {
    width: 40rem;
    height: 44rem;
  }
}
.swiper-container .swiper-slide-content {
  width: 40rem;
  height: 40rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
}
.swiper-container .swiper-control {
  position: absolute;
  width: 100%;
  bottom: -11px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.swiper-container .swiper-button-prev {
  position: static;
  left: unset;
  bottom: unset;
  top: unset;
  margin-top: 0;
}
.swiper-container .swiper-button-prev::after {
  display: inline-block;
  width: 2.7rem;
  height: 4.4rem;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 2.4rem;
  background-image: url(../../images/icons/arrow-left.svg);
  font-family: unset;
  filter: invert(39%) sepia(5%) saturate(2089%) hue-rotate(184deg) brightness(93%) contrast(82%);
}
.swiper-container .swiper-button-next {
  position: static;
  left: unset;
  bottom: unset;
  top: unset;
  margin-top: 0;
}
.swiper-container .swiper-button-next::after {
  display: inline-block;
  width: 2.7rem;
  height: 4.4rem;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 2.4rem;
  background-image: url(../../images/icons/arrow-right.svg);
  font-family: unset;
  filter: invert(39%) sepia(5%) saturate(2089%) hue-rotate(184deg) brightness(93%) contrast(82%);
}
.swiper-container .swiper-pagination-bullets {
  display: flex;
  justify-content: center;
  position: static;
  left: unset;
  bottom: unset;
  top: unset;
  margin: 0;
  width: 6rem;
}
.swiper-container .swiper-pagination-bullets .swiper-pagination-bullet {
  display: none;
}
.swiper-container .swiper-pagination-bullets .swiper-pagination-bullet-active {
  display: block;
  width: auto;
  height: 2rem;
  margin: 0;
  text-align: center;
  line-height: 2rem;
  font-size: 1.4rem;
  color: #121212;
  opacity: 1;
  background: white;
}

.product-image-popup {
  display: none;
}
.product-image-popup.show-popup {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}
.product-image-popup-block {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-height: 90vh;
}
.product-image-popup-block-exit {
  text-align: right;
  font-size: 5rem;
  color: white;
  top: 5px;
  position: absolute;
  right: 20px;
  z-index: 1000;
}
.product-image-popup-block-exit span {
  cursor: pointer;
}
.product-image-popup-block-exit span:hover {
  color: #794394;
}
.product-image-popup-block-content {
  display: flex;
  justify-content: center;
  max-height: 90vh;
}
.product-image-popup-block-content img {
  box-shadow: 0 0 15px #404040;
  max-height: 90vh;
}

.ajax-progress,
.ajax-progress-throbber,
.ajax-progress-fullscreen {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border-radius: 0;
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999999 !important;
  overflow: hidden;
  text-indent: -99999em;
}

.ajax-progress-throbber {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  bottom: 0 !important;
}

.ajax-progress-throbber:before,
.ajax-progress-fullscreen:before {
  content: " ";
  display: block;
  width: 120px;
  height: 120px;
  animation: spin 0.8s infinite linear;
  border-radius: 120px;
  border-width: 10px;
  border-style: solid;
  border-color: #794394 transparent #794394 transparent;
  overflow: hidden;
  text-indent: -99999em;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}