.slider-container {
  position: relative;
  display: inline-flex;
  width: 100%;
  float: left;
  flex-wrap: nowrap;
}
.slider-container > .brands-container {
  position: relative;
  display: flex;
  width: auto;
  height: 100px;
  float: left;
  justify-content: flex-start;
  animation-name: animation_gallery_slide;
  animation-duration: 45s;
  animation-timing-function: linear;
  animation-delay: 0s;
  animation-direction: normal;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
  animation-play-state: running;
  -webkit-animation-name: animation_gallery_slide;
  -webkit-animation-duration: 45s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-delay: 0s;
  -webkit-animation-direction: normal;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-play-state: running;
}
.slider-container > .brands-container > .image-container {
  position: relative;
  display: inline-block;
  height: 80px;
  float: left;
  padding: 20px 30px;
  margin: auto 0;
}
.slider-container
  overflow-x-hidden
  > .brands-container
  > .image-container.large {
  padding: 10px 30px;
}
.slider-container
  overflow-x-hidden
  > .brands-container
  > .image-container
  > .image {
  position: relative;
  display: inline-block;
  height: 100%;
  float: left;
}

@keyframes animation_gallery_slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
