/*******************
CAUTION BAR
*******************/
.tech-slideshow {
    /* background-color: #000; */
  height: 40px;
  max-width: 2000px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
}

.tech-slideshow > div {
  /* height: 2vw; */
  width: 8000px;
  /*New image: https://images.riverisland.com/is/image/RiverIsland/c20200529-wwlp-tape_DNT?$PNG%20Alpha%20Transparency$*/
  /*old image: https://images.riverisland.com/is/image/RiverIsland/c20200127-wwlp-tape-copy_DNT?$PNG%20Alpha%20Transparency$*/
  background: url(https://images.riverisland.com/is/image/RiverIsland/c20200529-wwlp-tape_DNT?$PNG%20Alpha%20Transparency$);
  background-color: #000;
/* 	background-size: 6vw 1.5vw; */
  /* position: absolute; */
  top: 0;
  left: 0;
  height: 38px;
  transform: translate3d(0, 0, 0);
}
.tech-slideshow .mover-1 {
  animation: moveSlideshow 60s linear infinite;
}
.tech-slideshow .mover-2 {
  animation: moveSlideshow-2 30s linear infinite;
  animation-direction: reverse;}

@keyframes moveSlideshow {
  100% { 
    transform: translateX(-66.6666%);  
  }
}
@keyframes moveSlideshow-2 {
  100% { 
    transform: translateX(-66.6666%);  
  }
}

