.zdrs-editor-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 180px;
  padding: 24px;
  border: 1px dashed rgba(0, 0, 0, 0.25);
  background: #f7f7f7;
  color: #444;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

.zdrs-slider,
.zdrs-slider * {
  box-sizing: border-box;
}

.zdrs-slider {
  --zdrs-height: 520px;
  --zdrs-speed: 500ms;
  --zdrs-overlay: transparent;
  position: relative;
  width: 100%;
  height: var(--zdrs-height);
  overflow: hidden;
  direction: ltr;
  isolation: isolate;
  outline: none;
}

.zdrs-viewport,
.zdrs-track,
.zdrs-slide,
.zdrs-media,
.zdrs-media-link,
.zdrs-picture,
.zdrs-picture img {
  width: 100%;
  height: 100%;
}

.zdrs-viewport {
  overflow: hidden;
}

.zdrs-track {
  display: flex;
  transition: transform var(--zdrs-speed) ease;
  will-change: transform;
}

.zdrs-slide {
  position: relative;
  flex: 0 0 100%;
  overflow: hidden;
  background: #f5f5f5;
}

.zdrs-media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.zdrs-media-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.zdrs-picture {
  display: block;
}

.zdrs-picture img {
  display: block;
  object-fit: cover;
  object-position: center center;
}

.zdrs-has-overlay .zdrs-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  background: var(--zdrs-overlay);
}

.zdrs-effect-fade .zdrs-track {
  display: block;
  position: relative;
  transform: none !important;
}

.zdrs-effect-fade .zdrs-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--zdrs-speed) ease;
  z-index: 0;
}

.zdrs-effect-fade .zdrs-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.zdrs-content {
  --zdrs-content-x: 50%;
  --zdrs-content-y: 50%;
  position: absolute;
  left: var(--zdrs-content-x);
  top: var(--zdrs-content-y);
  z-index: 20;
  display: block !important;
  width: max-content;
  max-width: min(720px, calc(100% - 32px));
  transform: translate(-50%, -50%);
  direction: inherit;
  text-align: center;
  pointer-events: none;
  visibility: visible !important;
  opacity: 1 !important;
}

.zdrs-content-inner {
  position: relative;
  z-index: 21;
  display: block !important;
  padding: 24px;
  pointer-events: auto;
  visibility: visible !important;
  opacity: 1 !important;
}

.zdrs-eyebrow {
  position: relative;
  z-index: 22;
  display: block !important;
  margin: 0 0 8px;
  font-size: clamp(12px, 1.2vw, 15px);
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}

.zdrs-title,
.zdrs-heading {
  position: relative;
  z-index: 22;
  display: block !important;
  margin: 0 0 10px;
  font-size: clamp(24px, 4vw, 56px);
  line-height: 1.15;
  font-weight: 800;
  color: #fff;
}

.zdrs-subheading {
  position: relative;
  z-index: 22;
  display: block !important;
  margin: 0 0 10px;
  font-size: clamp(16px, 2.2vw, 28px);
  line-height: 1.35;
  font-weight: 600;
  color: #fff;
}

.zdrs-description,
.zdrs-text {
  position: relative;
  z-index: 22;
  display: block !important;
  margin: 0 0 18px;
  font-size: clamp(14px, 1.8vw, 20px);
  line-height: 1.7;
  color: #fff;
}

.zdrs-button {
  position: relative;
  z-index: 22;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 22px;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 180ms ease, opacity 180ms ease;
}

.zdrs-button:hover,
.zdrs-button:focus-visible {
  color: #111;
  transform: translateY(-1px);
  opacity: 0.95;
}

.zdrs-slider .zdrs-slide.is-active .zdrs-content,
.zdrs-slider .zdrs-slide.is-active .zdrs-content-inner,
.zdrs-slider .zdrs-slide.is-active .zdrs-eyebrow,
.zdrs-slider .zdrs-slide.is-active .zdrs-title,
.zdrs-slider .zdrs-slide.is-active .zdrs-heading,
.zdrs-slider .zdrs-slide.is-active .zdrs-subheading,
.zdrs-slider .zdrs-slide.is-active .zdrs-description,
.zdrs-slider .zdrs-slide.is-active .zdrs-text,
.zdrs-slider .zdrs-slide.is-active .zdrs-button {
  visibility: visible !important;
  opacity: 1 !important;
}


.zdrs-slider .zdrs-content,
.zdrs-slider .zdrs-content * {
  visibility: visible !important;
}

.zdrs-slider .zdrs-eyebrow,
.zdrs-slider .zdrs-title,
.zdrs-slider .zdrs-heading,
.zdrs-slider .zdrs-subheading,
.zdrs-slider .zdrs-description,
.zdrs-slider .zdrs-text {
  opacity: 1 !important;
  transform: none !important;
}

.zdrs-slider .zdrs-button,
.zdrs-slider .zdrs-button:hover,
.zdrs-slider .zdrs-button:focus {
  text-decoration: none !important;
}

.zdrs-hotspots {
  position: absolute;
  inset: 0;
  z-index: 25;
  pointer-events: none;
}

.zdrs-hotspot {
  position: absolute;
  left: var(--zdrs-hotspot-x);
  top: var(--zdrs-hotspot-y);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transform: translate(-50%, -50%);
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
}

.zdrs-hotspot-dot {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.zdrs-hotspot-dot::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 42%;
  height: 42%;
  border-radius: inherit;
  background: #111;
  transform: translate(-50%, -50%);
}

.zdrs-hotspot-dot::after {
  content: '';
  position: absolute;
  inset: -9px;
  border: 2px solid #fff;
  border-radius: inherit;
  opacity: 0;
  animation: zdrsPulse 1.8s ease-out infinite;
}

.zdrs-hotspot-tooltip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  width: max-content;
  max-width: min(260px, calc(100vw - 48px));
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(17, 17, 17, 0.92);
  color: #fff;
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
  white-space: normal;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 6px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  pointer-events: none;
}

.zdrs-hotspot-tooltip::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 100%;
  width: 0;
  height: 0;
  border: 7px solid transparent;
  border-top-color: rgba(17, 17, 17, 0.92);
  transform: translateX(-50%);
}

.zdrs-hotspot:hover .zdrs-hotspot-tooltip,
.zdrs-hotspot:focus-visible .zdrs-hotspot-tooltip,
.zdrs-hotspot.is-open .zdrs-hotspot-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.zdrs-arrow {
  position: absolute;
  top: 50%;
  z-index: 30;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 24px;
  line-height: 44px;
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 180ms ease, opacity 180ms ease;
}

.zdrs-arrow:hover,
.zdrs-arrow:focus-visible {
  transform: translateY(-50%) scale(1.06);
  opacity: 0.95;
}

.zdrs-prev {
  left: 16px;
}

.zdrs-next {
  right: 16px;
}

.zdrs-dots {
  position: absolute;
  right: 50%;
  bottom: 0;
  z-index: 30;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: calc(100% - 24px);
  gap: 0;
  transform: translateX(50%);
}

.zdrs-dot {
  position: relative;
  display: inline-grid;
  flex: 0 0 48px;
  place-items: center;
  box-sizing: border-box;
  width: 48px;
  min-width: 48px;
  height: 48px;
  min-height: 48px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent !important;
  color: #fff;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.zdrs-dot::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background-color: #fff;
  opacity: 0.6;
  transition: width 180ms ease, background-color 180ms ease, opacity 180ms ease;
}

.zdrs-dot.is-active::before {
  width: 28px;
  opacity: 1;
  background-color: #111;
}

.zdrs-dot:focus-visible {
  outline: 2px solid #fff;
  outline-offset: -6px;
}

@keyframes zdrsPulse {
  0% {
    opacity: 0.7;
    transform: scale(0.6);
  }

  100% {
    opacity: 0;
    transform: scale(1.7);
  }
}

@media (max-width: 767px) {
  .zdrs-slider {
    --zdrs-height: 360px;
  }

  .zdrs-content {
    max-width: calc(100% - 24px);
  }

  .zdrs-content-inner {
    padding: 16px;
  }

  .zdrs-hotspot {
    left: var(--zdrs-hotspot-x-mobile, var(--zdrs-hotspot-x));
    top: var(--zdrs-hotspot-y-mobile, var(--zdrs-hotspot-y));
  }

  .zdrs-hotspot-tooltip {
    max-width: min(220px, calc(100vw - 32px));
    font-size: 12px;
  }

  .zdrs-arrow {
    width: 36px;
    height: 36px;
    font-size: 20px;
    line-height: 36px;
  }

  .zdrs-prev {
    left: 10px;
  }

  .zdrs-next {
    right: 10px;
  }
}
