.wavegarden-hot-spots {
  display: flex;
  position: relative;
  align-items: flex-start;
  justify-content: flex-end;
}

.wavegarden-hot-spots .swiper-main-container {
  overflow: hidden;
  position: relative;
  padding: 50px;
  padding-left: 0;
  background: rgba(255,255,255,.9)
}

.wavegarden-hot-spots {
  counter-reset: card;
}

.wavegarden-hot-spots .swiper-slide::before {
  counter-increment: card; 
  content: counter(card); 
  font-size: 1.4rem;
  font-weight: 400;
}

.wavegarden-hot-spots .swiper-slide:nth-child(-n+9)::before {
  content: '0' counter(card);
}

.wavegarden-hot-spots .swiper-nav-map {
  display: flex;
  gap: 25px;
  position: absolute;
  bottom: 10px;
  left: 50px;
  z-index: 3;
}

.wavegarden-hot-spots .swiper-nav-map .swiper-button-disabled {
  opacity: .3;
}

.wavegarden-hot-spots .swiper-nav-map > div {
  cursor: pointer;
}

.wavegarden-hot-spots .image-map-wrapper {
  width: 60%;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

@keyframes show-slides {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes hide-slides {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.wavegarden-hot-spots .swiper-main-container {
  width: 40%;
  max-width: 800px;
  max-height: 1000px;
  margin-right: 0%;
  animation: show-slides .5s;
  transition: all .5s ease-in;
}

.wavegarden-hot-spots .swiper-main-container.hidden-slider {
  width: 0;
  max-height: 0;
  animation: hide-slides .5s;
  margin-left: 0;
  transition: all .5s ease-out;
  padding: 0;
}

.wavegarden-hot-spots .close-slider {
  z-index: 10;
  right: 50px;
  top: 15px;
  position: absolute;
  font-size: 30px;
  cursor: pointer;
}

.wavegarden-hot-spots .swiper-wrapper {
  align-items: flex-start;
}

.wavegarden-hot-spots .swiper-wrapper .swiper-slide {
  max-width: 100%;
  overflow-y: auto;
  padding: 25px;
  position: relative;
}

.wavegarden-hot-spots .swiper-wrapper .swiper-slide > *:first-child {
  margin-top: 0;
}

.wavegarden-hot-spots .swiper-main-container::before {
  bottom: auto;
  top: 0;
  background: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
}

.wavegarden-hot-spots img {
  width: 100%;
}

.wavegarden-hot-spots .swiper-pagination-bullets {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  overflow: hidden;
}

.wavegarden-hot-spots .swiper-pagination-bullets .swiper-pagination-bullet {
  position: absolute;
  transform: translate(-50%,-50%);
  z-index: 1;
  margin: 0;
}

.wavegarden-hot-spots .block-trick .swiper-pagination-bullet {
  display: none;
}

/** labels */
.wavegarden-hot-spots .swiper-pagination-bullet.swiper-pagination-bullet-as-label {
  padding: 10px 25px;
  position:static;
  border:none;
  transform:none;
  width:auto;
  height:auto;
  animation:none;
  padding:10px 25px;
  border-radius:50px;
  background:#f5f5f5;
}

.wavegarden-hot-spots .swiper-pagination-bullet.swiper-pagination-bullet-as-label::before {
  font-size: 22px;
  font-weight: 600;
  color:black;
  border:none;
  background: transparent; 
  transform: none; 
  width: auto; 
  height: auto; 
  border-radius: 0; 
  position: static; 
  display: block;
}

.swiper-pagination-bullet.swiper-pagination-bullet-as-label.swiper-pagination-bullet-active,
.swiper-pagination-bullet.swiper-pagination-bullet-as-label.swiper-pagination-bullet-active:before,
.swiper-pagination-bullet-active .swiper-pagination-bullet-as-label,
.swiper-pagination-bullet-as-label:hover {
  background:black;
  color: white;
}


/** animation */

@keyframes expand {
  0% {
       box-shadow: 0px 0px 0px 1px rgba(0,0,0,0.1);
  }
  100% {
    box-shadow: 0px 0px 0px 25px rgba(0,0,0,0);
  }
}

.wavegarden-hot-spots .swiper-pagination-bullet {
  animation: expand 2.5s infinite;
  background-color: transparent;
  border: 6px solid rgba(0,0,0,.2);
  border-radius: 100%;
  height: 55px;
  width: 55px;
  opacity: 1;
}

.wavegarden-hot-spots .swiper-pagination-bullet:before {
  position: absolute;
  bottom: 50%;
  right: 50%;
  transform: translate(50%,50%);
  background: #000;
  border-radius: 100%;
  content: "";
  height: 35px;
  width: 35px;
  color: white;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wavegarden-hot-spots .swiper-pagination-bullet:hover {
  background: #000;
}

.wavegarden-hot-spots .swiper-pagination-bullet:hover:before {
  color: white!important;
}

.wavegarden-hot-spots .swiper-pagination-bullet-active:before{
  border: 5px solid rgba(255,255,255,1);
  height: 35px;
  width: 35px;
}

/** mobile */
@media(max-width: 1023px){

  .wavegarden-hot-spots .image-map-wrapper {
    width: 100%;
  }

  .wavegarden-hot-spots .swiper-wrapper .swiper-slide {
    border-top: none;
  }
  
  .wavegarden-hot-spots .swiper-main-container {
    position: fixed;
    right: 0;
    left: 0;
    bottom: 0;
    top: 20vh;
    width: auto;
    background: white;
    padding: 10vw;
    z-index: 10;
    opacity: .95;
    margin-left: 0;
    max-width: none;
  }
  .wavegarden-hot-spots .swiper-main-container.hidden-slider {
    left: auto;
    margin-right: -500px;
    display: none;
    padding: 0;
  }
  .wavegarden-hot-spots .swiper-slide-next::before {
    content: none;
  }
  .wavegarden-hot-spots .wavegarden-hot-spots .swiper-nav-map {
    bottom: 15px;
    left: 15px;
  }

  /** bullets */
  .wavegarden-hot-spots .swiper-pagination-bullet:before {
    font-size: 13px;
    height: 21px;
    width: 21px;
  }

  /** animation */

  .wavegarden-hot-spots .swiper-pagination-bullet {
    height: 41px;
    width: 41px;
  }

  /** labels */
  .wavegarden-hot-spots .swiper-pagination-bullet.swiper-pagination-bullet-as-label::before {
    font-size: 16px;
  }

}
