@charset "UTF-8";
/*------------------------------------*  #MAIN
\*------------------------------------*/
/**
 * CONTENTS
 *
 * SETTINGS
 * Config...............Project configuration settings. 
 * Global...............Globally-available variables and settings.
 * Colour sections......Globally-available colour tags.
 *
 * TOOLS
 * Functions............Custom functions.
 * Mixins...............Custom mixins.
 *
 * GENERIC
 * Box-sizing...........More manageable box model.
 * Normalize.css........Make default rendering more consistent across browsers.
 * Reset................Remove margins from certain elements.
 * Vertical-rhythm......Apply consistent baseline grid across block-level
 *                      elements.
 * Fontface.............Set up fontface styles.
 *
 * ELEMENTS
 * Page.................High-level page styling (HTML and BODY elements).
 * Headings.............Simple H1–H6 styles.
 * Links................Basic link styles.
 * Lists................Simple list styling.
 *
 * LAYOUT
 * Layout styles........Layout level components.
 * Region styles........Region level components.
 * Listing view.........Listing grids.
 * Paragraphs...........Spacing/layout rules for paragraphs.
 *
 * THIRD PARTY
 * Example..............Example
 *
 * COMPONENTS
 * Buttons..............Standard reusable button classes and styles.
 * Front................Homepage styling.
 * Fempire..............Fempire styling.
 * Card.................All card elements.
 * Headers-tetriary.....Stylised H3 headers.
 * Header...............Styling of header elements and layouts.
 * Social...............Social media theming.
 * Special Promo........Styling for special page.
 * Search...............Search theming.
 * Tags.................Standard reusable tag classes and styles.
 * Nav..................Navigation.
 * Nav-mobile...........Mobile Navigation.
 * Show-header..........Top section of all show related pages.
 * List-item............Main listing theming.
 * List-sec-item........Secondary listing theming.
 * List-box-item........Box listing theming for homepage.
 * List-tet-item........Tetriary listing theming.
 * TV-guide.............TV Guide theming.
 *
 * TRUMPS
 * Clearfix.............Clearfixing utility class.
 * Spacing..............Utility classes to nudge margins and paddings around.
 * Display..............Utility classes for display settings show/hide.
 *
 */
.clearfix:before,
.clearfix:after {
  content: " ";
  /* 1 */ }

.clearfix:after {
  clear: both; }

.clearfix {
  *zoom: 1; }

/* HISTORY BRAND COLOURS */
.black {
  background-color: black; }

.grey-darker {
  background-color: #191E24; }

.grey-dark {
  background-color: #898989; }

.grey-medium {
  background-color: #959595; }

.grey-light {
  background-color: #BFBFBF; }

.grey-lighter {
  background-color: #EDEDED; }

.brand-main {
  background-color: #F90A34; }

.white {
  background-color: white; }

.emphasis {
  font-weight: 500;
  color: #F90A34; }

.border-main {
  border: 1px #F90A34 solid; }

/* Show Article Colour sections */
.show-article .c-quote--copy:before,
.show-article .c-quote--copy:after,
.show-article .c-quote--source {
  color: #F90A34; }

.show-article .c-caption {
  border-color: #F90A34;
  background-color: #dedede;
  padding: 1% 3px; }

.show-article .l-area--subheader {
  color: #F90A34; }

.show-article .l-sidebar--item:hover:before,
.show-article .l-sidebar--item:hover:after {
  background: #F90A34; }

/* Show Article Colour sections End */
.l-shows--list .quarter-col img {
  background-color: #F90A34; }

.page-shows ul.pager li,
.page-shows-a-z ul.pager li, .page-shows
ul.pager li a,
.page-shows-a-z
ul.pager li a, .page-shows
.c-tag-secondary,
.page-shows-a-z
.c-tag-secondary {
  color: #F90A34;
  border-color: #F90A34; }

.page-shows ul.pager .pager__item--current,
.page-shows-a-z ul.pager .pager__item--current,
.section-search ul.pager .pager__item--current {
  background: #F90A34; }

/*------------------------------------*  #BOX-SIZING
\*------------------------------------*/
/**
 * Set the global `box-sizing` state to `border-box`.
 *
 * https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice
 * http://paulirish.com/2012/box-sizing-border-box-ftw
 */
html {
  box-sizing: border-box; }

*, *::before, *::after {
  box-sizing: inherit; }

img {
  width: 100%;
  height: auto; }

@media (min-width: 1080px) {
  img {
    width: initial;
    height: auto; } }

/*! normalize.css v4.1.1 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Prevent adjustments of font size after orientation changes in IE and iOS.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0; }

/* HTML5 display definitions
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 * 2. Add the correct display in IE.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  /* 1 */
  display: block; }

/**
 * Add the correct display in IE 9-.
 */
audio,
canvas,
progress,
video {
  display: inline-block; }

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline; }

/**
 * Add the correct display in IE 10-.
 * 1. Add the correct display in IE.
 */
template,
.hidden {
  display: none; }

/* Links
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */ }

/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */
a:active,
a:hover {
  outline-width: 0; }

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */ }

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit; }

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder; }

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic; }

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000; }

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none; }

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden; }

/* Grouping content
   ========================================================================== */
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px; }

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/* Forms
   ========================================================================== */
/**
 * 1. Change font properties to `inherit` in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font: inherit;
  /* 1 */
  margin: 0;
  /* 2 */ }

/**
 * Restore the font weight unset by the previous rule.
 */
optgroup {
  font-weight: bold; }

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible; }

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none; }

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */ }

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
 * Change the border, margin, and padding in all browsers (opinionated).
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */ }

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto; }

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on OS X.
 */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54; }

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/*------------------------------------*  #RESET
\*------------------------------------*/
/**
 * As well as using Normalize.css, it is often advantageous to remove all
 * margins from certain elements.
 */
body,
h1, h2, h3, h4, h5, h6,
p, blockquote, pre,
dl, dd, ol, ul,
form, fieldset, legend,
figure,
table, th, td, caption,
hr {
  margin: 0;
  padding: 0;
  -webkit-margin-before: 0;
  -webkit-margin-after: 0; }

picture {
  line-height: 0;
  display: block; }

/**
 * Remove trailing margins from nested lists.
 */
li > ul,
li > ol {
  margin-bottom: 0; }

/**
 * Remove trailing margins from nested lists.
 */
li > ul,
li > ol {
  margin-bottom: 0; }

/**
 * Hide Ajax throbber.
 */
.ajax-progress-throbber {
  display: none; }

/*------------------------------------*  #VERTICAL-RHYTHM
\*------------------------------------*/
/**
 * Apply our base spacing unit as a `margin-bottom` to all block level elements
 * so that we get nice and consistent vertical rhythm very cheaply.
 * http://csswizardry.com/2012/06/single-direction-margin-declarations/
 */
.l-content--copy h1, .l-content--copy h2, .l-content--copy h3, .l-content--copy h4, .l-content--copy h5, .l-content--copy h6, .l-content--copy p, .l-content--copy hgroup,
.l-content--copy ul, .l-content--copy ol, .l-content--copy dl,
.l-content--copy blockquote, .l-content--copy address,
.l-content--copy table,
.l-content--copy fieldset, .l-content--copy figure,
.l-content--copy pre {
  margin-bottom: 0.375rem; }

/**
 * We’ll also indent list elements by the same amount of spacing.
 */
ul, ol,
dd {
  margin-left: 1.375rem; }

/*------------------------------------*  #PAGE
\*------------------------------------*/
/**
 * High-level, page-level styling.
 *
 * 1. Set the default `font-size` and `line-height` for the entire project,
 *    sourced from our default variables. The `font-size` is calculated to exist
 *    in ems, the `line-height` is calculated to exist unitlessly.
 * 2. Force scrollbars to always be visible to prevent awkward ‘jumps’ when
 *    navigating between pages that do/do not have enough content to produce
 *    scrollbars naturally.
 * 3. Ensure the page always fills at least the entire height of the viewport.
 * 4. Prevent certain mobile browsers from automatically zooming fonts.
 * 5. Fonts on OSX will look more consistent with other systems that do not
 *    render text using sub-pixel anti-aliasing.
 */
html {
  font-size: 16px;
  /* [1] */
  line-height: 22px;
  /* [1] */
  overflow-y: scroll;
  /* [2] */
  min-height: 100%;
  /* [3] */
  -webkit-text-size-adjust: 100%;
  /* [4] */
  -ms-text-size-adjust: 100%;
  /* [4] */
  -moz-osx-font-smoothing: grayscale;
  /* [5] */
  -webkit-font-smoothing: antialiased;
  /* [5] */
  color: #191E24;
  font-family: "Open Sans", sans-serif; }

/*------------------------------------*  #HEADINGS
\*------------------------------------*/
main h1 {
  line-height: 1; }
  @media (min-width: 781px) {
    main h1 {
      line-height: 1; } }
  @media (min-width: 1280px) {
    main h1 {
      line-height: 1; } }
  @media (min-width: 1440px) {
    main h1 {
      line-height: 1; } }

main h2 {
  line-height: 1; }
  @media (min-width: 781px) {
    main h2 {
      line-height: 1; } }
  @media (min-width: 1280px) {
    main h2 {
      line-height: 1; } }
  @media (min-width: 1440px) {
    main h2 {
      line-height: 1; } }

main p {
  font-size: 16px;
  line-height: 20px;
  font-family: 'Open sans', sans-serif;
  text-transform: none;
  color: black;
  line-height: 1.5;
  margin-bottom: 22px; }
  @media (min-width: 781px) {
    main p {
      font-size: 16px;
      line-height: 20px;
      line-height: 1.5; } }
  @media (min-width: 1280px) {
    main p {
      font-size: 16px;
      line-height: 22px;
      line-height: 1.5; } }
  @media (min-width: 1440px) {
    main p {
      line-height: 1.5; } }

main li {
  font-size: 16px;
  line-height: 20px;
  font-family: 'Open sans', sans-serif;
  text-transform: none;
  color: black; }
  @media (min-width: 781px) {
    main li {
      font-size: 16px;
      line-height: 20px; } }
  @media (min-width: 1280px) {
    main li {
      font-size: 16px;
      line-height: 22px; } }

/*------------------------------------*  #LINKS
\*------------------------------------*/
a,
a:link,
a:visited,
a:active {
  text-decoration: none;
  color: #F90A34; }
  a:hover,
  a:link:hover,
  a:visited:hover,
  a:active:hover {
    text-decoration: underline; }

.l-main a {
  transition: all .2s ease-in; }
  .l-main a p:hover {
    text-decoration: none;
    background-color: #BFBFBF; }
  .l-main a:hover {
    text-decoration: none; }

/*------------------------------------*  #LISTS
\*------------------------------------*/
ul {
  margin: 0; }
  ul li {
    list-style: none; }

.l-node--main-content ul li {
  list-style-type: disc;
  list-style-position: inside; }

nav .menu li, nav .menu li.leaf, nav .menu li.collapsed {
  list-style-image: none;
  list-style-type: none; }

/*------------------------------------*  #FLEX - FLEX BOX STYLES
\*------------------------------------*/
.flex-grid {
  display: flex;
  display: -ms-flexbox;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  padding: 0 10px; }
  .front .flex-grid,
  .article-listing .flex-grid,
  .all-articles .flex-grid, .flex-grid.view-show-related-content, .flex-grid.view-showpage-content,
  .view-showpage-content .flex-grid {
    padding: 0; }
  .cast .flex-grid,
  .more-link .flex-grid {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-direction: row;
        flex-direction: row; }

.front .whats-new .flex-grid {
  margin-bottom: 2%; }

.flex-grid .col,
.flex-grid .tall-col,
.flex-grid .tetriary-col {
  width: 100%; }
  .flex-grid .col img,
  .flex-grid .tall-col img,
  .flex-grid .tetriary-col img {
    width: 100%;
    height: auto;
    vertical-align: bottom; }

.flex-grid .flex-grid.l-subpage--list {
  -ms-flex: auto;
      flex: auto;
  max-width: 1400px;
  -ms-flex-pack: center;
      justify-content: center; }

.search-results.flex-grid .tetriary-col {
  display: inline-table; }

.flex-grid .sexta-col,
.cast .flex-grid .more-link {
  width: 49%; }
  .flex-grid .sexta-col img,
  .cast .flex-grid .more-link img {
    width: 100%;
    height: auto;
    vertical-align: bottom; }

.flex-grid .more-link {
  margin: 8% 0;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center; }

.showpage-grid .flex-grid .col {
  width: 100%; }
  .showpage-grid .flex-grid .col img {
    width: 100%;
    height: auto; }

@media (min-width: 560px) {
  .flex-grid {
    padding: 0;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-pack: justify;
        justify-content: space-between;
    -ms-flex-line-pack: center;
        align-content: center; }
    .sidebar-tv-guide .flex-grid {
      -ms-flex-pack: justify;
          justify-content: space-between;
      -ms-flex-direction: column;
          flex-direction: column; }
  .front .whats-new .flex-grid {
    margin-bottom: 0; }
  .flex-grid .col {
    width: 48.8%; }
  .flex-grid .full.col {
    width: 100%; }
  .cast .flex-grid .more-link,
  .flex-grid .sexta-col {
    width: 32.5%;
    margin: 0 0.8% 0 0; }
    .cast .flex-grid .more-link img,
    .flex-grid .sexta-col img {
      width: 100%;
      height: auto; }
  .flex-grid .tetriary-col {
    width: 100%;
    margin: 0 auto;
    padding: 1% 2%; }
    .flex-grid .tetriary-col img {
      width: 100%;
      height: auto;
      vertical-align: bottom; }
  .view-show-related-content.flex-grid .more-link {
    width: 98%;
    text-align: center; }
  .c-row--bottom .col {
    width: 100%; }
    .c-row--bottom .col img {
      width: 100%;
      height: auto; } }

@media (min-width: 781px) {
  .flex-grid {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-pack: center;
        justify-content: center; }
    .cast .flex-grid,
    .show-listing .flex-grid,
    .view-show-related-content .flex-grid,
    .white.showpage-content .flex-grid {
      -ms-flex-pack: start;
          justify-content: flex-start; }
    .l-center--intro .flex-grid {
      -ms-flex-pack: end;
          justify-content: flex-end; }
    .flex-grid.c-row--bottom,
    .c-show .flex-grid,
    .article-listing .flex-grid,
    .all-articles .flex-grid,
    .showpage-grid .flex-grid, .flex-grid.view-related-shows {
      -ms-flex-pack: justify;
          justify-content: space-between; }
  .cast .flex-grid .more-link,
  .flex-grid .sexta-col {
    width: 32.5%;
    margin-right: 0.8%; }
    .cast .flex-grid .more-link img,
    .flex-grid .sexta-col img {
      width: 100%;
      height: auto; }
  .view-show-related-content.flex-grid .more-link {
    width: 32.6%; }
  .flex-grid .tetriary-col {
    width: 31.6%;
    margin: 0 0.35% 0.7%;
    padding: 0;
    max-height: 330px; }
    .all-articles .flex-grid .tetriary-col {
      width: 32.6%; }
    .flex-grid .tetriary-col img {
      width: 100%;
      height: auto; }
  .flex-grid.l-subpage--list .tetriary-col {
    margin: 0 0.4% 1.2%; }
  .flex-grid .col {
    width: 32.4%; }
    .flex-grid .col img {
      width: 100%;
      height: auto; }
  .flex-grid.finite .col {
    width: 24%; }
    .flex-grid.finite .col img {
      width: 100%;
      height: auto; }
  .flex-grid .full.col {
    width: 100%; } }

@media (min-width: 1080px) {
  .flex-grid .col {
    width: 49%; }
  .flex-grid .tall-col img {
    width: 100%; }
  .view-show-related-content.flex-grid .more-link {
    width: 31.6%;
    margin: 0 0.35% 0.7%; }
  .cast .flex-grid .more-link,
  .flex-grid .sexta-col {
    width: 16%;
    margin-right: 0.4%; }
    .cast .flex-grid .more-link img,
    .flex-grid .sexta-col img {
      width: 100%;
      height: auto; } }

.l-main {
  background-color: black; }

.l-header {
  min-height: 90px; }
  @media (min-width: 1080px) {
    .l-header {
      min-height: 90px; } }
  .l-header .header-wrapper {
    position: fixed;
    height: 90px;
    top: 0;
    margin-left: 0;
    left: 0;
    z-index: 999; }
    .admin-menu .l-header .header-wrapper {
      top: 26px; }
    .page-admin .l-header .header-wrapper {
      top: 29px; }
    .l-header .header-wrapper .header-inner {
      max-width: 1440px;
      position: relative; }

.l-header a {
  color: white; }

.l-content {
  margin-bottom: 11px; }
  @media (min-width: 1080px) {
    .l-content {
      margin-bottom: 22px; }
      .l-content .showpage-content {
        padding-bottom: 30px; } }

/* Center Show titles vertically */
.l-center--intro {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center; }

/* Alphabetical 2 column */
.a-z-list {
  -moz-column-count: 1;
       column-count: 1;
  -moz-column-gap: 0;
       column-gap: 0; }
  @media (min-width: 781px) {
    .a-z-list {
      -moz-column-count: 2;
           column-count: 2; } }

.article-listing .view-content {
  -moz-column-count: 1;
       column-count: 1;
  -moz-column-gap: 1;
       column-gap: 1; }
  @media (min-width: 781px) {
    .article-listing .view-content {
      -moz-column-count: 2;
           column-count: 2; } }
  @media (min-width: 1080px) {
    .article-listing .view-content {
      -moz-column-count: 3;
           column-count: 3; } }

.l-shows--list .views-exposed-form,
.l-shows--list h3,
.l-life--list .views-exposed-form,
.l-life--list h3 {
  width: 100%;
  display: block; }

.l-shows--list .views-exposed-form .form-item,
.l-life--list .views-exposed-form .form-item {
  float: left;
  padding-right: 10px; }

.l-content--middle {
  padding-top: 5px; }

.l-content--middle.two-thirds {
  background-color: #F0F0F0; }

@media (min-width: 781px) {
  .l-content--middle {
    padding-top: 0; }
  .l-center--intro .two-thirds {
    padding-right: 0; } }

@media (min-width: 1080px) {
  .l-content--middle.two-thirds {
    border-left: 1px solid #F90A34;
    border-bottom: 1px solid #F90A34; } }

@media (min-width: 781px) {
  .l-home--main .top-home-container,
  .l-home--main .main-container,
  .l-articles--recommended .top-home-container,
  .l-articles--recommended .main-container {
    float: none;
    display: block;
    margin: 10px auto 0;
    padding: 0 2%;
    max-width: 1000px;
    width: 100%; }
    .l-home--main .top-home-container.social-feed,
    .l-home--main .main-container.social-feed,
    .l-articles--recommended .top-home-container.social-feed,
    .l-articles--recommended .main-container.social-feed {
      padding: 0; } }

@media (min-width: 1080px) {
  .l-home--main,
  .l-articles--recommended {
    padding: 0 10px; }
    .l-home--main .top-home-container,
    .l-home--main .main-container,
    .l-articles--recommended .top-home-container,
    .l-articles--recommended .main-container {
      padding: 10px 0 0 0;
      margin: 0;
      float: left;
      clear: left;
      max-width: 1000px;
      width: 66.5%; }
    .l-home--main .secondary-container,
    .l-articles--recommended .secondary-container {
      float: right;
      display: block;
      width: 32%;
      padding-top: 10px; } }

@media (min-width: 1440px) {
  .l-home--main .main-container,
  .l-articles--recommended .main-container {
    margin-left: 3px; }
  .l-home--main .secondary-container,
  .l-articles--recommended .secondary-container {
    margin-right: 3px; } }

.c-widget iframe {
  width: 100%; }

.l-footer {
  background-color: #959595;
  color: white;
  min-height: 300px;
  padding: 30px 0; }

.l-footer a {
  color: white; }

/*------------------------------------*  #LISTING - VIEW
\*------------------------------------*/
/* Main listing */
.l-bios--list .pager,
.l-shows--list .pager,
.l-articles--list .pager,
.l-video--list .pager, .l-bios--list
.attachment,
.l-shows--list
.attachment,
.l-articles--list
.attachment,
.l-video--list
.attachment {
  width: 100%;
  padding: 22px 0; }

.l-bio--list .attachment,
.l-shows--list .attachment,
.l-articles--list .attachment {
  padding: 6px 0 22px; }

.l-bios--list,
.l-articles--list,
.l-shows--list {
  padding: 0 2%; }

.his-file {
  position: relative;
  display: inline-block;
  margin: 0 auto;
  width: 100%;
  padding: 22px 11px; }
  .his-file.section-1 {
    background-color: white; }
  .his-file.section-2 {
    background-color: black; }
  .his-file.section-3 {
    background-color: #444; }
  .his-file .views-row .c-tetriary--text,
  .his-file .views-row:nth-child(2n) .c-tetriary--text {
    background-color: #F0F0F0; }
    .his-file .views-row .c-tetriary--text .c-tetriary--title,
    .his-file .views-row:nth-child(2n) .c-tetriary--text .c-tetriary--title {
      color: black; }

.tall-col,
.col {
  padding-bottom: 1px; }

.tetriary-col {
  margin-bottom: 10px; }
  .tv-guide .tetriary-col {
    margin-bottom: 2.7%; }

.l-shows--recommended {
  padding-bottom: 33px; }

.all-articles .view-show-listing {
  padding-bottom: 44px; }

@media (min-width: 781px) {
  .tv-guide .tetriary-col {
    margin-bottom: 0.7%; }
  .tetriary-col {
    margin-bottom: 0.7%; }
  .l-shows--recommended {
    padding-bottom: 77px; }
  .view-show-listing {
    padding-bottom: 44px; } }

/* Pager */
ul.pager {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  width: 100%;
  clear: both; }

ul.pager li.pager__item--current {
  color: white;
  background: #F90A34; }

ul.pager li {
  line-height: 14px;
  border: 1px solid black;
  width: 35px;
  display: block;
  float: left;
  text-align: center;
  color: black;
  font-family: 'Arial Black';
  padding: 6px 8px 8px 8px; }

ul.pager li a {
  color: black; }

ul.pager li.pager__item--next {
  margin-left: 40px; }

/* Pager END */
/*------------------------------------*  #PARAGRAPHS LAYOUT
\*------------------------------------*/
.l-paragraph--item,
.l-node--legacy-area,
.article-header {
  padding-left: 12px;
  padding-right: 12px; }
  @media (min-width: 781px) {
    .l-paragraph--item,
    .l-node--legacy-area,
    .article-header {
      padding-left: 30px;
      padding-right: 30px; } }

.l-content--body {
  display: block;
  marging-top: 0;
  padding-top: 0; }

.l-area--vertical-image,
.l-area--landscape-image,
.l-area--infographic-image,
.l-area--social-feed,
.l-area--youtube,
.l-area--quote,
.l-node--body p,
.l-node--body ul,
.l-node--body ol,
.l-area--copy p,
.l-area--related-features,
.l-node--legacy-area p,
.article-featured-image {
  display: block;
  marging-top: 0;
  padding-top: 0;
  padding-bottom: 20px; }

.l-area--mainheader,
.l-area--subheader {
  display: block;
  marging-top: 0;
  padding-top: 0;
  padding-bottom: 22px; }

.l-node--mpx-area iframe {
  width: 100%; }

.l-area--quote {
  padding-left: 32px;
  width: 110%; }
  @media (min-width: 781px) {
    .l-area--quote {
      width: 65%;
      padding-left: 45px; } }

.article-featured-image {
  padding-top: 11px; }
  .article-featured-image img {
    display: block;
    margin: 0 auto; }

.l-area--related-features,
.l-area--related-shows {
  width: 90%;
  margin: 8px auto;
  float: initial;
  list-style: none;
  position: relative;
  z-index: 5; }
  .l-area--related-features .sidebar--item,
  .l-area--related-shows .sidebar--item {
    position: relative; }
    .l-area--related-features .sidebar--item .sidebar--text,
    .l-area--related-shows .sidebar--item .sidebar--text {
      bottom: 0;
      left: 0; }
    .l-area--related-features .sidebar--item .sidebar--description,
    .l-area--related-shows .sidebar--item .sidebar--description {
      display: none; }

.l-area--landscape-image {
  width: auto; }
  @media (min-width: 781px) {
    .l-area--landscape-image {
      width: 700px;
      margin: 0 auto; } }

.l-area--infographic-image {
  width: auto; }
  @media (min-width: 781px) {
    .l-area--infographic-image {
      width: 625px;
      margin: 0 auto; } }

.l-area--vertical-image {
  width: auto; }
  @media (min-width: 781px) {
    .l-area--vertical-image {
      width: 525px;
      margin: 0 auto; } }

@media (min-width: 781px) {
  .l-paragraph--item,
  .l-node--legacy-area,
  .article-header,
  .l-paragraph--item .related--content {
    padding-left: 55px;
    padding-right: 55px; }
  .l-area--related-features,
  .l-area--related-shows {
    width: 100%; }
  .l-area--related-features {
    float: initial; } }

@media (min-width: 1080px) {
  .l-paragraph--item,
  .l-node--legacy-area,
  .article-header,
  .l-paragraph--item .related--content {
    padding-left: 70px;
    padding-right: 70px; }
  .l-area--related-features,
  .l-area--related-shows {
    width: 380px;
    float: left;
    margin: 8px 26px 33px 0; }
  .l-area--related-features {
    float: right; } }

@media (min-width: 1280px) {
  .l-paragraph--item,
  .l-node--legacy-area,
  .article-header {
    padding-left: 60px;
    padding-right: 60px; }
  .article-featured-image img {
    display: block;
    margin: 0 auto; } }

/* AUTHOR */
.l-author-page-top {
  display: inline-block; }

.author-image {
  margin-bottom: 10px; }

.author-image img {
  width: 300px;
  display: block;
  margin: 0 auto;
  border: 13px solid #ccc;
  border-radius: 2px; }

.social {
  margin: 0 auto;
  margin-bottom: 30px;
  width: 102px; }
  .social .author-facebook {
    margin-right: 25px;
    display: inline-block; }
    .social .author-facebook a {
      background-image: url(../images/facebook_32.png);
      height: 32px;
      width: 32px;
      border-radius: 15px;
      color: transparent;
      background-size: cover;
      display: block; }
  .social .author-twitter {
    display: inline-block; }
    .social .author-twitter a {
      background-image: url(../images/twitter_32.png);
      height: 32px;
      width: 32px;
      border-radius: 15px;
      color: transparent;
      background-size: cover;
      display: block; }

.author-name {
  font-family: 'Arial Black', sans-serif;
  letter-spacing: -1.3px;
  text-transform: uppercase;
  font-size: 40px;
  line-height: 34px;
  color: black;
  letter-spacing: normal;
  margin-bottom: 10px;
  text-align: center;
  white-space: nowrap; }
  @media (min-width: 781px) {
    .author-name {
      font-size: 60px;
      line-height: 52px; } }
  @media (min-width: 1280px) {
    .author-name {
      font-size: 60px;
      line-height: 53px; } }
  @media (min-width: 781px) {
    .author-name {
      text-align: left; } }

.author-details {
  color: #191E24;
  text-align: center; }
  .author-details .subheader {
    font-size: 18px;
    color: black;
    font-family: 'Arial Black', sans-serif;
    font-weight: 300;
    color: black;
    font-weight: bold;
    letter-spacing: normal;
    margin-bottom: 20px; }
  @media (min-width: 781px) {
    .author-details {
      text-align: left; } }

.author-teaser {
  max-width: 100%;
  padding: 10px; }
  @media (min-width: 781px) {
    .author-teaser {
      max-width: 90%; } }
  .author-teaser .author-image {
    margin-bottom: 0; }
  .author-teaser .author-image img {
    width: 80px;
    min-height: 80px;
    height: auto;
    border: none;
    float: left;
    margin-right: 10px;
    border-radius: 40px; }
  .author-teaser .aurthortop {
    border-bottom: 1px solid #898989;
    margin-bottom: 10px; }
  .author-teaser .authorbottom {
    margin-bottom: 10px; }
  .author-teaser .author-teaser-right {
    display: inline-block;
    width: 66%; }
    @media (min-width: 781px) {
      .author-teaser .author-teaser-right {
        width: 77%; } }
    .author-teaser .author-teaser-right .author-name {
      text-transform: uppercase;
      font-family: 'Arial Black', sans-serif;
      letter-spacing: -1px;
      color: black;
      font-size: 21px;
      line-height: 26px;
      font-weight: 400;
      letter-spacing: normal;
      text-transform: normal;
      display: block;
      text-align: center;
      margin: 0; }
      @media (min-width: 781px) {
        .author-teaser .author-teaser-right .author-name {
          display: inline-block;
          height: -webkit-max-content;
          height: -moz-max-content;
          height: max-content; } }
      .author-teaser .author-teaser-right .author-name p {
        margin-bottom: 10px;
        margin-right: 8px; }
    .author-teaser .author-teaser-right .author-details {
      font-size: 14px;
      text-align: center;
      line-height: 14px; }
      @media (min-width: 781px) {
        .author-teaser .author-teaser-right .author-details {
          font-size: 16px;
          line-height: 16px;
          text-align: left; } }
      .author-teaser .author-teaser-right .author-details p {
        margin: 0;
        padding-bottom: 5px; }
    .author-teaser .author-teaser-right .social {
      width: 65px;
      margin-bottom: 0;
      display: inline-block; }
      .author-teaser .author-teaser-right .social .author-facebook {
        margin-right: 5px; }
        .author-teaser .author-teaser-right .social .author-facebook a {
          width: 26px;
          height: 26px; }
      .author-teaser .author-teaser-right .social .author-twitter a {
        width: 26px;
        height: 26px; }
    .author-teaser .author-teaser-right .author-publish-date {
      font-family: 'Arial', sans-serif;
      text-transform: none;
      color: #898989;
      font-size: 14px;
      line-height: 18px;
      text-align: center; }
      @media (min-width: 781px) {
        .author-teaser .author-teaser-right .author-publish-date {
          font-size: 12px;
          line-height: 16px; } }
      @media (min-width: 1280px) {
        .author-teaser .author-teaser-right .author-publish-date {
          font-size: 14px;
          line-height: 18px; } }
      @media (min-width: 781px) {
        .author-teaser .author-teaser-right .author-publish-date {
          display: inline-block; } }

.c-mainheader {
  text-transform: uppercase;
  font-family: 'Arial Black', sans-serif;
  letter-spacing: -1px;
  color: black;
  font-size: 21px;
  line-height: 26px; }

.c-subheader {
  font-family: 'Arial', sans-serif;
  text-transform: uppercase;
  color: white;
  font-weight: 600;
  font-size: 22px;
  line-height: 22px;
  color: black;
  font-weight: 700; }
  @media (min-width: 781px) {
    .c-subheader {
      font-size: 15px;
      line-height: 15px; } }
  @media (min-width: 1280px) {
    .c-subheader {
      font-size: 22px;
      line-height: 22px; } }

.c-copy {
  margin: 0 auto;
  font-size: 16px;
  line-height: 20px;
  font-family: 'Open sans', sans-serif;
  text-transform: none;
  color: black; }
  .c-copy br {
    line-height: 2; }
    @media (min-width: 781px) {
      .c-copy br {
        line-height: 3; } }
  @media (min-width: 781px) {
    .c-copy {
      font-size: 16px;
      line-height: 20px; } }
  @media (min-width: 1280px) {
    .c-copy {
      font-size: 16px;
      line-height: 22px; } }
  .c-copy a {
    font-weight: bold;
    font-style: italic;
    color: #F90A34; }
  .c-copy li {
    text-transform: uppercase; }
  .c-copy ul {
    margin-left: 1.375rem; }
    .c-copy ul li {
      list-style: none; }
      .c-copy ul li:before {
        content: '\2022';
        color: red;
        font-weight: bold;
        margin-right: 4px;
        font-size: 46px;
        vertical-align: middle; }
  .c-copy ol li {
    list-style: none;
    counter-increment: county; }
    .c-copy ol li:before {
      font-weight: bold;
      content: counter(county) ". ";
      font-family: Arial;
      color: red;
      font-size: 24px; }
  .c-copy table {
    width: 100%; }
    .c-copy table th {
      font-family: 'Open sans', sans-serif;
      font-weight: 500;
      text-align: left;
      font-size: 18px;
      line-height: 18px;
      text-transform: uppercase;
      color: black;
      text-align: left;
      background-color: transparent;
      padding: 10px 10px; }
    .c-copy table tbody tr {
      font-size: 16px;
      font-family: 'Arial', sans-serif;
      font-weight: bold;
      text-transform: uppercase;
      color: white;
      line-height: 1;
      text-align: left;
      text-transform: none;
      font-weight: normal;
      color: black; }
      @media (min-width: 781px) {
        .c-copy table tbody tr {
          font-size: 16px;
          line-height: 16px; } }
      @media (min-width: 1280px) {
        .c-copy table tbody tr {
          font-size: 18px;
          line-height: 18px; } }
      .c-copy table tbody tr td {
        text-align: center;
        padding: 0 10px; }
      .c-copy table tbody tr td:nth-child(2) table tr {
        display: block; }
        .c-copy table tbody tr td:nth-child(2) table tr:first-child td {
          color: black; }
      .c-copy table tbody tr td table tr {
        display: inline-block; }
        .c-copy table tbody tr td table tr:first-child td {
          color: #F90A34; }
      .c-copy table tbody tr td table td {
        text-align: left;
        padding: 0 5px; }

.c-btn--primary a {
  color: white;
  font-weight: 300; }

.c-image--vertical,
.c-image--horizontal,
.c-image--infographic {
  padding-bottom: 20px; }
  .c-image--vertical img,
  .c-image--horizontal img,
  .c-image--infographic img {
    display: block;
    margin: 0 auto; }

.c-node--description-area {
  color: #191E24; }

.c-quote--copy {
  font-family: 'Arial Black', sans-serif;
  text-transform: uppercase;
  letter-spacing: -1.5px;
  color: white;
  font-size: 30px;
  line-height: 26px;
  border-bottom: 4px solid #F90A34;
  margin-bottom: 10px;
  padding-bottom: 8px;
  letter-spacing: normal;
  color: black; }
  @media (min-width: 781px) {
    .c-quote--copy {
      font-size: 22px;
      line-height: 17px; } }
  @media (min-width: 1280px) {
    .c-quote--copy {
      font-size: 30px;
      line-height: 28px; } }
  @media (min-width: 1440px) {
    .c-quote--copy {
      font-size: 36px;
      line-height: 29px; } }
  .c-quote--copy p {
    padding-bottom: 0; }
    .c-quote--copy p:before {
      content: '"'; }
    .c-quote--copy p:after {
      content: '"'; }

.c-quote--source {
  font-family: 'Arial Black', sans-serif;
  text-transform: uppercase;
  letter-spacing: -1.5px;
  color: white;
  font-size: 30px;
  line-height: 26px;
  color: #F90A34;
  letter-spacing: normal; }
  @media (min-width: 781px) {
    .c-quote--source {
      font-size: 22px;
      line-height: 17px; } }
  @media (min-width: 1280px) {
    .c-quote--source {
      font-size: 30px;
      line-height: 28px; } }
  @media (min-width: 1440px) {
    .c-quote--source {
      font-size: 36px;
      line-height: 29px; } }

.c-caption {
  font-family: 'Open sans', sans-serif;
  font-weight: 500;
  text-align: left;
  font-size: 18px;
  line-height: 18px; }

.article-featured-image .c-caption {
  text-align: left; }

.l-area--related-shows {
  font-size: 18px;
  line-height: 18px;
  font-family: 'Arial Black', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  color: white; }
  @media (min-width: 781px) {
    .l-area--related-shows {
      font-size: 16px;
      line-height: 18px; } }
  @media (min-width: 1280px) {
    .l-area--related-shows {
      font-size: 18px;
      line-height: 22px; } }
  .l-area--related-shows .sidebar--header {
    font-size: 24px; }

.l-paragraph--item.features-main {
  padding: 0; }

.l-area--related-features {
  width: 100%;
  margin: 0;
  font-size: 18px;
  line-height: 18px;
  font-family: 'Arial Black', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  color: white; }
  @media (min-width: 781px) {
    .l-area--related-features {
      font-size: 16px;
      line-height: 18px; } }
  @media (min-width: 1280px) {
    .l-area--related-features {
      font-size: 18px;
      line-height: 22px; } }
  .l-area--related-features .sidebar--header {
    font-size: 16px;
    font-weight: bold; }

.page-node-29112 .l-node--main-content {
  position: relative; }
  .page-node-29112 .l-node--main-content .l-area--landscape-image {
    padding-bottom: 92px; }
    @media (min-width: 781px) {
      .page-node-29112 .l-node--main-content .l-area--landscape-image {
        padding-bottom: 40px; } }
  .page-node-29112 .l-node--main-content .quotatron {
    line-height: 20px;
    padding: 12px;
    top: 57%;
    left: 0%;
    min-width: 210px;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    color: white;
    font-weight: 600;
    font-size: 22px;
    line-height: 22px;
    font-size: 22px;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.7); }
    .page-node-29112 .l-node--main-content .quotatron p {
      padding-bottom: 0; }
    @media (min-width: 781px) {
      .page-node-29112 .l-node--main-content .quotatron {
        font-size: 15px;
        line-height: 15px; } }
    @media (min-width: 1280px) {
      .page-node-29112 .l-node--main-content .quotatron {
        font-size: 22px;
        line-height: 22px; } }
    @media (min-width: 560px) {
      .page-node-29112 .l-node--main-content .quotatron {
        font-size: 26px;
        line-height: 30px;
        top: 35%;
        left: 20%;
        width: 510px;
        padding: 34px; } }
  .page-node-29112 .l-node--main-content .c-image--landscape {
    height: 300px;
    position: relative;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s linear,opacity 0.3s linear; }
    @media (min-width: 781px) {
      .page-node-29112 .l-node--main-content .c-image--landscape {
        height: auto; } }
  .page-node-29112 .l-node--main-content .c-image--landscape.show {
    visibility: visible;
    opacity: 1; }
    .page-node-29112 .l-node--main-content .c-image--landscape.show img {
      border-radius: 5px; }
      @media (min-width: 560px) {
        .page-node-29112 .l-node--main-content .c-image--landscape.show img {
          border: 8px solid black; } }
  .page-node-29112 .l-node--main-content .c-image--landscape:before {
    content: '';
    height: 7px;
    width: 0px;
    background-color: #F90A34;
    position: absolute;
    bottom: 114px;
    left: 57.1%;
    transition: width 1s linear 1s; }
  .page-node-29112 .l-node--main-content .c-image--landscape.show:before {
    width: 44%;
    display: none; }
    @media (min-width: 1080px) {
      .page-node-29112 .l-node--main-content .c-image--landscape.show:before {
        display: block; } }
  .page-node-29112 .l-node--main-content .randombutton {
    position: absolute;
    top: 54.3%;
    left: 36%;
    background-color: #222;
    background-image: url("../images/shuffle.png");
    background-size: 100%;
    z-index: 100;
    height: 108px;
    width: 108px;
    transform: rotate(0deg);
    border: 3px solid #F90A34;
    border-radius: 50%;
    transition: all 1s ease-in-out;
    background-repeat: no-repeat; }
    @media (min-width: 560px) {
      .page-node-29112 .l-node--main-content .randombutton {
        display: block;
        top: 35.5%;
        left: 46%; } }
    .page-node-29112 .l-node--main-content .randombutton:hover {
      transform: rotate(360deg);
      filter: contrast(2);
      background-color: #F90A34; }
  .page-node-29112 .l-node--main-content .randombutton.clicked {
    top: 81%; }
    @media (min-width: 560px) {
      .page-node-29112 .l-node--main-content .randombutton.clicked {
        top: 73%;
        -ms-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        background-color: #222; }
        .page-node-29112 .l-node--main-content .randombutton.clicked:hover {
          transform: rotate(360deg);
          filter: contrast(2);
          background-color: #F90A34; } }

.subtitle--emphasis.vids-title {
  margin-left: 20px;
  padding-top: 30px; }
  .subtitle--emphasis.vids-title:before {
    top: 35px; }

.l-video--list {
  -ms-flex-pack: end;
      justify-content: flex-end; }
  .l-video--list .more-link {
    margin-top: -18% !important; }

.flex-grid.more-videos {
  -ms-flex-pack: start !important;
      justify-content: flex-start !important;
  margin-bottom: 10px; }

.more-videos .c-video .c-card .img:before {
  top: 75%; }
  @media (min-width: 1080px) {
    .more-videos .c-video .c-card .img:before {
      background-size: 30px !important; } }

.more-videos .c-video .c-card .info-wrapper {
  bottom: -50px;
  max-width: 65%; }
  .more-videos .c-video .c-card .info-wrapper .title {
    font-size: 22px; }

.block--disqus {
  padding: 1%;
  border-top: 1px red solid;
  border-bottom: 3px white solid; }
  .block--disqus .block__content {
    max-width: 1180px;
    margin: 0 auto; }
  .block--disqus .post-content .post-message {
    color: white; }

/*------------------------------------*  #BUTTONS
\*------------------------------------*/
/**
 * 1. Allow us to style box model properties.
 * 2. Line different sized buttons up a little nicer.
 * 3. Make buttons inherit font styles (often necessary when styling `input`s as
 *    buttons).
 * 4. Reset/normalize some styles.
 * 5. Force all button-styled elements to appear clickable.
 * 6. Subtract the border size from the padding value so that buttons do not
 *    grow larger as we add borders.
 */
.c-btn {
  display: inline-block;
  /* [1] */
  vertical-align: middle;
  /* [2] */
  font: inherit;
  /* [3] */
  text-align: center;
  /* [4] */
  margin: 0;
  /* [4] */
  cursor: pointer;
  /* [5] */
  padding: 11px 22px; }
  .c-btn:hover, .c-btn:focus {
    text-decoration: none; }

.more-link,
.c-btn--primary {
  transition: all .2s ease-in; }
  .more-link a,
  .c-btn--primary a {
    padding: 3px 12px 6px 10px;
    background-color: black;
    font-size: 18px;
    line-height: 18px;
    font-family: 'Arial Black', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    color: white;
    font-style: initial; }
    @media (min-width: 781px) {
      .more-link a,
      .c-btn--primary a {
        font-size: 16px;
        line-height: 18px; } }
    @media (min-width: 1280px) {
      .more-link a,
      .c-btn--primary a {
        font-size: 18px;
        line-height: 22px; } }
  .more-link a:before,
  .c-btn--primary a:before {
    background: url("../images/longarrow.png");
    content: '';
    display: inline-block;
    background-size: contain;
    width: 24px;
    height: 12px;
    margin-right: 8px;
    transition: all .2s ease-in; }
  .more-link:hover a:before,
  .c-btn--primary:hover a:before {
    margin-right: 14px; }

/* BODY BUTTONS THEMING */
.l-node--body .l-area--cta {
  float: left;
  margin: 8px 22px 13px; }
  .l-node--body .l-area--cta .inline-cta {
    font-size: 18px;
    line-height: 18px;
    font-family: 'Arial Black', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    color: white;
    padding: 3px 12px 6px 10px;
    background-color: black; }
    @media (min-width: 781px) {
      .l-node--body .l-area--cta .inline-cta {
        font-size: 16px;
        line-height: 18px; } }
    @media (min-width: 1280px) {
      .l-node--body .l-area--cta .inline-cta {
        font-size: 18px;
        line-height: 22px; } }
    .l-node--body .l-area--cta .inline-cta a {
      color: white; }
    .l-node--body .l-area--cta .inline-cta:hover {
      padding-left: 14px; }

.c-btn--small {
  padding: 6px 11px; }

.c-btn--large {
  padding: 22px 44px; }

.c-sidebar--video-img, .c-listing--item {
  position: relative; }
  .c-sidebar--video-img:hover .c-video--button:before, .c-listing--item:hover .c-video--button:before {
    background-image: url("../images/video-play-hover.png"); }

.c-tetriary--item {
  position: relative; }
  .c-tetriary--item:hover .c-video--button:before {
    background-image: url("../images/video-play-hover.png"); }

.c-video--button:before {
  background-image: url("../images/video-play.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 55px;
  height: 55px;
  display: block;
  position: absolute;
  left: 15%;
  transform: translate(-50%, -50%);
  top: 50%;
  content: ""; }

.c-video--button.c-listing--img:before {
  top: 30%; }

.c-video--button.c-tetriary--img:before {
  top: 22%;
  background-image: url("../images/video-play.png"); }

.form-actions input#edit-submit {
  background-image: none;
  width: auto;
  height: auto;
  color: black;
  margin: 0px; }

/*------------------------------------*  #Front
\*------------------------------------*/
/* Front theming */
.front {
  background-color: black; }
  @media (min-width: 1080px) {
    .front .c-row--bottom,
    .front .c-row--bottom .item {
      max-height: 350px;
      overflow: hidden; } }
  .front .promo .item .img img {
    transition: all 1.5s ease-in-out; }
  .front .promo .item .img:hover img {
    filter: grayscale(100%) brightness(105%) contrast(125%); }
    .front .promo .item .img:hover img.full.col {
      filter: grayscale(100%) brightness(100%) contrast(100%); }
  .front .c-row--top,
  .front .c-row--bottom {
    padding-bottom: 4px; }
  .front .c-row--top .full.col .item .img {
    border-left: 1px solid black; }
    .front .c-row--top .full.col .item .img img {
      transition: all 1.5s ease-in-out; }
  .front .c-row--top .full.col .item .img:hover img {
    transform: scale(1.01);
    filter: grayscale(100%) brightness(105%) contrast(125%); }
  .front .c-row--bottom .one-third,
  .front .c-row--bottom .two-thirds {
    padding: 0 0 4px 0; }
  @media (min-width: 1080px) {
    .front .c-row--bottom .one-third {
      padding: 0 2px 0 0; }
    .front .c-row--bottom .two-thirds {
      padding: 0 0 0 2px; } }
  .front .top-home-container {
    padding: 0 10px 50px 10px; }
    @media (min-width: 781px) {
      .front .top-home-container {
        padding: 0 0 60px 0; } }
    .front .top-home-container .tetriary-col:nth-child(3) {
      overflow: hidden; }
      @media (min-width: 1080px) {
        .front .top-home-container .tetriary-col:nth-child(3) .tdih {
          height: 1px; } }
  .front .social {
    margin: 0 auto;
    width: 85%; }
  .front .tdih .tdih-inner {
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: center;
        align-items: center;
    height: 100%; }
    @media (min-width: 1080px) {
      .front .tdih .tdih-inner {
        min-height: 448px; } }
    .front .tdih .tdih-inner:hover .title {
      background: white;
      color: #F90A34; }
  .front .tdih .day {
    text-transform: uppercase;
    font-weight: 100;
    font-family: 'Arial', sans-serif;
    letter-spacing: 0.8px;
    color: white;
    font-size: 18px;
    line-height: 18px;
    font-weight: 500;
    font-family: 'Arial Black', sans-serif;
    background: black;
    z-index: 4;
    padding: 2px 8px;
    margin-bottom: 6px; }
    @media (min-width: 781px) {
      .front .tdih .day {
        font-size: 14px;
        line-height: 14px; } }
    @media (min-width: 1280px) {
      .front .tdih .day {
        font-size: 16px;
        line-height: 16px; } }
    @media (min-width: 1440px) {
      .front .tdih .day {
        font-size: 18px;
        line-height: 18px; } }
  .front .tdih .title {
    font-family: 'Arial Black', sans-serif;
    text-transform: uppercase;
    color: white;
    letter-spacing: -2.6px;
    font-size: 40px;
    line-height: 32px;
    font-weight: 100;
    font-family: 'Arial', sans-serif;
    padding: 6px 21px 11px;
    background: black;
    z-index: 4;
    margin: 20px 0;
    transition: all 0.8s ease-in-out; }
    @media (min-width: 781px) {
      .front .tdih .title {
        font-size: 44px;
        line-height: 38px; } }
    @media (min-width: 1280px) {
      .front .tdih .title {
        font-size: 54px;
        line-height: 48px; } }
    @media (min-width: 1440px) {
      .front .tdih .title {
        font-size: 60px;
        line-height: 55px; } }
    .front .tdih .title .emphasis {
      font-weight: 600; }
  .front .tdih .tdih-line-ver:after {
    content: '';
    z-index: 0;
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: #F90A34; }
  .front .tdih .tdih-line-ver {
    margin-bottom: 26px; }
  .front .tdih .tdih-line-hor:after {
    content: '';
    z-index: 0;
    position: absolute;
    top: 49%;
    left: 0;
    height: 1px;
    width: 100%;
    background: #F90A34; }
    @media (min-width: 1080px) {
      .front .tdih .tdih-line-hor:after {
        top: 21%; } }
  .front .tdih .action {
    transition: all 0.8s ease-in-out; }
    .front .tdih .action:hover {
      background: white;
      color: #F90A34; }
  .front .tv-guide {
    padding: 10px 2px 5px;
    font-family: 'Arial Black', sans-serif;
    text-transform: uppercase;
    letter-spacing: -1.5px;
    color: white;
    font-size: 30px;
    line-height: 26px;
    font-size: 22px;
    line-height: 22px;
    text-align: center; }
    @media (min-width: 781px) {
      .front .tv-guide {
        padding: 30px 40px 30px 0; } }
    @media (min-width: 781px) {
      .front .tv-guide {
        font-size: 22px;
        line-height: 17px; } }
    @media (min-width: 1280px) {
      .front .tv-guide {
        font-size: 30px;
        line-height: 28px; } }
    @media (min-width: 1440px) {
      .front .tv-guide {
        font-size: 36px;
        line-height: 29px; } }
    .front .tv-guide .schedule a {
      color: white; }
      .front .tv-guide .schedule a:hover {
        background: #F90A34; }
      .front .tv-guide .schedule a .last-character {
        font-family: 'Arial', sans-serif; }
    .front .tv-guide a:hover {
      color: white; }
    .front .tv-guide .now--time {
      margin-right: 4px; }
  .front .ad-center {
    padding: 1.5% 20%;
    display: none; }
    @media (min-width: 781px) {
      .front .ad-center {
        display: block; } }

/*------------------------------------*  #Header elements
\*------------------------------------*/
.l-header {
  color: white;
  min-height: 87px; }
  .l-header .header-wrapper {
    border-bottom: 2px white solid;
    position: fixed;
    background-color: #191E24;
    left: 0;
    width: 100%;
    z-index: 999; }
    .l-header .header-wrapper .header-inner {
      max-width: 100%; }
    .l-header .header-wrapper .l-branding {
      padding-left: 5px; }

.c-branding--logo {
  float: left;
  padding-top: 5px; }

.c-branding--logo img {
  width: 72px;
  margin-top: 8px;
  margin-left: 10px; }

.l-header--second {
  display: none; }

@media (min-width: 1080px) {
  .c-branding--logo img {
    width: 85px;
    margin: 6px 0 6px 12px; }
  .l-region--header-social,
  .l-region--header-search {
    display: inline-block; }
  .l-region--header-search {
    width: 32px; }
  .l-header--first,
  .l-header--second {
    display: inline-block; } }

/*------------------------------------*  #Headers 3
\*------------------------------------*/
.subtitle--emphasis {
  position: relative;
  padding: 20px 28px 20px;
  text-transform: uppercase;
  letter-spacing: -2px;
  color: white;
  font-family: 'Arial Black', sans-serif;
  font-size: 23px;
  line-height: 23px; }
  @media (min-width: 781px) {
    .subtitle--emphasis {
      padding: 30px 50px 40px; }
      .front .subtitle--emphasis {
        padding-left: 60px; } }
  @media (min-width: 1280px) {
    .subtitle--emphasis {
      font-size: 23px;
      line-height: 23px; } }
  @media (min-width: 1440px) {
    .subtitle--emphasis {
      font-size: 24px;
      line-height: 20px; } }
  .subtitle--emphasis.red {
    color: #F90A34; }
  .subtitle--emphasis:before {
    content: "";
    width: 15px;
    height: 15px;
    position: absolute;
    top: 25px;
    left: 3px;
    background: url(../images/plus.png) no-repeat;
    background-size: contain; }
    @media (min-width: 781px) {
      .subtitle--emphasis:before {
        top: 33px;
        left: 15px;
        width: 15px;
        height: 15px; }
        .front .subtitle--emphasis:before {
          left: 30px; } }

.tdih.subtitle--emphasis {
  text-align: right;
  padding: 2px 12px 0; }
  @media (min-width: 781px) {
    .tdih.subtitle--emphasis {
      padding: 2px 132px 0; } }

.search-results,
.show-related--title {
  text-align: left;
  display: block;
  width: 100%;
  color: white; }
  .page-search .search-results, .page-search
  .show-related--title {
    color: black; }

.c-shows--all.subtitle--emphasis {
  display: none; }

@media (min-width: 781px) {
  .c-shows--all.subtitle--emphasis {
    display: block; } }

/*------------------------------------*  #MAIN LISTING - ITEM
\*------------------------------------*/
/* Listing items */
.view-related-shows,
.view-showpage-content {
  padding: 8px 0 33px; }
  @media (min-width: 781px) {
    .view-related-shows,
    .view-showpage-content {
      padding: 18px 0 33px; } }

.c-related {
  padding: 10px 10px 0; }

.showpage-cast .cast {
  margin: 0 11px 11px; }

/* Show search forms */
.show-listing .views-exposed-form .views-submit-button .form-submit.ctools-auto-submit-click {
  padding: 9px 15px;
  background-color: #F90A34;
  letter-spacing: 3px; }

.show-listing .views-exposed-form .form-item {
  padding-right: 0;
  border: none; }

.l-shows--list .views-exposed-form .views-exposed-widget .views-widget-filter-title {
  float: left; }

/* Show listing items */
.l-shows--list h3 {
  width: inherit;
  display: inline-block; }

.a-z-list h3 {
  padding-bottom: 4px;
  text-transform: uppercase;
  font-family: 'Arial Black', sans-serif;
  letter-spacing: -1px;
  color: black;
  font-size: 21px;
  line-height: 26px;
  color: #F90A34; }
  .a-z-list h3:before {
    content: "+"; }

.a-z-list .views-row-last {
  padding-bottom: 30px; }

.c-shows--all, .c-articles--all {
  font-family: 'Arial Black', sans-serif;
  text-transform: uppercase;
  letter-spacing: -1.5px;
  color: white;
  font-size: 30px;
  line-height: 26px;
  color: black;
  display: inline-block;
  font-size: 36px;
  position: relative; }
  @media (min-width: 781px) {
    .c-shows--all, .c-articles--all {
      font-size: 22px;
      line-height: 17px; } }
  @media (min-width: 1280px) {
    .c-shows--all, .c-articles--all {
      font-size: 30px;
      line-height: 28px; } }
  @media (min-width: 1440px) {
    .c-shows--all, .c-articles--all {
      font-size: 36px;
      line-height: 29px; } }

.c-shows--all:before,
.c-articles--all:before {
  content: '';
  position: absolute;
  left: -42%;
  height: 2px;
  bottom: 28%;
  width: 133%;
  background: #F90A34; }
  @media (min-width: 781px) {
    .c-shows--all:before,
    .c-articles--all:before {
      bottom: 43%; } }
  @media (min-width: 1280px) {
    .c-shows--all:before,
    .c-articles--all:before {
      bottom: 41%; } }

.column-list .pager {
  padding: 23px 0; }

.page-crime-files .column-list .views-row,
.page-features .column-list .views-row,
.page-shows .column-list .views-row {
  margin-bottom: 0; }

.top-life-container .view-id-article_listing {
  margin-bottom: 70px; }

.view-id-article_listing {
  width: 100%;
  padding: 0 2px 22px 2px; }

.article-listing .subtitle--emphasis {
  font-family: 'Arial Black', sans-serif;
  text-transform: uppercase;
  letter-spacing: -1.5px;
  color: white;
  font-size: 30px;
  line-height: 26px;
  color: black;
  letter-spacing: -2px;
  padding: 22px 0; }
  @media (min-width: 781px) {
    .article-listing .subtitle--emphasis {
      font-size: 22px;
      line-height: 17px; } }
  @media (min-width: 1280px) {
    .article-listing .subtitle--emphasis {
      font-size: 30px;
      line-height: 28px; } }
  @media (min-width: 1440px) {
    .article-listing .subtitle--emphasis {
      font-size: 36px;
      line-height: 29px; } }
  @media (min-width: 781px) {
    .article-listing .subtitle--emphasis {
      padding: 44px 0; } }

.show-listing,
.article-listing {
  padding: 20px 10px; }
  @media (min-width: 781px) {
    .show-listing,
    .article-listing {
      padding: 70px 10px; } }
  .show-listing .view-filters,
  .article-listing .view-filters {
    position: relative;
    top: 4px;
    display: inline-block; }
    @media (min-width: 781px) {
      .show-listing .view-filters,
      .article-listing .view-filters {
        top: 54px;
        float: right; } }
  .show-listing .views-exposed-form,
  .article-listing .views-exposed-form {
    display: none;
    float: right; }
    @media (min-width: 781px) {
      .show-listing .views-exposed-form,
      .article-listing .views-exposed-form {
        display: block; } }
    .show-listing .views-exposed-form .views-exposed-widget,
    .article-listing .views-exposed-form .views-exposed-widget {
      padding: 0px 23px 0px 0px; }
      .show-listing .views-exposed-form .views-exposed-widget .form-submit,
      .article-listing .views-exposed-form .views-exposed-widget .form-submit {
        margin: 0;
        padding: 9px 15px;
        background-color: black;
        border: none;
        color: #EDEDED;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-family: Arial; }
    .show-listing .views-exposed-form .views-widget-filter-title,
    .article-listing .views-exposed-form .views-widget-filter-title {
      padding: 0; }
    .show-listing .views-exposed-form .form-type-textfield input,
    .article-listing .views-exposed-form .form-type-textfield input {
      padding: 8px;
      border: 1px solid black;
      background-color: #EDEDED; }
  .show-listing .a-z-list,
  .article-listing .a-z-list {
    width: 100%; }
    .show-listing .a-z-list a,
    .article-listing .a-z-list a {
      text-transform: uppercase;
      font-family: 'Arial Black', sans-serif;
      letter-spacing: -1px;
      color: black;
      font-size: 21px;
      line-height: 26px; }
  .show-listing .view-content,
  .article-listing .view-content {
    display: block;
    position: relative; }
    .show-listing .view-content .tetriary-col,
    .article-listing .view-content .tetriary-col {
      background-color: #191E24;
      transition: all .3s ease-in-out;
      display: block;
      position: relative;
      clear: both;
      min-height: 90px;
      border-bottom: 1px solid black; }
      .show-listing .view-content .tetriary-col:hover,
      .article-listing .view-content .tetriary-col:hover {
        background-color: black;
        filter: grayscale(100%) brightness(112%) contrast(110%); }
      @media (min-width: 781px) {
        .show-listing .view-content .tetriary-col,
        .article-listing .view-content .tetriary-col {
          min-height: 110px; } }
      .show-listing .view-content .tetriary-col img,
      .article-listing .view-content .tetriary-col img {
        width: 100%; }
      .show-listing .view-content .tetriary-col .sidebar--text,
      .article-listing .view-content .tetriary-col .sidebar--text {
        padding: 0 10px 10px; }
        .show-listing .view-content .tetriary-col .sidebar--text .sidebar--description,
        .article-listing .view-content .tetriary-col .sidebar--text .sidebar--description {
          display: none; }
          @media (min-width: 781px) {
            .show-listing .view-content .tetriary-col .sidebar--text .sidebar--description,
            .article-listing .view-content .tetriary-col .sidebar--text .sidebar--description {
              display: block; } }

.article-listing .view-content .tetriary-col {
  background-color: #191E24; }
  .article-listing .view-content .tetriary-col .c-tetriary--description {
    font-size: 22px; }

.show-listing {
  margin: 0 18px; }
  @media (min-width: 781px) {
    .show-listing {
      margin: 0; } }

.section-features .view-article-listing .sidebar--description {
  display: none; }
  @media (min-width: 320px) {
    .section-features .view-article-listing .sidebar--description {
      display: block; } }

.listing-header {
  max-height: 140px; }

/*------------------------------------*  #TETRIARY LISTING - ITEMS
\*------------------------------------*/
.img-circle img {
  border-radius: 50%; }

.c-cast--item,
.c-cast--item img {
  transition: all .5s ease-in; }

.c-cast--text {
  border-top: 1px solid #F90A34;
  padding-top: 6px;
  padding-bottom: 4px;
  height: 48px;
  display: block;
  position: relative;
  top: -1px; }

.c-cast--title {
  letter-spacing: 0;
  transition: all .35s ease-in; }

.c-cast--item:hover .c-cast--img img {
  filter: brightness(140%); }

.c-cast--item:hover .c-cast--title {
  color: #F90A34; }

@media (min-width: 1080px) {
  .c-cast--item {
    max-width: 220px; }
  .c-cast--img {
    height: 220px;
    width: 220px;
    margin: 0 auto; } }

/*------------------------------------*  #TETRIARY LISTING - ITEMS
\*------------------------------------*/
.c-tetriary--text {
  border-top: 2px solid red;
  height: 88px;
  display: block;
  padding: 22px 22px;
  position: relative;
  background: #191E24;
  position: relative;
  z-index: 2;
  transition: all .2s ease-in; }
  .c-search .c-tetriary--text {
    padding: 16px 16px; }
  .views-row:nth-child(2n) .c-tetriary--text {
    border-top: 2px solid white; }

.c-tetriary--image {
  line-height: 0; }

.c-tetriary--item {
  margin: 0 0.55%; }

.c-tetriary--title {
  color: white;
  padding: 6px 0; }

.c-tetriary--description {
  color: white;
  position: absolute; }
  .l-region--content-main .c-tetriary--description {
    font-size: 16px; }

.view-article-listing .tetriary-col {
  max-height: 350px; }

@media (min-width: 1080px) {
  .c-tetriary--text {
    top: 0;
    height: 100px; } }

/*------------------------------------*  #BUTTONS
\*------------------------------------*/
/* Nav */
#collapsed-menu-button {
  position: relative;
  top: 22px;
  right: 0;
  float: right;
  color: transparent;
  background-color: transparent;
  border: none;
  background-image: url(../images/MenuIcon.png);
  background-repeat: no-repeat;
  padding: 10px 10px; }
  @media (min-width: 781px) {
    #collapsed-menu-button {
      top: -48px; } }
  #collapsed-menu-button.active:before {
    color: #fff; }

#mobile-menu-inner {
  width: 100%; }

.header-wrapper .l-header--second {
  display: none; }
  @media (min-width: 1080px) {
    .header-wrapper .l-header--second {
      display: block; } }

.header-wrapper.change-colour .l-header--second {
  display: none; }

#mobile-menu {
  position: relative;
  background-color: #181818;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 0;
  z-index: 9998;
  width: 100%; }
  #mobile-menu li.leaf {
    border-bottom: 1px solid #959595;
    border-top: 1px solid #959595;
    border-left: 0;
    border-right: 0;
    text-align: right;
    list-style: none outside none;
    overflow: hidden;
    border-right: 0;
    display: block;
    height: 70px;
    z-index: 9999;
    margin: 0;
    padding: 0; }
    #mobile-menu li.leaf a {
      text-decoration: none;
      float: right;
      padding: 0px 30px 0px 20px;
      margin-top: 22px;
      width: auto;
      font-size: 18px;
      line-height: 18px;
      font-family: 'Arial Black', sans-serif;
      font-weight: 400;
      text-transform: uppercase;
      color: white; }
      @media (min-width: 781px) {
        #mobile-menu li.leaf a {
          font-size: 16px;
          line-height: 18px; } }
      @media (min-width: 1280px) {
        #mobile-menu li.leaf a {
          font-size: 18px;
          line-height: 22px; } }
      #mobile-menu li.leaf a.active-trail, #mobile-menu li.leaf a:hover {
        border-left: 2px solid #F90A34; }
  #mobile-menu .c-header--social {
    top: 0; }
    #mobile-menu .c-header--social span a {
      margin-top: 8px; }
      #mobile-menu .c-header--social span a.active, #mobile-menu .c-header--social span a:hover {
        border-left: none; }

/*------------------------------------*  #BUTTONS
\*------------------------------------*/
/* Nav */
@media (min-width: 1080px) {
  header ul.menu {
    display: block;
    padding-top: 9px;
    padding-right: 22px; } }

.block--system-main-menu .leaf {
  border-left: 3px transparent solid;
  float: right;
  margin: 26px 0 0;
  transition: all .2s ease-in; }
  @media (min-width: 1080px) {
    .block--system-main-menu .leaf {
      margin: 26px 2px 0; } }
  @media (min-width: 1440px) {
    .block--system-main-menu .leaf {
      margin: 26px 18px 0; } }
  .block--system-main-menu .leaf:hover, .block--system-main-menu .leaf.active-trail {
    border-color: #F90A34; }
  .block--system-main-menu .leaf a {
    font-size: 18px;
    line-height: 18px;
    font-family: 'Arial Black', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    color: white;
    padding: 2px 10px; }
    @media (min-width: 781px) {
      .block--system-main-menu .leaf a {
        font-size: 16px;
        line-height: 18px; } }
    @media (min-width: 1280px) {
      .block--system-main-menu .leaf a {
        font-size: 18px;
        line-height: 22px; } }
    .block--system-main-menu .leaf a:hover {
      text-decoration: none; }

/*------------------------------------*  #CARD
\*------------------------------------*/
/* Top Menus */
.block--menu-menu-shows,
.block--menu-menu-life {
  padding: 12px 0 20px 0;
  display: -ms-flexbox;
  display: flex; }
  .block--menu-menu-shows .leaf,
  .block--menu-menu-life .leaf {
    padding-right: 6px; }
  .block--menu-menu-shows ul li:last-child,
  .block--menu-menu-life ul li:last-child {
    border-bottom: none; }
  .block--menu-menu-shows ul,
  .block--menu-menu-life ul {
    text-align: center;
    background: transparent;
    width: 100%;
    padding: 0 10px; }
  .block--menu-menu-shows li,
  .block--menu-menu-life li {
    display: inline-block;
    float: left; }
    .block--menu-menu-shows li a,
    .block--menu-menu-life li a {
      padding-right: 0;
      text-transform: uppercase;
      font-family: 'Arial Black', sans-serif;
      letter-spacing: -1px;
      color: black;
      font-size: 21px;
      line-height: 26px;
      color: #BFBFBF; }
      @media (min-width: 781px) {
        .block--menu-menu-shows li a,
        .block--menu-menu-life li a {
          padding-top: 54px; } }
      .block--menu-menu-shows li a.active,
      .block--menu-menu-life li a.active {
        color: white; }
      .block--menu-menu-shows li a:hover,
      .block--menu-menu-life li a:hover {
        color: #F90A34;
        background: transparent; }
  @media (min-width: 781px) {
    .block--menu-menu-shows,
    .block--menu-menu-life {
      max-width: 1440px;
      padding: 40px 12px 32px;
      width: 100%; } }

/* Top Recommended */
.l-shows--recommended .secondary-container,
.l-articles--recommended .secondary-container {
  display: none; }

.c-recommended,
.c-card,
.c-tetriary--top {
  display: block;
  position: relative; }
  .c-recommended .light img,
  .c-card .light img,
  .c-tetriary--top .light img {
    transition: all .2s ease-in;
    width: 100%; }

/* Card boxes, font styles */
.c-card .title,
.c-tetriary--item .title {
  font-family: 'Arial Black', sans-serif;
  text-transform: uppercase;
  letter-spacing: -1.5px;
  color: white;
  font-size: 30px;
  line-height: 26px; }
  @media (min-width: 781px) {
    .c-card .title,
    .c-tetriary--item .title {
      font-size: 22px;
      line-height: 17px; } }
  @media (min-width: 1280px) {
    .c-card .title,
    .c-tetriary--item .title {
      font-size: 30px;
      line-height: 28px; } }
  @media (min-width: 1440px) {
    .c-card .title,
    .c-tetriary--item .title {
      font-size: 36px;
      line-height: 29px; } }
  .c-file .c-card .title, .c-file
  .c-tetriary--item .title {
    text-transform: uppercase;
    letter-spacing: -2px;
    color: white;
    font-family: 'Arial Black', sans-serif;
    font-size: 23px;
    line-height: 23px;
    color: white; }
    @media (min-width: 1280px) {
      .c-file .c-card .title, .c-file
      .c-tetriary--item .title {
        font-size: 23px;
        line-height: 23px; } }
    @media (min-width: 1440px) {
      .c-file .c-card .title, .c-file
      .c-tetriary--item .title {
        font-size: 24px;
        line-height: 20px; } }
    .c-file .c-card .title:before, .c-file
    .c-tetriary--item .title:before {
      content: "";
      width: 20px;
      height: 20px;
      position: absolute;
      top: -6px;
      left: -3px;
      background: url(../images/plus.png) no-repeat;
      background-size: contain; }
  .c-podcast .c-card .title, .c-podcast
  .c-tetriary--item .title {
    text-transform: uppercase;
    letter-spacing: -2px;
    color: white;
    font-family: 'Arial Black', sans-serif;
    font-size: 23px;
    line-height: 23px; }
    @media (min-width: 1280px) {
      .c-podcast .c-card .title, .c-podcast
      .c-tetriary--item .title {
        font-size: 23px;
        line-height: 23px; } }
    @media (min-width: 1440px) {
      .c-podcast .c-card .title, .c-podcast
      .c-tetriary--item .title {
        font-size: 24px;
        line-height: 20px; } }

.c-card .file-tag,
.c-tetriary--item .file-tag {
  font-family: 'Arial Black', sans-serif;
  text-transform: uppercase;
  letter-spacing: -1.5px;
  color: white;
  font-size: 30px;
  line-height: 26px; }
  @media (min-width: 781px) {
    .c-card .file-tag,
    .c-tetriary--item .file-tag {
      font-size: 22px;
      line-height: 17px; } }
  @media (min-width: 1280px) {
    .c-card .file-tag,
    .c-tetriary--item .file-tag {
      font-size: 30px;
      line-height: 28px; } }
  @media (min-width: 1440px) {
    .c-card .file-tag,
    .c-tetriary--item .file-tag {
      font-size: 36px;
      line-height: 29px; } }
  .c-card .file-tag:before,
  .c-tetriary--item .file-tag:before {
    content: '';
    position: absolute;
    right: -60%;
    height: 2px;
    bottom: 18px;
    width: 90%;
    background: #F90A34; }
    @media (min-width: 781px) {
      .c-card .file-tag:before,
      .c-tetriary--item .file-tag:before {
        right: 19%;
        width: 30%;
        bottom: 16px; } }
    @media (min-width: 1080px) {
      .c-card .file-tag:before,
      .c-tetriary--item .file-tag:before {
        right: 19%;
        width: 46%;
        bottom: 16px; } }
    @media (min-width: 1280px) {
      .c-card .file-tag:before,
      .c-tetriary--item .file-tag:before {
        right: -24%;
        width: 47%;
        bottom: 22px; } }
    @media (min-width: 1440px) {
      .c-card .file-tag:before,
      .c-tetriary--item .file-tag:before {
        right: -26%;
        width: 48%;
        bottom: 18px; } }

.c-card .podcast-tag,
.c-tetriary--item .podcast-tag {
  font-family: 'Arial Black', sans-serif;
  text-transform: uppercase;
  color: white;
  letter-spacing: -2px;
  font-weight: 400;
  font-size: 36px;
  line-height: 30px; }
  @media (min-width: 781px) {
    .c-card .podcast-tag,
    .c-tetriary--item .podcast-tag {
      font-size: 26px;
      line-height: 22px; } }
  @media (min-width: 1280px) {
    .c-card .podcast-tag,
    .c-tetriary--item .podcast-tag {
      font-size: 44px;
      line-height: 36px; } }

.c-card .article-tag,
.c-card .showing,
.c-tetriary--item .article-tag,
.c-tetriary--item .showing {
  font-family: 'Arial', sans-serif;
  text-transform: uppercase;
  color: white;
  font-weight: 600;
  font-size: 22px;
  line-height: 22px;
  font-weight: 100;
  letter-spacing: -1.5px; }
  @media (min-width: 781px) {
    .c-card .article-tag,
    .c-card .showing,
    .c-tetriary--item .article-tag,
    .c-tetriary--item .showing {
      font-size: 15px;
      line-height: 15px; } }
  @media (min-width: 1280px) {
    .c-card .article-tag,
    .c-card .showing,
    .c-tetriary--item .article-tag,
    .c-tetriary--item .showing {
      font-size: 22px;
      line-height: 22px; } }

.c-card .showing-time,
.c-tetriary--item .showing-time {
  font-weight: 700; }

.c-video .c-card .img:before, .c-video
.c-tetriary--item .img:before {
  background: url(../images/video-play.png) no-repeat;
  top: 25px;
  left: 25px;
  background-size: 60px; }
  @media (min-width: 560px) {
    .c-video .c-card .img:before, .c-video
    .c-tetriary--item .img:before {
      background-size: 40px; } }
  @media (min-width: 781px) {
    .c-video .c-card .img:before, .c-video
    .c-tetriary--item .img:before {
      background-size: 44px; } }
  @media (min-width: 1080px) {
    .c-video .c-card .img:before, .c-video
    .c-tetriary--item .img:before {
      background-size: 60px; } }
  .c-video .c-card .img:before:hover, .c-video
  .c-tetriary--item .img:before:hover {
    background: url(../images/video-play-hover.png) no-repeat; }

.c-recommended .upper-wrapper,
.c-card .upper-wrapper,
.c-tetriary--item .upper-wrapper {
  position: absolute;
  top: 28px;
  right: 3px;
  transform: rotate(22deg);
  font-family: Special;
  font-family: 'Special Elite';
  text-transform: none;
  color: #F90A34;
  font-size: 16px;
  line-height: 16px;
  opacity: 0.85;
  color: white;
  border: 1.5px solid #F90A34;
  background-color: #F90A34;
  box-shadow: 3px 4px 9px #555; }
  .c-recommended .upper-wrapper .upper-tag,
  .c-card .upper-wrapper .upper-tag,
  .c-tetriary--item .upper-wrapper .upper-tag {
    line-height: 1;
    padding: 5px;
    text-shadow: 1px 2px 3px #F90A34; }
  @media (min-width: 781px) {
    .c-recommended .upper-wrapper,
    .c-card .upper-wrapper,
    .c-tetriary--item .upper-wrapper {
      display: none;
      font-size: 12px; } }
  @media (min-width: 1080px) {
    .c-recommended .upper-wrapper,
    .c-card .upper-wrapper,
    .c-tetriary--item .upper-wrapper {
      display: block;
      font-size: 16px; } }

/* Recommended boxes, font styles */
.c-recommended .title {
  font-family: 'Arial Black', sans-serif;
  text-transform: uppercase;
  color: white;
  letter-spacing: -2.6px;
  font-size: 40px;
  line-height: 32px; }
  @media (min-width: 781px) {
    .c-recommended .title {
      font-size: 44px;
      line-height: 38px; } }
  @media (min-width: 1280px) {
    .c-recommended .title {
      font-size: 54px;
      line-height: 48px; } }
  @media (min-width: 1440px) {
    .c-recommended .title {
      font-size: 60px;
      line-height: 55px; } }
  .c-row--bottom .c-recommended .title {
    font-size: 29px;
    line-height: 24px; }
    @media (min-width: 781px) {
      .c-row--bottom .c-recommended .title {
        font-size: 48px;
        line-height: 38px; } }

.c-recommended .showing {
  font-family: 'Arial', sans-serif;
  text-transform: uppercase;
  color: white;
  letter-spacing: -1.2px;
  font-size: 32px;
  line-height: 32px; }
  @media (min-width: 781px) {
    .c-recommended .showing {
      font-size: 30px;
      line-height: 28px; } }
  @media (min-width: 1280px) {
    .c-recommended .showing {
      font-size: 40px;
      line-height: 34px; } }
  .c-row--bottom .c-recommended .showing {
    font-size: 22px;
    line-height: 22px; }

.c-recommended .showing-time {
  font-weight: 600; }

.last-character {
  color: #F90A34; }

.showing {
  display: block;
  position: relative; }

.showing-time,
.showing-date {
  display: inline-block; }

.show-wrapper {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 2;
  text-transform: uppercase;
  padding: 20px; }

/* Boxes, text overlay */
.info-wrapper {
  margin-left: 11px;
  margin-right: 11px;
  max-width: 600px;
  z-index: 2;
  padding: 0 10px 20px 10px; }
  @media (min-width: 781px) {
    .info-wrapper {
      margin-left: 25px;
      margin-right: 25px; }
      .c-recommended .info-wrapper {
        margin-left: 52px; } }
  .c-recommended .info-wrapper {
    margin-left: 22px; }
  .c-file--intro .info-wrapper {
    width: 100%; }
  .info-wrapper .title {
    padding: 10px 0;
    margin-bottom: -2px; }
    .view-showpage-content .info-wrapper .title {
      margin-top: 10px; }
  .info-wrapper .article-tag {
    padding: 7px 0; }
  .info-wrapper .show-tx {
    padding: 56px 6px; }
  .info-wrapper .showing, .info-wrapper .tag, .info-wrapper .description {
    padding: 5px 0; }
  .info-wrapper .tag {
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    color: white;
    font-weight: 600;
    font-size: 22px;
    line-height: 22px;
    color: #F90A34;
    font-weight: 100;
    letter-spacing: -1.5px; }
    @media (min-width: 781px) {
      .info-wrapper .tag {
        font-size: 15px;
        line-height: 15px; } }
    @media (min-width: 1280px) {
      .info-wrapper .tag {
        font-size: 22px;
        line-height: 22px; } }

.c-tetriary--item .info-wrapper,
.c-recommended .info-wrapper,
.c-card .info-wrapper {
  position: absolute;
  bottom: 0;
  left: 0; }
  @media (min-width: 781px) {
    .field--name-field-box-bottom-two .c-tetriary--item .info-wrapper, .field--name-field-box-bottom-two
    .c-recommended .info-wrapper, .field--name-field-box-bottom-two
    .c-card .info-wrapper {
      right: 0;
      left: initial; }
      .field--name-field-box-bottom-two .c-tetriary--item .info-wrapper .showing, .field--name-field-box-bottom-two
      .c-recommended .info-wrapper .showing, .field--name-field-box-bottom-two
      .c-card .info-wrapper .showing {
        float: right; } }

.c-podcast .c-card .info-wrapper .tag-wrapper:before,
.c-show .c-card .info-wrapper .tag-wrapper:before,
.c-article .c-card .info-wrapper .tag-wrapper:before {
  content: '';
  position: absolute;
  left: -50px;
  height: 2px;
  width: 75%;
  background: #F90A34;
  margin-top: 4px; }

.c-podcast .c-card .info-wrapper,
.c-video .c-card .info-wrapper {
  padding-bottom: 40px; }
  @media (min-width: 781px) {
    .c-podcast .c-card .info-wrapper,
    .c-video .c-card .info-wrapper {
      padding-bottom: 50px; } }

.c-video .c-card .info-wrapper {
  right: 0;
  left: initial;
  max-width: 60%; }
  .c-video .c-card .info-wrapper .title {
    font-family: 'Arial Black', sans-serif;
    text-transform: uppercase;
    letter-spacing: -1.5px;
    color: white;
    font-size: 30px;
    line-height: 26px;
    color: #BFBFBF; }
    @media (min-width: 781px) {
      .c-video .c-card .info-wrapper .title {
        font-size: 22px;
        line-height: 17px; } }
    @media (min-width: 1280px) {
      .c-video .c-card .info-wrapper .title {
        font-size: 30px;
        line-height: 28px; } }
    @media (min-width: 1440px) {
      .c-video .c-card .info-wrapper .title {
        font-size: 36px;
        line-height: 29px; } }
  .c-video .c-card .info-wrapper .title.grey {
    color: white;
    position: absolute;
    left: 10px;
    top: 0px;
    width: 100%; }
    .c-video .c-card .info-wrapper .title.grey span {
      max-height: 55px;
      display: block;
      overflow: hidden; }
      @media (min-width: 781px) {
        .c-video .c-card .info-wrapper .title.grey span {
          max-height: 18px; } }
      @media (min-width: 1280px) {
        .c-video .c-card .info-wrapper .title.grey span {
          max-height: 30px; } }

.c-show .c-card .info-wrapper .title,
.c-article .c-card .info-wrapper .title {
  font-family: 'Arial Black', sans-serif;
  text-transform: uppercase;
  letter-spacing: -1.5px;
  color: white;
  font-size: 30px;
  line-height: 26px;
  padding: 1px 0; }
  @media (min-width: 781px) {
    .c-show .c-card .info-wrapper .title,
    .c-article .c-card .info-wrapper .title {
      font-size: 22px;
      line-height: 17px; } }
  @media (min-width: 1280px) {
    .c-show .c-card .info-wrapper .title,
    .c-article .c-card .info-wrapper .title {
      font-size: 30px;
      line-height: 28px; } }
  @media (min-width: 1440px) {
    .c-show .c-card .info-wrapper .title,
    .c-article .c-card .info-wrapper .title {
      font-size: 36px;
      line-height: 29px; } }

.c-recommended .info-wrapper {
  padding-bottom: 20px;
  margin-left: 50px; }
  @media (min-width: 781px) {
    .c-recommended .info-wrapper {
      padding-bottom: 50px; } }
  @media (min-width: 1080px) {
    .c-recommended .info-wrapper {
      padding-bottom: 60px; } }
  .c-recommended .info-wrapper .showing:before {
    content: '';
    position: absolute;
    top: 0;
    left: -50px;
    height: 2px;
    width: 51%;
    background: #F90A34; }
  .c-tow--top .c-recommended .info-wrapper {
    padding-bottom: 90px;
    margin-left: 90px; }
    @media (min-width: 781px) {
      .c-tow--top .c-recommended .info-wrapper {
        padding-bottom: 70px;
        margin-left: 110px; } }
    .c-tow--top .c-recommended .info-wrapper .showing:before {
      left: -50px; }
  @media (min-width: 781px) {
    .field--name-field-box-bottom-two .c-recommended .info-wrapper {
      margin-left: 0;
      margin-right: 50px; }
      .field--name-field-box-bottom-two .c-recommended .info-wrapper .showing:before {
        right: -50px;
        left: initial; } }

/* Light background for boxes */
.c-card.light .img:hover,
.c-recommended.light .img:hover {
  filter: grayscale(100%) brightness(112%) contrast(110%); }

.c-card.light .info-wrapper .show-title,
.c-card.light .info-wrapper .title,
.c-card.light .info-wrapper .showing,
.c-recommended.light .info-wrapper .show-title,
.c-recommended.light .info-wrapper .title,
.c-recommended.light .info-wrapper .showing {
  color: black; }

/* IMG Boxes */
.c-recommended picture,
.c-card picture {
  opacity: 0.88; }

.c-recommended .img,
.c-card .img {
  transition: all .45s ease-in-out; }

.c-recommended .img:hover,
.c-card .img:hover {
  filter: grayscale(100%) brightness(105%) contrast(110%); }

.c-recommended .img::before,
.c-card .img::before {
  content: "";
  z-index: 1;
  height: 100%;
  position: absolute;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(rgba(14, 14, 14, 0.1) 30%, rgba(14, 14, 14, 0.7) 100%); }
  @media (min-width: 781px) {
    .c-recommended .img::before,
    .c-card .img::before {
      background-image: linear-gradient(rgba(14, 14, 14, 0) 40%, rgba(14, 14, 14, 0.6) 100%); } }

.c-recommended.light .img::before,
.c-card.light .img::before {
  background-image: linear-gradient(rgba(255, 255, 255, 0.1) 30%, rgba(255, 255, 255, 0.7) 100%); }
  @media (min-width: 781px) {
    .c-recommended.light .img::before,
    .c-card.light .img::before {
      background-image: linear-gradient(rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.66) 100%); } }

.c-file .c-card img {
  filter: greyscale(80%) brightness(80%) contrast(120%);
  -webkit-clip-path: polygon(22% 0, 100% 0, 100% 70%, 78% 100%, 0 100%, 0 30%);
  clip-path: polygon(22% 0, 100% 0, 100% 70%, 78% 100%, 0 100%, 0 30%); }

.desktop-fallback {
  display: none; }

.mobile-fallback {
  display: block; }

@media (min-width: 781px) {
  .desktop-fallback {
    display: block; }
  .mobile-fallback {
    display: none; } }

/*---------------*  #SEARCH
\*---------------*/
/* Search */
.spelling-suggestions {
  margin: 0 22px 22px; }

.spelling-suggestions dt {
  display: inline-block;
  font-family: Oswald;
  font-weight: 600; }
  .spelling-suggestions dt::after {
    content: ":";
    display: inline-block; }

.spelling-suggestions dd {
  display: inline-block;
  margin-left: 6px; }
  .spelling-suggestions dd a {
    color: #F90A34;
    font-style: italic; }

.search-form {
  margin: 11px 0;
  text-align: center;
  color: white; }

.block--search-form {
  display: block;
  margin: 0 22px 22px;
  text-align: center;
  padding: 11px; }

.block--facetapi {
  margin: 11px 22px;
  padding-top: 22px;
  border-top: 1px solid #ccc; }

.search-block-form input.form-text {
  min-width: 200px;
  width: 90%;
  padding-left: 6px;
  margin-left: 11px;
  border: 2px solid black;
  background: #E1E3ED;
  background-image: none;
  text-align: left;
  transition: all .2s ease-in; }
  .search-block-form input.form-text:hover {
    background: white; }
  .search-block-form input.form-text::-webkit-input-placeholder {
    color: #F90A34; }
  .search-block-form input.form-text:-moz-placeholder {
    /* Firefox 18- */
    color: red; }
  .search-block-form input.form-text::-moz-placeholder {
    /* Firefox 19+ */
    color: #F90A34; }
  .search-block-form input.form-text:-ms-input-placeholder {
    color: #F90A34; }

.search-form .form-submit {
  background-image: url(../images/searchicon.png);
  background-size: 28px;
  background-repeat: no-repeat;
  background-color: #191E24;
  width: 28px;
  height: 28px;
  color: transparent;
  border: 0;
  cursor: pointer;
  margin: 0px 9px;
  transition: all .2s ease-in; }

.block--facetapi h2 {
  font-family: Raleway;
  font-weight: 300;
  color: white;
  letter-spacing: -0.5px;
  font-size: 22px;
  display: inline-block;
  padding: 0 20px 20px 0;
  vertical-align: middle; }

.block--facetapi .block__content {
  display: inline-block;
  vertical-align: middle; }

.facetapi-limit-link,
.facetapi-facetapi-links li {
  background: #959595;
  position: relative;
  padding: 4px 11px;
  text-transform: uppercase;
  float: left;
  font-family: Raleway;
  margin: 0 20px 20px 0;
  font-size: 15px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  color: white;
  user-select: none;
  transition: all .2s ease-in; }
  .facetapi-limit-link a::before,
  .facetapi-facetapi-links li a::before {
    content: "+";
    font-size: 26px;
    display: inline-block;
    vertical-align: bottom;
    margin-right: 4px; }
  .facetapi-limit-link a.facetapi-active::before,
  .facetapi-facetapi-links li a.facetapi-active::before {
    content: ""; }
  .facetapi-limit-link a,
  .facetapi-facetapi-links li a {
    color: white; }
  .facetapi-limit-link a:hover,
  .facetapi-facetapi-links li a:hover {
    background-color: initial; }
  .facetapi-limit-link:hover,
  .facetapi-facetapi-links li:hover {
    background: #F90A34; }

.facetapi-limit-link {
  border: 1px solid #959595;
  background: white; }
  .facetapi-limit-link::after {
    content: "+";
    font-size: 26px;
    display: inline-block;
    vertical-align: bottom;
    margin-left: 4px; }
  .facetapi-limit-link.open::after {
    content: "-";
    font-size: 26px;
    display: inline-block;
    vertical-align: text-bottom;
    margin-left: 4px; }

.search-advanced .fieldset-wrapper {
  margin: 0 auto;
  display: block;
  position: relative;
  -moz-column-count: 2;
       column-count: 2;
  padding: 22px 40px;
  color: white; }
  .search-advanced .fieldset-wrapper .criterion {
    float: initial; }

/*------------------------------------*  #SHOWPAGES - HEADER
\*------------------------------------*/
/* Listing items */
.intro-text-overlay {
  padding: 20px 0;
  text-align: center; }
  @media (min-width: 1080px) {
    .intro-text-overlay {
      width: 66%;
      padding: 0;
      text-align: initial; } }

.c-show--intro.black .right-col img {
  display: none; }
  @media (min-width: 1080px) {
    .c-show--intro.black .right-col img {
      display: block; } }

.c-show--intro.black .showing {
  display: none; }
  @media (min-width: 1080px) {
    .c-show--intro.black .showing {
      display: block; } }

.l-region--content-top .c-show--intro.black {
  background-color: black; }

.c-show--intro .info-wrapper {
  position: relative;
  max-width: 400px; }
  @media (min-width: 781px) {
    .c-show--intro .info-wrapper {
      max-width: 400px; } }
  @media (min-width: 1080px) {
    .c-show--intro .info-wrapper {
      max-width: 400px; } }
  @media (min-width: 1440px) {
    .c-show--intro .info-wrapper {
      max-width: 452px; } }
  .c-show--intro .info-wrapper .show-title {
    font-family: 'Arial Black', sans-serif;
    text-transform: uppercase;
    color: white;
    letter-spacing: -2.6px;
    font-size: 40px;
    line-height: 32px;
    color: black;
    padding-bottom: 4px; }
    @media (min-width: 781px) {
      .c-show--intro .info-wrapper .show-title {
        font-size: 44px;
        line-height: 38px; } }
    @media (min-width: 1280px) {
      .c-show--intro .info-wrapper .show-title {
        font-size: 54px;
        line-height: 48px; } }
    @media (min-width: 1440px) {
      .c-show--intro .info-wrapper .show-title {
        font-size: 60px;
        line-height: 55px; } }
    @media (min-width: 781px) {
      .c-show--intro .info-wrapper .show-title {
        padding: 30px 0 0 0; } }
  .c-show--intro .info-wrapper .showing {
    display: block;
    float: right;
    padding: 0 6px;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    color: white;
    font-weight: 600;
    font-size: 22px;
    line-height: 22px;
    color: #F90A34;
    font-weight: 600; }
    @media (min-width: 781px) {
      .c-show--intro .info-wrapper .showing {
        font-size: 15px;
        line-height: 15px; } }
    @media (min-width: 1280px) {
      .c-show--intro .info-wrapper .showing {
        font-size: 22px;
        line-height: 22px; } }
    @media (min-width: 781px) {
      .c-show--intro .info-wrapper .showing {
        padding-bottom: 32px; } }

.c-show--intro .show-title {
  font-family: 'Arial Black', sans-serif;
  text-transform: uppercase;
  color: white;
  letter-spacing: -2.6px;
  font-size: 40px;
  line-height: 32px; }
  @media (min-width: 781px) {
    .c-show--intro .show-title {
      font-size: 44px;
      line-height: 38px; } }
  @media (min-width: 1280px) {
    .c-show--intro .show-title {
      font-size: 54px;
      line-height: 48px; } }
  @media (min-width: 1440px) {
    .c-show--intro .show-title {
      font-size: 60px;
      line-height: 55px; } }
  @media (min-width: 1440px) {
    .c-show--intro .show-title {
      font-size: 62px; } }
  @media (min-width: 1280px) {
    .c-show--intro .show-title {
      font-size: 55px; } }

.c-show--intro .showing {
  display: block;
  float: right;
  padding: 0 6px;
  font-family: 'Arial', sans-serif;
  text-transform: uppercase;
  color: white;
  font-weight: 600;
  font-size: 22px;
  line-height: 22px;
  color: #F90A34;
  font-weight: 600; }
  @media (min-width: 781px) {
    .c-show--intro .showing {
      font-size: 15px;
      line-height: 15px; } }
  @media (min-width: 1280px) {
    .c-show--intro .showing {
      font-size: 22px;
      line-height: 22px; } }

/* Theme page */
.theme .c-show--intro {
  border-bottom: 4px solid black; }
  @media (min-width: 1440px) {
    .theme .c-show--intro .show-title {
      font-family: 'Arial Black', sans-serif;
      letter-spacing: -1.3px;
      text-transform: uppercase;
      font-size: 40px;
      line-height: 34px; } }
  @media (min-width: 1440px) and (min-width: 781px) {
    .theme .c-show--intro .show-title {
      font-size: 60px;
      line-height: 52px; } }
  @media (min-width: 1440px) and (min-width: 1280px) {
    .theme .c-show--intro .show-title {
      font-size: 60px;
      line-height: 53px; } }
  @media (min-width: 1280px) {
    .theme .c-show--intro .show-title {
      font-size: 40px;
      line-height: 41px; } }

@media (min-width: 1080px) {
  .block--history-custom-showpage-top img {
    width: 100%; } }

@media (min-width: 1080px) {
  .intro-text-overlay {
    position: absolute;
    top: 12px;
    left: 20px;
    width: 66%;
    z-index: 100; } }

.pre-wrapper .img {
  overflow: hidden; }
  .pre-wrapper .img img {
    ms-filter: blur(3px) grayscale(98%) brightness(80%);
    filter: blur(3px) grayscale(98%) brightness(80%) contrast(120%);
    margin: -4px;
    min-height: 116px; }

@media (min-width: 1440px) {
  .pre-wrapper img {
    width: 100%; } }

.c-show--intro {
  clear: both;
  padding: 0; }

a.filter-mobile-drop {
  display: block;
  padding: 17px 22px;
  box-shadow: inset 0px -2px 0px 0px #F90A34;
  font-family: 'Arial', sans-serif;
  text-transform: uppercase;
  color: white;
  font-weight: 600;
  font-size: 22px;
  line-height: 22px;
  background-color: white;
  color: #898989; }
  @media (min-width: 781px) {
    a.filter-mobile-drop {
      font-size: 15px;
      line-height: 15px; } }
  @media (min-width: 1280px) {
    a.filter-mobile-drop {
      font-size: 22px;
      line-height: 22px; } }
  a.filter-mobile-drop.open {
    color: white;
    background: linear-gradient(to right, #191E24 0%, #191E24 40%, #191E24 40%, black 40%, black 100%); }

.c-submenu--arrow {
  transition: all .2s ease-in; }

.rotate-me {
  transform: rotate(-180deg);
  -ms-transform: rotate(-180deg); }

.c-show--submenu {
  display: none;
  background: white; }
  .c-show--submenu a {
    display: block;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    color: white;
    font-weight: 600;
    font-size: 22px;
    line-height: 22px;
    padding: 12px 22px; }
    @media (min-width: 781px) {
      .c-show--submenu a {
        font-size: 15px;
        line-height: 15px; } }
    @media (min-width: 1280px) {
      .c-show--submenu a {
        font-size: 22px;
        line-height: 22px; } }
    .c-show--submenu a.active {
      color: #F90A34; }
    .c-show--submenu a:hover {
      color: #F90A34; }
  .c-show--submenu li {
    float: none;
    display: block;
    position: relative; }
  .c-show--submenu li {
    background-color: #191E24;
    border-bottom: 1px solid #F90A34; }

.c-show--submenu.show-menu li a {
  background: transparent; }

.c-show--submenu.show-menu li:nth-child(odd), .c-show--submenu.show-menu li:nth-child(even) {
  background: transparent; }

.showpage-menu {
  margin-top: -1px; }

.c-show--submenu.life-menu {
  display: block;
  padding-top: 6px; }
  .c-show--submenu.life-menu a {
    display: block; }
  .c-show--submenu.life-menu li:nth-child(odd) {
    background-color: initial; }
  .c-show--submenu.life-menu li:nth-child(even) {
    background-color: initial; }
  .c-show--submenu.life-menu li {
    border-bottom: none; }

@media (min-width: 781px) {
  .showpage-menu {
    margin-top: 0; }
  a.filter-mobile-drop {
    display: none; }
  .c-show--intro .img img {
    float: right; }
  .c-show--submenu {
    background: #191E24;
    padding-bottom: 0;
    padding-left: 28px;
    display: block !important;
    border-bottom: 2px solid #F90A34; }
  .c-show--submenu li {
    transition: all .2s ease-in;
    float: left;
    top: 0;
    border-bottom: none;
    padding: 0; }
    .c-show--submenu li .active {
      color: #F90A34; }
      .c-show--submenu li .active::before {
        content: "";
        width: 15px;
        height: 15px;
        top: 15px;
        position: absolute;
        left: 0;
        background: url(../images/plus.png) no-repeat;
        background-size: contain; }
    .c-show--submenu li :hover {
      color: #F90A34; }
    .c-show--submenu li:nth-child(even) {
      background-color: initial; }
    .c-show--submenu li:nth-child(odd) {
      background-color: initial; }
    .c-show--submenu li:last-child {
      border-bottom: none; }
  ul.life-menu {
    background: initial; }
  .life-menu li a {
    background: initial; } }

.c-show--intro.main .info-wrapper {
  margin: 0 auto; }

@media (min-width: 1080px) {
  .c-show--intro.main .img img {
    width: 95%; } }

@media (min-width: 1440px) {
  .c-show--intro.main .img img {
    width: 90%; } }

@media (min-width: 1080px) {
  .theme .c-show--intro.main .img img {
    width: auto;
    max-height: 255px; } }

.c-file--intro .file-head {
  padding: 0 10px 20px 10px; }
  @media (min-width: 320px) {
    .c-file--intro .file-head {
      padding: 0; } }
  .c-file--intro .file-head .img.left-side {
    width: 100%; }
    @media (min-width: 320px) {
      .c-file--intro .file-head .img.left-side {
        width: auto; } }

@media (min-width: 560px) {
  .c-file--intro .left-col {
    margin-left: auto;
    margin-right: auto; } }

.intro-text-overlay a.label, .file-wrapper a.file-label {
  display: none; }
  @media (min-width: 781px) {
    .intro-text-overlay a.label, .file-wrapper a.file-label {
      display: inline-block; } }

/*------------------------------------*  #Sidebar
\*------------------------------------*/
/* Sidebar */
.l-sidebar--item {
  display: block;
  width: 100%;
  padding: 0; }
  .l-sidebar--item a {
    display: block; }
  .l-node--main-content .l-sidebar--item {
    border-top: 2px solid black; }

.sidebar--header {
  padding: 12px 0 18px 22px;
  background-color: #191E24;
  border-bottom: 1px solid black;
  font-family: 'Arial Black', sans-serif;
  text-transform: uppercase;
  letter-spacing: -1.5px;
  color: white;
  font-size: 30px;
  line-height: 26px; }
  .l-node--main-content .sidebar--header {
    border-bottom: none; }
  @media (min-width: 781px) {
    .sidebar--header {
      font-size: 22px;
      line-height: 17px; } }
  @media (min-width: 1280px) {
    .sidebar--header {
      font-size: 30px;
      line-height: 28px; } }
  @media (min-width: 1440px) {
    .sidebar--header {
      font-size: 36px;
      line-height: 29px; } }
  .l-region--sidebar .sidebar--header {
    line-height: 27px; }

.c-related--shows .views-row,
.c-sidebar--related .views-row {
  transition: all .3s ease-in-out;
  width: 100%;
  min-height: 82px;
  display: block;
  position: relative; }
  .c-related--shows .views-row .sidebar--img,
  .c-related--shows .views-row .sidebar--video-img,
  .c-sidebar--related .views-row .sidebar--img,
  .c-sidebar--related .views-row .sidebar--video-img {
    min-width: 100%; }
    .c-related--shows .views-row .sidebar--img img,
    .c-related--shows .views-row .sidebar--video-img img,
    .c-sidebar--related .views-row .sidebar--img img,
    .c-sidebar--related .views-row .sidebar--video-img img {
      width: 100%; }
  .c-related--shows .views-row .sidebar--description,
  .c-sidebar--related .views-row .sidebar--description {
    display: none; }
  .c-related--shows .views-row:hover,
  .c-sidebar--related .views-row:hover {
    filter: grayscale(100%) brightness(112%) contrast(110%); }

.c-sidebar--related .views-row:hover {
  background-color: black; }

.l-life--list .views-row {
  display: block;
  position: relative;
  min-height: 82px; }
  .l-life--list .views-row h3 {
    text-align: left; }
  .l-life--list .views-row .sidebar--img,
  .l-life--list .views-row .sidebar--video-img {
    min-width: 100%; }
    .l-life--list .views-row .sidebar--img img,
    .l-life--list .views-row .sidebar--video-img img {
      width: 100%; }

.sidebar--text {
  position: absolute;
  top: 10px;
  left: 0;
  padding: 6px 22px;
  z-index: 2; }
  .sidebar--text .sidebar--title {
    text-transform: uppercase;
    font-weight: 100;
    font-family: 'Arial', sans-serif;
    letter-spacing: 0.8px;
    color: white;
    font-size: 18px;
    line-height: 18px;
    padding-bottom: 8px; }
    @media (min-width: 781px) {
      .sidebar--text .sidebar--title {
        font-size: 14px;
        line-height: 14px; } }
    @media (min-width: 1280px) {
      .sidebar--text .sidebar--title {
        font-size: 16px;
        line-height: 16px; } }
    @media (min-width: 1440px) {
      .sidebar--text .sidebar--title {
        font-size: 18px;
        line-height: 18px; } }
  .sidebar--text .sidebar--description {
    font-family: 'Arial', sans-serif;
    text-transform: none;
    color: #898989;
    font-size: 14px;
    line-height: 18px;
    color: white;
    letter-spacing: 1px;
    font-weight: 100;
    width: 66%; }
    @media (min-width: 781px) {
      .sidebar--text .sidebar--description {
        font-size: 12px;
        line-height: 16px; } }
    @media (min-width: 1280px) {
      .sidebar--text .sidebar--description {
        font-size: 14px;
        line-height: 18px; } }

.sidebar-tv-guide {
  position: relative; }
  .sidebar-tv-guide .tv-guide {
    padding: 27px 0 20px 22px;
    text-transform: uppercase;
    letter-spacing: -2px;
    color: white;
    font-family: 'Arial Black', sans-serif;
    font-size: 23px;
    line-height: 23px;
    text-align: left; }
    @media (min-width: 1280px) {
      .sidebar-tv-guide .tv-guide {
        font-size: 23px;
        line-height: 23px; } }
    @media (min-width: 1440px) {
      .sidebar-tv-guide .tv-guide {
        font-size: 24px;
        line-height: 20px; } }
    .sidebar-tv-guide .tv-guide .tv-line {
      display: block;
      padding-bottom: 18px; }
    .sidebar-tv-guide .tv-guide .schedule {
      display: block;
      padding-bottom: 22px; }
      .sidebar-tv-guide .tv-guide .schedule:after {
        content: '';
        background-color: #F90A34;
        width: 32%;
        height: 3px;
        top: 39px;
        position: absolute;
        right: 0; }
        @media (min-width: 781px) {
          .sidebar-tv-guide .tv-guide .schedule:after {
            top: 40px;
            width: 30%; } }
        @media (min-width: 1280px) {
          .sidebar-tv-guide .tv-guide .schedule:after {
            top: 38px;
            width: 45%; } }
      .sidebar-tv-guide .tv-guide .schedule a {
        color: white; }
        .sidebar-tv-guide .tv-guide .schedule a:hover {
          color: #F90A34; }
    .sidebar-tv-guide .tv-guide a {
      color: #898989; }
    .sidebar-tv-guide .tv-guide a:hover {
      color: white; }
    .sidebar-tv-guide .tv-guide .now--time {
      margin-right: 5px; }

a.c-article:hover,
a.c-video:hover {
  background-color: initial; }

.c-sidebar--item {
  line-height: 0;
  max-width: 100vw;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center; }
  .c-sidebar--item picture {
    display: inline-block; }

.simplead-container {
  margin: 11px auto; }
  .simplead-container img {
    width: 100%;
    height: auto;
    display: block;
    margin: 11px auto; }

@media (min-width: 781px) {
  .simplead-container img {
    width: inherit; }
  .c-sidebar.brand-main {
    margin-top: 44px; }
  .c-sidebar--related .views-row {
    min-height: 84px;
    overflow: hidden;
    border-bottom: 1px black solid; }
    .c-sidebar--related .views-row .sidebar--description {
      display: block; } }

@media (min-width: 1080px) {
  .c-sidebar--related .views-row {
    min-height: 110px; }
  .simplead-container {
    margin: 22px auto; }
    .front .simplead-container {
      margin: 0 auto 22px; }
    .simplead-container img {
      width: inherit;
      margin: 22px auto; } }

@media (min-width: 1440px) {
  .c-sidebar--related .views-row {
    min-height: 118px; } }

/*------------------------------------*  #Social Media
\*------------------------------------*/
/* Iconography */
.c-header--social {
  text-align: right;
  position: relative;
  top: 12px; }

.c-header--social .icon,
.c-header--social span img,
.c-header--social li img {
  text-align: left;
  text-indent: -9999em;
  width: 24px;
  white-space: nowrap;
  color: #959595;
  margin: 16px 5px;
  margin-top: 8px;
  transition: all .3s ease; }
  @media (min-width: 1440px) {
    .c-header--social .icon,
    .c-header--social span img,
    .c-header--social li img {
      margin-left: 10px;
      margin-right: 10px; } }

.c-header .instagram {
  display: none; }

#mobile-menu li.c-header--social {
  margin: 0 auto;
  display: block; }
  #mobile-menu li.c-header--social .mobile {
    text-align: center; }
    #mobile-menu li.c-header--social .mobile a.icon {
      line-height: 15px;
      margin-left: 15px; }

/* ARTICLE SOCIAL MEDIA BLOCK */
.block--sharethis-sharethis-block {
  text-align: center;
  float: initial;
  padding: 11px 0 0; }

.article-header a, .article-header span {
  margin-left: 0; }

.block-sharethis-sharethis_block-instance {
  clear: both;
  text-align: center;
  float: initial; }

span.stLarge {
  border-radius: 50%; }

@media (min-width: 1080px) {
  .block--sharethis-sharethis-block {
    float: right;
    padding: 30px; }
  .block-sharethis-sharethis_block-instance {
    float: right;
    padding: 0 22px 22px 0; } }

.block--multiblock-3 {
  width: 100%;
  padding-bottom: 12px; }
  @media (min-width: 781px) {
    .block--multiblock-3 {
      margin-top: 20px; } }

/* ARTICLE SOCIAL MEDIA BLOCK END */
.block-social-media-links .horizontal li {
  padding: 0; }

.c-header--social li,
.c-header--social span {
  transition: all .2s ease; }

.c-header--social .c-icon--search {
  background-image: url(../images/searchicon.png);
  background-size: 46px;
  margin-left: 0px;
  display: block;
  padding: 36px;
  background-repeat: no-repeat; }
  .mobile-menu-accordion .c-header--social .c-icon--search {
    padding: 11px; }
  @media (min-width: 1080px) {
    .c-header--social .c-icon--search {
      padding: 38px 21px 0;
      background-size: 48px; } }

.sharethis-wrapper span {
  padding: 0 3px; }

.sharethis-wrapper span::before {
  background-size: contain;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  padding: 0 3px;
  display: inline-block;
  content: "";
  cursor: pointer; }
  @media (min-width: 781px) {
    .sharethis-wrapper span::before {
      width: 40px;
      height: 40px; } }

span.st_facebook_custom::before {
  background-image: url(../images/fb_icon.png); }

span.st_twitter_custom::before {
  background-image: url(../images/twitter_icon.png); }

span.st_email_custom::before {
  background-image: url(../images/mail_icon.png); }

span.st_whatsapp_custom::before {
  background-image: url(../images/whatsup_icon.png); }

span.st_whatsapp_custom {
  display: inline-block; }
  @media (min-width: 1080px) {
    span.st_whatsapp_custom {
      display: none; } }

.c-icon--search:hover {
  opacity: 0.7; }

@media (min-width: 1080px) {
  li.c-header--social {
    display: none; } }

.social-media-links.mobile .c-icon--search {
  background-image: url(../images/searchicon.png); }

/*------------------------------------*  #TAGS
\*------------------------------------*/
.c-tetriary--text .label,
.tdih-header .label,
a.label {
  padding: 3px 5px 6px 10px;
  background-color: black;
  font-size: 18px;
  line-height: 18px;
  font-family: 'Arial Black', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  color: white; }
  @media (min-width: 781px) {
    .c-tetriary--text .label,
    .tdih-header .label,
    a.label {
      font-size: 16px;
      line-height: 18px; } }
  @media (min-width: 1280px) {
    .c-tetriary--text .label,
    .tdih-header .label,
    a.label {
      font-size: 18px;
      line-height: 22px; } }
  @media (min-width: 781px) {
    .c-tetriary--text .label,
    .tdih-header .label,
    a.label {
      padding: 3px 12px 6px 10px; } }

a.label:hover {
  color: #F90A34; }

a.file-label {
  position: absolute;
  font-size: 18px;
  line-height: 18px;
  font-family: 'Arial Black', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  color: white;
  top: 2%;
  left: 2%;
  color: black; }
  @media (min-width: 781px) {
    a.file-label {
      font-size: 16px;
      line-height: 18px; } }
  @media (min-width: 1280px) {
    a.file-label {
      font-size: 18px;
      line-height: 22px; } }

/* TV GUIDE */
.module--tvguide {
  color: white;
  position: relative;
  padding-bottom: 40px; }
  .module--tvguide a {
    color: white; }
  .module--tvguide .jump-now {
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    color: white;
    font-weight: 600;
    font-size: 22px;
    line-height: 22px;
    padding-bottom: 10px;
    font-weight: 300; }
    @media (min-width: 781px) {
      .module--tvguide .jump-now {
        font-size: 15px;
        line-height: 15px; } }
    @media (min-width: 1280px) {
      .module--tvguide .jump-now {
        font-size: 22px;
        line-height: 22px; } }
    .module--tvguide .jump-now a {
      color: #F90A34;
      transition: all 0.2s ease 0s; }
      .module--tvguide .jump-now a:hover {
        color: #F90A34;
        background-color: transparent; }
  .module--tvguide .subhead {
    color: white; }
  .module--tvguide .epg--container {
    position: relative;
    height: 100%;
    padding: 0px;
    white-space: nowrap; }
    @media (min-width: 781px) {
      .module--tvguide .epg--container {
        padding: 0 15px; } }
    @media (min-width: 781px) {
      .module--tvguide .epg--container .epg-week-header {
        padding-right: 0; } }
    .module--tvguide .epg--container .epg-week-header .epg-week-wrap {
      padding: 0; }
      @media (min-width: 781px) {
        .module--tvguide .epg--container .epg-week-header .epg-week-wrap {
          padding: 0 15px; } }
      .module--tvguide .epg--container .epg-week-header .epg-week-wrap.timeline {
        background-color: white;
        display: none; }
        @media (min-width: 781px) {
          .module--tvguide .epg--container .epg-week-header .epg-week-wrap.timeline {
            background-color: white;
            padding-left: 16%;
            padding-right: 0;
            display: block; } }
      .module--tvguide .epg--container .epg-week-header .epg-week-wrap .hour-next, .module--tvguide .epg--container .epg-week-header .epg-week-wrap .hour-prev {
        display: none; }
        @media (min-width: 781px) {
          .module--tvguide .epg--container .epg-week-header .epg-week-wrap .hour-next, .module--tvguide .epg--container .epg-week-header .epg-week-wrap .hour-prev {
            display: inline-block; } }
      .module--tvguide .epg--container .epg-week-header .epg-week-wrap a {
        font-size: 1.125rem;
        line-height: 1.125rem;
        padding: 0;
        transition: all 0.2s ease 0s;
        display: inline-block;
        width: 50%; }
        .module--tvguide .epg--container .epg-week-header .epg-week-wrap a.hour-next i, .module--tvguide .epg--container .epg-week-header .epg-week-wrap a.week-next i {
          float: right;
          padding: 7px 4px 4px 4px; }
        .module--tvguide .epg--container .epg-week-header .epg-week-wrap a.hour-next h4, .module--tvguide .epg--container .epg-week-header .epg-week-wrap a.week-next h4 {
          float: right; }
        .module--tvguide .epg--container .epg-week-header .epg-week-wrap a i {
          color: #F90A34;
          font-size: 15px;
          float: left;
          padding: 7px 10px 4px 4px; }
        .module--tvguide .epg--container .epg-week-header .epg-week-wrap a h4 {
          font-size: 16px;
          font-family: 'Arial', sans-serif;
          font-weight: bold;
          text-transform: uppercase;
          color: white;
          line-height: 1;
          white-space: nowrap;
          padding-top: 5px; }
          @media (min-width: 781px) {
            .module--tvguide .epg--container .epg-week-header .epg-week-wrap a h4 {
              font-size: 16px;
              line-height: 16px; } }
          @media (min-width: 1280px) {
            .module--tvguide .epg--container .epg-week-header .epg-week-wrap a h4 {
              font-size: 18px;
              line-height: 18px; } }
        .module--tvguide .epg--container .epg-week-header .epg-week-wrap a:hover, .module--tvguide .epg--container .epg-week-header .epg-week-wrap a:focus {
          text-decoration: none; }
          .module--tvguide .epg--container .epg-week-header .epg-week-wrap a:hover h4, .module--tvguide .epg--container .epg-week-header .epg-week-wrap a:focus h4 {
            color: #959595; }
          .module--tvguide .epg--container .epg-week-header .epg-week-wrap a:hover i, .module--tvguide .epg--container .epg-week-header .epg-week-wrap a:focus i {
            color: #959595; }
      .module--tvguide .epg--container .epg-week-header .epg-week-wrap .epg-hour-header {
        margin-top: 0; }
        .module--tvguide .epg--container .epg-week-header .epg-week-wrap .epg-hour-header time {
          display: inline-block;
          padding: 12px 0;
          float: left; }
          .module--tvguide .epg--container .epg-week-header .epg-week-wrap .epg-hour-header time h4 {
            color: #191E24; }
            @media (min-width: 781px) {
              .module--tvguide .epg--container .epg-week-header .epg-week-wrap .epg-hour-header time h4 {
                font-size: 22px;
                line-height: 22px; } }
            @media (min-width: 1280px) {
              .module--tvguide .epg--container .epg-week-header .epg-week-wrap .epg-hour-header time h4 {
                font-size: 24px;
                line-height: 24px; } }
        .module--tvguide .epg--container .epg-week-header .epg-week-wrap .epg-hour-header + .epg-hour-header {
          border-left: 4px solid black; }
    .module--tvguide .epg--container .epg-data-row-normal .epg-day-col {
      width: 100%; }
      @media (min-width: 781px) {
        .module--tvguide .epg--container .epg-data-row-normal .epg-day-col {
          width: 16.6667%; } }
      .module--tvguide .epg--container .epg-data-row-normal .epg-day-col span {
        position: relative;
        min-height: 130px;
        padding: 1rem;
        background-color: white;
        display: block;
        margin: 2px 4px 2px 0; }
        .module--tvguide .epg--container .epg-data-row-normal .epg-day-col span time {
          display: inline-block; }
          .module--tvguide .epg--container .epg-data-row-normal .epg-day-col span time p {
            font-size: 18px;
            line-height: 18px;
            font-family: 'Arial Black', sans-serif;
            font-weight: 400;
            text-transform: uppercase;
            color: white;
            color: #191E24; }
            @media (min-width: 781px) {
              .module--tvguide .epg--container .epg-data-row-normal .epg-day-col span time p {
                font-size: 16px;
                line-height: 18px; } }
            @media (min-width: 1280px) {
              .module--tvguide .epg--container .epg-data-row-normal .epg-day-col span time p {
                font-size: 18px;
                line-height: 22px; } }
            .module--tvguide .epg--container .epg-data-row-normal .epg-day-col span time p.text-uppercase {
              padding-bottom: 8px;
              font-family: 'Arial', sans-serif;
              text-transform: uppercase;
              color: white;
              font-weight: 600;
              font-size: 22px;
              line-height: 22px;
              color: #191E24; }
              @media (min-width: 781px) {
                .module--tvguide .epg--container .epg-data-row-normal .epg-day-col span time p.text-uppercase {
                  font-size: 15px;
                  line-height: 15px; } }
              @media (min-width: 1280px) {
                .module--tvguide .epg--container .epg-data-row-normal .epg-day-col span time p.text-uppercase {
                  font-size: 22px;
                  line-height: 22px; } }
      @media (min-width: 781px) {
        .module--tvguide .epg--container .epg-data-row-normal .epg-day-col.now-day {
          padding-left: 27px;
          padding-right: 3px; } }
      .module--tvguide .epg--container .epg-data-row-normal .epg-day-col.now-day span {
        background-color: white;
        padding-top: 0.2rem;
        padding-left: 1rem; }
        .module--tvguide .epg--container .epg-data-row-normal .epg-day-col.now-day span .last-character {
          padding: 0;
          display: inline; }
      .module--tvguide .epg--container .epg-data-row-normal .epg-day-col.now-day time {
        padding: 20px 0; }
        .module--tvguide .epg--container .epg-data-row-normal .epg-day-col.now-day time p:last-child {
          color: #F90A34; }
        @media (min-width: 781px) {
          .module--tvguide .epg--container .epg-data-row-normal .epg-day-col.now-day time {
            padding: 10px;
            padding-left: 0px; } }
      .module--tvguide .epg--container .epg-data-row-normal .epg-day-col.now-day .today {
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        display: block;
        position: absolute;
        padding: 0; }
        .module--tvguide .epg--container .epg-data-row-normal .epg-day-col.now-day .today em {
          position: relative;
          color: white;
          text-transform: uppercase;
          font-size: 1rem;
          font-style: normal;
          font-weight: bold;
          padding-left: 1rem; }
          @media (min-width: 781px) {
            .module--tvguide .epg--container .epg-data-row-normal .epg-day-col.now-day .today em {
              position: absolute;
              left: -9999em; } }
    .module--tvguide .epg--container .epg-data-row-normal .epg-data-col {
      width: 100%;
      padding-left: 44px;
      padding-right: 49px; }
      @media (min-width: 781px) {
        .module--tvguide .epg--container .epg-data-row-normal .epg-data-col {
          float: left;
          width: 83.3333%;
          position: relative;
          min-height: 1px;
          padding-right: 15px;
          padding-left: 15px; } }
      .module--tvguide .epg--container .epg-data-row-normal .epg-data-col .epg-data-cell {
        width: 100%; }
        @media (min-width: 781px) {
          .module--tvguide .epg--container .epg-data-row-normal .epg-data-col .epg-data-cell {
            float: left;
            width: 33.3333%;
            position: relative;
            min-height: 1px;
            padding-right: 15px;
            padding-left: 15px; }
            .module--tvguide .epg--container .epg-data-row-normal .epg-data-col .epg-data-cell.col-md-2 {
              float: left;
              width: 16.6667%;
              position: relative;
              min-height: 1px;
              padding-right: 15px;
              padding-left: 15px; } }
        .module--tvguide .epg--container .epg-data-row-normal .epg-data-col .epg-data-cell.active span {
          position: relative;
          background-color: white; }
          .module--tvguide .epg--container .epg-data-row-normal .epg-data-col .epg-data-cell.active span h4 {
            color: #F90A34; }
          .module--tvguide .epg--container .epg-data-row-normal .epg-data-col .epg-data-cell.active span p, .module--tvguide .epg--container .epg-data-row-normal .epg-data-col .epg-data-cell.active span time {
            color: black; }
          @media (min-width: 781px) {
            .module--tvguide .epg--container .epg-data-row-normal .epg-data-col .epg-data-cell.active span {
              opacity: 1; } }
          .module--tvguide .epg--container .epg-data-row-normal .epg-data-col .epg-data-cell.active span:after {
            transition: opacity 0.2s ease 0s;
            content: "";
            position: absolute;
            width: 0;
            height: 0;
            left: 50%;
            bottom: -9px;
            transform: translateX(-50%);
            border-left: 9px solid transparent;
            border-right: 9px solid transparent;
            border-top: 9px solid black; }
      .module--tvguide .epg--container .epg-data-row-normal .epg-data-col span {
        min-height: 130px;
        padding: 1rem;
        margin: 2px 0 2px 0px;
        display: block;
        background: #191E24;
        cursor: pointer;
        transition: all 0.2s ease 0s; }
        @media (min-width: 781px) {
          .module--tvguide .epg--container .epg-data-row-normal .epg-data-col span {
            margin: 2px 0 2px 4px; } }
        .module--tvguide .epg--container .epg-data-row-normal .epg-data-col span:hover {
          background: white; }
          .module--tvguide .epg--container .epg-data-row-normal .epg-data-col span:hover h4 {
            color: #F90A34; }
          .module--tvguide .epg--container .epg-data-row-normal .epg-data-col span:hover p, .module--tvguide .epg--container .epg-data-row-normal .epg-data-col span:hover time {
            color: black; }
      .module--tvguide .epg--container .epg-data-row-normal .epg-data-col h4 {
        font-size: 16px;
        font-family: 'Arial', sans-serif;
        font-weight: bold;
        text-transform: uppercase;
        color: white;
        line-height: 1;
        letter-spacing: -1px;
        margin-bottom: 20px; }
        @media (min-width: 781px) {
          .module--tvguide .epg--container .epg-data-row-normal .epg-data-col h4 {
            font-size: 16px;
            line-height: 16px; } }
        @media (min-width: 1280px) {
          .module--tvguide .epg--container .epg-data-row-normal .epg-data-col h4 {
            font-size: 18px;
            line-height: 18px; } }
      .module--tvguide .epg--container .epg-data-row-normal .epg-data-col p, .module--tvguide .epg--container .epg-data-row-normal .epg-data-col time {
        font-size: 16px;
        line-height: 20px;
        font-family: 'Open sans', sans-serif;
        text-transform: none;
        color: black;
        margin-bottom: 10px;
        color: white; }
        @media (min-width: 781px) {
          .module--tvguide .epg--container .epg-data-row-normal .epg-data-col p, .module--tvguide .epg--container .epg-data-row-normal .epg-data-col time {
            font-size: 16px;
            line-height: 20px; } }
        @media (min-width: 1280px) {
          .module--tvguide .epg--container .epg-data-row-normal .epg-data-col p, .module--tvguide .epg--container .epg-data-row-normal .epg-data-col time {
            font-size: 16px;
            line-height: 22px; } }
      .module--tvguide .epg--container .epg-data-row-normal .epg-data-col time {
        float: right; }
      .module--tvguide .epg--container .epg-data-row-normal .epg-data-col:first-child span {
        margin: 2px 0 2px 0; }
      .module--tvguide .epg--container .epg-data-row-normal .epg-data-col:last-child span {
        margin: 2px 0 2px 0px; }
        @media (min-width: 781px) {
          .module--tvguide .epg--container .epg-data-row-normal .epg-data-col:last-child span {
            margin: 2px 0 2px 4px; } }
  .module--tvguide .epg-data-row.epg-weekly-row-expanded span .epg-show-image {
    margin: 0 auto;
    padding-right: 0;
    padding-left: 0;
    background-color: white;
    width: auto; }
    .module--tvguide .epg-data-row.epg-weekly-row-expanded span .epg-show-image:after {
      border-bottom: 6px solid black;
      width: 90.6%;
      position: absolute;
      left: 14px; }
      @media (min-width: 781px) {
        .module--tvguide .epg-data-row.epg-weekly-row-expanded span .epg-show-image:after {
          content: " ";
          width: 94.5%; } }
    @media (min-width: 781px) {
      .module--tvguide .epg-data-row.epg-weekly-row-expanded span .epg-show-image {
        margin: 0; }
        .module--tvguide .epg-data-row.epg-weekly-row-expanded span .epg-show-image:after {
          display: none; } }
    .module--tvguide .epg-data-row.epg-weekly-row-expanded span .epg-show-image time {
      font-size: 1rem;
      color: #ababad;
      display: block;
      padding: 1rem; }
    .module--tvguide .epg-data-row.epg-weekly-row-expanded span .epg-show-image img {
      padding-top: 5px;
      width: 100%; }
      @media (min-width: 781px) {
        .module--tvguide .epg-data-row.epg-weekly-row-expanded span .epg-show-image img {
          width: auto;
          padding-top: 0px;
          border-left: 6px solid #191E24; } }
  .module--tvguide .epg-data-row.epg-weekly-row-expanded span .epg-show-info {
    background: white;
    width: 100%; }
    @media (min-width: 781px) {
      .module--tvguide .epg-data-row.epg-weekly-row-expanded span .epg-show-info {
        width: 83.3333%; } }
    .module--tvguide .epg-data-row.epg-weekly-row-expanded span .epg-show-info .show-time {
      color: black; }
    .module--tvguide .epg-data-row.epg-weekly-row-expanded span .epg-show-info .show-summary {
      margin-bottom: 25px; }
      @media (min-width: 781px) {
        .module--tvguide .epg-data-row.epg-weekly-row-expanded span .epg-show-info .show-summary {
          margin-bottom: 0px; } }
    .module--tvguide .epg-data-row.epg-weekly-row-expanded span .epg-show-info span {
      margin: 0;
      padding: 1rem;
      display: block;
      cursor: pointer;
      transition: all 0.2s ease 0s;
      position: relative;
      font-size: 16px;
      line-height: 20px;
      font-family: 'Open sans', sans-serif;
      text-transform: none;
      color: black;
      white-space: normal;
      color: black; }
      @media (min-width: 781px) {
        .module--tvguide .epg-data-row.epg-weekly-row-expanded span .epg-show-info span {
          font-size: 16px;
          line-height: 20px; } }
      @media (min-width: 1280px) {
        .module--tvguide .epg-data-row.epg-weekly-row-expanded span .epg-show-info span {
          font-size: 16px;
          line-height: 22px; } }
      .module--tvguide .epg-data-row.epg-weekly-row-expanded span .epg-show-info span h4 {
        font-size: 16px;
        font-family: 'Arial', sans-serif;
        font-weight: bold;
        text-transform: uppercase;
        color: white;
        line-height: 1;
        color: #F90A34;
        margin-bottom: 10px;
        max-width: 230px; }
        @media (min-width: 781px) {
          .module--tvguide .epg-data-row.epg-weekly-row-expanded span .epg-show-info span h4 {
            font-size: 16px;
            line-height: 16px; } }
        @media (min-width: 1280px) {
          .module--tvguide .epg-data-row.epg-weekly-row-expanded span .epg-show-info span h4 {
            font-size: 18px;
            line-height: 18px; } }
        @media (min-width: 781px) {
          .module--tvguide .epg-data-row.epg-weekly-row-expanded span .epg-show-info span h4 {
            margin-bottom: 40px;
            max-width: none; } }
        .module--tvguide .epg-data-row.epg-weekly-row-expanded span .epg-show-info span h4:after {
          content: "";
          width: 36px;
          background: url(../images/close2.png);
          background-repeat: no-repeat;
          background-size: contain;
          height: 33px;
          display: inline-block;
          -webkit-filter: brightness(0%);
          right: 10px;
          top: 7px;
          position: absolute; }

@media (min-width: 781px) {
  .epg--container .epg-data-row-normal .epg-data-col .epg-data-cell.active span:after {
    display: none; } }

.epg--container .epg-data-row-normal .epg-data-col .epg-data-cell.active span:after {
  display: none; }

.row-0 {
  display: none; }
  @media (min-width: 781px) {
    .row-0 {
      display: block; } }

.pull-xs-right {
  float: right; }

.col-md-12,
.col-xs-12 {
  float: left;
  width: 100%;
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px; }

.col-xs-4 {
  float: left;
  width: 33.3333%;
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px; }

section.module--tvguide .epg--container .epg-data-row-normal .epg-day-col.now-day .today {
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: block;
  position: absolute;
  padding: 0; }

.row {
  margin-left: -15px;
  margin-right: -15px; }

body.page-tv-guide .l-region--content-main {
  max-width: 1400px;
  position: relative;
  display: block;
  margin: 0 auto; }

.expanded-show {
  margin-left: 14px;
  margin-right: 19px;
  background-color: black; }
  @media (min-width: 781px) {
    .expanded-show {
      max-height: 300px;
      padding-left: 15px;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      -ms-flex-pack: start;
          justify-content: flex-start;
      background-color: transparent;
      margin: 0;
      opacity: 1; } }

.epg-show-info .show-time {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 20px;
  font-family: 'Open sans', sans-serif;
  text-transform: none;
  color: black;
  color: white;
  /*&:after {
      content: "";
      width: 36px;
      background: url(../images/close2.png);
      background-repeat: no-repeat;
      background-size: contain;
      height: 33px;
      display: inline-block;
      margin-left: 20px;
    }*/ }
  @media (min-width: 781px) {
    .epg-show-info .show-time {
      font-size: 16px;
      line-height: 20px; } }
  @media (min-width: 1280px) {
    .epg-show-info .show-time {
      font-size: 16px;
      line-height: 22px; } }

/*------------------------------------*  #FOOTER
\*------------------------------------*/
.l-footer-main {
  background-color: black;
  color: white;
  padding: 0 0 22px 0;
  max-width: 100vw; }

/*Newsletter*/
#mc_embed_signup {
  margin: 0 auto;
  padding: 0 40px;
  background: white;
  clear: left;
  font-size: 16px;
  line-height: 20px;
  font-family: 'Open sans', sans-serif;
  text-transform: none;
  color: black;
  width: 100%; }
  @media (min-width: 781px) {
    #mc_embed_signup {
      font-size: 16px;
      line-height: 20px; } }
  @media (min-width: 1280px) {
    #mc_embed_signup {
      font-size: 16px;
      line-height: 22px; } }
  #mc_embed_signup .button {
    background-color: black;
    border-radius: 0;
    text-transform: uppercase;
    color: white;
    font-size: 15px; }
    @media (min-width: 1080px) {
      #mc_embed_signup .button {
        margin-left: -3px; } }
  #mc_embed_signup input.email {
    border-radius: 0;
    border: 1px black solid;
    font-size: 16px;
    line-height: 20px;
    font-family: 'Open sans', sans-serif;
    text-transform: none;
    color: black;
    color: black;
    margin-top: 1px;
    font-size: 14px; }
    @media (min-width: 781px) {
      #mc_embed_signup input.email {
        font-size: 16px;
        line-height: 20px; } }
    @media (min-width: 1280px) {
      #mc_embed_signup input.email {
        font-size: 16px;
        line-height: 22px; } }
    @media (min-width: 781px) {
      #mc_embed_signup input.email {
        margin-right: -2px; } }

.pre-row {
  border-top: 2px black solid;
  padding: 30px 0 35px; }
  .pre-row label {
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    color: white;
    font-weight: 600;
    font-size: 22px;
    line-height: 22px;
    color: black; }
    @media (min-width: 781px) {
      .pre-row label {
        font-size: 15px;
        line-height: 15px; } }
    @media (min-width: 1280px) {
      .pre-row label {
        font-size: 22px;
        line-height: 22px; } }

/*A&E Logo*/
.first-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5); }
  .first-row .pre-footer {
    max-width: 960px;
    padding: 36px 0 24px;
    margin: 0 auto; }
    .first-row .pre-footer p {
      text-align: center;
      color: white; }
      .first-row .pre-footer p:before {
        background: url(../images/AE_Networks_2017.png) no-repeat center center;
        background-size: contain;
        display: block;
        content: '';
        width: 86px;
        height: 45px;
        margin: 0px auto 5px; }

/*Main Section*/
.c-footer {
  -ms-flex-align: baseline;
      align-items: baseline;
  max-width: 960px;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin: 0 auto;
  text-align: -webkit-center;
  /*Channel logos*/
  /*Social Media & About Us*/
  /*Channel Numbers*/ }
  .c-footer .col-20 {
    width: 100%;
    float: initial; }
    .c-footer .col-20 .menu li {
      text-align: center; }
  @media (min-width: 781px) {
    .c-footer .col-20 {
      width: 30%;
      float: left;
      margin: auto; } }
  .c-footer .col-40 {
    width: 100%; }
  @media (min-width: 781px) {
    .c-footer .col-40 {
      width: 70%;
      margin: auto; } }
  .c-footer .channels {
    margin: 5px auto;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3); }
    @media (min-width: 781px) {
      .c-footer .channels {
        padding-bottom: 30px; } }
    .c-footer .channels p {
      background: url(../images/footersprite.png);
      content: '\00a0';
      display: inline-block;
      margin: 0 21px; }
      .c-footer .channels p a {
        width: 113px;
        height: 93px;
        display: block; }
        .c-footer .channels p a:hover {
          text-decoration: none; }
      .c-footer .channels p:first-child {
        background-position: -607px -30px; }
      .c-footer .channels p:nth-child(2) {
        background-position: -440px -30px; }
      .c-footer .channels p:nth-child(3) {
        background-position: -1005px -30px; }
      .c-footer .channels p:last-child {
        background-position: -1205px -30px;
        width: 138px; }
  .c-footer h2 {
    font-size: 22px;
    font-weight: 400;
    padding: 10px 0 15px;
    margin-bottom: 20px;
    line-height: 25px;
    text-align: center;
    color: white;
    border-bottom: 4px solid rgba(255, 255, 255, 0.3);
    font-weight: bold; }
  .c-footer .social {
    width: 100%;
    margin-bottom: 20px; }
    .c-footer .social ul {
      margin: 0 auto;
      width: 50%; }
    .c-footer .social ul li {
      display: inline-block; }
  .c-footer .our-channel li a {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    line-height: 1.6; }
  .c-footer .our-channel {
    padding-bottom: 22px; }
    @media (min-width: 781px) {
      .c-footer .our-channel {
        padding-bottom: 0; } }
  .c-footer .social-media-links li img {
    height: 34px;
    width: 34px;
    display: inline-block;
    float: left;
    margin: 0 2px;
    transition: all .3s ease;
    border-radius: 20%;
    margin-bottom: 6px; }
    .c-footer .social-media-links li img:first-child {
      margin: 0 12px; }
  .c-footer .channels-watch-list ul {
    list-style: none;
    display: inline-block;
    margin-left: 0px;
    min-height: 80px; }
    @media (min-width: 781px) {
      .c-footer .channels-watch-list ul {
        display: block; } }
    .c-footer .channels-watch-list ul li {
      padding: 12px 5px;
      border-right: 1px solid rgba(255, 255, 255, 0.3);
      position: relative;
      min-height: 80px;
      display: block;
      width: 24%;
      float: left;
      text-align: center; }
      .c-footer .channels-watch-list ul li:before {
        display: block;
        margin: 0 auto;
        content: '\00a0';
        background-image: url(../images/spritesheet.png);
        width: 53px;
        height: 34px; }
      .c-footer .channels-watch-list ul li:first-child:before {
        background-position: -673px -76px; }
      .c-footer .channels-watch-list ul li:nth-child(2):before {
        background-position: -740px -206px; }
      .c-footer .channels-watch-list ul li:nth-child(3):before {
        background-position: -653px -206px;
        width: 80px; }
      .c-footer .channels-watch-list ul li:last-child:before {
        background-position: -653px -175px;
        width: 74px;
        height: 34px; }
      .c-footer .channels-watch-list ul li:last-child {
        border-right: none; }

/*Copyright*/
.last-row {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 8px 0;
  margin-top: 32px;
  font-size: 12px;
  line-height: 2em;
  text-align: center; }
  .last-row .sub-footer {
    display: inline-block;
    color: rgba(255, 255, 255, 0.3); }
    .last-row .sub-footer a {
      color: rgba(255, 255, 255, 0.3); }

.article__header,
.feature-header,
.video-header,
.podfic-header,
.cast-header,
.tdih-header,
.crime-file-header {
  padding-top: 4px; }
  @media (min-width: 781px) {
    .article__header,
    .feature-header,
    .video-header,
    .podfic-header,
    .cast-header,
    .tdih-header,
    .crime-file-header {
      padding-top: 5px; } }

.tdih-year {
  padding-bottom: 40px; }

.theme .paragraphs-items {
  margin: 0 auto;
  padding-top: 2%; }
  .theme .paragraphs-items .l-area--cta {
    text-align: center;
    padding: 10px 0 20px; }
    .theme .paragraphs-items .l-area--cta p {
      padding-bottom: 10px; }
  .theme .paragraphs-items .grey-light.theme {
    border-top: 4px black solid;
    padding-bottom: 10px; }
  .theme .paragraphs-items .subtitle--emphasis {
    padding-bottom: 20px; }
  .theme .paragraphs-items .c-related--title,
  .theme .paragraphs-items .l-area--copy,
  .theme .paragraphs-items .c-subheader {
    max-width: 1220px;
    margin: 0 auto; }
  .theme .paragraphs-items .l-area--copy,
  .theme .paragraphs-items .c-subheader {
    padding: 10px 10px 0 10px; }
  .theme .paragraphs-items .flex-grid {
    max-width: 1220px;
    padding: 0; }

.article__headline {
  font-family: 'Arial Black', sans-serif;
  letter-spacing: -1.3px;
  text-transform: uppercase;
  font-size: 40px;
  line-height: 34px;
  padding-top: 3px;
  padding-bottom: 10px; }
  @media (min-width: 781px) {
    .article__headline {
      font-size: 60px;
      line-height: 52px; } }
  @media (min-width: 1280px) {
    .article__headline {
      font-size: 60px;
      line-height: 53px; } }
  .article__headline header {
    width: 65%; }
  @media (min-width: 781px) {
    .article__headline {
      padding-top: 22px;
      padding-bottom: 15px; }
      .tdih-header .article__headline {
        padding-top: 0px; } }

.l-center--intro {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-line-pack: center;
  align-content: center; }

.file-title,
.file-subtitle {
  font-family: 'Arial Black', sans-serif;
  text-transform: uppercase;
  color: white;
  letter-spacing: -2.6px;
  font-size: 40px;
  line-height: 32px;
  color: black; }
  @media (min-width: 781px) {
    .file-title,
    .file-subtitle {
      font-size: 44px;
      line-height: 38px; } }
  @media (min-width: 1280px) {
    .file-title,
    .file-subtitle {
      font-size: 54px;
      line-height: 48px; } }
  @media (min-width: 1440px) {
    .file-title,
    .file-subtitle {
      font-size: 60px;
      line-height: 55px; } }

.c-file--intro {
  position: relative; }
  .c-file--intro .c-row--bottom .img,
  .c-file--intro .right-side {
    display: none; }
  @media (min-width: 1080px) {
    .c-file--intro .c-row--top .img,
    .c-file--intro .c-row--bottom .img {
      display: block;
      max-width: 50%; }
      .c-file--intro .c-row--top .img img,
      .c-file--intro .c-row--bottom .img img {
        width: 100%;
        height: auto; }
    .c-file--intro .c-row--bottom {
      -ms-flex-pack: end;
          justify-content: flex-end; }
    .c-file--intro .file-head {
      max-width: 680px;
      margin: 0 auto; }
    .c-file--intro .left-side {
      position: relative; }
      .c-file--intro .left-side:before {
        content: '';
        position: absolute;
        width: 2px;
        right: 0;
        height: 100%;
        background: #F90A34; }
    .c-file--intro .c-row--top {
      position: relative; }
      .c-file--intro .c-row--top:after {
        content: '';
        position: absolute;
        height: 2px;
        bottom: 0;
        width: 100%;
        background: #F90A34; } }

.tdih-year {
  font-size: 18px;
  line-height: 18px;
  font-family: 'Arial Black', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  color: white;
  color: black;
  padding-top: 16px; }
  @media (min-width: 781px) {
    .tdih-year {
      font-size: 16px;
      line-height: 18px; } }
  @media (min-width: 1280px) {
    .tdih-year {
      font-size: 18px;
      line-height: 22px; } }
  .tdih-year.large {
    font-size: 22px; }

.tdih-read-more {
  margin-bottom: 33px; }
  .tdih-read-more .l-node--legacy-area p {
    margin-top: 6px; }

.view-this-day .article-featured-image {
  padding-top: 0;
  padding-bottom: 40px; }

.article-featured-image .c-caption {
  width: 100%; }
  @media (min-width: 781px) {
    .article-featured-image .c-caption {
      margin: 0 auto;
      width: 946px; } }

.intro-copy p:first-child:first-letter {
  color: #F90A34;
  float: left;
  text-transform: uppercase;
  font-family: 'Arial Black', sans-serif;
  text-transform: uppercase;
  color: white;
  letter-spacing: -2.6px;
  font-size: 40px;
  line-height: 32px;
  color: black;
  padding: 4px 12px 2px 0; }
  @media (min-width: 781px) {
    .intro-copy p:first-child:first-letter {
      font-size: 44px;
      line-height: 38px; } }
  @media (min-width: 1280px) {
    .intro-copy p:first-child:first-letter {
      font-size: 54px;
      line-height: 48px; } }
  @media (min-width: 1440px) {
    .intro-copy p:first-child:first-letter {
      font-size: 60px;
      line-height: 55px; } }
  @media (min-width: 781px) {
    .intro-copy p:first-child:first-letter {
      font-size: 73px;
      line-height: 60px;
      padding: 2px 16px 3px 0; } }

/* INTRO PAGE */
.intro-copy, .l-area--copy {
  padding: 22px;
  color: #333;
  font-family: 'Open sans', sans-serif;
  font-size: 22px;
  line-height: 31px; }
  @media (min-width: 781px) {
    .intro-copy, .l-area--copy {
      padding: 1.8% 4% 2%; } }
  @media (min-width: 781px) {
    .intro-copy, .l-area--copy {
      font-size: 22px;
      line-height: 36px; } }
  @media (min-width: 1280px) {
    .intro-copy, .l-area--copy {
      font-size: 22px;
      line-height: 36px; } }

.l-area--copy {
  font-size: 16px;
  line-height: 20px;
  font-family: 'Open sans', sans-serif;
  text-transform: none;
  color: black; }
  @media (min-width: 781px) {
    .l-area--copy {
      font-size: 16px;
      line-height: 20px; } }
  @media (min-width: 1280px) {
    .l-area--copy {
      font-size: 16px;
      line-height: 22px; } }

.l-area--quote {
  margin: 0 auto; }

.l-content--middle.two-thirds .l-area--copy {
  padding: 0;
  font-size: 16px;
  line-height: 20px;
  font-family: 'Open sans', sans-serif;
  text-transform: none;
  color: black; }
  @media (min-width: 781px) {
    .l-content--middle.two-thirds .l-area--copy {
      padding: 0; } }
  @media (min-width: 781px) {
    .l-content--middle.two-thirds .l-area--copy {
      font-size: 16px;
      line-height: 20px; } }
  @media (min-width: 1280px) {
    .l-content--middle.two-thirds .l-area--copy {
      font-size: 16px;
      line-height: 22px; } }

.l-content--middle.two-thirds .l-area--quote {
  margin: inherit; }

.center {
  text-align: center; }

.section-crime-files .two-thirds .c-copy {
  padding-top: 40px; }
  @media (min-width: 1080px) {
    .section-crime-files .two-thirds .c-copy {
      padding-top: 60px; } }

.l-paragraph--item .c-related--shows .sidebar--header {
  padding: 0;
  background-color: transparent;
  font-family: 'Arial', sans-serif;
  text-transform: uppercase;
  color: white;
  font-weight: 600;
  font-size: 22px;
  line-height: 22px;
  color: black;
  letter-spacing: -1px;
  font-weight: 500; }
  @media (min-width: 781px) {
    .l-paragraph--item .c-related--shows .sidebar--header {
      font-size: 15px;
      line-height: 15px; } }
  @media (min-width: 1280px) {
    .l-paragraph--item .c-related--shows .sidebar--header {
      font-size: 22px;
      line-height: 22px; } }

.l-paragraph--item .c-related--shows .views-row-1 .l-sidebar--item {
  border-top: 5px solid black; }

.l-paragraph--item .c-related--shows .sidebar--item {
  padding: 10px 0; }

.l-paragraph--item .c-related--shows .sidebar--img:before {
  background-image: none; }

.l-paragraph--item .c-related--shows .sidebar--text {
  bottom: 0;
  right: 0;
  left: initial;
  padding: 13px 12px;
  font-style: none; }
  .l-paragraph--item .c-related--shows .sidebar--text .sidebar--title {
    text-transform: uppercase;
    font-weight: 100;
    font-family: 'Arial', sans-serif;
    letter-spacing: 0.8px;
    color: white;
    font-size: 18px;
    line-height: 18px; }
    @media (min-width: 781px) {
      .l-paragraph--item .c-related--shows .sidebar--text .sidebar--title {
        font-size: 14px;
        line-height: 14px; } }
    @media (min-width: 1280px) {
      .l-paragraph--item .c-related--shows .sidebar--text .sidebar--title {
        font-size: 16px;
        line-height: 16px; } }
    @media (min-width: 1440px) {
      .l-paragraph--item .c-related--shows .sidebar--text .sidebar--title {
        font-size: 18px;
        line-height: 18px; } }

.c-related--features {
  background: rgba(255, 255, 255, 0.5);
  transition: all .3s ease-in-out;
  border-top: 1px #ddd solid;
  display: block;
  max-height: 180px;
  min-height: 88px;
  position: relative;
  overflow: hidden; }
  .c-related--features:hover {
    background: rgba(255, 255, 255, 0); }
  @media (min-width: 781px) {
    .c-related--features {
      min-height: initial; } }
  .c-related--features h4.sidebar--header {
    position: relative;
    font-family: 'Arial', sans-serif;
    text-transform: none;
    color: #898989;
    font-size: 14px;
    line-height: 18px;
    text-transform: uppercase;
    background-color: transparent;
    color: #F90A34;
    letter-spacing: initial;
    padding: 4px 0 4px;
    display: none; }
    @media (min-width: 781px) {
      .c-related--features h4.sidebar--header {
        font-size: 12px;
        line-height: 16px; } }
    @media (min-width: 1280px) {
      .c-related--features h4.sidebar--header {
        font-size: 14px;
        line-height: 18px; } }
    @media (min-width: 781px) {
      .c-related--features h4.sidebar--header {
        display: block;
        font-size: 1.2; } }
    @media (min-width: 1080px) {
      .c-related--features h4.sidebar--header {
        padding: 4px 0 10px; } }
  .c-related--features .c-related--item {
    font-style: initial; }
    .c-related--features .c-related--item .one-third {
      width: 27%;
      float: left; }
    .c-related--features .c-related--item .two-thirds {
      width: 72%;
      float: right;
      padding-left: 8px; }
    .c-related--features .c-related--item .title {
      position: relative;
      text-transform: uppercase;
      font-weight: 100;
      font-family: 'Arial', sans-serif;
      letter-spacing: 0.8px;
      color: white;
      font-size: 18px;
      line-height: 18px;
      padding: 6px 0px 4px 14px;
      font-size: 14px;
      color: black;
      font-style: normal; }
      @media (min-width: 781px) {
        .c-related--features .c-related--item .title {
          font-size: 14px;
          line-height: 14px; } }
      @media (min-width: 1280px) {
        .c-related--features .c-related--item .title {
          font-size: 16px;
          line-height: 16px; } }
      @media (min-width: 1440px) {
        .c-related--features .c-related--item .title {
          font-size: 18px;
          line-height: 18px; } }
      @media (min-width: 781px) {
        .c-related--features .c-related--item .title {
          font-size: 1.1; } }
      .c-related--features .c-related--item .title:before {
        content: "";
        width: 10px;
        height: 10px;
        position: absolute;
        top: 8px;
        left: -2px;
        background: url(../images/plus.png) no-repeat;
        background-size: contain; }
    .c-related--features .c-related--item .c-related--img {
      width: 100%; }
    .c-related--features .c-related--item .c-tetriary--text {
      background: none;
      padding: 0;
      height: initial;
      border-top: none; }
      .c-related--features .c-related--item .c-tetriary--text .c-tetriary--description {
        text-transform: uppercase;
        font-weight: 100;
        font-family: 'Arial', sans-serif;
        letter-spacing: 0.8px;
        color: white;
        font-size: 18px;
        line-height: 18px;
        font-size: 14px;
        text-transform: initial;
        color: #333;
        font-weight: initial; }
        @media (min-width: 781px) {
          .c-related--features .c-related--item .c-tetriary--text .c-tetriary--description {
            font-size: 14px;
            line-height: 14px; } }
        @media (min-width: 1280px) {
          .c-related--features .c-related--item .c-tetriary--text .c-tetriary--description {
            font-size: 16px;
            line-height: 16px; } }
        @media (min-width: 1440px) {
          .c-related--features .c-related--item .c-tetriary--text .c-tetriary--description {
            font-size: 18px;
            line-height: 18px; } }
        @media (min-width: 781px) {
          .c-related--features .c-related--item .c-tetriary--text .c-tetriary--description {
            font-size: 1.1; } }
    .c-related--features .c-related--item img {
      width: 100%; }

.c-node--description-area {
  padding: 0 22px; }

.node-type-video .c-node--description-area {
  padding: 0; }

.l-node--legacy-area p {
  font-size: 16px;
  line-height: 20px;
  font-family: 'Open sans', sans-serif;
  text-transform: none;
  color: black; }
  @media (min-width: 781px) {
    .l-node--legacy-area p {
      font-size: 16px;
      line-height: 20px; } }
  @media (min-width: 1280px) {
    .l-node--legacy-area p {
      font-size: 16px;
      line-height: 22px; } }

/* PRIVACY SECTION */
.section-general tbody tr:first-child td p {
  font-weight: bolder;
  text-align: left;
  margin: 0; }

.section-general tbody tr td {
  padding: 10px; }

.section-general .l-area--subheader {
  padding-left: 100px;
  padding-right: 100px; }

/* SHORT ARTICLE */
.block--views-load-more-block .block__title, .short-article .block__title {
  text-align: center;
  color: black;
  font-weight: bold; }

.block--views-load-more-block .title, .short-article .title {
  color: black;
  padding-top: 20px; }
  @media (min-width: 781px) {
    .block--views-load-more-block .title, .short-article .title {
      padding: 0 11px 11px; } }
  @media (min-width: 1080px) {
    .block--views-load-more-block .title, .short-article .title {
      padding: 0 44px 11px; } }
  .block--views-load-more-block .title a, .short-article .title a {
    color: black; }

.block--views-load-more-block .title.l-paragraph--item, .short-article .title.l-paragraph--item {
  font-family: 'Arial Black', sans-serif;
  letter-spacing: -1.3px;
  text-transform: uppercase;
  font-size: 40px;
  line-height: 34px;
  padding-top: 20px; }
  @media (min-width: 781px) {
    .block--views-load-more-block .title.l-paragraph--item, .short-article .title.l-paragraph--item {
      font-size: 60px;
      line-height: 52px; } }
  @media (min-width: 1280px) {
    .block--views-load-more-block .title.l-paragraph--item, .short-article .title.l-paragraph--item {
      font-size: 60px;
      line-height: 53px; } }

.block--views-load-more-block .l-area--subheader, .short-article .l-area--subheader {
  color: black;
  font-size: 28px;
  line-height: 28px; }

.block--views-load-more-block .author, .short-article .author {
  padding-top: 10px; }

.block--views-load-more-block .author, .block--views-load-more-block .date, .short-article .author, .short-article .date {
  text-align: right;
  padding-right: 25px;
  padding-bottom: 20px; }

.block--views-load-more-block .body, .short-article .body {
  padding: 0 15px 11px; }
  @media (min-width: 781px) {
    .block--views-load-more-block .body, .short-article .body {
      padding: 0 11px 11px; } }
  @media (min-width: 1080px) {
    .block--views-load-more-block .body, .short-article .body {
      padding: 0 44px 11px; } }

.blog .article-header a {
  color: black; }
  @media (min-width: 781px) {
    .blog .article-header a {
      margin: 20px; } }

/* MORE PODCAST STYLING */
.node-type-podcast .show-related--title {
  color: black; }
  .node-type-podcast .show-related--title:after {
    content: '';
    display: block;
    border: 1px solid red;
    width: 45%; }

.node-type-podcast .l-area--cta {
  float: right; }
  .node-type-podcast .l-area--cta a {
    display: block;
    max-height: 100px; }
    .node-type-podcast .l-area--cta a:after {
      content: '';
      background: url(../images/availableonitunes.png) no-repeat;
      background-size: contain;
      display: block;
      width: 200px;
      height: 200px; }

.node-type-podcast .l-video--list {
  width: 100%; }
  .node-type-podcast .l-video--list .views-row {
    width: 100%;
    margin-bottom: 30px; }
    .node-type-podcast .l-video--list .views-row .img img {
      width: 100%; }

.webform-client-form {
  clear: both; }
  .webform-client-form .form-actions {
    float: right;
    padding-right: 45px; }
  .webform-client-form .form-item {
    padding: 10px 20px;
    font-family: 'Arial'; }
    @media (min-width: 781px) {
      .webform-client-form .form-item {
        padding: 10px 45px; } }
  .webform-client-form .form-item label {
    font-weight: 300;
    letter-spacing: -0.5px;
    font-size: 22px;
    display: inline-block;
    vertical-align: middle;
    text-transform: uppercase; }
    .webform-client-form .form-item label span:before {
      content: ": ";
      margin-right: 10px;
      color: #F90A34; }
  .webform-client-form .webform-component--copy a {
    color: #F90A34; }
    .webform-client-form .webform-component--copy a:hover {
      color: #F90A34;
      background: transparent; }
  .webform-client-form .webform-component-date select {
    position: relative;
    width: 72px;
    margin: 0 auto;
    padding: 0px;
    color: #F90A34;
    /* Styles */
    border: 1px solid #ccc;
    cursor: pointer;
    outline: none;
    border-radius: 0; }
    @media (min-width: 781px) {
      .webform-client-form .webform-component-date select {
        padding: 10px 10px 10px 30px;
        width: 90px; } }
  .webform-client-form .webform-component-date label {
    padding: 10px 0; }
  .webform-client-form .webform-component-date .form-item {
    padding: 10px 5px; }
  .webform-client-form .webform-component-textfield label, .webform-client-form .webform-component-email label {
    padding-bottom: 10px; }
  .webform-client-form .webform-component-textfield input, .webform-client-form .webform-component-email input {
    border: none;
    width: 100%; }
    .webform-client-form .webform-component-textfield input:focus, .webform-client-form .webform-component-email input:focus {
      outline: none;
      border-bottom: 1px solid #F90A34; }
  .webform-client-form .webform-component-radios div label {
    font-size: 18px;
    font-family: "Open Sans", sans-serif;
    display: inline; }
    .webform-client-form .webform-component-radios div label:after {
      display: none; }
  .webform-client-form .webform-component-radios .form-radios {
    padding: 20px 0; }
    .webform-client-form .webform-component-radios .form-radios .form-item {
      padding: 5px 20px; }
  .webform-client-form .webform-component-checkboxes .form-item label {
    font-size: 18px;
    font-family: "Open Sans", sans-serif; }
  .webform-client-form .webform-component-markup p {
    margin: 0; }
  .webform-client-form input.webform-submit {
    margin: 8px 88px 33px;
    font-size: 19px;
    line-height: 19px;
    padding: 15px 30px 15px 30px;
    background-color: #F90A34;
    color: white;
    border: none;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: 'Arial Black';
    border: 1px solid #F90A34;
    transition: all .2s ease-in; }
    .webform-client-form input.webform-submit:hover {
      background-color: black; }
  .webform-client-form .form-required {
    display: none; }

.webform-confirmation {
  text-align: center;
  font-weight: 300;
  letter-spacing: -0.5px;
  font-size: 22px; }

/* ICONS */
.c-card .info-wrapper .showing .field--name-field-showing-date {
  padding-left: 30px; }

.c-card .info-wrapper .showing:before {
  background: url(../images/show-icon.png) no-repeat;
  background-size: contain;
  position: absolute;
  content: "";
  width: 18px;
  height: 18px;
  top: 6px;
  left: 4px; }
  @media (min-width: 1080px) {
    .c-card .info-wrapper .showing:before {
      width: 20px;
      height: 20px;
      top: 5px; } }

.whats-hot .c-card .info-wrapper .showing:before {
  width: 18px;
  height: 18px;
  top: 32px;
  left: 11px; }

.c-recommended.light .info-wrapper .showing:before {
  background: url(../images/show-icon.png) no-repeat;
  background-size: contain; }

/*******************************************************************************
 * crime-simple.layout.scss
 *
 * Based on the 'simple' layout
 ******************************************************************************/
.clearfix:before,
.clearfix:after {
  content: " ";
  /* 1 */ }

.clearfix:after {
  clear: both; }

.clearfix {
  *zoom: 1; }

html.no-overflow body {
  overflow: hidden;
  height: 100vh; }

body {
  max-width: 100%;
  overflow-x: hidden; }

.l-region--content-top {
  background-color: white; }

.l-page,
.l-header,
.l-footer-main {
  max-width: 100vw;
  overflow: hidden;
  padding: 0; }

.flex-grid {
  margin: 0 auto;
  max-width: 1600px;
  overflow: hidden; }

.header-inner,
.c-show--intro.main,
.c-file--intro.main,
.front .flex-grid,
.l-region--content-bottom,
.front .subtitle--emphasis,
.l-life--list.flex-grid {
  margin: 0 auto;
  max-width: 1800px; }

.l-content {
  margin: 0 auto; }

.l-content--bottom {
  display: block;
  clear: both; }

.front .whats-new .flex-grid {
  margin: 0 auto;
  max-width: 1800px; }

.half,
.one-third,
.two-thirds {
  width: 100%; }

@media (min-width: 781px) {
  .l-section,
  .subtitle--emphasis {
    margin: 0 auto;
    max-width: 1440px;
    overflow: hidden; }
  .l-region--content-bottom {
    width: 100%; }
  .one-third:after,
  .one-quarter:after,
  .two-thirds:after,
  .three-quarters:after {
    content: "";
    clear: both; }
  .left-col,
  .right-col {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto; }
    .left-col:after,
    .right-col:after {
      content: " ";
      display: block;
      clear: both; }
    .left-col img,
    .right-col img {
      height: auto;
      vertical-align: bottom; } }
    @media (min-width: 781px) and (min-width: 0) and (max-width: 320px) {
      .left-col img,
      .right-col img {
        width: 100%; } }

@media (min-width: 781px) {
  .half.right-col {
    width: 33%;
    float: right; }
  .half.left-col {
    width: 66%;
    float: left; } }

@media (min-width: 560px) {
  .c-file--intro .half.right-col {
    width: 33%;
    float: right; } }

@media (min-width: 1080px) {
  .l-section {
    padding: 0 2%; }
  .l-search {
    box-sizing: border-box;
    width: 25%;
    float: right;
    padding-left: 0.5em;
    padding-right: 0.5em;
    float: right; }
  .one-third,
  .one-quarter,
  .two-thirds,
  .three-quarters {
    margin: 0;
    padding: 0; }
    .one-third:after,
    .one-quarter:after,
    .two-thirds:after,
    .three-quarters:after {
      content: "";
      clear: both; }
  .half {
    box-sizing: border-box;
    width: 50%;
    float: left;
    padding-left: 0.5em;
    padding-right: 0.5em;
    padding: 0; }
  .one-third {
    box-sizing: border-box;
    width: 33.33333%;
    float: left;
    padding-left: 0.5em;
    padding-right: 0.5em;
    padding-right: 0; }
  .two-thirds {
    box-sizing: border-box;
    width: 66.66667%;
    float: left;
    padding-left: 0.5em;
    padding-right: 0.5em;
    padding: 0; }
  .one-quarter {
    box-sizing: border-box;
    width: 25%;
    float: left;
    padding-left: 0.5em;
    padding-right: 0.5em; }
  .three-quarters {
    box-sizing: border-box;
    width: 75%;
    float: left;
    padding-left: 0.5em;
    padding-right: 0.5em; }
  .left-col {
    float: left;
    height: 100%; }
  .right-col {
    float: right;
    height: 100%; } }

/*# sourceMappingURL=ci.styles.css.map */
