/*!*********************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[2].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[3]!./Resources/Private/Fusion/Presentation/Carousel/Styles/Carousel.scss ***!
  \*********************************************************************************************************************************************************************************************************************************************************************************************/
/**
 * This file contains all text styles used by this project.
 */
/**
 * This file contains all fonts used by this project
 */
@font-face {
  font-family: "Frutiger LT Pro";
  font-weight: 100 400;
  src: local("Frutiger LT Pro"), url(../../../4f8901fd52389478c059.woff2) format("woff2"), url(../../../b9420588066c05d7d7b8.woff) format("woff");
}
@font-face {
  font-family: "Frutiger LT Pro";
  font-weight: 500 700;
  src: local("Frutiger LT Pro"), url(../../../a9fc867490547a200053.woff2) format("woff2"), url(../../../81a45d558311e269f0fc.woff) format("woff");
}
@font-face {
  font-family: "Frutiger LT Pro";
  font-weight: 800 950;
  src: local("Frutiger LT Pro"), url(../../../1e958b11233c03afdb03.woff2) format("woff2"), url(../../../a1cfade13cf813f20cd4.woff) format("woff");
}
/**
 * Last child selector used for node type elements which is aware of Neos UI.
 * We need this, because Neos UI injects an additional element when using content references.
 */
html {
  font-size: clamp(18px, 1.0416666667vw, 20px);
}

:root,
.light {
  --typo-button-color: #1c3d61;
  --typo-eyebrow-color: #191919;
  --typo-headline-color: #1c3d61;
  --typo-subheadline-color: #191919;
  --typo-text-color: #191919;
}

.dark {
  --typo-button-color: #fff;
  --typo-eyebrow-color: #e0e7f7;
  --typo-headline-color: #e0e7f7;
  --typo-subheadline-color: #e0e7f7;
  --typo-text-color: #fff;
}

:root {
  --gap: clamp(16px, 3.3333333333vw, 64px);
  --gap-sm: clamp(8px, 0.8333333333vw, 64px);
}

:export {
  gapMax: 64px;
  gapMaxSm: 16px;
}

.o-carousel {
  position: relative;
  max-width: 100vw;
  margin: 0 -16px;
  padding-bottom: 80px;
}
@media (min-width: 800px) {
  .o-carousel {
    max-width: 100%;
    margin: 0 auto;
    padding-bottom: 0;
  }
}
.o-carousel__controls {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 5px;
  z-index: 1;
}
@media (min-width: 800px) {
  .o-carousel__controls {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    height: 100%;
    width: auto;
    margin-right: -35px;
    margin-left: -35px;
    padding: 0;
  }
}
.o-carousel__control-arrow {
  padding: 10px 5px;
  color: var(--button-solid-bg-color, #779bc6);
  appearance: none;
  border: none;
  background: transparent;
  cursor: pointer;
}
.o-carousel__control-arrow svg {
  width: 32px;
  height: 32px;
}
@media (min-width: 800px) {
  .o-carousel__control-arrow svg {
    position: relative;
    top: 1px;
    width: 25px;
    height: 25px;
  }
}
.o-carousel__control-arrow:hover {
  color: var(--button-solid-bg-color-hover, #779bc6);
}
.o-carousel__control-arrow:disabled {
  opacity: 0;
  pointer-events: none;
}
.o-carousel__control-arrow--left svg {
  transform: scaleX(-1);
}
.o-carousel__controls-dots {
  flex-grow: 0;
  position: relative;
  top: -2px;
  display: flex;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 5px;
  overflow: hidden;
}
@media (min-width: 800px) {
  .o-carousel__controls-dots {
    display: none;
  }
}
.o-carousel__control-dot {
  flex-shrink: 0;
  height: 7px;
  width: 7px;
  border-radius: 50%;
  background-color: var(--button-solid-bg-color, #779bc6);
}
.o-carousel__control-dot--active {
  height: 10px;
  width: 10px;
}
.o-carousel__slides:not([data-keen-slider-disabled]) {
  display: flex;
  align-content: flex-start;
  position: relative;
  height: 100%;
  width: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
  overflow: hidden;
}
.o-carousel__slides:not([data-keen-slider-disabled])[data-keen-slider-reverse] {
  flex-direction: row-reverse;
}
.o-carousel__slides:not([data-keen-slider-disabled])[data-keen-slider-v] {
  flex-wrap: wrap;
}
.o-carousel__slide {
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  width: 90%;
  min-height: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
  height: auto;
}
@media (min-width: 800px) {
  .o-carousel__slide {
    width: 100%;
  }
}
.o-carousel__slide img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

.o-carousel--loading {
  opacity: 0;
  pointer-events: none;
}
.o-carousel--loading .o-carousel__controls-dots {
  display: none;
}

/*# sourceMappingURL=Carousel.css.map*/