

html, body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: var(--font);
    height: 45px;
    width: 100vw;
    -webkit-font-smoothing: antialiased;
    -webkit-font-smoothing: subpixel-antialiased;
  }

  b {
    font-weight: 600;
  }
  
  .scroll-wrapper {
    width: 100%;
    height: 45px;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    background: var(--white);
    color: var(--secondary);
    align-content: center;
  }
  
  .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;
  }

  .company-icon {
    margin-top: 0px;
  }

  img {
    height: 16px;
    padding: 0 8px;
    margin-bottom: 0px;
  }

  .icons {
    height: 24px;
  }

  .ticker_sml {
    font-size: 13px;
    align-self: flex-end;
    margin-bottom: 8px;
  }

  .ticker_sml img {
    height: 10px;
    margin-bottom: 0px;
    margin-top: 0px;
  }
  
  @keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  #share-price-container .status {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    align-self: center;
  }
  #share-price-container .status-indicator {
    position: relative;
    display: flex;
    height: 0.75rem;
    width: 0.75rem;
  }
  #share-price-container .status-ping {
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
    position: absolute;
    height: 100%;
    width: 100%;
    border-radius: 9999px;
    opacity: 0.75;
  }
  #share-price-container .status-dot {
    position: relative;
    display: inline-flex;
    border-radius: 9999px;
    height: 0.75rem;
    width: 0.75rem;
  }
  #share-price-container .status-text {
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 300;
    color: #fff;
  }

  @keyframes ping {
    75%, 100% {
      transform: scale(2);
      opacity: 0;
    }
  }
  .card-header .status-ping {
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
    position: absolute;
    height: 100%;
    width: 100%;
    border-radius: 9999px;
    opacity: 0.75;
  }

   /* Market Status Styles */
   .status .status-word.open {
    color: var(--positive-color);
  }
  .status .status-ping,
  .status .status-dot {
    background-color: var(--positive-color);
  }