.sterren .fa-star {
    color: #ff7f11 !important;
    font-size: 27px;
}
.UGC-image {
  overflow: hidden;
  background: #21312f;
  white-space: nowrap;
  position: relative;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.UGC-image:before,
.UGC-image:after {
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  content: "";
  z-index: 2;
}

.UGC-image:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), #21312f);
}

.UGC-image:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), #21312f);
}

.UGC-image:hover .UGC-image-slide {
  animation-play-state: paused;
}

.UGC-image-slide {
  display: inline-block;
  animation: 35s slide infinite linear;
}

.UGC-image-slide img {
    height: 241px;
    margin: 0 6px;
    border-radius: 5px !important;
}
