@charset "UTF-8";
* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:root {
  --color-enterprise-grading-1: #0df28f;
  --color-enterprise-grading-2: #8b33ff;
  --black-8: hsla(0, 0%, 0%, 0.1);
  --black-9: hsla(0, 0%, 0%, 0.06);
  --transition-base: 0.25s cubic-bezier(0.65, 0, 0.35, 1);
  --shadow-dark: 0px 2rem 1.5rem 0px rgba(0, 0, 0, 0.10), 0px 0.25rem 0.25rem 0px rgba(0, 0, 0, 0.07), 0px 0.125rem 0.1rem 0px rgba(0, 0, 0, 0.05);
  --radius-medium: 2rem;
  --radius-default: 1.5rem;
  --radius-small: 1rem;
  z-index: 3;
  font-size: 20px;
}
@media (max-width: 992px) {
  :root {
    font-size: 19px;
  }
}
@media (max-width: 568px) {
  :root {
    font-size: 18px;
  }
}

/* Mixin Transitions */
@media screen and (max-width: 767px) {
  .course-cards::after, .c-calculator_wrapper::after {
    content: "&#32;";
    width: 4vw;
    display: block;
    background-size: contain;
    color: transparent;
  }
}
body {
  font-feature-settings: "ss04" on, "salt" on, "ss01" on;
}

a {
  color: currentColor;
}

h1, h2, h3, h4, h5, h6 {
  word-break: break-word;
}

/* Spacings */
.top-x-large {
  margin-top: 8rem;
}

.top-large {
  margin-top: 6rem;
}

.top-medium {
  margin-top: 4rem;
}

.top-normal {
  margin-top: 3rem;
}

.top-small {
  margin-top: 2rem;
}

.top-x-small {
  margin-top: 1.5rem;
}

.top-xx-small {
  margin-top: 1rem;
}

@media screen and (max-width: 479px) {
  .top-x-large {
    margin-top: 6rem;
  }
  .top-large {
    margin-top: 5rem;
  }
  .top-medium {
    margin-top: 3rem;
  }
  .top-normal {
    margin-top: 2.5rem;
  }
}
/* Clipping */
.tt-view,
.tt-section.section-overflow.bg-black {
  overflow: clip;
}

.bg-black + .bg-black {
  border-radius: unset;
}

/* Paragraphs */
.bg-black .label a {
  color: rgba(239, 233, 251, 0.6);
}

/* Nav */
.tt-navbar.dark {
  color: var(--white-a-100);
}
.tt-navbar.dark .tt-navbar-menu .tt-subnav-icon {
  filter: invert(1);
}
@media screen and (max-width: 767px) {
  .tt-navbar.dark .tt-navbar-menu {
    background: rgba(43, 43, 43, 0.7);
  }
}
.tt-navbar.dark .tt-navbar-strip {
  background: rgba(43, 43, 43, 0.7);
}
.tt-navbar.dark .tt-navbar-strip .w-nav-brand {
  color: var(--white-a-100);
}
.tt-navbar.dark .tt-navbar-strip .tt-navbar-link {
  color: var(--white-a-100);
}
.tt-navbar.dark .tt-navbar-strip .tt-navbar-link::before {
  background-color: var(--white-a-5);
}
.tt-navbar.dark .tt-navbar-strip .tt-navbar-link.btn-secondary::before {
  background-color: var(--white-a-5);
}
.tt-navbar.dark .tt-navbar-strip .tt-navbar-link.btn-secondary:hover::before {
  background-color: var(--white-a-10);
}
.tt-navbar.dark .tt-navbar-strip .tt-navbar-link.btn-primary {
  color: var(--black-900);
  background-color: var(--white-a-100);
}
.tt-navbar.dark .tt-navbar-strip .tt-subnav-content {
  background-color: rgb(34, 34, 34);
  color: var(--white-a-100);
}
.tt-navbar.dark .tt-navbar-strip .tt-subnav-content .tt-subnav-link::before {
  background-color: var(--white-a-5);
}
.tt-navbar.dark .tt-navbar-strip .tt-subnav-content .tt-subnav-link.btn-primary {
  color: var(--black-900);
  background-color: var(--white-a-100);
}
.tt-navbar.dark .tt-navbar-strip .tt-subnav-content .tt-subnav-link .tt-subnav-icon {
  filter: invert(1);
}
.tt-navbar.dark .tt-navbar-strip .btn-burger-dots {
  color: var(--white-a-100);
}
.tt-navbar.dark .tt-navbar-strip .bacth-md {
  background-color: var(--white-a-20);
  color: var(--white-a-60);
}

.tt-navbar-link,
.tt-navbar-link *,
.tt-navbar-link::after,
.tt-navbar-link::before,
.tt-navbar-burger,
.tt-navbar-burger *,
.tt-navbar-burger::before,
.tt-subnav-link,
.tt-subnav-link *,
.tt-subnav-link::before,
.tt-subnav-container {
  transition: scale var(--transition-base), transform var(--transition-base), border-radius var(--transition-base), opacity var(--transition-base), background-color var(--transition-base);
}

.tt-navbar-link::before,
.tt-navbar-burger::before,
.tt-subnav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: var(--black-9, rgba(0, 0, 0, 0.06));
  border-radius: 0.4rem;
  transform: scale(40%);
  opacity: 0;
}

.tt-navbar-link:hover:before, .w--open.tt-navbar-link::before, .w--open.tt-navbar-burger::before, .tt-navbar-burger:hover:before, .tt-subnav-link:hover:before {
  opacity: 1;
  transform: scale(100%);
  border-radius: 0.6rem;
}

@media screen and (max-width: 767px) {
  .w-nav-overlay .tt-navbar-link:hover:before, .w--open.tt-navbar-link::before {
    opacity: 0;
  }
}
.tt-subnav > .tt-navbar-link::after {
  content: "";
  height: 0.6rem;
  width: 0.6rem;
  margin-left: 0.1rem;
  margin-top: -0.1rem;
  display: inline-block;
  background-size: contain;
  -webkit-mask: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4.93934 7.93934C5.52513 7.35355 6.47487 7.35355 7.06066 7.93934L12 12.8787L16.9393 7.93934C17.5251 7.35356 18.4749 7.35356 19.0607 7.93934C19.6464 8.52513 19.6464 9.47488 19.0607 10.0607L13.0607 16.0607C12.7794 16.342 12.3978 16.5 12 16.5C11.6022 16.5 11.2206 16.342 10.9393 16.0607L4.93934 10.0607C4.35355 9.47487 4.35355 8.52513 4.93934 7.93934Z' fill='currentColor'/%3E%3C/svg%3E") no-repeat center/contain;
  mask: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4.93934 7.93934C5.52513 7.35355 6.47487 7.35355 7.06066 7.93934L12 12.8787L16.9393 7.93934C17.5251 7.35356 18.4749 7.35356 19.0607 7.93934C19.6464 8.52513 19.6464 9.47488 19.0607 10.0607L13.0607 16.0607C12.7794 16.342 12.3978 16.5 12 16.5C11.6022 16.5 11.2206 16.342 10.9393 16.0607L4.93934 10.0607C4.35355 9.47487 4.35355 8.52513 4.93934 7.93934Z' fill='currentColor'/%3E%3C/svg%3E") no-repeat center/contain;
  background-color: currentColor; /* Farbe, die durch die Maske scheint */
}

.tt-navbar-link.btn-secondary::before {
  transform: scale(100%);
  opacity: 1;
}
.tt-navbar-link.btn-secondary:hover::before {
  background-color: var(--black-8);
  border-radius: 0.75rem;
}
.tt-navbar-link.btn-primary::before {
  grid-column-gap: 0.1rem;
  content: none;
}
.tt-navbar-link.btn-primary::after {
  content: "";
  position: absolute;
  left: -0.9rem;
  height: 0.6rem;
  width: 0.6rem;
  display: inline-block;
  background-size: contain;
  -webkit-mask: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 7.38197L15.4495 7.10674L15.4484 7.10617L15.4455 7.10464L15.4188 7.09062C15.393 7.07688 15.3516 7.05437 15.2965 7.02295C15.1862 6.96006 15.0213 6.86173 14.8166 6.72686C14.4066 6.4566 13.8417 6.0427 13.2383 5.47698C12.029 4.34323 10.6931 2.62751 10.1006 0.257462L8.16032 0.742528C8.87215 3.58987 10.4711 5.62416 11.8704 6.93605C11.8933 6.95755 11.9162 6.97887 11.9391 6.99999H0V8.99999H11.9391C11.9162 9.02112 11.8933 9.04243 11.8704 9.06393C10.4711 10.3758 8.87215 12.4101 8.16032 15.2575L10.1006 15.7425C10.6931 13.3725 12.029 11.6568 13.2383 10.523C13.8417 9.95729 14.4066 9.54338 14.8166 9.27313C15.0213 9.13826 15.1862 9.03993 15.2965 8.97704C15.3516 8.94562 15.393 8.92311 15.4188 8.90937L15.4455 8.89535L15.4484 8.89382L15.4495 8.89325L16 8.61803V7.38197Z' fill='white'/%3E%3C/svg%3E%0A") no-repeat center/contain;
  mask: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 7.38197L15.4495 7.10674L15.4484 7.10617L15.4455 7.10464L15.4188 7.09062C15.393 7.07688 15.3516 7.05437 15.2965 7.02295C15.1862 6.96006 15.0213 6.86173 14.8166 6.72686C14.4066 6.4566 13.8417 6.0427 13.2383 5.47698C12.029 4.34323 10.6931 2.62751 10.1006 0.257462L8.16032 0.742528C8.87215 3.58987 10.4711 5.62416 11.8704 6.93605C11.8933 6.95755 11.9162 6.97887 11.9391 6.99999H0V8.99999H11.9391C11.9162 9.02112 11.8933 9.04243 11.8704 9.06393C10.4711 10.3758 8.87215 12.4101 8.16032 15.2575L10.1006 15.7425C10.6931 13.3725 12.029 11.6568 13.2383 10.523C13.8417 9.95729 14.4066 9.54338 14.8166 9.27313C15.0213 9.13826 15.1862 9.03993 15.2965 8.97704C15.3516 8.94562 15.393 8.92311 15.4188 8.90937L15.4455 8.89535L15.4484 8.89382L15.4495 8.89325L16 8.61803V7.38197Z' fill='white'/%3E%3C/svg%3E%0A") no-repeat center/contain;
  background-color: currentColor;
}
.tt-navbar-link.btn-primary:hover .btn-content {
  transform: translateX(0.9rem);
}
.tt-navbar-link.btn-primary:hover .btn-primary-arrow {
  transform: translateX(1.3rem);
}
.tt-navbar-link.btn-primary:hover::after {
  transform: translateX(1.4rem);
}

.btn-primary-arrow svg, .btn-burger-dots svg {
  width: 100%;
  height: 100%;
}

.w--open.tt-navbar-burger .btn-burger-dots {
  transform: rotate(45deg);
}

.w--open.tt-navbar-burger .btn-burger-dots svg .dot-bottom-left {
  transform: translate(-0.05rem, 0.05rem);
}

.w--open.tt-navbar-burger .btn-burger-dots svg .dot-bottom-right {
  transform: translate(0.05rem, 0.05rem);
}

.w--open.tt-navbar-burger .btn-burger-dots svg .dot-top-left {
  transform: translate(-0.05rem, -0.05rem);
}

.w--open.tt-navbar-burger .btn-burger-dots svg .dot-top-right {
  transform: translate(0.05rem, -0.05rem);
}

.tt-subnav-categories._2-1-col .tt-subnav-link {
  width: calc(50% - 1.25rem);
}

@media (max-width: 992px) {
  .tt-subnav-categories._2-1-col .tt-subnav-link {
    width: 100%;
    max-width: 18rem;
  }
}
@media (max-width: 767px) {
  .tt-subnav-categories._2-1-col .tt-subnav-link {
    max-width: none;
  }
}
.tt-subnav-categories._3-col .tt-subnav-categorygroup {
  width: 33.3333333333%;
}

@media (max-width: 767px) {
  .tt-subnav-categories._3-col .tt-subnav-categorygroup {
    width: 100%;
    max-width: none;
  }
}
.tt-subnav-categories._3-col .tt-subnav-link {
  width: 100%;
}

.tt-subnav-icon img {
  width: 100%;
}

.tt-subnav-icon.customer-logo img {
  filter: grayscale(1) brightness(0);
}

.tt-subnav-link:hover .tt-subnav-icon.customer-logo img {
  filter: grayscale(0) brightness(1);
}

.tt-subnav-link:hover .tt-subnav-icon.customer-logo {
  background: white;
}

.tt-subnav-container.w--open .tt-subnav-content {
  z-index: 4;
}

@media screen and (max-width: 991px) {
  .tt-navbar-menu {
    transform: translate(-50%) !important;
    overflow: -moz-scrollbars-vertical;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .tt-navbar-menu .tt-navbar-link {
    font-size: 1.1rem;
    padding: 0.8rem 1rem;
  }
  .tt-navbar-menu .tt-navbar-link div {
    width: 100%;
  }
  .tt-subnav > .tt-navbar-link::after {
    height: 0.8rem;
    width: 0.8rem;
    transform: rotate(-90deg);
  }
  .tt-subnav > .tt-navbar-link.w--open::after {
    transform: rotate(0);
  }
}
/* BUTTONS */
.tt-button, .tt-button *, .tt-button::after {
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
}

.tt-button:active {
  -webkit-transition: all 0.05s cubic-bezier(0.65, 0, 0.35, 1);
  transition: all 0.05s cubic-bezier(0.65, 0, 0.35, 1);
}

.tt-button-text {
  display: inline-flex;
  vertical-align: top;
  align-items: center;
  flex: 0 0 auto;
  --lh: 1.2;
  line-height: var(--lh);
  overflow: hidden;
  backface-visibility: hidden;
}

.tt-button-text > * {
  flex: 0 0 auto;
  backface-visibility: hidden;
  text-shadow: 0 calc(var(--lh) * 1em) 0 currentColor;
  transform: translate3d(0, 0, 0);
  transition: transform 0.4s ease;
  --delay: 0.05s;
}

.tt-button-text:has(> *:nth-child(10)) > * {
  --delay: 0.04s;
}

.tt-button-text:has(> *:nth-child(20)) > * {
  --delay: 0.03s;
}

@media (pointer: fine) {
  .tt-button:hover .tt-button-text > * {
    transform: translate3d(0, calc(var(--lh) * -1em), 0);
  }
  .tt-button:hover .tt-button-text > *:nth-child(1) {
    transition-delay: calc(0 * var(--delay));
  }
  .tt-button:hover .tt-button-text > *:nth-child(2) {
    transition-delay: calc(1 * var(--delay));
  }
  .tt-button:hover .tt-button-text > *:nth-child(3) {
    transition-delay: calc(2 * var(--delay));
  }
  .tt-button:hover .tt-button-text > *:nth-child(4) {
    transition-delay: calc(3 * var(--delay));
  }
  .tt-button:hover .tt-button-text > *:nth-child(5) {
    transition-delay: calc(4 * var(--delay));
  }
  .tt-button:hover .tt-button-text > *:nth-child(6) {
    transition-delay: calc(5 * var(--delay));
  }
  .tt-button:hover .tt-button-text > *:nth-child(7) {
    transition-delay: calc(6 * var(--delay));
  }
  .tt-button:hover .tt-button-text > *:nth-child(8) {
    transition-delay: calc(7 * var(--delay));
  }
  .tt-button:hover .tt-button-text > *:nth-child(9) {
    transition-delay: calc(8 * var(--delay));
  }
  .tt-button:hover .tt-button-text > *:nth-child(10) {
    transition-delay: calc(9 * var(--delay));
  }
  .tt-button:hover .tt-button-text > *:nth-child(11) {
    transition-delay: calc(10 * var(--delay));
  }
  .tt-button:hover .tt-button-text > *:nth-child(12) {
    transition-delay: calc(11 * var(--delay));
  }
  .tt-button:hover .tt-button-text > *:nth-child(13) {
    transition-delay: calc(12 * var(--delay));
  }
  .tt-button:hover .tt-button-text > *:nth-child(14) {
    transition-delay: calc(13 * var(--delay));
  }
  .tt-button:hover .tt-button-text > *:nth-child(15) {
    transition-delay: calc(14 * var(--delay));
  }
  .tt-button:hover .tt-button-text > *:nth-child(16) {
    transition-delay: calc(15 * var(--delay));
  }
  .tt-button:hover .tt-button-text > *:nth-child(17) {
    transition-delay: calc(16 * var(--delay));
  }
  .tt-button:hover .tt-button-text > *:nth-child(18) {
    transition-delay: calc(17 * var(--delay));
  }
  .tt-button:hover .tt-button-text > *:nth-child(19) {
    transition-delay: calc(18 * var(--delay));
  }
  .tt-button:hover .tt-button-text > *:nth-child(20) {
    transition-delay: calc(19 * var(--delay));
  }
  .tt-button:hover .tt-button-text > *:nth-child(21) {
    transition-delay: calc(20 * var(--delay));
  }
  .tt-button:hover .tt-button-text > *:nth-child(22) {
    transition-delay: calc(21 * var(--delay));
  }
  .tt-button:hover .tt-button-text > *:nth-child(23) {
    transition-delay: calc(22 * var(--delay));
  }
  .tt-button:hover .tt-button-text > *:nth-child(24) {
    transition-delay: calc(23 * var(--delay));
  }
  .tt-button:hover .tt-button-text > *:nth-child(25) {
    transition-delay: calc(24 * var(--delay));
  }
  .tt-button:hover .tt-button-text > *:nth-child(26) {
    transition-delay: calc(25 * var(--delay));
  }
  .tt-button:hover .tt-button-text > *:nth-child(27) {
    transition-delay: calc(26 * var(--delay));
  }
  .tt-button:hover .tt-button-text > *:nth-child(28) {
    transition-delay: calc(27 * var(--delay));
  }
  .tt-button:hover .tt-button-text > *:nth-child(29) {
    transition-delay: calc(28 * var(--delay));
  }
}
.btn-arrow::after {
  content: "";
  position: absolute;
  left: -1em;
  height: 0.75em;
  width: 0.75em;
  margin-top: -0.2em;
  display: inline-block;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 7.38197L15.4495 7.10674L15.4484 7.10617L15.4455 7.10464L15.4188 7.09062C15.393 7.07688 15.3516 7.05437 15.2965 7.02295C15.1862 6.96006 15.0213 6.86173 14.8166 6.72686C14.4066 6.4566 13.8417 6.0427 13.2383 5.47698C12.029 4.34323 10.6931 2.62751 10.1006 0.257462L8.16032 0.742528C8.87215 3.58987 10.4711 5.62416 11.8704 6.93605C11.8933 6.95755 11.9162 6.97887 11.9391 6.99999H0V8.99999H11.9391C11.9162 9.02112 11.8933 9.04243 11.8704 9.06393C10.4711 10.3758 8.87215 12.4101 8.16032 15.2575L10.1006 15.7425C10.6931 13.3725 12.029 11.6568 13.2383 10.523C13.8417 9.95729 14.4066 9.54338 14.8166 9.27313C15.0213 9.13826 15.1862 9.03993 15.2965 8.97704C15.3516 8.94562 15.393 8.92311 15.4188 8.90937L15.4455 8.89535L15.4484 8.89382L15.4495 8.89325L16 8.61803V7.38197Z' fill='white'/%3E%3C/svg%3E%0A");
}

.dark.btn-arrow::after,
.btn-text.btn-arrow::after {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 7.38197L15.4495 7.10674L15.4484 7.10617L15.4455 7.10464L15.4188 7.09062C15.393 7.07688 15.3516 7.05437 15.2965 7.02295C15.1862 6.96006 15.0213 6.86173 14.8166 6.72686C14.4066 6.4566 13.8417 6.0427 13.2383 5.47698C12.029 4.34323 10.6931 2.62751 10.1006 0.257462L8.16032 0.742528C8.87215 3.58987 10.4711 5.62416 11.8704 6.93605C11.8933 6.95755 11.9162 6.97887 11.9391 6.99999H0V8.99999H11.9391C11.9162 9.02112 11.8933 9.04243 11.8704 9.06393C10.4711 10.3758 8.87215 12.4101 8.16032 15.2575L10.1006 15.7425C10.6931 13.3725 12.029 11.6568 13.2383 10.523C13.8417 9.95729 14.4066 9.54338 14.8166 9.27313C15.0213 9.13826 15.1862 9.03993 15.2965 8.97704C15.3516 8.94562 15.393 8.92311 15.4188 8.90937L15.4455 8.89535L15.4484 8.89382L15.4495 8.89325L16 8.61803V7.38197Z' fill='black'/%3E%3C/svg%3E%0A");
}

.btn-arrow:hover:after {
  transform: translateX(2em);
}

.btn-text.btn-arrow:hover:after,
.tt-two-col-card:hover .btn-text.btn-arrow::after,
.tt-product-card:hover .btn-text.btn-arrow::after,
.tt-card:hover .btn-text.btn-arrow::after,
.tt-blog-card:hover .btn-text.btn-arrow::after {
  transform: translateX(1em);
}

.btn-arrow:hover .btn-content,
.tt-two-col-card:hover .btn-arrow .btn-content,
.tt-product-card:hover .btn-arrow .btn-content,
.tt-card:hover .btn-arrow .btn-content,
.tt-blog-card:hover .btn-arrow .btn-content {
  transform: translateX(1.2em);
}

.btn-arrow:hover .btn-primary-arrow,
.tt-two-col-card:hover .btn-arrow .btn-primary-arrow,
.tt-product-card:hover .btn-arrow .btn-primary-arrow,
.tt-card:hover .btn-arrow .btn-primary-arrow,
.tt-blog-card:hover .btn-arrow .btn-primary-arrow {
  transform: translateX(2em);
}

.button-tertiary::before {
  content: "";
  height: 0.9rem;
  width: 0.9rem;
  margin-right: 0.4rem;
  display: inline-block;
  opacity: 0.8;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9.707 2.293a1 1 0 0 0-1.414 1.414L12.586 8H2a1 1 0 0 0 0 2h10.586l-4.293 4.293a1 1 0 1 0 1.414 1.414l6-6a1 1 0 0 0 0-1.414l-6-6Z' fill='%23EFE9FB'/%3E%3C/svg%3E");
  -webkit-transition: 400ms cubic-bezier(0.65, 0, 0.35, 1);
  transition: 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.button-tertiary.external::before {
  content: none;
}

.button-tertiary.external::after {
  content: "";
  height: 0.9rem;
  width: 0.9rem;
  margin-left: 0.4rem;
  display: inline-block;
  opacity: 0.8;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.61092 3.40381C4.05863 3.40381 3.61092 3.85152 3.61092 4.40381C3.61092 4.95609 4.05863 5.40381 4.61092 5.40381L10.682 5.40381L3.1967 12.8891C2.80618 13.2796 2.80618 13.9128 3.1967 14.3033C3.58723 14.6938 4.22039 14.6938 4.61092 14.3033L12.0962 6.81803V12.8891C12.0962 13.4414 12.5439 13.8891 13.0962 13.8891C13.6485 13.8891 14.0962 13.4414 14.0962 12.8891V4.40381C14.0962 3.85152 13.6485 3.40381 13.0962 3.40381L4.61092 3.40381Z' fill='white'/%3E%3C/svg%3E%0A");
  transition: 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.button-tertiary:hover:before {
  opacity: 1;
  transform: translate3d(0.25rem, 0px, 0px);
}

.button-tertiary.external:hover:after {
  opacity: 1;
  transform: translate3d(0.1rem, -0.1rem, 0px);
}

.button-tertiary.small::before {
  height: 0.8rem;
  width: 0.8rem;
}

.button-tertiary.small::after {
  height: 0.8rem;
  width: 0.8rem;
}

.button-group .button-tertiary.small:only-child {
  transform: translate3d(-0.7rem, 0px, 0px);
}

.button-mastermind.w--open .icon-small .close {
  opacity: 0;
}

.bg-black .tt-button.btn-primary.btn-arrow {
  border-color: var(--white-a-100);
  background-color: var(--white-a-100);
  color: var(--black-a-100);
}
.bg-black .tt-button.btn-primary.btn-arrow::after {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 7.38197L15.4495 7.10674L15.4484 7.10617L15.4455 7.10464L15.4188 7.09062C15.393 7.07688 15.3516 7.05437 15.2965 7.02295C15.1862 6.96006 15.0213 6.86173 14.8166 6.72686C14.4066 6.4566 13.8417 6.0427 13.2383 5.47698C12.029 4.34323 10.6931 2.62751 10.1006 0.257462L8.16032 0.742528C8.87215 3.58987 10.4711 5.62416 11.8704 6.93605C11.8933 6.95755 11.9162 6.97887 11.9391 6.99999H0V8.99999H11.9391C11.9162 9.02112 11.8933 9.04243 11.8704 9.06393C10.4711 10.3758 8.87215 12.4101 8.16032 15.2575L10.1006 15.7425C10.6931 13.3725 12.029 11.6568 13.2383 10.523C13.8417 9.95729 14.4066 9.54338 14.8166 9.27313C15.0213 9.13826 15.1862 9.03993 15.2965 8.97704C15.3516 8.94562 15.393 8.92311 15.4188 8.90937L15.4455 8.89535L15.4484 8.89382L15.4495 8.89325L16 8.61803V7.38197Z' fill='black'/%3E%3C/svg%3E%0A");
}
.bg-black .tt-button.btn-primary.btn-arrow:hover {
  box-shadow: 3px 3px rgba(255, 255, 255, 0.6);
}

/* Toggle Menu */
.bg-black .tt-toggle-menu {
  border-color: var(--white-a-10);
  background-color: unset;
  color: var(--white-a-100);
}
.bg-black .tt-toggle-menu .tt-toggle-tab-btn:hover {
  background-color: var(--white-a-10);
}
.bg-black .tt-toggle-menu .tt-toggle-tab-btn.active:hover {
  background-color: var(--purple-600);
}
.bg-black .tt-toggle-menu.subdued .tt-toggle-tab-btn.active {
  color: var(--black-a-100);
  background-color: var(--white-a-100);
}
.bg-black .tt-toggle-menu.subdued .tt-toggle-tab-btn.active:hover {
  color: var(--black-a-100);
  background-color: var(--white-a-100);
}

/* NAVIGATION */
.navigation {
  -webkit-backdrop-filter: blur(1rem);
  backdrop-filter: blur(1rem);
}

@media screen and (max-width: 767px) {
  .nav-menu .nav-button, .nav-dropdown .nav-button {
    font-size: 1.4rem;
  }
  .nav-dropdown .nav-dropdown-list .nav-button {
    font-size: 0.9rem;
  }
}
/* Forms  */
.tt-form-wrap > div:not(.tt-form-fields) {
  display: none !important;
}
.tt-form-wrap .field-wrap[data-error=true]::after {
  content: attr(data-message);
  font-size: 0.7rem;
  margin-top: 0.25rem;
  color: var(--error-contrast);
}
.tt-form-wrap .field-wrap[data-error=true][data-no-company-mail=true]::after {
  content: attr(data-message-2);
}
.tt-form-wrap .field-wrap[data-error=true] .input {
  border-color: var(--error);
}
.tt-form-wrap .field-wrap[data-error=true] .input:hover, .tt-form-wrap .field-wrap[data-error=true] .input:focus {
  border-color: var(--error-contrast);
}
.tt-form-wrap data-message input {
  transition: all var(--transition-base);
}
.tt-form-wrap data-message input[type=checkbox] {
  margin-top: 0.1em;
}

/* SLIDER */
.splide__list {
  transform: translateZ(0);
  will-change: transform;
  transform-style: preserve-3d;
}

.splide__slide {
  flex: none;
}

/* Splide Slider */
.tt-category-slider .splide__slide, .tt-category-slider .splide__slide .usecase-category-wrap, .tt-usecase-slider .splide__track .splide__slid, .tt-feature-nav-slider .splide__slide, .tt-feature-nav-slider .splide__slide .feature-nav-wrap {
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
}

.tt-category-slider .splide__slide, .tt-feature-nav-slider .splide__slide {
  opacity: 0.6;
  cursor: pointer;
}

.tt-category-slider .splide__slide.is-active, .tt-category-slider .splide__slide:hover, .tt-feature-nav-slider .splide__slide.is-active, .tt-feature-nav-slider .splide__slide:hover {
  opacity: 1;
}

.tt-category-slider .splide__slide.is-active .usecase-category-wrap, .tt-feature-nav-slider .splide__slide.is-active .feature-nav-wrap {
  border-radius: 1rem;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.6);
  background-color: rgba(255, 255, 255, 0.2);
}

.bg-black .tt-category-slider .splide__slide.is-active .usecase-category-wrap, .bg-black .tt-feature-nav-slider .splide__slide.is-active .feature-nav-wrap {
  box-shadow: 0 0 0 2px var(--white-a-10);
  background-color: var(--black-a-16);
}

.tt-usecase-slider .splide__track, .tt-accordion-media-slider .splide__track {
  overflow: hidden;
}

.tt-usecase-slider .splide__track .splide__slide, .tt-accordion-media-slider .splide__track .splide__slide, .tt-feauture-content-slider .splide__track .splide__slide {
  opacity: 0;
}

.tt-usecase-slider .splide__track .splide__slide.is-active, .tt-accordion-media-slider .splide__track .splide__slide.is-active, .tt-feauture-content-slider .splide__track .splide__slide.is-active {
  opacity: 1;
}

/* Splide Slider Product Slider */
.tt-product-slider .splide__sr, .tt-usecase-card-slider .splide__sr, .tt-usecase-slider .splide__sr, .splide__sr, .tt-accordion-media-slider .splide__sr, .splide__sr {
  display: none !important;
}

.tt-feauture-content-slider .splide__track .splide__slide.is-active {
  z-index: 50;
}

/* Marquee Slider */
@keyframes scroll {
  from {
    transform: translateX(0);
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translateX(-100%);
    transform: translate3d(-100%, 0, 0);
    /* match 2 rem to gap above */
  }
}
.scroll {
  animation: scroll 15s linear infinite;
  user-select: none;
  will-change: transform;
  transform-style: preserve-3d;
}

.scroll-reverse {
  animation: scroll 15s linear infinite reverse;
  user-select: none;
  will-change: transform;
  transform-style: preserve-3d;
}

/* Accordion Slider */
.tt-accordion-content-slider, .tt-accordion-content-slider *, .accordion-content-wrap::before {
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
}
@media screen and (max-width: 991px) {
  .tt-accordion-content-slider, .tt-accordion-content-slider *, .accordion-content-wrap::before {
    -webkit-transition: none;
    transition: none;
  }
}

.tt-accordion-content-slider .splide__slide .accordion-content-wrap {
  opacity: 0.4;
  cursor: pointer;
}
.tt-accordion-content-slider .splide__slide .accordion-content-wrap::before {
  content: "";
  position: absolute;
  left: -2.5rem;
  top: 1.2rem;
  height: 0.75rem;
  width: 0.75rem;
  margin-top: -0.2em;
  display: inline-block;
  opacity: 0;
  background-size: contain;
  -webkit-mask: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 7.38197L15.4495 7.10674L15.4484 7.10617L15.4455 7.10464L15.4188 7.09062C15.393 7.07688 15.3516 7.05437 15.2965 7.02295C15.1862 6.96006 15.0213 6.86173 14.8166 6.72686C14.4066 6.4566 13.8417 6.0427 13.2383 5.47698C12.029 4.34323 10.6931 2.62751 10.1006 0.257462L8.16032 0.742528C8.87215 3.58987 10.4711 5.62416 11.8704 6.93605C11.8933 6.95755 11.9162 6.97887 11.9391 6.99999H0V8.99999H11.9391C11.9162 9.02112 11.8933 9.04243 11.8704 9.06393C10.4711 10.3758 8.87215 12.4101 8.16032 15.2575L10.1006 15.7425C10.6931 13.3725 12.029 11.6568 13.2383 10.523C13.8417 9.95729 14.4066 9.54338 14.8166 9.27313C15.0213 9.13826 15.1862 9.03993 15.2965 8.97704C15.3516 8.94562 15.393 8.92311 15.4188 8.90937L15.4455 8.89535L15.4484 8.89382L15.4495 8.89325L16 8.61803V7.38197Z' fill='black'/%3E%3C/svg%3E%0A") no-repeat center/contain;
  mask: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 7.38197L15.4495 7.10674L15.4484 7.10617L15.4455 7.10464L15.4188 7.09062C15.393 7.07688 15.3516 7.05437 15.2965 7.02295C15.1862 6.96006 15.0213 6.86173 14.8166 6.72686C14.4066 6.4566 13.8417 6.0427 13.2383 5.47698C12.029 4.34323 10.6931 2.62751 10.1006 0.257462L8.16032 0.742528C8.87215 3.58987 10.4711 5.62416 11.8704 6.93605C11.8933 6.95755 11.9162 6.97887 11.9391 6.99999H0V8.99999H11.9391C11.9162 9.02112 11.8933 9.04243 11.8704 9.06393C10.4711 10.3758 8.87215 12.4101 8.16032 15.2575L10.1006 15.7425C10.6931 13.3725 12.029 11.6568 13.2383 10.523C13.8417 9.95729 14.4066 9.54338 14.8166 9.27313C15.0213 9.13826 15.1862 9.03993 15.2965 8.97704C15.3516 8.94562 15.393 8.92311 15.4188 8.90937L15.4455 8.89535L15.4484 8.89382L15.4495 8.89325L16 8.61803V7.38197Z' fill='black'/%3E%3C/svg%3E%0A") no-repeat center/contain;
  background-color: currentColor; /* Farbe, die durch die Maske scheint */
}
@media screen and (max-width: 991px) {
  .tt-accordion-content-slider .splide__slide .accordion-content-wrap::before {
    content: none;
  }
}
.tt-accordion-content-slider .splide__slide .accordion-text-wrap {
  height: 0px;
  padding-top: 0px;
  opacity: 0;
}
@media screen and (max-width: 991px) {
  .tt-accordion-content-slider .splide__slide .accordion-text-wrap {
    height: auto;
    padding-top: 0.6rem;
  }
}
.tt-accordion-content-slider .splide__slide.is-active .accordion-content-wrap::before {
  left: -1.25rem;
  opacity: 1;
}
.tt-accordion-content-slider .splide__slide.is-active .accordion-text-wrap {
  height: auto;
  padding-top: 0.6rem;
  opacity: 0.6;
}
@media screen and (max-width: 991px) {
  .tt-accordion-content-slider .splide__slide.is-active .accordion-text-wrap {
    opacity: 1;
  }
}
.tt-accordion-content-slider .splide__slide.is-active .accordion-content-wrap, .tt-accordion-content-slider .splide__slide:hover .accordion-content-wrap {
  opacity: 1;
}
.tt-accordion-content-slider .splide__slide:not(:last-child) {
  border-bottom: solid 1px white;
}
@media screen and (max-width: 991px) {
  .tt-accordion-content-slider .splide__slide:not(:last-child) {
    border-bottom: none;
  }
}

.bg-black .tt-accordion-content-slider .splide__slide:not(:last-child) {
  border-color: var(--white-a-10);
}
.bg-black .tt-accordion-media-slider.splide {
  background-color: var(--black-a-96);
}

/* Pagination */
.tt-accordion-content-slider ul.splide__pagination {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: unset;
  display: flex;
  gap: 0;
}

.tt-accordion-content-slider button.splide__pagination__page {
  padding: 0.2rem;
  background-color: unset;
}

.tt-accordion-content-slider button.splide__pagination__page::before {
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
  content: "";
  display: block;
  width: 0.4rem;
  height: 0.4rem;
  background: var(--black-a-16);
  border-radius: 1rem;
}

.tt-accordion-content-slider button.splide__pagination__page.is-active::before {
  width: 2rem;
}

.bg-black .tt-accordion-content-slider button.splide__pagination__page::before {
  background: var(--white-a-20);
}
.bg-black .tt-accordion-content-slider button.splide__pagination__page.is-active ::before {
  background: var(--white-a-60);
}

/* CARDS */
/* Product Card */
.tt-product-card,
.tt-product-card:hover,
.tt-card,
.tt-card:hover {
  box-shadow: none;
  background-color: unset;
}

.tt-product-card::before,
.tt-card::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 1.5rem;
  background: white;
  transition: border-radius var(--transition-base), box-shadow var(--transition-base), top var(--transition-base), left var(--transition-base), right var(--transition-base), bottom var(--transition-base);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04), 0 1px 4px rgba(0, 0, 0, 0.03), 0 1px 2px rgba(0, 0, 0, 0.02);
}

.tt-card.dark::before {
  background: var(--black-a-96);
}

.tt-card.dark .btn-text.btn-arrow::after {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 7.38197L15.4495 7.10674L15.4484 7.10617L15.4455 7.10464L15.4188 7.09062C15.393 7.07688 15.3516 7.05437 15.2965 7.02295C15.1862 6.96006 15.0213 6.86173 14.8166 6.72686C14.4066 6.4566 13.8417 6.0427 13.2383 5.47698C12.029 4.34323 10.6931 2.62751 10.1006 0.257462L8.16032 0.742528C8.87215 3.58987 10.4711 5.62416 11.8704 6.93605C11.8933 6.95755 11.9162 6.97887 11.9391 6.99999H0V8.99999H11.9391C11.9162 9.02112 11.8933 9.04243 11.8704 9.06393C10.4711 10.3758 8.87215 12.4101 8.16032 15.2575L10.1006 15.7425C10.6931 13.3725 12.029 11.6568 13.2383 10.523C13.8417 9.95729 14.4066 9.54338 14.8166 9.27313C15.0213 9.13826 15.1862 9.03993 15.2965 8.97704C15.3516 8.94562 15.393 8.92311 15.4188 8.90937L15.4455 8.89535L15.4484 8.89382L15.4495 8.89325L16 8.61803V7.38197Z' fill='white'/%3E%3C/svg%3E%0A");
}

.tt-product-card:hover::before,
.tt-card:hover::before {
  top: -0.5rem;
  bottom: -0.5rem;
  left: -0.5rem;
  right: -0.5rem;
  border-radius: 2.5rem;
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.06), 0 4px 10px rgba(0, 0, 0, 0.04), 0 1px 4px rgba(0, 0, 0, 0.03), 0 1px 8px rgba(0, 0, 0, 0.02);
}

@media screen and (max-width: 767px) {
  .tt-product-card:hover::before,
  .tt-card:hover::before {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }
}
/* Blog Card */
.tt-blog-card .three-lines {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  align-self: stretch;
}
.tt-blog-card .blog-card-media {
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
}
.tt-blog-card:hover .blog-card-media {
  transform: scale(110%);
}

/* FAQ Accordion */
.tt-faq .tt-faq-container .tt-faq-item .ac-trigger::before, .tt-faq .tt-faq-container .tt-faq-item .ac-trigger::after {
  content: "";
  position: absolute;
  right: 0.5rem;
  top: 1rem;
  width: 2px;
  height: 0.6rem;
  background-color: var(--black-a-100);
  transition: all 0.2s;
}
.tt-faq .tt-faq-container .tt-faq-item .ac-trigger::after {
  transform: rotate(90deg);
}
.tt-faq .tt-faq-container .tt-faq-item.is-active .ac-trigger:before {
  transform: rotate(90deg);
}
.tt-faq.purple .faq-group-heading {
  color: var(--purple-600);
}

/* Typewriter */
.typewriter-text {
  padding-right: var(--space-text-cursor);
  hyphens: auto;
}

.typewriter-cursor {
  margin-left: calc(var(--space-text-cursor) * -1);
  display: inline-block;
  width: 0.05em;
  height: 0.75em;
  background: currentColor;
}

.typewriter-content {
  text-indent: -9999rem;
  width: 0;
  height: 0;
  display: block;
}

/* Tooltip */
.tt-tooltip-text[data-tippy-content]:not([data-tippy-content=""]) {
  text-decoration: underline;
  text-underline-offset: 0.2em;
  text-decoration-style: dashed;
  text-decoration-color: var(--black-a-25);
}

/* GRADIENTS */
.tt-gradient-container img, .tt-gradient::before {
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

.tt-gradient-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 2;
  background: url(https://uploads-ssl.webflow.com/645a9acecda2e0594fac6126/65809a10c85f59a63201a8a5_noise-light.png), repeat;
  background-size: 10%;
  background-blend-mode: soft-light;
  opacity: 0.8;
  filter: blur(1px);
}

.bg-black .tt-gradient-panel::before, .tt-footer .tt-gradient-panel::before {
  background: url(https://uploads-ssl.webflow.com/645a9acecda2e0594fac6126/65809a10cc78a2c386bcdf50_noise_dark.png), repeat;
  background-size: 10%;
  opacity: 0.6;
}

/* Table */
.w-embed:has(table) {
  overflow-x: auto; /* Ermöglicht horizontales Scrollen */
  width: 90vw;
  max-width: 38rem;
}

table {
  border-collapse: collapse;
  border: 0;
  font-size: 0.8rem;
  width: 100%;
  line-height: 1.3;
}

thead {
  border-bottom: solid 2px;
  font-family: Polysans median, sans-serif;
  font-weight: 600;
}

tfoot {
  border-top: solid 2px var(--black-a-100);
  font-family: Polysans median, sans-serif;
  font-weight: 600;
}

tr {
  border-bottom: 1px solid var(--black-a-16);
}

th,
td {
  padding: 0.75rem 0.5rem;
  text-align: left;
  min-width: 10ch;
  vertical-align: top;
  text-wrap: pretty;
}

tbody th {
  font-family: Polysans slim, sans-serif;
  font-weight: 300;
}

/* RICHTEXTEDITOR */
.article-rte a {
  color: currentColor;
  text-decoration: none;
  -webkit-transition: background-image 400ms cubic-bezier(0.65, 0, 0.35, 1);
  transition: background-image 400ms cubic-bezier(0.65, 0, 0.35, 1);
}

.article-rte a::before {
  content: "";
  position: absolute;
  top: 100%;
  width: 100%;
  left: 0;
  height: 2px;
  background: linear-gradient(250.76deg, #FF8A3C 0%, #933998 100%);
}

/* LISTS */
ul.checklist {
  list-style: none;
}
ul.checklist li {
  position: relative;
}
ul.checklist li::before {
  content: "";
  height: 1em;
  width: 1em;
  position: absolute;
  left: -1.5em;
  top: 0.1em;
  display: block;
  -webkit-mask: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M14.2676 4.42757C14.7218 4.85151 14.7464 5.56339 14.3224 6.01761L8.02244 12.7676C7.80967 12.9956 7.51183 13.125 7.2 13.125C6.88817 13.125 6.59033 12.9956 6.37757 12.7676L3.67757 9.87476C3.25363 9.42054 3.27818 8.70865 3.7324 8.28471C4.18662 7.86077 4.8985 7.88532 5.32244 8.33954L7.2 10.3512L12.6776 4.4824C13.1015 4.02818 13.8134 4.00363 14.2676 4.42757Z' fill='%230DF28F'/%3E%3C/svg%3E%0A") no-repeat center/contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M14.2676 4.42757C14.7218 4.85151 14.7464 5.56339 14.3224 6.01761L8.02244 12.7676C7.80967 12.9956 7.51183 13.125 7.2 13.125C6.88817 13.125 6.59033 12.9956 6.37757 12.7676L3.67757 9.87476C3.25363 9.42054 3.27818 8.70865 3.7324 8.28471C4.18662 7.86077 4.8985 7.88532 5.32244 8.33954L7.2 10.3512L12.6776 4.4824C13.1015 4.02818 13.8134 4.00363 14.2676 4.42757Z' fill='%230DF28F'/%3E%3C/svg%3E%0A") no-repeat center/contain;
  mask-repeat: no-repeat;
  mask-size: contain;
  background-color: var(--green); /* Farbe, die durch die Maske scheint */
}
ul.checklist.circle-check li::before {
  height: 0.8em;
  width: 0.8em;
  top: 0.2em;
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 18 18" height="18" width="18"><path fill="%23000" fill-rule="evenodd" d="M9 18c4.97 0 9-4.03 9-9s-4.03-9-9-9-9 4.03-9 9 4.03 9 9 9zm4.5-11.29c.33-.42.27-1.03-.15-1.36-.42-.33-1.03-.27-1.36.15L7.44 11.2 5.61 9.84c-.43-.32-1.03-.23-1.35.19-.32.43-.23 1.03.19 1.35l2.57 1.93c.42.31 1.01.24 1.33-.17l5.14-6.43z" clip-rule="evenodd"></path></svg>');
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 18 18" height="18" width="18"><path fill="%23000" fill-rule="evenodd" d="M9 18c4.97 0 9-4.03 9-9s-4.03-9-9-9-9 4.03-9 9 4.03 9 9 9zm4.5-11.29c.33-.42.27-1.03-.15-1.36-.42-.33-1.03-.27-1.36.15L7.44 11.2 5.61 9.84c-.43-.32-1.03-.23-1.35.19-.32.43-.23 1.03.19 1.35l2.57 1.93c.42.31 1.01.24 1.33-.17l5.14-6.43z" clip-rule="evenodd"></path></svg>');
  background-color: currentColor;
}
ul.checklist.pricing li::before {
  background-color: var(--purple-600);
}
ul.checklist.pricing.dark li::before {
  background-color: var(--purple-400);
}

.tt-pricing-card-list ul.checklist li::before {
  background-color: var(--purple-600);
}

/* Requirements */
.tt-feature-highlights {
  /* Editor Feature Highlights */
  /* AI Feature Highlights */
  /* Comments Feature Highlights */
  /* Collaboration Feature Highlights */
  /* Documents Feature Highlights */
  /* Template Feature Highlights */
}
.tt-feature-highlights.editor-colors .tt-feature-cards .tt-feature-card:nth-child(1) {
  border-color: var(--color-editor-grading-1);
}
.tt-feature-highlights.editor-colors .tt-feature-cards .tt-feature-card:nth-child(1) .feature-count {
  -webkit-text-stroke-color: var(--color-editor-grading-1);
}
.tt-feature-highlights.editor-colors .tt-feature-cards .tt-feature-card:nth-child(2) {
  border-color: var(--color-editor-grading-2);
}
.tt-feature-highlights.editor-colors .tt-feature-cards .tt-feature-card:nth-child(2) .feature-count {
  -webkit-text-stroke-color: var(--color-editor-grading-2);
}
.tt-feature-highlights.editor-colors .tt-feature-cards .tt-feature-card:nth-child(3) {
  border-color: var(--color-editor-grading-3);
}
.tt-feature-highlights.editor-colors .tt-feature-cards .tt-feature-card:nth-child(3) .feature-count {
  -webkit-text-stroke-color: var(--color-editor-grading-3);
}
.tt-feature-highlights.editor-colors .tt-feature-cards .tt-feature-card:nth-child(4) {
  border-color: var(--color-editor-grading-4);
}
.tt-feature-highlights.editor-colors .tt-feature-cards .tt-feature-card:nth-child(4) .feature-count {
  -webkit-text-stroke-color: var(--color-editor-grading-4);
}
.tt-feature-highlights.editor-colors .tt-feature-cards .tt-feature-card:nth-child(5) {
  border-color: var(--color-editor-grading-5);
}
.tt-feature-highlights.editor-colors .tt-feature-cards .tt-feature-card:nth-child(5) .feature-count {
  -webkit-text-stroke-color: var(--color-editor-grading-5);
}
.tt-feature-highlights.ai-colors .tt-feature-cards .tt-feature-card:nth-child(1) {
  border-color: var(--color-ai-grading-1);
}
.tt-feature-highlights.ai-colors .tt-feature-cards .tt-feature-card:nth-child(1) .feature-count {
  -webkit-text-stroke-color: var(--color-ai-grading-1);
}
.tt-feature-highlights.ai-colors .tt-feature-cards .tt-feature-card:nth-child(2) {
  border-color: var(--color-ai-grading-2);
}
.tt-feature-highlights.ai-colors .tt-feature-cards .tt-feature-card:nth-child(2) .feature-count {
  -webkit-text-stroke-color: var(--color-ai-grading-2);
}
.tt-feature-highlights.ai-colors .tt-feature-cards .tt-feature-card:nth-child(3) {
  border-color: var(--color-ai-grading-3);
}
.tt-feature-highlights.ai-colors .tt-feature-cards .tt-feature-card:nth-child(3) .feature-count {
  -webkit-text-stroke-color: var(--color-ai-grading-3);
}
.tt-feature-highlights.ai-colors .tt-feature-cards .tt-feature-card:nth-child(4) {
  border-color: var(--color-ai-grading-4);
}
.tt-feature-highlights.ai-colors .tt-feature-cards .tt-feature-card:nth-child(4) .feature-count {
  -webkit-text-stroke-color: var(--color-ai-grading-4);
}
.tt-feature-highlights.ai-colors .tt-feature-cards .tt-feature-card:nth-child(5) {
  border-color: var(--color-ai-grading-5);
}
.tt-feature-highlights.ai-colors .tt-feature-cards .tt-feature-card:nth-child(5) .feature-count {
  -webkit-text-stroke-color: var(--color-ai-grading-5);
}
.tt-feature-highlights.comments-colors .tt-feature-cards .tt-feature-card:nth-child(1) {
  border-color: var(--color-comments-grading-1);
}
.tt-feature-highlights.comments-colors .tt-feature-cards .tt-feature-card:nth-child(1) .feature-count {
  -webkit-text-stroke-color: var(--color-comments-grading-1);
}
.tt-feature-highlights.comments-colors .tt-feature-cards .tt-feature-card:nth-child(2) {
  border-color: var(--color-comments-grading-2);
}
.tt-feature-highlights.comments-colors .tt-feature-cards .tt-feature-card:nth-child(2) .feature-count {
  -webkit-text-stroke-color: var(--color-comments-grading-2);
}
.tt-feature-highlights.comments-colors .tt-feature-cards .tt-feature-card:nth-child(3) {
  border-color: var(--color-comments-grading-3);
}
.tt-feature-highlights.comments-colors .tt-feature-cards .tt-feature-card:nth-child(3) .feature-count {
  -webkit-text-stroke-color: var(--color-comments-grading-3);
}
.tt-feature-highlights.comments-colors .tt-feature-cards .tt-feature-card:nth-child(4) {
  border-color: var(--color-comments-grading-4);
}
.tt-feature-highlights.comments-colors .tt-feature-cards .tt-feature-card:nth-child(4) .feature-count {
  -webkit-text-stroke-color: var(--color-comments-grading-4);
}
.tt-feature-highlights.comments-colors .tt-feature-cards .tt-feature-card:nth-child(5) {
  border-color: var(--color-comments-grading-5);
}
.tt-feature-highlights.comments-colors .tt-feature-cards .tt-feature-card:nth-child(5) .feature-count {
  -webkit-text-stroke-color: var(--color-comments-grading-5);
}
.tt-feature-highlights.collaboration-colors .tt-feature-cards .tt-feature-card:nth-child(1) {
  border-color: var(--color-collaboration-grading-1);
}
.tt-feature-highlights.collaboration-colors .tt-feature-cards .tt-feature-card:nth-child(1) .feature-count {
  -webkit-text-stroke-color: var(--color-collaboration-grading-1);
}
.tt-feature-highlights.collaboration-colors .tt-feature-cards .tt-feature-card:nth-child(2) {
  border-color: var(--color-collaboration-grading-2);
}
.tt-feature-highlights.collaboration-colors .tt-feature-cards .tt-feature-card:nth-child(2) .feature-count {
  -webkit-text-stroke-color: var(--color-collaboration-grading-2);
}
.tt-feature-highlights.collaboration-colors .tt-feature-cards .tt-feature-card:nth-child(3) {
  border-color: var(--color-collaboration-grading-3);
}
.tt-feature-highlights.collaboration-colors .tt-feature-cards .tt-feature-card:nth-child(3) .feature-count {
  -webkit-text-stroke-color: var(--color-collaboration-grading-3);
}
.tt-feature-highlights.collaboration-colors .tt-feature-cards .tt-feature-card:nth-child(4) {
  border-color: var(--color-collaboration-grading-4);
}
.tt-feature-highlights.collaboration-colors .tt-feature-cards .tt-feature-card:nth-child(4) .feature-count {
  -webkit-text-stroke-color: var(--color-collaboration-grading-4);
}
.tt-feature-highlights.collaboration-colors .tt-feature-cards .tt-feature-card:nth-child(5) {
  border-color: var(--color-collaboration-grading-5);
}
.tt-feature-highlights.collaboration-colors .tt-feature-cards .tt-feature-card:nth-child(5) .feature-count {
  -webkit-text-stroke-color: var(--color-collaboration-grading-5);
}
.tt-feature-highlights.documents-colors .tt-feature-cards .tt-feature-card:nth-child(1) {
  border-color: var(--color-documents-grading-1);
}
.tt-feature-highlights.documents-colors .tt-feature-cards .tt-feature-card:nth-child(1) .feature-count {
  -webkit-text-stroke-color: var(--color-documents-grading-1);
}
.tt-feature-highlights.documents-colors .tt-feature-cards .tt-feature-card:nth-child(2) {
  border-color: var(--color-documents-grading-2);
}
.tt-feature-highlights.documents-colors .tt-feature-cards .tt-feature-card:nth-child(2) .feature-count {
  -webkit-text-stroke-color: var(--color-documents-grading-2);
}
.tt-feature-highlights.documents-colors .tt-feature-cards .tt-feature-card:nth-child(3) {
  border-color: var(--color-documents-grading-3);
}
.tt-feature-highlights.documents-colors .tt-feature-cards .tt-feature-card:nth-child(3) .feature-count {
  -webkit-text-stroke-color: var(--color-documents-grading-3);
}
.tt-feature-highlights.documents-colors .tt-feature-cards .tt-feature-card:nth-child(4) {
  border-color: var(--color-documents-grading-4);
}
.tt-feature-highlights.documents-colors .tt-feature-cards .tt-feature-card:nth-child(4) .feature-count {
  -webkit-text-stroke-color: var(--color-documents-grading-4);
}
.tt-feature-highlights.documents-colors .tt-feature-cards .tt-feature-card:nth-child(5) {
  border-color: var(--color-documents-grading-5);
}
.tt-feature-highlights.documents-colors .tt-feature-cards .tt-feature-card:nth-child(5) .feature-count {
  -webkit-text-stroke-color: var(--color-documents-grading-5);
}
.tt-feature-highlights.template-colors .tt-feature-cards .tt-feature-card:nth-child(1) {
  border-color: var(--color-template-grading-1);
}
.tt-feature-highlights.template-colors .tt-feature-cards .tt-feature-card:nth-child(1) .feature-count {
  -webkit-text-stroke-color: var(--color-template-grading-1);
}
.tt-feature-highlights.template-colors .tt-feature-cards .tt-feature-card:nth-child(2) {
  border-color: var(--color-template-grading-2);
}
.tt-feature-highlights.template-colors .tt-feature-cards .tt-feature-card:nth-child(2) .feature-count {
  -webkit-text-stroke-color: var(--color-template-grading-2);
}
.tt-feature-highlights.template-colors .tt-feature-cards .tt-feature-card:nth-child(3) {
  border-color: var(--color-template-grading-3);
}
.tt-feature-highlights.template-colors .tt-feature-cards .tt-feature-card:nth-child(3) .feature-count {
  -webkit-text-stroke-color: var(--color-template-grading-3);
}
.tt-feature-highlights.template-colors .tt-feature-cards .tt-feature-card:nth-child(4) {
  border-color: var(--color-template-grading-4);
}
.tt-feature-highlights.template-colors .tt-feature-cards .tt-feature-card:nth-child(4) .feature-count {
  -webkit-text-stroke-color: var(--color-template-grading-4);
}
.tt-feature-highlights.template-colors .tt-feature-cards .tt-feature-card:nth-child(5) {
  border-color: var(--color-template-grading-5);
}
.tt-feature-highlights.template-colors .tt-feature-cards .tt-feature-card:nth-child(5) .feature-count {
  -webkit-text-stroke-color: var(--color-template-grading-5);
}

.tt-feature-requirements,
.tt-feature-quickstart {
  box-shadow: var(--shadow-dark);
}

/* Old stand - remove updates after the pages */
.card-comments .tt-feature-requirements-content:first-child ul.checklist li::before {
  background-color: var(--orange-500);
}

.card-comments .tt-feature-requirements-content:nth-child(2) ul.checklist li::before {
  background-color: var(--blue-300);
}

.card-ai .tt-feature-requirements-content:first-child ul.checklist li::before {
  background-color: var(--indigo-500);
}

.card-ai .tt-feature-requirements-content:nth-child(2) ul.checklist li::before {
  background-color: var(--red-300);
}

/* Qucikstart List  */
ol.quickstart-list {
  list-style: none;
  counter-reset: list-counter;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25em;
}

ol.quickstart-list li {
  counter-increment: list-counter;
  display: flex;
  flex-direction: row;
  gap: 0.75em;
}

ol.quickstart-list li::before {
  content: counter(list-counter) ".";
}

/* Feature Card  */
.tt-feature-requirements-content:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -2.5rem;
  width: 1px;
  height: 100%;
  background-color: var(--white-a-20);
}

@media screen and (max-width: 767px) {
  .tt-feature-requirements-content:not(:last-child)::after {
    right: -1.25rem;
  }
}
@media screen and (max-width: 479px) {
  .tt-feature-requirements-content:not(:last-child)::after {
    content: none;
  }
}
.tt-feature-quickstart {
  border-color: transparent;
}
.tt-feature-quickstart * {
  z-index: 1;
}
.tt-feature-quickstart::before {
  content: "";
  width: 2.5rem;
  height: 0.5rem;
  background-image: url("data:image/svg+xml,%3Csvg width='49' height='10' viewBox='0 0 49 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cellipse cx='5.80219' cy='5' rx='5.80219' ry='5' fill='white' fill-opacity='0.12'/%3E%3Cellipse cx='24.8933' cy='5' rx='5.25849' ry='5' fill='white' fill-opacity='0.12'/%3E%3Ccircle cx='43.1816' cy='5' r='5' fill='white' fill-opacity='0.12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-bottom: 0.5rem;
}
.tt-feature-quickstart::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: calc(1rem - 2px);
  padding: 2px;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transform: translateZ(0);
  opacity: 0.6;
  z-index: 0;
  transform: translateZ(0);
}

.card-comments .tt-feature-quickstart::after {
  background: linear-gradient(to bottom right, var(--orange-500), var(--blue-300));
}

.card-ai .tt-feature-quickstart::after {
  background: linear-gradient(to bottom right, var(--indigo-500), var(--red-300));
}

/* Color Function */
/* Archievements General */
.tt-customer-achievements .achievement-item {
  position: relative;
  border: unset;
}
.tt-customer-achievements .achievement-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: calc(var(--radius-default) - 2px);
  padding: 2px;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transform: translateZ(0);
  z-index: 1;
}
.tt-customer-achievements .achievement-item .achievement-head {
  background-size: 100% 100%;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: var(--black-900);
  -webkit-text-stroke: 2px transparent;
}

/* Specific Gradients */
/* Enterprise gradients */
.tt-customer-achievements.color-enterprise:has(.achievement-item:nth-child(1)) .achievement-item:nth-child(1)::after, .tt-customer-achievements.color-enterprise:has(.achievement-item:nth-child(1)) .achievement-item:nth-child(1) .achievement-head {
  background: linear-gradient(to bottom right, #0df28f, #8b33ff);
}
.tt-customer-achievements.color-enterprise:has(.achievement-item:nth-child(2)) .achievement-item:nth-child(1)::after, .tt-customer-achievements.color-enterprise:has(.achievement-item:nth-child(2)) .achievement-item:nth-child(1) .achievement-head {
  background: linear-gradient(to bottom right, #0df28f, rgb(76, 146.5, 199));
}
.tt-customer-achievements.color-enterprise:has(.achievement-item:nth-child(2)) .achievement-item:nth-child(2)::after, .tt-customer-achievements.color-enterprise:has(.achievement-item:nth-child(2)) .achievement-item:nth-child(2) .achievement-head {
  background: linear-gradient(to bottom right, rgb(76, 146.5, 199), #8b33ff);
}
.tt-customer-achievements.color-enterprise:has(.achievement-item:nth-child(3)) .achievement-item:nth-child(1)::after, .tt-customer-achievements.color-enterprise:has(.achievement-item:nth-child(3)) .achievement-item:nth-child(1) .achievement-head {
  background: linear-gradient(to bottom right, #0df28f, rgb(55, 178.3333333333, 180.3333333333));
}
.tt-customer-achievements.color-enterprise:has(.achievement-item:nth-child(3)) .achievement-item:nth-child(2)::after, .tt-customer-achievements.color-enterprise:has(.achievement-item:nth-child(3)) .achievement-item:nth-child(2) .achievement-head {
  background: linear-gradient(to bottom right, rgb(55, 178.3333333333, 180.3333333333), rgb(97, 114.6666666667, 217.6666666667));
}
.tt-customer-achievements.color-enterprise:has(.achievement-item:nth-child(3)) .achievement-item:nth-child(3)::after, .tt-customer-achievements.color-enterprise:has(.achievement-item:nth-child(3)) .achievement-item:nth-child(3) .achievement-head {
  background: linear-gradient(to bottom right, rgb(97, 114.6666666667, 217.6666666667), #8b33ff);
}

.tt-meta-feature-group.color-enterprise:has(.meta-feature-item:nth-child(1)) .meta-feature-item:nth-child(1) .meta-text-gradient {
  background-color: #0df28f;
  background-image: linear-gradient(to bottom right, #0df28f, #8b33ff);
}
.tt-meta-feature-group.color-enterprise:has(.meta-feature-item:nth-child(2)) .meta-feature-item:nth-child(1) .meta-text-gradient {
  background-color: #0df28f;
  background-image: linear-gradient(to bottom right, #0df28f, rgb(76, 146.5, 199));
}
.tt-meta-feature-group.color-enterprise:has(.meta-feature-item:nth-child(2)) .meta-feature-item:nth-child(2) .meta-text-gradient {
  background-color: rgb(76, 146.5, 199);
  background-image: linear-gradient(to bottom right, rgb(76, 146.5, 199), #8b33ff);
}
.tt-meta-feature-group.color-enterprise:has(.meta-feature-item:nth-child(3)) .meta-feature-item:nth-child(1) .meta-text-gradient {
  background-color: #0df28f;
  background-image: linear-gradient(to bottom right, #0df28f, rgb(55, 178.3333333333, 180.3333333333));
}
.tt-meta-feature-group.color-enterprise:has(.meta-feature-item:nth-child(3)) .meta-feature-item:nth-child(2) .meta-text-gradient {
  background-color: rgb(55, 178.3333333333, 180.3333333333);
  background-image: linear-gradient(to bottom right, rgb(55, 178.3333333333, 180.3333333333), rgb(97, 114.6666666667, 217.6666666667));
}
.tt-meta-feature-group.color-enterprise:has(.meta-feature-item:nth-child(3)) .meta-feature-item:nth-child(3) .meta-text-gradient {
  background-color: rgb(97, 114.6666666667, 217.6666666667);
  background-image: linear-gradient(to bottom right, rgb(97, 114.6666666667, 217.6666666667), #8b33ff);
}

/* QUOTES */
.tt-single-client-quote .tt-quote-author:has(:not(.quote-author-image)) .quote-author-details {
  align-items: center;
  text-align: center;
}

.tt-single-client-quote blockquote::before,
.tt-client-achievement-wrap blockquote::before {
  content: "»";
}
.tt-single-client-quote blockquote::after,
.tt-client-achievement-wrap blockquote::after {
  content: "«";
}

/* Blockquote  */
blockquote span,
blockquote em {
  background-color: #fff;
  color: currentcolor;
  border-radius: 0.4rem;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 0.25rem 0.4rem 0.05rem;
  border-radius: 0.4rem;
  font-style: normal;
}
blockquote span::before,
blockquote em::before {
  content: "»";
}
blockquote span::after,
blockquote em::after {
  content: "«";
}

.tt-client-quote-wrap:nth-child(2) {
  background-image: url("https://cdn.prod.website-files.com/645a9acecda2e0594fac6126/6580b17fe7c78406c95a807b_gradient-noise-violett-orange.png");
}
.tt-client-quote-wrap:nth-child(3) {
  background-image: url("https://cdn.prod.website-files.com/645a9acecda2e0594fac6126/6580b17f35510ffc21541056_gradient-noise-collaboration.png");
}

.sticky-filter {
  overflow-y: scroll; /* Add the ability to scroll */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.sticky-filter::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.sticky-filter {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

/* RICHTEXT */
.tt-richtext.w-embed::before {
  content: none;
}
.tt-richtext .w-embed {
  margin: 2rem 0;
}
.tt-richtext .w-embed iframe[title="YouTube video player"] {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
.tt-richtext ul ul {
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
}

.tt-richtext:first-child, .tt-introtext-wrap:first-child {
  margin-top: 0;
}
.tt-richtext:last-child, .tt-introtext-wrap:last-child {
  margin-top: 0;
}

/* RICHTEXT Terms */
.tt-richtext.experiments ul {
  list-style-type: none; /* Entfernt die Standard-Listenpunkte */
  padding: 0;
}
.tt-richtext.experiments li {
  position: relative;
  padding-left: 1em;
  margin-bottom: 0.25em;
}
.tt-richtext.experiments li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  transform: translateY(-50%);
  width: 0.3em; /* Breite des Punktes */
  height: 0.3em; /* Höhe des Punktes */
  background: linear-gradient(45deg, var(--color-experiments-grading-1), var(--color-experiments-grading-2));
  border-radius: 50%; /* Macht den Punkt rund */
}

/* RICHTEXT Terms */
.tt-richtext.tt-rte-terms ol {
  counter-reset: item;
  list-style-type: none; /* Entfernt die Standard-Nummerierung */
  width: 100%;
  padding-left: 0;
  font-variant-numeric: lining-nums tabular-nums;
}

.tt-richtext.tt-rte-terms li {
  display: block;
}

.tt-richtext.tt-rte-terms li:before {
  content: counters(item, ".") ". ";
  counter-increment: item;
}

.tt-richtext.tt-rte-terms ol > li {
  font-size: 1.4rem;
  font-family: Polysans median, sans-serif;
  font-weight: 600;
}

.tt-richtext.tt-rte-terms ol > li > ol li {
  font-size: 1rem;
  font-family: Polysans slim, sans-serif;
  font-weight: 300;
}

.tt-richtext.tt-rte-terms ol > li > ol > li {
  padding-left: 3rem;
}

.tt-richtext.tt-rte-terms ol > li > ol > li::before {
  position: absolute;
  margin-left: -3rem;
}

.tt-richtext.tt-rte-terms ol > li > ol > li > ol > li {
  padding-left: 4rem;
}

.tt-richtext.tt-rte-terms ol > li > ol > li > ol > li::before {
  margin-left: -4rem;
}

/* CODE + CODEBLOCK */
.tt-richtext code {
  border-radius: 0.4rem;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 0.1rem 0.2rem 0.1rem;
}

.tt-richtext pre.w-code-block code {
  height: 100%;
  max-height: 20rem;
}

.w-code-block {
  font-family: Jetbrainsmono, sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 0.75rem;
  background-color: var(--black-a-100) !important;
  color: #EEFFFF !important;
  scrollbar-color: #3D3D3D var(--black-a-100);
  scrollbar-width: thin;
}
.w-code-block span[style="color:#dcc6e0"] {
  color: #89DDFF !important;
  font-style: italic;
}
.w-code-block span.hljs-attr[style="color:#ffa07a"] {
  color: #C792EA !important;
}
.w-code-block span[style="color:#abe338"] {
  color: #C3E88D !important;
}
.w-code-block span[style="color:#ffa07a"] {
  color: #F07178 !important;
}
.w-code-block span[style="color:#d4d0ab"] {
  color: gray !important;
}
.w-code-block ::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}
.w-code-block ::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.w-code-block ::-webkit-scrollbar-thumb {
  background-color: #3D3D3D;
  border-radius: 10px;
  border: 2px solid var(--black-a-100);
}
.w-code-block ::-webkit-scrollbar-button {
  display: block;
  height: 10px;
  background-color: #888;
}
.w-code-block ::-webkit-scrollbar-corner {
  background-color: black;
}

.tt-richtext .w-code-block {
  margin-top: 1.4rem;
  margin-bottom: 1.4rem;
}

pre.w-code-block code {
  margin: unset;
  height: 100%;
}

/* Notifiaction bar */
.tt-notification-bar {
  background-size: 400% 400%;
  animation: gradient-not-bar 15s ease infinite;
}

@keyframes gradient-not-bar {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/* Hintblock */
.tt-hint-block::before {
  content: "💡";
  font-family: Apple Color Emoji, Segoe UI Emoji, Noto Color Emoji, Android Emoji, EmojiSymbols, EmojiOne Mozilla, Twemoji Mozilla, Segoe UI Symbol, Noto Color Emoji Compat, emoji;
}

.tt-hint-block-content:first-child {
  margin-top: 0;
}

.tt-richtext .tt-hint-block-content:first-child, .tt-richtext .tt-hint-block-content:first-child p {
  margin-top: 0;
}

.tt-hint-block-content h1, .tt-hint-block-content h2, .tt-hint-block-content h3, .tt-hint-block-content h4, .tt-hint-block-content h5 {
  font-size: 0.9rem;
  margin: 0;
}

/* Pricing Cards */
[data-subscription-period].inactive {
  display: none;
}

.range-slider.pricing .range-labels :first-child {
  margin-left: -0.5rem;
}
.range-slider.pricing .range-labels :last-child {
  margin-right: -0.5rem;
}
.range-slider.pricing input[type=range i] {
  background: linear-gradient(90deg, #8B33FF 0%, #8B33FF calc(10 * var(--range-value) * 1%), #000 calc(10 * var(--range-value) * 1%));
}

/* PRICING CARDS */
.tt-pricing-cards .document-dropdown::after {
  content: "";
  position: absolute;
  height: 1rem;
  width: 1rem;
  right: 0.25rem;
  top: calc(50% - 0.5rem);
  display: inline-block;
  background-size: 0.6rem;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3.96967 9.53033C3.67678 9.23744 3.67678 8.76256 3.96967 8.46967L6.43934 6L3.96967 3.53033C3.67678 3.23744 3.67678 2.76256 3.96967 2.46967C4.26256 2.17678 4.73744 2.17678 5.03033 2.46967L8.03033 5.46967C8.17098 5.61032 8.25 5.80109 8.25 6C8.25 6.19891 8.17098 6.38968 8.03033 6.53033L5.03033 9.53033C4.73744 9.82322 4.26256 9.82322 3.96967 9.53033Z' fill='%236F00FF'/%3E%3C/svg%3E%0A");
  background-position: center;
  background-repeat: no-repeat;
  transform: rotate(90deg);
}

.tt-pricing-card [data-plan-max=true] {
  display: none;
}
.tt-pricing-card.inactive {
  opacity: 0.75;
}
.tt-pricing-card.inactive .tt-button {
  opacity: 0.15;
}
.tt-pricing-card.inactive .tt-pricing-card-head,
.tt-pricing-card.inactive .plan-description {
  opacity: 0.75;
}
.tt-pricing-card.inactive [data-plan-max=true] {
  display: flex;
}
.tt-pricing-card.inactive [data-plan-max=false] {
  display: none;
}
.tt-pricing-card.inactive .tt-batch.pricing {
  background-color: var(--black-a-40);
}

.tt-pricing-tab-menu {
  -webkit-backdrop-filter: blur(1rem);
  backdrop-filter: blur(1rem);
}

.tt-pricing-tabs .tt-price-wrap {
  display: none;
}

.tt-pricing-tabs .tt-price-wrap.is-active {
  display: flex;
}

.tt-pricing-plan-col {
  font-variant-numeric: lining-nums tabular-nums;
}

/*.tt-pricing-table .tt-pricing-category:not(.tt-pricing-category ~ .tt-pricing-category)::before {
    content:"";
    display: inline-block;
    width: 100%;
    height: 2rem;
}*/
/* PRICING TABLE */
.tt-pricing-table {
  margin-top: 0;
}
.tt-pricing-table .tt-pricing-plans::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 100vw;
  left: 50%;
  transform: translateX(-50vw);
  height: 100%;
  background-color: var(--warm-grey-1);
  z-index: -1;
}
.tt-pricing-table .tt-pricing-plans.mobile .tt-pricing-plan-col.plans[data-plan-type-col=enterprise] .pricing-value-group:not([data-pricing-value-group=enterprise]), .tt-pricing-table .tt-pricing-plans.mobile-new .tt-pricing-plan-col.plans[data-plan-type-col=enterprise] .pricing-value-group:not([data-pricing-value-group=enterprise]) {
  display: none;
}
.tt-pricing-table .tt-pricing-plans.mobile .tt-pricing-plan-col.plans[data-plan-type-col=opensource] .pricing-value-group:not([data-pricing-value-group=opensource]), .tt-pricing-table .tt-pricing-plans.mobile-new .tt-pricing-plan-col.plans[data-plan-type-col=opensource] .pricing-value-group:not([data-pricing-value-group=opensource]) {
  display: none;
}
.tt-pricing-table .tt-pricing-plans.mobile .tt-pricing-plan-col.plans[data-plan-type-col=free] .pricing-value-group:not([data-pricing-value-group=free]), .tt-pricing-table .tt-pricing-plans.mobile-new .tt-pricing-plan-col.plans[data-plan-type-col=free] .pricing-value-group:not([data-pricing-value-group=free]) {
  display: none;
}
.tt-pricing-table .tt-pricing-plans.mobile .tt-pricing-plan-col.plans:not([data-plan-type-col=opensource]):not([data-plan-type-col=enterprise]):not([data-plan-type-col=free]) .pricing-value-group[data-pricing-value-group=enterprise],
.tt-pricing-table .tt-pricing-plans.mobile .tt-pricing-plan-col.plans:not([data-plan-type-col=opensource]):not([data-plan-type-col=enterprise]):not([data-plan-type-col=free]) .pricing-value-group[data-pricing-value-group=free],
.tt-pricing-table .tt-pricing-plans.mobile .tt-pricing-plan-col.plans:not([data-plan-type-col=opensource]):not([data-plan-type-col=enterprise]):not([data-plan-type-col=free]) .pricing-value-group[data-pricing-value-group=opensource], .tt-pricing-table .tt-pricing-plans.mobile-new .tt-pricing-plan-col.plans:not([data-plan-type-col=opensource]):not([data-plan-type-col=enterprise]):not([data-plan-type-col=free]) .pricing-value-group[data-pricing-value-group=enterprise],
.tt-pricing-table .tt-pricing-plans.mobile-new .tt-pricing-plan-col.plans:not([data-plan-type-col=opensource]):not([data-plan-type-col=enterprise]):not([data-plan-type-col=free]) .pricing-value-group[data-pricing-value-group=free],
.tt-pricing-table .tt-pricing-plans.mobile-new .tt-pricing-plan-col.plans:not([data-plan-type-col=opensource]):not([data-plan-type-col=enterprise]):not([data-plan-type-col=free]) .pricing-value-group[data-pricing-value-group=opensource] {
  display: none;
}
.tt-pricing-table .tt-pricing-plans.mobile .tt-pricing-plan-col.plans .plan-dropdown::after, .tt-pricing-table .tt-pricing-plans.mobile-new .tt-pricing-plan-col.plans .plan-dropdown::after {
  content: "";
  position: absolute;
  height: 1rem;
  width: 1rem;
  right: 0.25rem;
  top: calc(50% - 0.5rem);
  display: inline-block;
  background-size: 0.6rem;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3.96967 9.53033C3.67678 9.23744 3.67678 8.76256 3.96967 8.46967L6.43934 6L3.96967 3.53033C3.67678 3.23744 3.67678 2.76256 3.96967 2.46967C4.26256 2.17678 4.73744 2.17678 5.03033 2.46967L8.03033 5.46967C8.17098 5.61032 8.25 5.80109 8.25 6C8.25 6.19891 8.17098 6.38968 8.03033 6.53033L5.03033 9.53033C4.73744 9.82322 4.26256 9.82322 3.96967 9.53033Z' fill='%236F00FF'/%3E%3C/svg%3E%0A");
  background-position: center;
  background-repeat: no-repeat;
  transform: rotate(90deg);
}
.tt-pricing-table .tt-pricing-table-wrap {
  gap: 0rem;
}
.tt-pricing-table .tt-pricing-table-wrap .tt-pricing-category.first-group::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 2rem;
}
.tt-pricing-table .tt-pricing-table-wrap .tt-pricing-category::after {
  content: "";
  display: inline-block;
  top: 5rem;
  width: 100%;
  height: 2rem;
}
.tt-pricing-table .tt-pricing-table-wrap .tt-pricing-category > div:nth-child(2) {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.tt-pricing-table .tt-pricing-table-wrap .tt-pricing-category[id] .tt-pricing-category-title {
  cursor: pointer;
  /* Icon bei Hover einblenden */
  /* Feedback-Animation, wenn kopiert wurde */
}
.tt-pricing-table .tt-pricing-table-wrap .tt-pricing-category[id] .tt-pricing-category-title:hover .tt-copy-anchor {
  opacity: 1;
}
.tt-pricing-table .tt-pricing-table-wrap .tt-pricing-category[id] .tt-pricing-category-title.tt-copied .tt-pricing-sub-title-group::before {
  content: "Copied";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--black-900);
  color: white;
  padding: 6px 8px;
  border-radius: 4px;
  font-size: 12px;
  opacity: 0;
  animation: copied-fade-animation 1s ease-in-out;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .tt-pricing-table .tt-pricing-plan-col {
    display: none;
  }
  .tt-pricing-table .tt-pricing-plan-col.plans {
    display: flex;
  }
  .tt-pricing-table[data-active-col-first="1"] .tt-pricing-row .tt-pricing-plan-col[data-plan-type-col="1"], .tt-pricing-table[data-active-col-first="2"] .tt-pricing-row .tt-pricing-plan-col[data-plan-type-col="2"], .tt-pricing-table[data-active-col-first="3"] .tt-pricing-row .tt-pricing-plan-col[data-plan-type-col="3"], .tt-pricing-table[data-active-col-first="4"] .tt-pricing-row .tt-pricing-plan-col[data-plan-type-col="4"], .tt-pricing-table[data-active-col-first="5"] .tt-pricing-row .tt-pricing-plan-col[data-plan-type-col="5"] {
    display: flex;
  }
  .tt-pricing-table[data-active-col-second="1"] .tt-pricing-row .tt-pricing-plan-col[data-plan-type-col="1"], .tt-pricing-table[data-active-col-second="2"] .tt-pricing-row .tt-pricing-plan-col[data-plan-type-col="2"], .tt-pricing-table[data-active-col-second="3"] .tt-pricing-row .tt-pricing-plan-col[data-plan-type-col="3"], .tt-pricing-table[data-active-col-second="4"] .tt-pricing-row .tt-pricing-plan-col[data-plan-type-col="4"], .tt-pricing-table[data-active-col-second="5"] .tt-pricing-row .tt-pricing-plan-col[data-plan-type-col="5"] {
    display: flex;
    order: 9999;
  }
}
@media screen and (max-width: 767px) {
  .tt-pricing-table.old-pricing[data-active-col-first=free] .tt-pricing-row .tt-pricing-plan-col[data-plan-type-col=free], .tt-pricing-table.old-pricing[data-active-col-first=entry] .tt-pricing-row .tt-pricing-plan-col[data-plan-type-col=entry], .tt-pricing-table.old-pricing[data-active-col-first=business] .tt-pricing-row .tt-pricing-plan-col[data-plan-type-col=business], .tt-pricing-table.old-pricing[data-active-col-first=enterprise] .tt-pricing-row .tt-pricing-plan-col[data-plan-type-col=enterprise] {
    display: flex;
  }
  .tt-pricing-table.old-pricing[data-active-col-second=free] .tt-pricing-row .tt-pricing-plan-col[data-plan-type-col=free], .tt-pricing-table.old-pricing[data-active-col-second=entry] .tt-pricing-row .tt-pricing-plan-col[data-plan-type-col=entry], .tt-pricing-table.old-pricing[data-active-col-second=business] .tt-pricing-row .tt-pricing-plan-col[data-plan-type-col=business], .tt-pricing-table.old-pricing[data-active-col-second=enterprise] .tt-pricing-row .tt-pricing-plan-col[data-plan-type-col=enterprise] {
    display: flex;
    order: 9999;
  }
}

.tt-pricing-feature-group .tt-pricing-sub-toggle .tt-pricing-feature-col .tt-pricing-text-group {
  position: relative;
}
.tt-pricing-feature-group .tt-pricing-sub-toggle .tt-pricing-feature-col .tt-pricing-text-group::before {
  content: "";
  position: absolute;
  height: 1.2em;
  width: 1.2em;
  left: -1.4em;
  top: 0;
  display: inline-block;
  background-size: 0.8em;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3.96967 9.53033C3.67678 9.23744 3.67678 8.76256 3.96967 8.46967L6.43934 6L3.96967 3.53033C3.67678 3.23744 3.67678 2.76256 3.96967 2.46967C4.26256 2.17678 4.73744 2.17678 5.03033 2.46967L8.03033 5.46967C8.17098 5.61032 8.25 5.80109 8.25 6C8.25 6.19891 8.17098 6.38968 8.03033 6.53033L5.03033 9.53033C4.73744 9.82322 4.26256 9.82322 3.96967 9.53033Z' fill='%236F00FF'/%3E%3C/svg%3E%0A");
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
  border-radius: 0.2rem;
}
.tt-pricing-feature-group .tt-pricing-sub-toggle:hover .tt-pricing-text-group::before {
  background-color: var(--black-a-6);
}
.tt-pricing-feature-group .tt-pricing-sub-row :last-child {
  border-bottom-color: rgba(0, 0, 0, 0.1);
}
.tt-pricing-feature-group.is-active .tt-pricing-sub-toggle .tt-pricing-feature-col .tt-pricing-text-group::before {
  transform: rotate(90deg);
}

/* Cost calculator */
input[type=range i] {
  --range-value: 0;
  height: 6px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  background: linear-gradient(90deg, var(--purple-600) 0%, var(--purple-600) calc(var(--range-value) * 1%), #000 calc(var(--range-value) * 1%));
  border-radius: 8px;
}
input[type=range i]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  height: 1rem;
  width: 1rem;
  background: var(--white-a-100);
  box-shadow: 0px 0px 0px 2px var(--black-a-100);
  border-radius: 50%;
}
input[type=range i]::-moz-range-thumb {
  -moz-appearance: none;
  appearance: none;
  height: 1rem;
  width: 1rem;
  background: var(--white-a-100);
  box-shadow: 0px 0px 0px 2px var(--black-a-100);
  border-radius: 50%;
}

.tt-cost-calculator .range-slider input[type=range i] {
  background: linear-gradient(90deg, #0DF28F 0%, #8B33FF calc(var(--range-value) * 1%), #000 calc(var(--range-value) * 1%));
}
.tt-cost-calculator .calculator-cost-item[data-cost-type=maintenance] {
  display: none;
}
.tt-cost-calculator .calculator-cost-item[data-cost-type=maintenance].active {
  display: flex;
}
.tt-cost-calculator .calculator-value#editable-value:hover {
  background-color: var(--black-a-6);
}
.tt-cost-calculator .calculator-value#editable-value[data-custom-value=true] {
  background-color: var(--white-a-100);
}
.tt-cost-calculator .calculator-value#editable-value[data-custom-value=true]:hover {
  background-color: var(--white-a-100);
}
.tt-cost-calculator .calculator-value-item:has(.calculator-value#editable-value):hover .calculator-value#editable-value {
  background-color: var(--black-a-6);
}
.tt-cost-calculator .calculator-value-item:has(.calculator-value#editable-value):hover .calculator-value#editable-value[data-custom-value=true] {
  background-color: var(--white-a-100);
}
.tt-cost-calculator .calculator-value-item:has(.calculator-value#editable-value):has([data-custom-value=true]) .value-edit {
  display: none;
}
.tt-cost-calculator .calculator-value-item:has(.calculator-value#editable-value):has([data-custom-value=true]) .value-reset {
  display: flex;
}
.tt-cost-calculator .range-description {
  color: var(--black-a-60);
}
.tt-cost-calculator .range-description strong {
  color: var(--black-a-100);
}
.tt-cost-calculator.dark .range-description {
  color: var(--white-a-60);
}
.tt-cost-calculator.dark .range-description strong {
  color: var(--white-a-100);
}
.tt-cost-calculator.dark .range-slider input[type=range i] {
  background: linear-gradient(90deg, #0DF28F 0%, #8B33FF calc(var(--range-value) * 1%), #fff calc(var(--range-value) * 1%));
}
.tt-cost-calculator.dark .range-slider input[type=range i]::-webkit-slider-thumb {
  background: var(--black-a-100);
  box-shadow: 0px 0px 0px 2px var(--white-a-100);
}
.tt-cost-calculator.dark .range-slider input[type=range i]::-moz-range-thumb {
  background: var(--black-a-100);
  box-shadow: 0px 0px 0px 2px var(--white-a-100);
}
.tt-cost-calculator.dark .calculator-value-item {
  background-color: var(--white-a-5);
}
.tt-cost-calculator.dark .calculator-value-item .value-reset:hover, .tt-cost-calculator.dark .calculator-value-item .value-edit:hover {
  background-color: var(--white-a-10);
}
.tt-cost-calculator.dark .calculator-value-item .calculator-value#editable-value[data-custom-value=true] {
  background-color: var(--black-a-96);
}
.tt-cost-calculator.dark .calculator-value-item .calculator-value#editable-value[data-custom-value=true]:hover {
  background-color: var(--black-a-96);
}
.tt-cost-calculator.dark .calculator-value-item .calculator-value#editable-value:focus {
  background-color: var(--black-a-96);
}
.tt-cost-calculator.dark .calculator-value-item:has(.calculator-value#editable-value):hover .calculator-value#editable-value {
  background-color: var(--white-a-5);
}
.tt-cost-calculator.dark .calculator-value-item:has(.calculator-value#editable-value):hover .calculator-value#editable-value[data-custom-value=true] {
  background-color: var(--black-a-96);
}
.tt-cost-calculator.dark .range-description-wrap {
  border-color: var(--white-a-10);
}

/*Shiki */
.code-output * {
  display: none;
}

.code-output .shiki {
  display: block;
  overflow: auto;
  position: relative;
  padding: 1.25rem;
  border-radius: 0.75rem;
  max-height: max(300px, 60vh);
}

.code-output .shiki * {
  display: inline-block;
}

/* FIRST CHILD Settings */
.w-richtext > *:first-child, .article-rte > *:first-child, article > *:first-child, ol > *:first-child, ul > *:first-child, .collection-content > *:first-child {
  margin-top: 0;
}

.w-richtext > *:last-child, .article-rte > *:last-child, article > *:last-child {
  margin-bottom: 0;
}

.w-container:before, .w-container:after {
  display: none;
}

/* COL GROUPS */
.three-cols-teasergroup-item .icon-button, .three-cols-teasergroup-item .preview-image, .swiper-slide .preview-image, .three-cols-teasergroup-item .content-wrapper {
  -webkit-transition: 400ms cubic-bezier(0.65, 0, 0.35, 1);
  transition: 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.three-cols-teasergroup-item {
  width: calc(33.3333333333% - 0.6666666667rem);
}

@media screen and (max-width: 1099px) {
  .three-cols-teasergroup-item {
    width: calc(50% - 0.5rem);
  }
  .three-cols-teasergroup-list, .title-link-group {
    max-width: 36rem;
  }
}
@media screen and (max-width: 659px) {
  .three-cols-teasergroup-item {
    width: 100%;
  }
  .three-cols-teasergroup-list, .title-link-group {
    max-width: none;
  }
}
@media screen and (max-width: 659px) {
  .three-cols-teasergroup-item {
    width: 100%;
  }
  .three-cols-teasergroup-list, .title-link-group {
    max-width: 19rem;
  }
  .benefits-teaser .three-cols-teasergroup-list {
    max-width: 100%;
  }
  .title-link-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    grid-column-gap: 0.4rem;
    grid-row-gap: 0.4rem;
  }
}
/* Customer Overview Cards */
.tt-customer-card,
.tt-customer-card::before,
.tt-customer-card .tt-button.btn-text.small {
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
}

.tt-customer-card,
.tt-customer-card.dark {
  background-color: unset;
}

.tt-customer-card .tt-button.btn-text.small {
  max-width: 0.75rem;
}
.tt-customer-card .btn-content {
  white-space: nowrap;
}
.tt-customer-card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 1.5rem;
  background-color: var(--white-a-100);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04), 0 1px 4px rgba(0, 0, 0, 0.03), 0 1px 2px rgba(0, 0, 0, 0.02);
}
@media screen and (max-width: 479px) {
  .tt-customer-card::before {
    border-radius: 1rem;
  }
}
.tt-customer-card.dark::before {
  background-color: var(--black-a-50);
}
.tt-customer-card:hover::before {
  border-radius: 2rem;
  width: calc(100% + 1rem);
  height: calc(100% + 1rem);
  left: -0.5rem;
  top: -0.5rem;
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.06), 0 4px 10px rgba(0, 0, 0, 0.04), 0 1px 4px rgba(0, 0, 0, 0.03), 0 1px 8px rgba(0, 0, 0, 0.02);
}
@media screen and (max-width: 479px) {
  .tt-customer-card:hover::before {
    width: calc(100% + 0.5rem);
    height: calc(100% + 0.5rem);
    left: -0.25rem;
    top: -0.25rem;
    border-radius: 1.5rem;
  }
}
.tt-customer-card:hover .tt-button.btn-text.small {
  max-width: 10rem;
}
@media screen and (max-width: 479px) {
  .tt-customer-card:hover .tt-button.btn-text.small {
    max-width: 0.75rem;
  }
}
.tt-customer-card:hover .btn-content {
  width: 100%;
}

/* Animation für das Einblenden und Ausblenden */
@keyframes copied-fade-animation {
  0% {
    opacity: 0;
    transform: translate(10px, -50%);
  }
  20% {
    opacity: 1;
    transform: translate(0, -50%);
  }
  80% {
    opacity: 1;
    transform: translate(0, -50%);
  }
  100% {
    opacity: 0;
    transform: translate(10px, -50%);
  }
}/*# sourceMappingURL=tt-styling.css.map */