body #mt5-ticker-container{
  background-color:#f3f4f6!important;
  color: #008000!important;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  width: 100%;
	font-size:20px;
	font-weight:500;
}

body #mt5-ticker-container .mt5-ticker-items  {
  display: inline-block;
  animation: scroll 10000s linear infinite;
  animation-fill-mode: forwards;
  width: 100%;
}

body #mt5-ticker-container .mt5-ticker-item {
  display: inline;
  padding-right: 2rem;
}

@keyframes scroll {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

#mt5-ticker-container {
  position: relative;
  z-index: 1000;
  color: black;
  background-color: white;
}

.mt5-ticker-item-1 {
    padding:10px;
}


@media only screen and (max-width: 768px) {
	.mt5-ticker-items {animation-duration: 10000ms!important;}}