








  body.view-model-overview .module-hero:first-child {
    margin-bottom: calc(var(--hero-height) * -1);
  }













  .module-model-overview .row--filter {
    box-sizing: border-box;
  }
  
  .model-filter-form {
    position: sticky;
    top: 100px;
    z-index: 10;
    pointer-events: none;
  }

  .model-filter {
    background: var(--base-color-white);
    margin: 0 auto;
    width: 100%;
    max-width: max(1088px, calc(1088 * var(--px)));
    box-shadow: var(--box-shadow);
    border-top: 6px solid var(--base-color-purple);
    position: relative;
    pointer-events: all;
    transition: transform 500ms var(--ttf-4);
    --padding: max(20px, calc(24 * var(--px)));
    --box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07), 0px 64.8148px 46.8519px rgba(0, 0, 0, 0.0531481), 0px 38.5185px 25.4815px rgba(0, 0, 0, 0.0425185), 0px 20px 13px rgba(0, 0, 0, 0.035), 0px 8.14815px 6.51852px rgba(0, 0, 0, 0.0274815), 0px 1.85185px 3.14815px rgba(0, 0, 0, 0.0168519);
    --label-width: max(120px, calc(200 * var(--px)));
  }
  
  body.view-b2b .model-filter {
    border-top-color: var(--base-color-green);
    color: var(--base-color-black);
  }
  
  @media (min-width: 601px) {
    
    body.scrolled-more:not([data-scroll-dir="up"]) .model-filter {
      transform: translateY(calc(var(--header-height, 0px) * -1));
    }
    
  }

  .model-filter .mf-header {
    padding: var(--padding);
    color: var(--base-color-purple);
  }
  
  body.view-b2b .model-filter .mf-header {
    color: var(--base-color-green);
  }
  
  .model-filter .mf-header .col-set {
    position: relative;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
  }
  
  .model-filter .mf-header .col-1 {
    cursor: pointer;
    user-select: none;
    padding-right: 30px;
  }
  
  .model-filter .mf-header .col-3 {
    padding-left: 30px;
  }
  
  .btn-toggle-filter {
    position: relative;
    --size: max(20px, calc(29 * var(--px)));
    width: var(--size);
    height: var(--size);
    display: block;
  }
  
  .btn-toggle-filter span {
    display: block;
    position: absolute;
    inset: 0;
    transition: transform 750ms var(--ttf-7);
  }
  
  .model-filter[data-state="expanded"] .btn-toggle-filter span.plus {
    transform: rotate(-45deg);
  }

  .btn-toggle-filter svg {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .btn-toggle-filter svg path {
    fill: currentColor;
  }
  
  .model-filter .mf-body {
    max-height: 0px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-40px);
    transition: 750ms var(--ttf-7);
    pointer-events: none;
    background: var(--base-color-white);
    box-shadow: var(--box-shadow);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
  }
  
  .model-filter[data-state="expanded"] .mf-body {
    max-height: var(--max-height, 2000px);
    opacity: 1;
    transform: none;
    pointer-events: all;
  }
  
  .model-filter .mf-body > .inner {
    padding: var(--padding);
    padding-top: 0;
  }
  
  .model-filter .mf-actions {
    display: flex;
    flex-flow: row nowrap;
    padding-top: var(--padding);
    padding-left: var(--label-width);
    align-items: center;
    justify-content: space-between;
  }
  
  
  
  @media (max-width: 600px) {
    
    .btn-toggle-filter {
      --size: 28px;
    }
    
    body.view-model-overview .module-hero {
      display: none;
    }
    
    .model-filter {
      border-top: 0;
    }
    
    .model-filter-form {
      position: fixed;
      top: var(--header-height);
      left: 0;
      right: 0;
    }
    
    .model-filter-form[data-state="expanded"] {
      pointer-events: all;
    }
    
    .model-filter-headline::before {
      content: '';
      display: block;
      position: absolute;
      inset: calc(var(--padding) * -1);
      z-index: 3;
    }
    
    .model-filter .mf-body {
      transform: scale(0.98);
      max-height: none !important;
      position: fixed;
      top: calc(var(--header-height) + 68px);
      left: 0;
      right: 0;
      bottom: 0;
    }
    
    .model-filter .mf-actions {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: var(--base-color-yellow);
      padding: var(--padding);
    }
    
    .model-filter .mf-body > .inner {
      padding: 0;
    }
    
  }
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  .mf-list {
    border-bottom: 1px solid var(--base-color-black);
  }
  
  .mf-list > li {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    border-top: 1px solid var(--base-color-black);
    padding: 12px 0;
  }

  .mf-list > li > .label {
    width: var(--label-width);
    flex-shrink: 0;
  }
  
  .mf-list > li > .value {
    width: 100%;
  }

  .mf-list-items {
    display: flex;
    flex-flow: row wrap;
    --gap: 12px;
    margin-bottom: calc(var(--gap) * -1);
  }
  
  .mf-list-items > li {
    margin-right: var(--gap);
    margin-bottom: var(--gap);
  }
  
  
  @media (max-width: 600px) {
    
    .mf-list-wrap {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      overflow: auto;
    }
    
    .mf-list {
      padding: var(--padding);
      border-bottom: 0;
      padding-top: 0;
      padding-bottom: 90px;
    }
    
  }
  
  
  @media (max-width: 500px) {
    
    .mf-list > li {
      flex-flow: column nowrap;
      padding-bottom: 16px;
      border-top: 0;
    }
    
    .mf-list > li > .label {
      width: 100%;
      font-size: 16px;
      margin-bottom: 8px;
    }
    
    .mf-list-items {
      --gap: 8px;
    }
    
  }
  









  .model-filter .mf-header .col-2 {
    flex-grow: 1;
    text-align: center;
    margin: 0 auto;
    position: relative;
    overflow-x: auto;
    overflow-y: clip;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent 0px, black 50px, black calc(100% - 50px), transparent 100%);
		-ms-overflow-style: none;
		scrollbar-width: none;
		-webkit-overflow-scrolling: touch;
  }
  
  .model-filter .mf-header .col-2::-webkit-scrollbar {
    display: none;
  }

  .mf-active-filters {
    display: inline-flex;
    flex-flow: row nowrap;
    color: var(--base-color-purple);
    padding: 0 20px;
  }
  
  body.view-b2b .mf-active-filters {
    color: var(--base-color-green);
  }
  
  .mf-active-filters-sum {
    display: none;
  }
  
  .mf-active-filters, .mf-active-filters * {
    white-space: nowrap;
  }

  .mf-active-filters > li {
    position: relative;
    padding: 0 .75em;
  }
  
  .mf-active-filters > li:not(:last-child) {
    border-right: 1px solid #b6b6b6;
  }

  @media (max-width: 600px) {
    
    .mf-active-filters {
      display: none;
    }
    
    .mf-active-filters-sum {
      display: inline;
    }
    
  }
















  .module-model-overview .row--intro {
    padding-top: var(--hero-height);
    max-width: max(470px, calc(742 * var(--px)));
    margin: 0 auto max(50px, calc(92 * var(--px))) auto;
  }

  .module-model-overview .row--intro .col-set {
    display: flex; 
    flex-flow: row nowrap;
  }
  
  .module-model-overview .row--intro .col-1 {
    flex-shrink: 0;
  }
  
  .module-model-overview .row--intro .col-2 {
    width: 100%;
    margin-left: max(20px, calc(48 * var(--px)));
  }
  
  .module-model-overview .row--intro .cpy-22 {
    --min-font-size: .875rem;
  }
  
  .current-selection-counter {
    aspect-ratio: 134 / 134;
    position: relative;
    width: max(95px, calc(134 * var(--px)));
  }
  
  @keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

  .current-selection-counter .image {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 1;
    background: url(../../imgs/aktuelle-auswahl.svg) no-repeat center center;
    background-size: contain;
    animation: rotate 30s linear infinite;
  }
  
  body.view-b2b .current-selection-counter .image {
    background-image: url(../../imgs/aktuelle-auswahl-b2b.svg);
  }

  .current-selection-counter .copy {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--base-color-purple);
  }
  
  body.view-b2b .current-selection-counter .copy {
    color: var(--base-color-green);
  }

  .current-selection-counter .number {
    font-size: max(32px, calc(48 * var(--px)));
    display: block;
    line-height: 1;
    text-align: center;
    font-family: var(--base-font-1-demi);
    letter-spacing: 0.013em;
  }
  
  .current-selection-counter .label {
    font-size: max(10px, calc(14 * var(--px)));
    text-transform: uppercase;
    display: block;
    line-height: 1;
    text-align: center;
    font-family: var(--base-font-1-bold);
    letter-spacing: 0.15em;
  }
  
  
  @media (max-width: 600px) {
    
    .module-model-overview .row--intro {
      padding-top: 110px;
    }
    
  }


  @media (max-width: 500px) {
    
    .module-model-overview .row--intro .col-set {
      flex-flow: column-reverse nowrap;
    }
    
    .module-model-overview .row--intro .col-1 {
      align-self: center;
      margin-top: 24px;
    }
    
    .module-model-overview .row--intro .col-2 {
      margin-left: 0;
      text-align: center;
      max-width: 75vw;
      margin: 0 auto;
    }
    
    .current-selection-counter {
      width: 120px;
    }
    
    .current-selection-counter .number {
      font-size: 42px;
      font-family: var(--base-font-1-bold);
    }
    
    .current-selection-counter .label {
      font-size: 12px;
    }
    
  }



















  .module-model-overview .row--models {
    max-width: max(1312px, calc(1312 * var(--px)));
    margin: 0 auto;
  }

  .models-grid {
    --columns: 4;
    --base-width: 100%;
    --column-width: calc((var(--base-width) - (var(--column-gap) * var(--columns))) / var(--columns));
    --column-gap: max(20px, calc(32 * var(--px)));
    --row-gap: var(--column-gap);
    margin-right: calc(var(--column-gap) * -1);
    margin-bottom: calc(var(--row-gap) * -1);
    display: flex;
    flex-flow: row wrap;
  }

  .models-grid > * {
    width: var(--column-width);
    margin-right: var(--column-gap);
    margin-bottom: var(--row-gap);
  }
  
  @media (max-width: 950px) {
    
    .models-grid {
      --columns: 3;
    }
    
  }
  
  @media (max-width: 750px) {
    
    .models-grid {
      --columns: 2;
    }
    
  }
  
  @media (max-width: 500px) {
    
    .models-grid > * {
      display: flex;
      flex-flow: column nowrap;
    }
    
    article.model-teaser {
      flex-grow: 1;
      display: flex;
      flex-flow: column nowrap;
    }
    
    article.model-teaser a {
      flex-grow: 1;
    }
    
  }
  
  
  
  
  
  
  
  
  
  
  
  article.model-teaser {
    background: var(--base-color-lightest-gray);
    text-align: center;
  }
  
  body.view-b2b article.model-teaser {
    background: var(--base-color-white);
    color: var(--base-color-black);
  }
  
  article.model-teaser .hdln-24 {
    --min-font-size: 1rem;
  }
  
  article.model-teaser a {
    display: flex;
    flex-flow: column nowrap;
    aspect-ratio: 304 / 308;
    padding: 20px 11px;
    padding-bottom: 35px;
    box-sizing: border-box;
    position: relative;
  }
  
  article.model-teaser a > *:not(.card-background, .special-offer, .test-bike) {
    position: relative;
    z-index: 3;
  }
  
  article.model-teaser .brand {
    text-transform: uppercase;
    margin-bottom: .8em;
  }
  
  article.model-teaser .row-2 {
    margin-top: auto;
  }
  
  article.model-teaser img {
    will-change: transform;
    display: block;
    transition: transform 750ms var(--ttf-2);
  }
  
  @media (hover: hover) {
    article.model-teaser a:is(:hover, :focus) img {
      transform: scale(1.05);
    }
  }
  
  article.model-teaser .special-offer {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    background: var(--base-color-purple);
    color: var(--base-color-white);
    --size: max(23px, calc(44 * var(--px)));
    width: var(--size);
    height: var(--size);
    font-size: max(10px, calc(20 * var(--px)));
    font-family: var(--base-font-1-bold);
    clip-path: polygon(0 0, 0 0, 100% 100%, 0% 100%);
  }
  
  article.model-teaser .special-offer > span {
    display: block;
    position: absolute;
    left: 4px;
    bottom: 2px;
    line-height: 1;
  }
  
  
  @media (max-width: 500px) {
    
    article.model-teaser a {
      padding: 11px 6px 14px;
      aspect-ratio: 304 / 348;
    }  
  
    article.model-teaser .row-2 {
      margin-bottom: 20px;
    }
    
  }
  
  
  
  
  
  
  
  article.model-teaser .test-bike {
    position: absolute;
    right: 11px;
    bottom: 11px;
    z-index: 2;
    text-align: right;
    line-height: 0.6;
  }
  
  article.model-teaser .test-bike .cpy-10 {
    line-height: 0.6;
  }
  
  @media (max-width: 500px) {
    
    article.model-teaser .test-bike {
      right: 6px;
      bottom: 6px;
      width: calc(100% - 30px);
    }
    
  }
  
  
  
  
  
  
  
  
  
