html, body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: var(--font);
    height: 35px;
    width: 100vw;
    -webkit-font-smoothing: antialiased;
    -webkit-font-smoothing: subpixel-antialiased;
  }

  b {
    font-weight: 400;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.60);
    letter-spacing: 0.06em;
    margin-top: 0.698px;
    
  }
  
  .scroll-wrapper {
    width: 100%;
    height: 35px;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    background: #262626;
    align-content: center;
    align-items: center;
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.92);
    text-transform: none;
    font-weight: 700;
  }
  
  .scroll-track {
    display: inline-flex;
    white-space: nowrap;
    animation: scroll-left linear infinite;
    align-items: center;
  }
  
  .scroll-wrapper:hover .scroll-track {
    animation-play-state: paused;
  }
  
  .scroll-item {
    display: flex;
    padding-right: 2rem;
    align-items: center;
    align-content: center;
    vertical-align: middle;
    margin-bottom: 5px;
  }

  .scroll-item small {
    margin-top: 2px;
    text-transform: none;
  }

  .company-icon {
    margin: 0px 8px 6px 8px;
  }

  img {
    height: 10px;
    padding: 0 4px;
    /* margin-bottom: 4px; */
  }

  .icons {
    height: 20px;
  }

  .divider {
    width: 1px;
    height: 14px;
    flex-shrink: 0;
    background: #fff;
    margin: 0 20px;
    margin-top: 2px;
  }

.ticker_sml b {
  margin-top: -5px;
  font-size: 11px;
}

  .ticker_sml img {
    height: 9px;
    margin-bottom: 0;
    margin-top: 8px;
  }
  
  @keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }