.embla-kv {
  position: relative;
  --slide-spacing: 2.4rem;
  --slide-size: 84%;
}
@media (width < 1080px) {
  .embla-kv {
    --slide-spacing: 1.6rem;
  }
}

.embla-kv__viewport {
  overflow: hidden;
  position: relative;
}

.embla-kv__container {
  display: flex;
  touch-action: pan-y pinch-zoom;
  margin-left: calc(var(--slide-spacing) * -1);
}

.embla-kv__slide {
  transform: translate3d(0, 0, 0);
  flex: 0 0 var(--slide-size);
  min-width: 0;
  max-width: 1000px;
  padding-left: var(--slide-spacing);
}
@media (width < 1080px) {
  .embla-kv__slide {
    max-width: 392px;
  }
}

.embla-kv__controls {
  display: grid;
  gap: 1.2rem;
  margin-top: 4rem;
}
@media (width < 1080px) {
  .embla-kv__controls {
    margin-top: 40px;
  }
}

.embla-kv__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  margin-top: 1.2rem;
  font-size: 1.4rem;
}
@media (width < 1080px) {
  .embla-kv__nav {
    margin-top: 24px;
  }
}

.embla-kv__nav .embla-kv__text-btn {
  display: grid;
  place-items: center;
  width: 120px;
  height: 40px;
  background-color: #666;
  color: #fff;
  border-radius: 9999px;
}

.embla-kv__buttons {
  position: absolute;
  margin: auto;
  inset: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1064px;
  width: 90%;
  height: -moz-fit-content;
  height: fit-content;
}
@media (width < 1080px) {
  .embla-kv__buttons {
    display: none;
  }
}
@media (width < 472px) {
  .embla-kv__buttons {
    display: flex;
  }
}

.embla-kv__button {
  -webkit-tap-highlight-color: rgba(var(--text-high-contrast-rgb-value), 0.5);
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background-color: transparent;
  touch-action: manipulation;
  display: inline-flex;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  padding: 0;
  margin: 0;
  box-shadow: inset 0 0 0 0.2rem var(--detail-medium-contrast);
  width: 6.4rem;
  height: 6.4rem;
  z-index: 1;
  border-radius: 50%;
  color: var(--text-body);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (width < 472px) {
  .embla-kv__button {
    width: 4rem;
    height: 4rem;
  }
}

.embla-kv__button:disabled {
  color: var(--detail-high-contrast);
}

.embla-kv__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  align-items: center;
}
@media (width < 472px) {
  .embla-kv__dots {
    width: 100%;
  }
}

.embla-kv__dot {
  -webkit-tap-highlight-color: rgba(var(--text-high-contrast-rgb-value), 0.5);
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background-color: var(--color-black-30);
  touch-action: manipulation;
  display: inline-flex;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  padding: 0;
  margin: 0;
  width: 12px;
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
@media (width < 1080px) {
  .embla-kv__dot {
    width: 1rem;
    height: 1rem;
  }
}
@media (width < 472px) {
  .embla-kv__dot {
    width: 0.7rem;
    height: 0.7rem;
  }
}

.embla-kv__dot:after {
  box-shadow: inset 0 0 0 0.2rem var(--detail-medium-contrast);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  content: "";
}
@media (width < 1080px) {
  .embla-kv__dot:after {
    width: 1rem;
    height: 1rem;
  }
}
@media (width < 472px) {
  .embla-kv__dot:after {
    width: 0.7rem;
    height: 0.7rem;
  }
}

.embla-kv__dot--selected {
  background: linear-gradient(270deg, var(--color-blue) 0.01%, var(--color-purple) 99.39%);
}

.embla-kv__dot--selected:after {
  box-shadow: inset 0 0 0 0.2rem var(--text-body);
}/*# sourceMappingURL=embla-kv.css.map */