.swiper .swiper-button-prev, .swiper .swiper-button-next {
  top: var(--swiper-navigation-top-offset, 43%);
}
.swiper-zoom-container {
  align-items: unset !important;
}
.swiper-zoom-container img {
  overflow: hidden;
  max-height: unset !important;
}
.popup-container {
  display: none;
  z-index: 1000;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: hide 0.3s;
}
@media (max-width: 1200px) {
  .popup-container {
    flex-direction: column-reverse;
    justify-content: flex-end;
  }
}
.popup-sidebar {
  width: 15vw;
  height: 60vh;
  display: flex;
  flex-direction: column;
  z-index: 1500;
}
.popup-sidebar .slide-sidebar {
  max-width: 12vw !important;
  max-height: 8vw !important;
  aspect-ratio: 1.3333333333;
}
.popup-sidebar .swiper-wrapper {
  align-items: center;
  height: 70vh;
  margin-top: 10vh;
  margin-bottom: 10vh;
}
.popup-sidebar .swiper-wrapper .swiper-slide {
  height: 100% !important;
}
@media (max-width: 1200px) {
  .popup-sidebar {
    display: none;
  }
}
.sidebar-slide-prev, .sidebar-slide-next {
  width: 13vw !important;
  height: 5vw !important;
  opacity: 1 !important;
  transition: 0.3s;
}
.sidebar-slide-prev svg, .sidebar-slide-next svg {
  rotate: 90deg !important;
  width: 50px !important;
  height: 50px !important;
}
.sidebar-slide-prev svg path, .sidebar-slide-next svg path {
  stroke: white;
  transition: 0.3s;
}
.sidebar-slide-prev:hover > svg, .sidebar-slide-next:hover > svg {
  opacity: 0.6;
}
.sidebar-slide-prev {
  top: 3vh !important;
  left: 1vw !important;
}
.sidebar-slide-next {
  left: 1vw !important;
  top: 91vh !important;
}
.popup-content {
  width: 80%;
  display: flex;
  align-content: center;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.popup-content .swiper-wrapper {
  width: 100%;
  height: 100%;
  aspect-ratio: 1.7777777778;
}
@media (orientation: landscape) {
  .popup-content .swiper-wrapper .swiper-slide {
    width: 100% !important;
  }
}
@media (max-width: 1200px) {
  .popup-content .swiper-wrapper {
    height: auto;
  }
}
.popup-content .swiper-pagination {
  color: white;
  top: -6.5vh;
  font-family: Geologica;
  font-size: 16px;
  font-style: normal;
  font-weight: 100;
  line-height: normal;
  height: 5vh;
}
@media (orientation: landscape) {
  .popup-content .swiper-pagination {
    position: absolute;
    top: 4vh;
  }
}
@media (max-width: 1200px) {
  .popup-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: absolute;
    margin: 20.2% auto;
    height: 80%;
  }
}
@media (orientation: landscape) and (max-width: 1200px) {
  .popup-content {
    gap: 0;
    height: 100%;
  }
}
@media (max-width: 1200px) {
  .popup-content {
    width: 100%;
  }
}
.popup-close {
  width: 5rem;
  height: 100%;
  transition: 0.3s all;
  position: absolute;
  z-index: 500;
  left: 95vw;
}
.popup-close svg {
  margin: 1vw;
  width: 48px;
  height: 48px;
}
.popup-close svg path {
  stroke: white;
}
.popup-close svg:hover path {
  stroke: #C8C8C8;
  transition: 0.3s all;
}
@media (max-width: 1200px) {
  .popup-close {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    width: 100vw;
    height: 10vh;
    left: 0;
  }
  .popup-close svg {
    width: 23px;
    height: 23px;
    margin: 20px;
  }
}
@media (orientation: landscape) and (max-width: 1200px) {
  .popup-close {
    position: absolute;
    z-index: 1500;
    margin-bottom: 0;
    top: 0;
  }
}
.popup-background {
  display: none;
  width: 102vw;
  height: 150vh;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  filter: blur(6px);
}
.popup-title-container {
  display: none;
  color: #fff;
  width: 80vw;
  margin: auto;
  margin-bottom: 3vh;
  position: absolute;
  z-index: 1600;
  top: 86vh;
  left: 5vw;
}
.popup-title-container .popup-title {
  font-family: Geologica;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.popup-title-container .popup-price {
  font-family: Geologica;
  font-size: 16px;
  font-style: normal;
  font-weight: 100;
  line-height: normal;
}
@media (max-width: 1200px) {
  .popup-title-container {
    display: block;
  }
}
@media (orientation: landscape) and (max-width: 1200px) {
  .popup-title-container {
    position: absolute;
    z-index: 1500;
    top: -1vh;
    left: 2vw;
  }
}
.show-popup {
  display: flex;
  animation: show 0.5s;
}
@media (orientation: landscape) and (max-width: 1200px) {
  .show-popup {
    justify-content: center;
  }
}
.show-background-img {
  display: block;
}
@keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes hide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
