    .news-ticker {
      background: #3f51b5; /* MDL Indigo */
      color: white;
      overflow: hidden;
      white-space: nowrap;
      position: relative;
      height: 40px;
      display: flex;
      align-items: center;
      font-size: 16px;
      font-weight: 500;
      box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }
    
    .news-ticker-2 {
      background: #3f51b5; /* MDL Indigo */
      color:  #fff;/*#4deeea; / *white;*/
      overflow: hidden;
      white-space: nowrap;
      position: fixed;
      bottom:0px;
      left:0px;
      right:0px;
      height: 60px;
      display: flex;
      align-items: center;
      font-size: 24px;
      font-weight: 500;
      box-shadow: 0 2px 5px rgba(0,0,0,0.6);
      z-index: 400;
    }
    
    .ticker-label-2 {
      background: #ff4081; /* MDL Pink Accent */
      color: white;
      padding: 7px 12px;
      font-weight: bold;
      margin-right: 8px;
      text-transform: uppercase;
      z-index: 500;
    }

    .ticker-content {
      display: inline-block;
      padding-left: 100%;
      animation: ticker 51s linear infinite;
    }

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

    .ticker-label {
      background: #ff4081; /* MDL Pink Accent */
      color: white;
      padding: 0 12px;
      font-weight: bold;
      margin-right: 16px;
      text-transform: uppercase;
      z-index: 500;
    }
    
    /* Hide on small screens */
@media (max-width: 768px) {
  .ticker-label-big {
    display: none;
  }
  .ticker-label-small {
    display: block;
  }
}

/* Hide on large screens */
@media (min-width: 769px) {
  .ticker-label-big {
    display: block;
  }
  .ticker-label-small {
    display: none;
  }
}