/* [project]/src/components/EmblaCarousel/embla.css [app-client] (css) */
.embla {
  --slide-height: 19rem;
  --slide-spacing: 1rem;
  --slide-size: 100%;
}

.embla__viewport {
  overflow: hidden;
}

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

.embla__slide {
  min-width: 0;
  padding-left: var(--slide-spacing);
  flex: 0 0 100%;
  transform: translate3d(0, 0, 0);
}

.embla__slide__number {
  box-shadow: inset 0 0 0 .2rem var(--detail-medium-contrast);
  height: var(--slide-height);
  -webkit-user-select: none;
  user-select: none;
  border-radius: 1.8rem;
  justify-content: center;
  align-items: center;
  font-size: 4rem;
  font-weight: 600;
  display: flex;
}

.embla__controls {
  grid-template-columns: auto 1fr;
  justify-content: space-between;
  gap: 1.2rem;
  margin-top: 1.8rem;
  display: grid;
}

.embla__buttons {
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: .6rem;
  display: grid;
}

.embla__button {
  -webkit-tap-highlight-color: rgba(var(--text-high-contrast-rgb-value), .5);
  appearance: none;
  background-color: var(--brand-700);
  touch-action: manipulation;
  cursor: pointer;
  box-shadow: inset 0 0 0 .2rem var(--brand-700);
  z-index: 1;
  color: #fff;
  border: 0;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 3.6rem;
  height: 3.6rem;
  margin: 0;
  padding: 0;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.embla__button:hover:not(:disabled) {
  background-color: var(--brand-800);
  box-shadow: inset 0 0 0 .2rem var(--brand-800);
}

.embla__button:disabled {
  background-color: var(--muted);
  box-shadow: inset 0 0 0 .2rem var(--border-soft);
  color: var(--muted-text);
  cursor: not-allowed;
}

.embla__button__svg {
  color: #fff;
  width: 35%;
  height: 35%;
}

.embla__dots {
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  margin-right: -.6rem;
  display: flex;
}

.embla__dot {
  -webkit-tap-highlight-color: rgba(var(--text-high-contrast-rgb-value), .5);
  appearance: none;
  touch-action: manipulation;
  cursor: pointer;
  background-color: #0000;
  border: 0;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  margin: 0 .2rem;
  padding: 0;
  text-decoration: none;
  display: flex;
}

.embla__dot:after {
  box-shadow: inset 0 0 0 .2rem var(--detail-medium-contrast);
  content: "";
  background-color: #00000080;
  border-radius: 50%;
  align-items: center;
  width: 1.4rem;
  height: 1.4rem;
  transition: all .5s;
  display: flex;
}

.embla__dot--selected:after {
  box-shadow: inset 0 0 0 .2rem var(--text-body);
  background-color: #ffffff80;
}

/* [project]/src/components/Produkte/produktSlider.css [app-client] (css) */
.products {
  --slide-height: auto;
  --slide-spacing: 1rem;
  --slide-size: 100%;
}

.products .embla__slide__content {
  width: 100%;
  display: grid;
  position: relative;
}

.products {
  position: relative;
}

.products .embla__arrow {
  background: #fff;
  box-shadow: 0 8px 20px #00000026;
}

.products .embla__arrow--prev {
  left: 12px;
}

.products .embla__arrow--next {
  right: 12px;
}

/*# sourceMappingURL=src_components_5edad3cb._.css.map*/