/*
 * Copyright 2020 Adobe. All rights reserved.
 * This file is licensed to you under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License. You may obtain a copy
 * of the License at http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under
 * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
 * OF ANY KIND, either express or implied. See the License for the specific language
 * governing permissions and limitations under the License.
 */
 * {
  box-sizing: border-box;
 }

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

 :root {
  /* colors */
  --link-color: #035fe6;
  --link-hover-color: #136ff6;
  --link-light-color: #1779ba;
  --color-white: #fff;
  --color-black: #000;
  --color-medium-gray: #d7d7d7;
  --color-transparent-black: rgb(0 0 0 / 40%);
  --color-transparent-white: rgb(255 255 255 / 50%);
  --background-color: #fff;
  --overlay-background-color: #eee;
  --highlight-background-color: #ccc;
  --text-color: #000;
  --text-color-tinted-black: #1c1c1c;
  --color-red: #d93c29;
  --color-dark-gray: #2d2d2d;
  --color-light-gray: #d9d9d9;
  --color-gray: #575757;
  --color-icon-gray: #5c5c5c;
  --color-darker-gray: #1c1c1c;
  --color-nav-burger: #808080;

  /* fonts */
  --body-font-family: 'Montserrat','Montserrat-Light', 'Arial', sans-serif;
  --heading-font-family: var(--body-font-family);
  --fixed-font-family: 'Montserrat','Montserrat-Light', 'Montserrat-Medium', 'Arial', sans-serif;
  --revolt-font-family: revolt, 'Arial';
  /* stylelint-disable-next-line value-keyword-case */
  --system-font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Montserrat','Montserrat-Light', 'Arial', sans-serif, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;

  /* body sizes */
  --body-font-size-m: 1.375rem;
  --body-font-size-s: 1.125rem;
  --body-font-size-xs: .8125rem;

  /* heading sizes */
  --heading-font-size-xxl: 3rem;
  --heading-font-size-xl: 1.5rem;
  --heading-font-size-l: 1.25rem;
  --heading-font-size-m: 24px;
  --heading-font-size-s: 20px;
  --heading-font-size-xs: .875rem;

  /* sizes */
  --page-width-desktop: 120rem;
  --nav-height: 60px;
  --header-max-width: 1440px;
  --page-max-content-width: 1440px;
}

@font-face {
  font-family: Montserrat, sans-serif;
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/Monsterrat-Normal.woff2') format('woff2');
  ascent-override: 92.49%;
  descent-override: 24.34%;
  line-gap-override: 0.00%;
  size-adjust: 100.30%;
}

@media (max-width: 1919px) {
  a.button, button {
    font-size: 1vw !important;
    padding: 1vw !important;
  }
}

@media (max-width: 1023px) {
  a.button, button {
    font-size: .875rem !important;
    padding: .76rem !important;
  }

  .icon-play::before {
    font-size: .875rem !important;
  }
}

@media (max-width: 768px) {
  a.button, button {
    font-size: .75rem !important;
    padding: 0.625rem !important;
  }
}

@media (min-width: 900px) {
  :root {
    --heading-font-size-xxl: 3rem;
    --heading-font-size-xl: 1.5rem;
    --heading-font-size-l: 1.25rem;
    --heading-font-size-m:  30px;
    --heading-font-size-s: 24px;
    --heading-font-size-xs: .875rem;
  }
}

@media (max-width: 1024px) {
  :root {
    --nav-height: 48px;
  }
}

body {
  font-size: 1.25rem;
  margin: 0;
  font-family:var(--system-font-family);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  color: var(--text-color);
  background-color: var(--background-color);
  display: none;
  overflow-x: hidden;
  overflow-y: scroll;
  scroll-behavior: smooth;
}

picture {
  display: flex;
  height: 100%;
}

body.appear {
  display: unset;
  font-family: var(--fixed-font-family);
}

#privacy-notice{
  padding-top: 3.5625rem;
  padding-bottom: 1rem;
}

.default-content-wrapper p strong{
  font-family: Montserrat-Regular, serif;
}


.default-content-wrapper:has(h1#terms-of-use) ol li{
  margin-bottom: 20px;
}

.default-content-wrapper:has(h1#privacy-notice) p{
  margin-top: 0;
}

.default-content-wrapper:has(h1#privacy-notice) ol li{
  margin-bottom: 0;
}

.default-content-wrapper:has(h1#privacy-notice) ul{
  padding-left: 1.6rem;
}

.table-wrapper table strong{
  font-family: Montserrat-Regular, serif;
  font-size: 1.2rem;
}

.default-content-wrapper ol li strong{
  font-family: Montserrat-Regular, serif;
}

.default-content-wrapper ul li strong{
  font-family: Montserrat-Regular, serif;
}

.default-content-wrapper:has(h1#terms-of-use) ul{
  list-style: none;
  margin-left: 20px;
}

.default-content-wrapper:has(h1#terms-of-use) ul li{
  margin-bottom: 1.2rem;
}

@media screen and (max-width: 768px) {
  main > div.section > div.default-content-wrapper {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .default-content-wrapper:has(h1#privacy-notice) ol{
    padding-left: 1.9rem;
  }
}

.article-content .default-content-wrapper  p:not([class]){
  letter-spacing: 1px;
  font-family: Montserrat-Regular, sans-serif;
  line-height: 1.9rem;
  font-size: 1.2rem;
}

header {
  transition-property: background-color, border-color;
  transition-duration: .3s;
  height: 6.275rem;
  border-bottom: 1px solid black;
  z-index: 5;
  background: #fff;
  max-width: 120rem;
  width: 100%;
  padding: 1.23rem 0;
  margin: 0 auto;
}

header.header-wrapper {
  /* padding: 16px 17px; */
  position: sticky;
}


nav .brand a img {
  height: var(--nav-height);
  width: auto;
}

header.sticky {
  background-color: #000;
  border-color: #ffffff40;
  position: sticky;
  top: -0.125rem;
}

#terms-of-use {
  padding-top: 3.5625rem;
  padding-bottom: 1.4rem;
  margin-bottom: 0;
}

.article-content h1{
  font-size: 3rem;
  font-family: Oswald, sans-serif;;
}

h1 {
  font-size: 1.5rem;
  line-height: 1.1;
  letter-spacing: -.01em;
  font-family: Montserrat-Bold, sans-serif;
}

h2 {
  font-size: var(--heading-font-size-xl);
  line-height: 1.3;
  margin-top: 0;
  margin-bottom: 0;
}

h3 {
  font-size: 1.5rem;
  line-height: 1.3rem;
  margin-top: 0;
  margin-bottom: .5rem;
}

h4 { font-size: var(--heading-font-size-m) }
h5 { font-size: var(--heading-font-size-s) }

h6 {
  font-size: var(--heading-font-size-xs);
  line-height: 1.125rem;
  margin-bottom: 0;
  text-transform: uppercase;
}

p, dl, ol, ul, pre, blockquote {
  margin-top: 1em;
  margin-bottom: 1em;
}

hr {
  margin-top: 1.5em;
  margin-bottom: 1.5em;
  border: 0;
  border-bottom: 1px solid var(--overlay-background-color);
}

code, pre, samp {
  font-family: var(--fixed-font-family);
  font-size: var(--body-font-size-s);
}

code, samp {
  padding: .125em;
}

pre {
  overflow: scroll;
}

main pre {
  background-color: var(--overlay-background-color);
  padding: 1em;
  border-radius: .25em;
  overflow-x: auto;
  white-space: pre;
}


a:any-link {
  color: var(--link-color);
  text-decoration: none;
  transition-property: color,opacity,background-color,border-color;
  transition-duration: .3s;
}

a:hover {
  text-decoration: underline;
  color: var(--link-hover-color);
}

.section.hero-container .active .button{
  margin: 0;
}

a.button, button:not(.splide-button) {
  text-decoration: none;
  font-style: normal;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  vertical-align: middle;
  margin: .8rem 0 1rem;
  padding: 1rem;
  border-radius: 0;
  font-size: 1rem;
  font-weight: 400;
  background-color: #fff;
  color: #000;
  text-transform: uppercase;
  line-height: 1.2rem;
  letter-spacing: .05em;
  font-family: sans-serif;
  outline: 0;
  user-select: none;
  border: 1px solid #000;
  text-align: center;
}

.black-bg a.button, .black-bg button{
  background: #000;
  color: #FFF;
  border-color: #FFF;
}

/* buttons */
a.button.tertiary {
  background-color: red;
  top: 47%;
  min-width: 15rem;
  font-size: 1rem;
}

a.button.secondary, button.secondary {
  border: none;
  font-family: sans-serif;
  line-height: 1.25rem;
  letter-spacing: .05em;
  background-color: #D93c29;
  border-radius: 1.625rem;
  color: #fff;
  text-transform: initial;
  font-size: 1.125rem;
  min-width: 9.0625rem;
}

a.button.secondary:hover, a.button.secondary:focus, button.secondary:hover, button.secondary:focus{
  background-color: #000;
  text-decoration: none;
}

.black-bg{
  background-color: #000;
}

a.button:hover, a.button:focus, button:hover, button:focus  {
  background: black;
  color: #fff;
  text-decoration: none;
  border: 1px solid black;
}

h1#revolt-empowers-creators {
  font-family: sans-serif;
  font-size: 4.875rem;
  line-height: 130%;
}

.page-divider h2 {
  font-family: Montserrat-Bold, sans-serif;
  font-size: 1.4rem;
  line-height: 1.9375rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight:bold;
}

button:disabled, button:disabled:hover {
  background-color: var(--overlay-background-color);
  cursor: unset;
}


.arrow-right{
  text-transform: uppercase;
} 

.arrow-left::before, .arrow-right::after {
  content: "";
  width: 0.625rem;
  height: 0.625rem;
  border-left: 0.125rem solid #000;
  border-bottom: 0.125rem solid #000;
  display: inline-block;
  transition: 0.3s;
}

.arrow-left::before {
  transform: rotate(45deg);
  margin-right: 0.25rem;
}

.arrow-right::after {
  transform: rotate(-135deg);
  margin-left: 0.25rem;
}

.black-bg .arrow-right::after,
.black-bg .arrow-left::after {
  border-color: #FFF;
}

a:any-link.button-image {
  font-size: 0;
  background-color: unset;
  border: solid 1px #000;
  padding-block: 10px;
}

main input {
  display: inline-block;
  height: 40px;
  width: 6rem;
  padding: 0 10px;
  font-size: 1.25rem;
  max-width: 50rem;
  border-radius: 0;
  border: 1px solid #575757;
  background-color: #fff;
  box-shadow: inset 0 1px 2px rgb(0 0 0 / 10%);
  font-family: inherit;
  font-weight: 400;
  box-sizing: border-box;
}

main input[type="text"] {
  width: calc(100% - 140px);
  color: #000;
  margin: 0 0 0 25px;
  border-right: none;
  box-sizing: border-box;
}

 main input[type="text"]::placeholder {
  color: #000;
  opacity: 1;
}

main input[type="text"]:focus {
  outline: 0;
  box-shadow: 0 0 5px #575757;
}

main input[type="submit"] {
    padding: 0 14px;
    font-weight: 700;
    cursor: pointer;
    color: #575757;
    border: 2px solid #575757;
    background-color: #fff;
    transition: background-color .3s, color .3s;
    box-sizing: border-box;
    font-size: 16px;
    /* stylelint-disable-next-line property-no-vendor-prefix */
    -webkit-appearance: none;
    /* stylelint-disable-next-line property-no-vendor-prefix */
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

main input[type="submit"]:hover {
  background-color: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

main blockquote {
  font-style: italic;
  margin: 3rem;
  text-indent: -1rem;
  hanging-punctuation: first;
}

main blockquote p::before {
  content: "“";
  line-height: 0;
}

main blockquote p::after {
  content: "”";
  line-height: 0;
}

.form-all{
  margin: 0;
}

main img {
  max-width: 100%;
  width: auto;
  height: auto;
}

div.eager-spinning-image{
  position: relative;
  aspect-ratio: 1 / 1;
}

div.eager-spinning-image.loaded {
  aspect-ratio: unset;
}

div.eager-spinning-image.loaded span{
  display: none;
}

div.eager-spinning-image img{
  visibility: hidden;
  z-index: 2;
}

div.eager-spinning-image.loaded img{
  visibility: visible;

}

.icon {
  display: inline-block;
  height: 24px;
  width: 24px;
}

.icon svg {
  height: 100%;
  width: 100%;
}

.icon-play {
  font-style: normal;
}

.icon-play::before {
  /* stylelint-disable-next-line font-family-no-missing-generic-family-keyword */
  font-family: revolt;
  content: '\e903';
  padding-right: 6px;
  font-size: 1vw;
}

/* stylelint-disable selector-class-pattern */
.section .lightgray-bg .leaderboard_ad{
  display: none;
}

.medium_rectangle_mob_ad{
  display: none !important;
}

main .section {
  position: relative;
  max-width: var(--page-width-desktop);
  margin: auto;
  background: #fff;
}

aside.sidebar-ad-div {
  width: 21.625rem;
}

/* stylelint-disable-next-line */
aside.sidebar-ad-div > div.rightrail_ad {
  position: unset;
}

aside.sidebar-ad-div div.form-container {
  margin-top: 70px;
}

.lightgray-bg {
  background-color: #f7f7f7;
}

.dark-bg {
  color: var(--color-white);
  background-color: var(--color-darker-gray);
}

.white-bg {
  background-color: var(--color-white);
}

.dark-bg a:any-link.button-image {
  border: solid 1px #fff;
}

.section-borderbottom,
.section-bordertop {
  border-bottom: 1px solid rgba(0 0 0 / 15%);
}

.latest-feed-container[data-toplabel="Chris Brown"] .content-wrapper .ad-wrapper{
  display: none;
}

.latest-feed-container[data-toplabel="Chris Brown"] .content-wrapper .content{
  padding: 0;
}

.latest-feed-container[data-toplabel="Chris Brown"] .content-wrapper .content h2{ 
  padding: 0 2.4rem;
}

.section-md-well {
  padding: 3rem 0;
}

.section-lg-well {
  padding: 4.5rem 0;
}

.section-sm-margin-top {
  margin-top: 1.5rem !important;
}

.section-md-margin-top {
  margin-top: 3rem !important;
}

.section-lg-margin-top {
  margin-top: 4.5rem !important;
}

.section-sm-margin-bottom {
  margin-bottom: 1.5rem !important;
}

.section-md-margin-bottom {
  margin-bottom: 3rem !important;
}

.section-lg-margin-bottom {
  margin-bottom: 4.5rem !important;
}

.section-full-width {
  width: 100%;
}

.section-sm-margin {
  margin: 1.5rem 0 !important;
}

.content-wrapper {
  display: flex;
  max-width: var(--page-max-content-width);
  margin: 0;
}

.content {
  flex: 1 1 auto;
  padding: 0 2.4rem;
}

aside {
  flex: 0 0 21.6rem;
}

.text-uppercase{
  text-transform: uppercase;
}

@media (min-width: 900px) {
  .section > div {
    max-width: var(--page-width-desktop);
    margin: auto; 
  }
}

aside .loading{
  width: 100%;
}

aside .loading.left{
  aspect-ratio: 4 / 2.55;
}

aside .right h3.loading{
  aspect-ratio: 4 / 0.22;
  width: 75%;
  margin: 0.4em 0 0.7em;
}

aside .right p.by-line.loading{
  aspect-ratio: 4 / 0.25;
  width: 50%;
}

@media print,screen and (min-width: 769px) {
  aside .loading{
    aspect-ratio: 4 / 3;
  }


  aside .loading.left{
    aspect-ratio: 4 / 2.55;
  }

  aside .right h3.loading{
    aspect-ratio: 4 / 0.45;
    width: 100%;
    margin: 0.4em 0 0.7em;
  }

  aside .right p.by-line.loading{
    aspect-ratio: 4 / 0.35;
    width: 60%;
  }

  body {
    font-size: var(--heading-font-size-l);
  }
}


/* section metadata */
main .section.highlight {
  background-color: var(--highlight-background-color);
}


/* LOADING SKELETON */
.loading-skeleton .loading {
  background: linear-gradient(
          to right,
          rgb(0 0 0 / 25%),
          rgb(126 126 126 / 100%) 100%
  ), #FFF;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loading-skeleton .loading .icon{
  z-index: 1;
  filter: invert(1);
}

.loading-animation {
  position: absolute;
  inset: 0;
  z-index: 10;
}

/* stylelint-disable  */
.results-container,
.block.loaded .loading-skeleton,
.section.loaded .loading-skeleton
{
  display: none;
}

.loading-skeleton,
.block.loaded .results-container,
.block.loaded .show-on-block-loaded,
.section.loaded .results-container {
  display: block;
}

.block .show-on-block-loaded,
.block.loaded .hide-on-block-loaded,
.block.loaded .loading-animation{
  display: none;
}

/* stylelint-enable  */

.loading-spinner {
  width: 38px;
  height: 38px;
  color: white;
  animation: mymove 2s linear infinite;
}

.block.loaded .loading-animation,
.block.loaded .loading-spinner{
  display: none;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  word-break: normal;
}

@keyframes mymove {
  100% {transform: rotate(360deg);}
}

@media (max-width: 768px) {
  .content {
    padding: 0 1rem;
  }
}

@media (max-width: 820px) {
  .content-wrapper {
    flex-direction: column;
  }

  aside {
    width: 100%;
  }
}

@media (max-width: 820px) {
  .content.content-820{ padding: 0 1rem; }

  .content-wrapper.content-wrapper-820 {
    flex-direction: column;
  }
}

.hidden{
  display: none;
}

.border-bottom {
  border-bottom: 1px solid var(--color-dark-gray);
}

.border-right {
  border-right: 1px solid var(--color-light-gray);
}

div.section[data-ads] aside {
  border-left: 1px solid var(--color-light-gray);
}

div.section[data-ads] aside div.ad.block {
  display: unset;
}

.show-on-fonts-loaded {
  display: none;
}

body.font-loaded-revolt .show-on-font-loaded-revolt {
  display: block;
}

.page-divider {
  padding-top: 3.5625rem;
  padding-bottom: 2rem;   
}

main > div.section > div.default-content-wrapper{
  max-width: 90rem;
  margin: 0 auto;
  padding-left: 2.75rem;
  padding-right: 2.75rem;
}

main > div.section.margin-top-32 {
  margin-top: 2rem;
}

main > div.section.margin-bottom-40{
  margin-bottom: 2.5rem;
}


label-list {
  font-family: Montserrat-Medium, sans-serif;
  font-size: 0.875rem;
  line-height: 1.125rem;
}

label-list ul {
  margin-bottom: 1rem;
  list-style: none;
  padding-left: 0;
}

label-list li {
  display: inline-block;
  background-color: black;
  padding: 0.215rem 0.6rem 0.4rem;
  margin: 0.25rem 0.25rem 0 0;
  text-transform: uppercase;
  font-size: .75rem;
  line-height: .9375rem;
  border-width: 0.125rem;
  border-style: solid;
}

.dark-bg label-list li {
  background-color: white;
}

label-list li:first-child {
  background-color: inherit;
  text-align: center;
  display: inline-block;
  padding: 0.415rem 0.6rem 0.5rem;
}

.dark-bg label-list li:first-child {
  color: var(--color-medium-gray);
}

label-list a:any-link {
  color: white;
  height: 1.2rem;
  text-align: center;
  display: inline-block;
  margin: 0.19rem 0.5rem 0;
}

.dark-bg label-list a:any-link {
  color: black;
}

@media(min-width: 769px) {
  label-list p {
    display: none;
  }

  label-list li {
    font-size: inherit;
    line-height: inherit;
  }
}

aside .htl-item {
  margin-bottom: 3rem;
}

/* START - Global Ad Controls */
/* stylelint-disable selector-class-pattern */
.disable-ads .htl-item,
.disable-ads .ad-wrapper,
.disable-ads .header-banner-wrapper,
.disable-ads .revolt-video-player-wrapper {
  display: none;
}

.disable-floating-video .revolt-player-container {
  display: none;
}

.disable-trending .trending-pages-wrapper {
  display: none;
}

.disable-ymal .latest-feed-wrapper {
  display: none;
}

.disable-970x250 .ad_leaderboard,
.disable-970x250 .htlad-leaderboard_banner_page_ad,
.disable-970x250 .header-banner-wrapper {
  display: none;
}

.disable-970x90 .htlad-leaderboard_ad_970x250,
.disable-970x250 .header-banner-wrapper {
  display: none;
}

.disable-728x90 .htlad-leaderboard_ad_970x250,
.disable-728x90 .htlad-leaderboard_banner_page_ad,
.disable-728x90 .htlad-leaderboard_ad_728x90,
.disable-728x90 .htlad-in_content_ad_728x90 {
  display: none;
}

.disable-300x600 .htlad-rightrail_ad {
  display: none;
}

.disable-300x250 .htlad-rightrail_ad,
.disable-300x250 .htlad-medium_rectangle_mob_ad,
.disable-300x250 .htlad-medium_rectangle_desktop {
  display: none;
}

.disable-320x50 .htlad-leaderboard_mob_ad,
.disable-320x50 .htlad-medium_rectangle_desktop,
.disable-320x50 .htlad-in_content_ad_728x90 {
  display: none;
}

/* END - Global Ad Controls */

picture.play-button {
  position: relative;
}

/* Hide in Desktop */
@media (min-width: 1025px) {
  .section-hide-desktop {
    display: none;
  }
}

/* Hide in Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
  .section-hide-tablet {
    display: none;
  }

  header {
    top: 0;
  }

  .brand img {
    padding: 0;
}
}

/* Hide in Mobile */
@media (max-width: 768px) {
  .section-hide-mobile {
    display: none;
  }

  label-list li:first-child {
    padding: 0.515rem 0.6rem 0.6rem;
  }

  label-list a:any-link {
    margin: 0.3rem 0.5rem 0;
  }

  .article-content .default-content-wrapper  p:not([class]){
    letter-spacing:0;
    font-family: Montserrat-Medium, sans-serif;
    line-height: 1.9rem;
    font-size: 1.1rem;
  }
}

picture.play-button::before {
  position: absolute;
  display: flex;
  bottom: -10%;
  right: -5%;
  content: "\e903";
  transform: translate(-50%, -50%);
  /* stylelint-disable-next-line font-family-no-missing-generic-family-keyword */
  font-family: revolt;
  color: var(--color-white);
  border: 0.125rem solid var(--color-white);
  width: 28px;
  height: 28px;
  font-size: 16px;
  justify-content: center;
  align-items: center;
}

picture.locked::after {
    background-image: url("/icons/lock.svg");
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 5px;
    left: 5px;
    content: "";
    width: 1.5rem;
    height: 1.5rem;
}

@media(min-width: 769px) {
  picture.play-button::before {
    bottom: 0;
    right: 5%;
  }
}

.cards-card-body picture.play-button::before {
  bottom: -5%;
  right: -2%;
}

@media(min-width: 769px) {
  .cards-card-body picture.play-button::before {
    bottom: -5%;
    right: 0;
  }
}

.shows-masthead h2,
.providers-list h2{
  color: var(--color-white);
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 1.5rem;
  font-family: Montserrat , var(--body-font-family);
  text-transform: uppercase;
  font-weight: 400;
  text-align: center;
  margin-top: 4rem;
}

@media (max-width: 820px) {
  .providers-list h2 {
    font-size: 1.5rem;
    line-height: 1.5rem;
  }
}

.shows-masthead p {
  line-height: 2;
  font-size: 1.5rem;
  letter-spacing: .05em;
  color: var(--color-white);
  text-align: center;
  margin: 0;
}

@media print, screen and (max-width: 768px) {
  .shows-masthead h2{
    font-size: 1.5rem;
    line-height: 1.5;
  }

  .shows-masthead p {
    line-height: 1.555;
    font-size: 1.12rem;
  }
}

.shows-masthead p picture{
  justify-content: center;
  margin: 2rem 0;
}

.providers-list p.button-container{
  text-align: center;
}

.error .button-container{
  text-align: center;
}

.error .error-message{
  text-align: center;
}

.providers-list p.button-container a{
  font-size: 1.5rem !important;
  line-height: 2;
  text-transform: uppercase;
  color: #fff;
  font-family: sans-serif;
  border: 0.1875rem solid #fff;
  padding: 1.3125rem 3rem !important;
  display: inline-block;
}

@media (max-width: 768px) {
  .providers-list p.button-container a {
    font-size: 1.25rem !important;
    line-height: 1;
    padding: 0.75rem 1.625rem !important;
  }
}

.providers-list p.button-container a:hover{
  background-color: #fff;
  color: #000;
}

/* START - Theme for mobile application pages */

.mobile-page .header-banner-wrapper {
  display: none;
}

.mobile-page header.header-wrapper {
  display: none;
}

.mobile-page main .default-content-wrapper {
  max-width: 100% !important;
}

.mobile-page footer.footer-wrapper {
  display: none;
}

/* END - Theme for mobile application pages */
