<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* TRENDING TOPICS */
#header_trending_topics {
  --font-size:1.125em;
  --title-color: #FF922B;
  --item-color: #aaa;
  --separator-color: #eee;
}

#header_trending_topics {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: var(--font-size);
}

#header_trending_topics:not(.flickity_rendered) {
  visibility: hidden;
}

#header_trending_topics &gt; span {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  color: var(--title-color);
  text-transform: uppercase;
  display: none;
}

#header_trending_topics .topics_container {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

#header_trending_topics .topics_cell:first-child {
  padding-left: 1rem;
}

#header_trending_topics .topics_container:not(.flickity-enabled) {
  display: none;
}

#header_trending_topics .topics_cell {
  padding: 0 1rem;
  text-transform: uppercase;
  white-space: nowrap;
  font-weight: 900;
}

#header_trending_topics .topics_cell:after {
  content: '';
  height: 100%;
  width: 1px;
  display: block;
  background-color: var(--separator-color);
  position: absolute;
  right: 0;
  top: 0;
}

#header_trending_topics .topics_cell:last-child:after {
  display: none;
}

#header_trending_topics .topics_cell a:link,
#header_trending_topics .topics_cell a:visited,
#header_trending_topics .topics_cell a:hover,
#header_trending_topics .topics_cell a:focus,
#header_trending_topics .topics_cell a:active {
  color: var(--trending-topics-item-color);
  -webkit-text-decoration: var(--link-text-decoration);
          text-decoration: var(--link-text-decoration);
}

@media only screen and (min-width: 576px) {
  #header_trending_topics {
    padding: 1rem 0;
  }
}

@media only screen and (min-width: 768px) {
  #header_trending_topics {
    padding: .5625rem 0 .5625rem 0;
  }
  #header_trending_topics &gt; span {
    display: block;
  }
  #header_trending_topics .topics_cell {
    padding: 0 1rem;
  }
}

@media only screen and (min-width: 992px) {
  #header_trending_topics .topics_cell {
    padding: 0 .5rem;
    font-weight: 400;
  }
  #header_trending_topics .topics_cell:after {
    display: none;
  }
  #header_trending_topics .topics_cell:first-child {
    margin-left: 0;
  }
}
</pre></body></html>