/*! Supernews UI - Default Theme Settings (Theme "SN") */


/**
 * Theme Controls - Backgrounds, Colors, Theme Specific Title Styling
 * FAQ:  https://csswizardry.com/2015/03/more-transparent-ui-code-with-namespaces/#theme-namespaces-t-
 */


/* ==========================================================================
   Backgrounds
   ========================================================================== */

.t-bg--lighter {
  background-color: rgb(241, 243, 245);
}
.t-bg--clear {
  background-color: transparent;
}
.t-bg--dark {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.4);
}
.t-bg--darkest {
  color: #fff;
  background-color: rgb(12, 28, 35);
}
.t-bg--gradient {
  background: linear-gradient(251deg, #00c4d0, #0081b1);
}
.t-bg--image {
  color: #fff;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.t-bg--image-repeat {
  color: #fff;
  background-repeat: repeat;
}
[class*="t-bg--tile"] {
  background-position: center top;
}
.t-bg--tile-yellow {
  background-image: url(/imgs/bg_yellow_icons_tile.png);
}
.t-bg--tile-blue {
  background-color: #3cb9da;
  background-image: url(/imgs/banner_bg.png);
}
