.embla-voice {
  position: relative;
  margin: auto;
  --slide-spacing: 1.6rem;
  --slide-size: calc(1000px / 3 - var(--slide-spacing) * 2);
}
@media (width < 1080px) {
  .embla-voice {
    --slide-size: 84%;
    margin-top: 40px;
  }
}

.embla-voice__viewport {
  overflow: hidden;
  padding: 2px 0;
}

.embla-voice__container {
  display: flex;
  touch-action: pan-y pinch-zoom;
  margin-left: calc(var(--slide-spacing) * -1);
}
@media (1080px <= width) {
  .embla-voice__container {
    justify-content: center;
    transform: none !important;
  }
}
@media (width < 472px) {
  .embla-voice__container {
    margin-left: calc(var(--slide-spacing) * -0.6);
    max-width: 100vw;
  }
}

.embla-voice__slide {
  display: flex;
  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-voice__slide {
    max-width: 408px;
    width: 100%;
    padding-left: 16px;
  }
}

.embla-voice__slide__number {
  background: linear-gradient(0deg, #fff 0%, #fff 100%), #f0f5f9;
  border-radius: 8px;
  border: 1px solid #e6e6e6;
  display: grid;
  gap: 20px;
  padding: 20px;
}

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

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

.embla-voice__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-voice__button {
    width: 4rem;
    height: 4rem;
  }
}

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

.embla-voice__button__svg {
  width: 35%;
  height: 35%;
}

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

.embla-voice__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: 1.2rem;
  height: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
@media (width < 1080px) {
  .embla-voice__dot {
    width: 1rem;
    height: 1rem;
  }
}
@media (width < 472px) {
  .embla-voice__dot {
    width: 0.7rem;
    height: 0.7rem;
  }
}

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

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

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