div.dates.swiper {
  overflow: visible;
}
div.dates.swiper div.navigation {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: flex-end;
  margin-bottom: 30px;
  --width: 25%;
  z-index: 1;
}
div.dates.swiper div.navigation span {
  line-height: 0;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
div.dates.swiper div.navigation span svg {
  height: auto;
}
div.dates.swiper div.navigation span.swiper-button-disabled {
  opacity: 0.3;
}
div.dates.swiper div.navigation:before {
  content: "";
  height: 1px;
  background-color: rgba(147, 10, 0, 0.2);
  width: 100vw;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: -1;
}
div.dates.swiper div.navigation:after {
  content: "";
  width: var(--width);
  height: 3px;
  background-color: var(--e-global-color-primary);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: 0.3s linear;
  z-index: 0;
}
div.dates.swiper div.swiper-wrapper div.date:not(.swiper-slide-active) {
  opacity: 0.33;
}
div.dates.swiper div.swiper-wrapper div.date span {
  display: block;
  font-size: 50px;
  line-height: 70px;
  font-family: "Scalert Jazz";
  color: var(--e-global-color-primary);
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
  div.dates.swiper div.swiper-wrapper div.date span {
    font-size: 40px;
    line-height: 60px;
  }
}
@media screen and (max-width: 767px) {
  div.dates.swiper div.swiper-wrapper div.date span {
    font-size: 30px;
    line-height: 50px;
  }
}
div.dates.swiper div.swiper-wrapper div.date div.description {
  max-width: 80%;
}
div.dates.swiper div.swiper-wrapper div.date div.description p {
  color: var(--e-global-color-text);
  font-size: 17px;
  line-height: 22px;
  font-weight: 500;
}
div.dates.swiper div.swiper-wrapper div.date div.description p:last-child {
  margin-bottom: 0;
}
