.ticker-carousel {

  width: 100vw;

  max-width: 100vw;

  box-sizing: border-box;

  overflow: hidden;

  background: #ffffff;

  border-radius: 0;

  /* border: 1px solid #d4d4d4; */

  position: relative;

  left: 50%;

  right: 50%;

  margin-left: -50vw;

  margin-right: -50vw;

  height: 80px;

  display: flex;

  align-items: center;

}

.ticker-carousel-track {

  display: flex;

  align-items: center;

  white-space: nowrap;

  will-change: transform;

}

.ticker-carousel-img {

  height: 60px;

  margin: 0 60px;

  vertical-align: middle;

  user-drag: none;

  user-select: none;

  pointer-events: none;

}

/* Tablet (max 768px) */
@media (max-width: 768px) {

  .ticker-carousel {

    height: 60px;

  }

  .ticker-carousel-img {

    height: 40px;

    margin: 0 35px;

  }

}

/* Mobiel (max 480px) */
@media (max-width: 480px) {

  .ticker-carousel {

    height: 48px;

  }

  .ticker-carousel-img {

    height: 30px;

    margin: 0 20px;

  }

}

