@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;700&display=swap');

body {
  font-family: 'Poppins', sans-serif;
}

@-webkit-keyframes 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 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);
  }
}

a.ticker-link {
    color: #000;
}

.ticker-container {
  width: 100%;
  overflow: hidden;
  background-color: #FFF;
  padding: 13px 0 11px;
}

.ticker-wrapper {
  width: 100%;
  padding-left: 100%;
  background-color: transparent;
}

.ticker-transition {
  display: inline-block;
  white-space: nowrap;
  padding-right: 100%;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-name: ticker;
  animation-duration: 60s;
}
.ticker-transition:hover {
  animation-play-state: paused;
  cursor: pointer;
}

.ticker-group {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.ticker-title {
  display: inline-block;
  vertical-align: middle;
  font-weight: 700;
  font-size: 14px;
  margin: 0 67px;
}

.ticker-name {
  display: inline-block;
  vertical-align: middle;
  font-weight: 500;
  font-size: 14px;
  margin: 0;
}

.ticker-psf {
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  margin: 0 67px;
}

.ticker-psf b {
    font-weight: 700;
}

.ticker-item {
  display: inline-block;
  box-sizing: border-box;
  margin-right: 67px;
}

.ticker-item:last-of-type {
  margin-right: 0;
}

.ticker-value {
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 3px;
}

.lane {
  color: #ADAFBB;
}

.ticker-percent {
  font-size: 12px;
  font-weight: 500;
}

.percent {
  margin-right: 29px;
  position: relative;
}

.percent:last-of-type {
  margin-right: 0;
}

.percent-increase {
  color: #47970A;
}

.percent-increase::after {
  content: '';
  width: 0;
  height: 0;
  margin-left: 5px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid #47970A;
  position: absolute;
  top: 7px;
}

.percent-decrease {
  color: #F00;
}

.percent-decrease::after {
  content: '';
  width: 0;
  height: 0;
  margin-left: 5px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #F00;
  position: absolute;
  top: 7px;
}

.percent-zero {
  color: #adafbb;
}
