/** Shopify CDN: Minification failed

Line 50:0 Expected percentage but found "."
Line 53:36 Expected "}" to go with "{"

**/

.logo-container {
  display: flex;
  justify-content: center;
  width: 100%;
  flex-wrap: nowrap;
  flex-direction: column;
}

.logo-slider {
  overflow: hidden;
  /*padding: 30px 0 0 0;*/
  white-space: nowrap;
  position: relative;
  background: white;
  height: 83px;
  border-radius: 15px;
}

.logo-slider:hover .logos-slide {
  animation-play-state: paused;
}

.logos-slide {
  display: inline-block;
  animation: 45s slide infinite linear;
  width: 2400px;
}

.logos-slide img {
  width: 180px;
  height: 83px;
  margin: 0 ;
}

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

.gray-scale {
  background:#000;
}
/*# sourceMappingURL=test.css.map */