/* eocjsNewsticker v0.6.1 */

.eocjs-newsticker {
  padding: 10px 0;
  background-color: #fff;
}

.eocjs-newsticker .eocjs-newsticker-container {
  position: relative;
  height: 32px;
  overflow: hidden;
  color: #000;
  font-weight: 400;
  font-size: 1em;
}
.eocjs-newsticker .eocjs-newsticker-container span {
  color: #999;
  font-weight: normal;
  font-style: italic;
}
@media(max-width: 768px) {
  .eocjs-newsticker .eocjs-newsticker-container {
    height: 36px;
  }
}

.eocjs-newsticker .eocjs-newsticker-one,
.eocjs-newsticker .eocjs-newsticker-two {
  position: absolute;
  left: 0;
  top: 0;
  height: 32px;
  line-height: 32px;
  white-space: nowrap;
}
@media(max-width: 768px) {
  .eocjs-newsticker .eocjs-newsticker-one,
  .eocjs-newsticker .eocjs-newsticker-two {
    height: 36px;
    line-height: 36px;
  }
}
.eocjs-newsticker-loader {
  position: absolute;
  left: calc(50% - 10px);
  width: 16px;
  height: 16px;
  display: block;
  border: 2px solid #555555;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: eocjs-newsticker-spin .75s linear infinite;
}

@keyframes eocjs-newsticker-spin {
  to {
    transform: rotate(360deg);
  }
}
