#pk_flex_content .flex_content:has(>.flex_layout.ticker){
  margin-top: -40px;
  
}

#pk_flex_content .flex_content:has(>.flex_layout.ticker) .flex_layout_wrapper {
    margin: unset;
}

.fl-page #pk_flex_content .flex_layout.ticker .flex_layout_wrapper {
  max-width: unset;
  padding: 90px 0;
}

.fl-page #pk_flex_content .flex_layout.ticker:has(.purple-rain) .flex_layout_wrapper {
  background: var(--Purple-rain, #8089FF);
}


.fl-page #pk_flex_content .flex_layout.ticker:has(.slice-of-ginger) .flex_layout_wrapper {
  background: var(--Slice-of-ginger, #FFDEAC);
}


.fl-page #pk_flex_content .flex_layout.ticker:has(.baby-blues) .flex_layout_wrapper {
  background: var(--Baby-blues, #B2DDF7);

}

.fl-page #pk_flex_content .flex_layout.ticker:has(.lila) .flex_layout_wrapper {
  background: var(--Lila, #D3D6FF);

}



#pk_flex_content .flex_layout.ticker {
  max-width: unset;
  overflow: hidden;
}

/* Ticker container */
.ticker {
  overflow: hidden;
  max-width: 100vw;
}

.ticker__track {
  display: flex;
  align-items: center;
  gap: 16px; 
  will-change: transform;
}

.ticker__track{
  animation: ticker var(--ticker-duration, 20s) linear infinite;
}


.ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
  flex: 0 0 auto;
  opacity: 0.36;
}

#pk_flex_content .ticker__text {
  color: #FFF;
  font-size: 48px;
  font-style: italic;
  font-weight: 700 !important;
  line-height: 1;
  text-transform: uppercase;
}

.ticker__sep {
  width: 35px;
  height: 35px;
}

/* Animatie: schuif één volledige set */
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
