.s {
  height: auto;
  margin: auto;
  overflow: hidden;
  display: flex;
}

/* Carousel automatico opcion a*/
.s-list-item-a {
  display: flex;
}

.s-item {
  margin-right: 30px;
}

.s-item-content {
  width: 100px; /* por defecto */
}

@keyframes scroll-a {
  0% {
    opacity: 0;
    transform: translateX(0);
    -webkit-transform: translateX(0);
  }
  1% {
    opacity: 1;
  }
  100% {
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
  }
}