* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-weight: 300;
  }

  .blue-ticker {
    background-color: #21418F;
    color: #fff;
    height: 30px;
  }

  .red-ticker {
    background-color: #D1202C;
    color: #fff;
    height: 30px;
  }

  .white-ticker {
    background-color: #fff;
    color: #333;
    height: 30px;
  }
  
  .stock-ticker img {
    height: 16px;
    margin-bottom: -3px;
    margin-left: 2px;
    margin-right: 2px;
  }
  
  .stock-ticker .ticker_sml {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 300;
  }
  
  .powered-logo {
    height: 25px;
    width: 120px;
    margin-bottom: -6px !important;
    margin-left: 10px;
    margin-right: 5px;
  }
  
  body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 300;
  }
  b
  {
      font-weight:300;
  }
  
  .stock-ticker {
    font-size: 16px;
    border-block: 0px solid;
    overflow: hidden;
    user-select: none;
  
    --gap: 30px;
    display: flex;
    gap: var(--gap);
  }
  
  .white-ticker ul {
    list-style: none;
    flex-shrink: 0;
    min-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--gap);
  
    animation: scroll 50s linear infinite;
  }

  .stock-ticker ul {
    list-style: none;
    flex-shrink: 0;
    min-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--gap);
  
    animation: scroll 50s linear infinite;
  }
  
  .stock-ticker:hover ul {
    animation-play-state: paused;
  }
  
  @keyframes scroll {
    
    to {
      transform: translateX(calc(-100% - var(--gap)));
    }
  }


  
  
  .stock-ticker .price {
    margin-inline: 4px;
  }
  
  .stock-ticker .plus::before {
    content: "â†‘";
  }
  
  .stock-ticker .minus::before {
    content: "â†“";
  }
  
  .stock-ticker .plus .change,
  .stock-ticker .plus::before {
    color: #089981;
  }
  
  .stock-ticker .minus .change,
  .stock-ticker .minus::before {
    color: #f23645;
  }