#imgcara {
  display: inline-block;
  width: 200px;
  height: 100px;
}

.carousel {
  width: auto;
  height: 120px;
  overflow: hidden;
  padding: 8px;
  box-sizing: border-box;

  /*border: 2px solid #999;*/
  /*box-shadow: 0 0 4px #000;*/

  margin: 0 auto;
  border-radius: 5px;

}

.holder {
  animation: carousel 25s linear infinite ;
  white-space: nowrap;
  will-change: transform;

  &:hover {
    animation-play-state: paused;
  }
}

@keyframes carousel {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-210%);
  }

  100% {
    transform: translateX(0);
  }
}


/*body {
  margin: 0;
  padding: 0;
}

button {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}*/
/*
#imgloop {
  display: block;
  width: 100%;
}

#sectionloop {
  width: 100%;
  overflow: hidden;
}

#articleloop {
  display: flex;
  width: 200%;
  animation: bannermove 20s linear infinite;
}

#articleloop.paused {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

#divloop {
  width: 100%;
}

#ulloop {
  display: flex;
  background: red;
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}

#liloop {
  width: 100%;
  background: blue;
}

#liloop:nth-child(2) {
  background: green;
}

#liloop:nth-child(3) {
  background: yellow;
}

@keyframes "bannermove" {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}*/
