.ticker {
  height: 50px;
  font-family: "Univers LT Std";
  overflow: hidden;
  background: #000;
  position: relative;
  line-height: 1;
  opacity: 1;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  pointer-events: auto;
  transition: height 0.3s ease, opacity 0.2s ease;
}
.ticker--hidden {
  height: 0;
  padding: 0;
  opacity: 0;
  border: none;
  pointer-events: none;
}
.ticker__inner {
  display: flex;
  height: 100%;
  width: 100%;
}
.ticker__badge {
  flex-shrink: 0;
  color: #fff;
  z-index: 2;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.ticker__badge-text {
  font-size: 0.94rem;
  font-weight: bold;
}
.ticker__container {
  overflow: hidden;
  position: relative;
  flex-grow: 1;
}
.ticker__wrapper {
  display: flex;
  position: relative;
  height: 100%;
  white-space: nowrap;
  animation: ticker-fallback 20s linear infinite;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.ticker__wrapper.no-animation {
  animation: none;
}
.ticker__list {
  display: flex;
  height: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  align-items: center;
  flex-shrink: 0;
}
.ticker__item {
  flex-shrink: 0;
  padding: 0 20px;
  display: flex;
  align-items: center;
}
.ticker__item-content {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.ticker__item-name {
  color: #fff;
  font-weight: bold;
  font-size: 15px;
}
.ticker__item-link {
  color: #fff;
}
.ticker__item-link:hover {
  color: #afa4a4;
  text-decoration: none;
}
.ticker__item-reference {
  display: block;
  color: #aaa;
  padding-top: 0.3rem;
  font-size: 13px;
}
.ticker__item-trend {
  display: flex;
  font-weight: 600;
}
.ticker__item-trend--up {
  color: #00B67A;
}
.ticker__item-trend--down {
  color: #F63952;
}
.ticker__item-trend--neutral {
  color: white;
}
.ticker__item-trend-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 5px;
  position: relative;
}
.ticker__item-trend-icon:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}
.ticker__item-trend-icon--up:before {
  border-bottom: 8px solid green;
}
.ticker__item-trend-icon--down:before {
  border-top: 8px solid red;
}

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

/*# sourceMappingURL=main.css.map */
