.contenedorinfinito{
    margin: 120px;
   margin-top: 0.03%;  padding:10px;     
    margin-bottom: 0%;
        border-bottom: 1px solid #999999;
    border-left: 1px solid #999999;
    border-right: 1px solid #999999;
}
.title {
  margin-top: 32px;
  font-size: 14px;
  font-weight: 400;
  line-height: 27px;
  color: #aaa;
}

.slider {
  display: flex;
  height: auto;
  margin: auto;
  overflow: hidden;
  align-items: center;    width: 73%;
}

.slider:before {
  position: absolute;
  z-index: 1;
  left: 0;
  content: "";
  width: 23.958%;
  height: 110px;
    background: linear-gradient(-90deg, hsla(0, 0%, 97%, 0), #f7f7f700);
}

.slider:after {
  position: absolute;
  right: 0;
  content: "";
  width: 23.958%;
  height: 110px;
    background: linear-gradient(-90deg, hsla(0, 0%, 97%, 0), #f7f7f700);
  );
}

.slider .slide-track {
  display: flex;
  animation: scroll 35s linear infinite;
  -webkit-animation: scroll 35s linear infinite;
  width: calc(240px * 10);
  scroll-behavior: smooth;
}
.slider .slide {
  cursor: pointer;
  width: 180px;
  height: auto;
  padding: 10px;
  margin: 20px;
  background-color: white;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
} 

.slider .slide img {
  height: auto;
  width: 160px;
  
}

@keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(calc(-240px * 5));
    transform: translateX(calc(-240px * 5));
  }
}
@media(max-width:857px){

.contenedorinfinito{
    margin: 0px !important;
}
.slider {
width:83%;
}

.slider .slide img {
  height: auto;
  width: 110px;
  
}

}