/*!*********************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!./components/block/AnimatedText/style.css ***!
  \*********************************************************************************************************************************************************************************************/
/**
 * Custom Media Queries
 * Works like Custom Properties, except for media queries.
 *
 * @link: https://drafts.csswg.org/mediaqueries-5/#custom-mq
 * @link: https://github.com/postcss/postcss-custom-media
 **/

/* Min-Width */

/* Customize based on project */

/* Max-Width */

/* Customize based on project */

/* Min-Max-Width */

[name='AnimatedText'] {
  overflow: hidden;
  width: 100%;
}

[name='AnimatedText'] .text-carousel-section {
    width: 100%;
    position: relative;
  }

[name='AnimatedText'] .text-carousel-section .carousel-container {
      display: flex;
      position: relative;
    }

[name='AnimatedText'] .text-carousel-section .carousel-container .text-slider {
        display: flex;
        align-items: center;
        white-space: nowrap;
        animation: linear infinite;
        animation-duration: var(--animation-speed, 200s);
      }

[name='AnimatedText'] .text-carousel-section .carousel-container .text-slider .text-content > :first-child {
    margin-block-start: 0;
    padding-block-start: 0;
  }

[name='AnimatedText'] .text-carousel-section .carousel-container .text-slider .text-content > :last-child:not([class*='button']) {
    margin-block-end: 0;
    padding-block-end: 0;
  }

[name='AnimatedText'] .text-carousel-section .carousel-container .text-slider .text-content > h2,
  [name='AnimatedText'] .text-carousel-section .carousel-container .text-slider .text-content > h3,
  [name='AnimatedText'] .text-carousel-section .carousel-container .text-slider .text-content > h4,
  [name='AnimatedText'] .text-carousel-section .carousel-container .text-slider .text-content > h5,
  [name='AnimatedText'] .text-carousel-section .carousel-container .text-slider .text-content > h6 {
    margin-block-start: 0;
  }

[name='AnimatedText'] .text-carousel-section .carousel-container .text-slider .text-content {

          white-space: nowrap;
          font-size: var(--fs-h1);
          line-height: calc(var(--lh-h1) + 24px);
}

[name='AnimatedText'] .text-carousel-section .carousel-container .text-slider .text-content .last {
            margin-inline-end: 1ch;
          }

[name='AnimatedText'] .text-carousel-section.right-direction .text-slider {
        animation-name: scroll-text-right;
      }

[name='AnimatedText'] .text-carousel-section.left-direction .text-slider {
        animation-name: scroll-text-left;
      }

/* Reduced motion preference */

@media (prefers-reduced-motion: reduce) {
    [name='AnimatedText'] .text-slider {
      animation: none !important;
      transform: translateX(0) !important;
    }

    [name='AnimatedText'] .carousel-container {
      justify-content: center;
    }

      [name='AnimatedText'] .carousel-container .text-slider.clone {
        display: none;
      }
  }

/* Nahtlose Keyframe-Animationen */

@keyframes scroll-text-right {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(-200%);
  }
}

@keyframes scroll-text-left {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(0%);
  }
}


/*# sourceMappingURL=style.min.css.map*/