body{
background-color: transparent;
}
.tickerv-wrap {
  /*background: #eee;*/
  box-sizing: content-box;
  height: 24px; /* Take note of this */
  overflow: hidden; /* Hide scrollbars */
  padding: 0px;
  color:#fff;
} 

/* TICKER ANIMATION */
@keyframes tickerv {
  0%   {margin-top: -2px;}
  /* Quite literally -ve height of wrapper */
  40%  {margin-top: -37px;} /* 1 X 25 px */
  80%  {margin-top: -67px;} /* 2 X 25 px */
 /* 75%  {margin-top: -107px;} /* 3 X 25 px */
  100% {margin-top: -67px;} /* Back to first line */
}
.tickerv-wrap ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  animation-name: tickerv; /* Loop through items */
  animation-duration: 10s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(1, 0, .5, 0);
}
.tickerv-wrap ul:hover {
  /* Pause on mouse hover */
  animation-play-state: paused;
}

/* ITEMS */
.tickerv-wrap ul li {
  font-size: 16px;
  line-height: 24px /* Same as wrapper height */
  padding-top:0px;
  padding-bottom:10px;
}

@media (max-width: 767px) {
	.tickerv-wrap ul li {
  font-size: 14px;
  line-height: 20px /* Same as wrapper height */
  padding-top:0px;
  padding-bottom:10px;
}
}

@media (max-width: 479px) {
	.tickerv-wrap ul li {
  font-size: 14px;
  line-height: 20px /* Same as wrapper height */
  padding-top:0px;
  padding-bottom:10px;
}

}