/*lightbox*/

body.lightbox-open {
  overflow: hidden;
}

.lightbox-swiper-modal {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.lightbox-swiper-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  z-index: 10;
}
.lightbox-swiper-close:after {
  content: '';
  display: block;
  width: 40px;
  height: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='42' height='42' fill='none' viewBox='0 0 42 42'%3E%3Cpath fill='%23fff' d='M.257 40.373 40.486.144l1.257 1.257L1.514 41.63.257 40.373Z'/%3E%3Cpath fill='%23fff' d='m1.514.146 40.229 40.229-1.257 1.257L.257 1.403 1.514.146Z'/%3E%3C/svg%3E");
  background-size: contain;
}

.lightbox-swiper-backdrop {
  position: absolute;
  z-index: 1;
  inset: 0;
  background-color: rgba(0,0,0,.8);
}

.lightbox-swiper-container {
  padding: 60px;
  width: 100%;
}

.lightbox-swiper-modal .lightbox-swiper-slide {
  height: calc(100vh - 120px);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lightbox-swiper-slide-content {
  display: inline;
  width: auto;
  max-width: 100%;
  max-height: 100%;
  flex: 0 1 auto;
  height: auto;
  background: #000;
  position: relative;
}

.lightbox-swiper-slide-content::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  margin-top: -24px;
  margin-left: -24px;
  border: 5px solid rgba(44,154,84,0.2);
  border-top: 5px solid var(--primary, #2C9A54);
  border-radius: 50%;
  animation: spinner-overlay 0.8s linear infinite;
  z-index: 2;
  pointer-events: none;
}


.lightbox-swiper-img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

.lightbox-swiper-button-next {
  position: absolute;
  z-index: 10;
  top: 50%;
  right: 20px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 18px;
  color: #fff;
  cursor: pointer;
}
.lightbox-swiper-button-next:after {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='m10 20l8-8l-8-8l-1.414 1.414L15.172 12l-6.586 6.586z'/%3E%3C/svg%3E");;
  background-size: contain;
}
.lightbox-swiper-button-next.swiper-button-lock {
  display: none;
}

.lightbox-swiper-button-prev {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 20px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 18px;
  color: #fff;
  cursor: pointer;
}
.lightbox-swiper-button-prev:after {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='m14 20l-8-8l8-8l1.414 1.414L8.828 12l6.586 6.586z'/%3E%3C/svg%3E");
  background-size: contain;
}
.lightbox-swiper-button-prev.swiper-button-lock {
  display: none;
}

.lightbox-swiper-slide-content iframe {
  aspect-ratio: 16/9;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  position: relative;
  z-index: 10;
}

.lightbox-swiper-img {
  position: relative;
  z-index: 10;
}

@media (max-width: 767px) {
  .lightbox-swiper-close {
    top: 10px;
    right: 10px;
  }
  .lightbox-swiper-button-next,
  .lightbox-swiper-button-prev {
    display: none;
  }
  .lightbox-swiper-container {
    padding: 16px 0;
  }
  .lightbox-swiper-modal .lightbox-swiper-slide {
    height: calc(100vh - 60px);
  }
}

.lightbox-swiper .swiper-button-disabled {
  opacity: 0.25; /* Ð½Ðµ display:none, Ñ‡Ñ‚Ð¾Ð±Ñ‹ Ð½Ðµ Ð±Ñ‹Ð»Ð¾ ÑÐ»ÑƒÑ‡Ð°Ð¹Ð½Ð¾Ð³Ð¾ ÐºÐ»Ð¸ÐºÐ° */
  cursor: default;
}

.lightbox-swiper-slide-content_video-vertical iframe {
  /*aspect-ratio: 8 / 16;*/
  aspect-ratio: 1101 / 2104;
  width: auto;
  height: 100vh;
}

/*lightbox end*/