* {
  box-sizing: border-box;
}
@-webkit-keyframes golive-ticker {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes golive-ticker {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.golive-ticker-section .golive-ticker {
  display: inline-block;
  height: 2rem;
  line-height: 2rem;
  white-space: nowrap;
  box-sizing: content-box;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-name: golive-ticker;
  animation-name: golive-ticker;
  -webkit-animation-duration: 160s;
  animation-duration: 160s;
  animation-delay: 500ms;
  -webkit-animation-delay: 500ms;
}

.golive-ticker .ticker-item {
  display: inline-block;
  padding: 0 0.1rem;
  color: white;
}

.golive-ticker-section {
  background-color: var(--theme__color2) !important;
  position: fixed;
  z-index: 1000;
  width: 100%;
  border-bottom: 3px white solid;
  font-size: 1.5em;
  overflow: hidden;
  box-sizing: content-box;
  height: 2rem;
}
.golive-ticker {
  padding: 2px 20px 0 20px;
}
