.swiper {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 13;

  height: 60%;
  width: 50vw;
  /* height: 100%; */

  box-sizing: border-box;

  /* overflow: visible !important; */
  transition: all 0.5s ease;

  /* border: solid blue; */

  padding-top: 50px;
}

.zoom-swiper {
  position: absolute;
  cursor: zoom-in;

  width: fit-content;
  border: solid var(--highlightsmall);
  /* background-color: #F986E2; */
  background-color: var(--highlightsmall);
  color: white;
  font-family: Krona;
  font-size: 20px;
  border-radius: 50%;
  top: 0;
  z-index: 20;

  display: flex;
  padding: 5px;
  margin: 10px;

  transition: transform 0.25s ease;

  opacity: 1;
  pointer-events: auto;
}

.zoom-swiper:hover {
  transform: scale(1.1);
}

.zoom-swiper-active {
  opacity: 0;
  pointer-events: none;
}

.zoom-plus {
  height: 20px;
  width: 20px;
}

.swipercrosshair {
  position: fixed;
  transform: translateX(-100%);
  top: 90px;
  left: calc(20vw - 20px);
  /* left: 75px; */
  width: 70px;
  height: 70px;

  cursor: pointer;
  z-index: 60;

  transition: all 0.25s ease;

  transform-origin: -50%;
}

.swipercrosshair:hover {
  transform: scale(1.05) translateX(-100%);
}

.swiper-min {
  /* cursor: zoom-in; */
  transition: transform 0.25s ease;
}

.swiper-min:hover {
  transform: scale(1.05) transform: translateY(-50%);;
}

.swiper:hover {
    /* width: 70vw;
    height: 100%;
    z-index: 50; */
  /* width: calc(50vw + 20px); */
}

.swiper-max {
  width: calc(80vw);
  height: 100%;
  z-index: 50;
}

.swiper:hover ~ .swiper-background {
  /* opacity: 0.5; */
}

/* .threejs-element {
  z-index: 0;
} */

.swiper-background {
  top: 0;
  left: 0;
  position: fixed;
  height: 100vh;
  width: 100vw;
  background-color: black;
  opacity: 0;
  z-index: 12;

  transition: opacity 0.8s ease;
  pointer-events: none;
}

.swiper-background-blur {
  top: 0;
  left: 0;
  position: fixed;
  height: 100vh;
  width: 100vw;
  /* background-color: black; */
  opacity: 0;
  z-index: 12;

  /* transition: opacity 0.8s ease; */
  pointer-events: none;

  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

:root {

  --swiper-pagination-color: var(--highlightsmall);
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;

}

.swiper-pagination {
  /* bottom: -20px !important; */
  /* transform: translateY(20px); */
}

.swiper-button-prev {
    background-image: url("/assets/img/arrow-left.svg") !important;
    width: 50px;

    /* filter: invert(57%) sepia(44%) saturate(6350%) hue-rotate(257deg) brightness(100%) contrast(102%); */
    filter: invert(100%);
}

.swiper-button-next {
  background-image: url("/assets/img/arrow-right.svg") !important;
  width: 50px;

  /* filter: invert(57%) sepia(44%) saturate(6350%) hue-rotate(257deg) brightness(100%) contrast(102%); */
  filter: invert(100%);
}

.swiper-button-next::after, .swiper-button-prev::after {
    content: "";
}

.swiper-button-disabled {
  opacity: 0 !important;
}

.swiper-wrapper {
  display: flex;
  align-items: center;
}

.closediv {
  position: absolute;
  right: 10px;
  transform: translateY(80%);

  opacity: 0;
  pointer-events: none;

  z-index: 1;

  cursor: pointer;
}

.swiper-slide {
  width: 100%;
  height: 100%;

  text-align: center;
  font-size: 18px;
  /* background: #fff; */

  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;

    flex-direction: column;
    /* border: solid blue; */


}

.swiper-slide img {
  /* display: block;
  width: 100%;
  object-fit: contain; */

  display: block;
  width: auto;
  max-width: 100%;
  /* height: 100%; */
  /* max-height: 90%; */
  object-fit: contain;

}

.portrait {
  height: 100%;
}
