.ticker {
  position: fixed;
  bottom: 0;
  height: 50px;
  background: #2b2b2b;
  z-index: 200;
  display: flex;
  overflow: hidden;
  /* font-family: sans-serif; */
}

.ticker_title {
  width: 100px;
  height: 100%;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #2b2b2b;
  color: white;
  font-weight: bold;
}

.ticker_mask {
  overflow: hidden;
  width: calc(100% - 100px);
}

.ticker__list {
  display: flex;
  gap: 2px;
  padding-block: 10px;
  white-space: nowrap;
  animation-name: ticker;
  animation-duration: 35s;
  animation-delay: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  color: white;
}

.ticker__list li p {
  white-space: nowrap;
  font-weight: bold;
}

@keyframes ticker {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100vw);
  }
}
