.reportsSwiper {
  width: 100%;
  height: 590px;
  padding: 2rem 0;
  /* cursor: url('https://6792424.fs1.hubspotusercontent-na1.net/hubfs/6792424/img/icon/swipe-cursor.svg'), auto; */
}

@media screen and (min-width: 470px) and (max-width: 1200px) {
  .reportsSwiper {
    height: 640px;
  }
}

@media screen and (min-width: 1201px) {
  .reportsSwiper {
    height: 640px;
  }
}

.reports-swiper-slide {
  background: #D4DEEA;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  border-radius: 24px;
  transition: 200ms ease;
  background-position: bottom;
  background-size: contain;
  height: 100%;
  overflow: hidden;
  /* cursor: url('https://6792424.fs1.hubspotusercontent-na1.net/hubfs/6792424/img/icon/swipe-cursor.svg'), auto; */
}
.reports-swiper-slide > div {
  padding: 1.8rem;
}

.reports-swiper-slide.health {
  background: #DDEDFB;
}
.reports-swiper-slide.ancestry {
  background: #F2F5FA;
}
.reports-swiper-slide.allergy {
  background: #FCEAD4;
}

.reports-swiper-slide img {
  display: block;
  width: 100%;
  position: absolute;
  object-fit: contain;
  bottom: 0;
  left: 0;
}

.swipe-indicator {
  position: absolute;
  bottom: 3.7rem;
  left: 1.8rem;
  animation: blink 2000ms ease-in-out alternate infinite;
  background: #1696e7;
  color: white;
  border-radius: 25px;
  height: 3.2rem;
  display: flex;
  align-items: center;
  padding-left: 0.75rem;
  padding-right: 1rem;
  z-index: 2;
  pointer-events: none;
}
.swipe-indicator img {
  animation: spin 4s ease infinite;
}

.reports-swiper-slide button {
  border: none;
  background: #1696e7;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  width: 3rem;
  color: white;
  position: absolute;
  bottom: 1.8rem;
  left: 1.8rem;
}
.reports-swiper-slide:hover {
  /* transform: scale(1.025); */
  cursor: pointer;
  /* cursor: url('https://6792424.fs1.hubspotusercontent-na1.net/hubfs/6792424/img/icon/swipe-cursor.svg'), auto; */
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.1);
}
.reports-swiper-slide button img {
  width: 70%;
  position: relative;
}

.filter {
  border: none;
  display: inline-block;
  border-radius: 50px;
  padding: 6px 12px;
  background: none;
  transition: all 300ms ease;
  color: #242424;
}
.filter.active,
.filter:hover {
  background: #EFF3F8;
}

@media screen and (min-width: 992px) {
  .filter {
    padding: 6px 18px;
  }
}

.swiper-nav-button {
  background-color: white;
  width: 80px;
  height: 80px;
  border-radius: 50px;
  display: block;
  position: absolute;
  top: calc(50% - 30px);
  z-index: 9;
  border: 1px solid white;
  animation: pulse 1000ms ease alternate infinite;
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.1);
  transition: opacity 400ms ease;
}
.swiper-prev-button {
  left: 1rem;
  background-color: white;
  width: 80px;
  height: 80px;
  border-radius: 50px;
  display: block;
  position: absolute;
  top: calc(50% - 30px);
  z-index: 9;
  border: 1px solid white;
  animation: pulse 1000ms ease alternate infinite;
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.1);
  transition: opacity 400ms ease;
}
.swiper-next-button {
  right: 1rem;
  background-color: white;
  width: 80px;
  height: 80px;
  border-radius: 50px;
  display: block;
  position: absolute;
  top: calc(50% - 30px);
  z-index: 9;
  border: 1px solid white;
  animation: pulse 1000ms ease alternate infinite;
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.1);
  transition: opacity 400ms ease;
}
.reports-swiper-wrapper:hover .swiper-prev-button,
.reports-swiper-wrapper:hover .swiper-next-button {
  opacity: 1;
}
@media screen and (min-width: 992px) {
  .swiper-next-button {
    opacity: 0;
    right: 1.5rem;
  }
  .swiper-prev-button {
    opacity: 0;
    left: 1.5rem;
  }
}

.swiper-button-disabled {
  display: none;
}

/* Only show the button on hover when it's NOT disabled */
.reports-swiper-wrapper:hover .swiper-prev-button:not(.swiper-button-disabled) {
  opacity: 1;
}

/* Keep the button hidden when it's disabled, even on hover */
.reports-swiper-wrapper:hover .swiper-prev-button.swiper-button-disabled {
  opacity: 0;
}

@keyframes blink {
  from { background-color: #A320AE; }
  to { background-color: #3E2C86; }
}

@keyframes spin {
  0% { transform: rotate(0deg)}
  75% { transform: rotate(0deg)}
  100% { transform: rotate(360deg)}

}

@keyframes pulse {
  from { transform: scale(1) }
  to { transform: scale(1.1); } 
}