/* (A) STANDARD ROW HEIGHT */
.vwrap, .vitem {
  height: 180px;
  line-height: 30px;
}
 
/* (B) FIXED WRAPPER */
.vwrap {
  overflow: hidden; /* HIDE SCROLL BAR */
  background: #fff;
  /*color: #fff;*/
}
/* (C) TICKER ITEMS */
.vitem { text-align: center; }
 
/* (D) ANIMATION - MOVE ITEMS FROM TOP TO BOTTOM */
/* CHANGE KEYFRAMES IF YOU ADD/REMOVE ITEMS */
.vmove { position: relative; }
@keyframes tickerv {
  0% { bottom: 0; } /* FIRST ITEM */
  10% { bottom: 50px; } /* SECOND ITEM */
  20% { bottom: 100px; } /* THIRD ITEM */
  30% { bottom: 150px; } /* FORTH ITEM */
  40% { bottom: 200px; } /* FORTH ITEM */
  50% { bottom: 250px; } /* FORTH ITEM */
  60% { bottom: 300px; } /* FORTH ITEM */
  70% { bottom: 350px; } /* FORTH ITEM */
  80% { bottom: 400px; } /* FORTH ITEM */
  90% { bottom: 450px; } /* FORTH ITEM */
  100% { bottom: 0; } /* BACK TO FIRST */
  
}
.vmove {
  animation-name: tickerv;
  animation-duration: 10s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(1, 0, .5, 0);
}
.vmove:hover { animation-play-state: paused; }