/*
 * 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: roboto, 'Roboto Fallback';
  --heading-font-family: var(--body-font-family);
  --fixed-font-family: 'Roboto Mono', menlo, consolas, 'Liberation Mono', monospace;
  --revolt-font-family: revolt, 'Arial';
  /* stylelint-disable-next-line value-keyword-case */
  --system-font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 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: 'Roboto Fallback';
  font-style: normal;
  font-weight: 400;
  src: local('Arial');
  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: var(--body-font-size-s);
  margin: 0;
  font-family: var(--body-font-family);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
  display: none;
  overflow-x: hidden;
}

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

body.appear {
  display: unset;
  overflow: auto;
}


header {
  position: relative;
  inset: 0;
  z-index: 9;
  font-family: 'Akzidenz-Grotesk Pro Regular', var(--body-font-family);
  background: #000;
  height: var(--nav-height);
  border-bottom: 1px solid rgb(0 0 0);
  max-width: var(--page-width-desktop);
  margin: auto;
}

header.sticky { position: sticky }

h1 {
  font-size: var(--heading-font-size-xxl);
  line-height: 1.1;
  letter-spacing: -.01em;
}

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

h3 {
  font-size: var(--heading-font-size-l);
  line-height: 1.3;
  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);
}

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

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

a.button, button:not(.klaviyo-close-form), 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: 0;
  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: 'Akzidenz-Grotesk Pro Regular', var(--body-font-family);
  outline: 0;
  user-select: none;
  border: none;
  text-align: center;
}

span.icon.icon-magnifying-glass {
  width: 45px;
}

a.button:hover, a.button:focus, button:hover, button:focus  {
  background: var(--color-red);
  color: #fff;
  text-decoration: none;
}

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

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

a.button.secondary, button.secondary {
  border: none;
  font-family: "Akzidenz-Grotesk Pro Bold", var(--body-font-family);
  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: #ea2313;
  text-decoration: none;
}

.klaviyo-close-form {
  background: #fff !important;
  border: none !important;
}


h1#revolt-empowers-creators {
  font-family: "Akzidenz-Grotesk Pro Bold", var(--body-font-family);
  font-size: 4.875rem;
  line-height: 130%;
}

.page-divider h2 {
  font-size: 1.5rem;
  line-height: 1.9375rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-family: 'Akzidenz-Grotesk Pro Regular', var(--body-font-family);
  font-style: normal;
  font-weight: 400;
}

.podcast-create.bottom-div {
  color: white;
  background-color: black;
  text-align: center;
  padding: 5rem;
}

.button-content-wrapper-tertiary.bottom-div-podcast-create{
  background-color: black;
  position: relative;
  text-align: center;
  color: white;
  padding: 9rem;
}

.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 {
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.5px;
  text-align: left;
  width: 100%;
  max-width: 50rem;
  display: block;
  padding: 0.75rem 0.6rem;
  border-radius: 0.25rem;
  box-sizing: border-box;
  border: 1px solid var(--text-color);
  color: var(--text-color);
  background-color: var(--background-color);
}

.error-message{
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  color: #fff;
  margin-top: 10px;
}

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;
}

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 {
  font-family: revolt;
  content: '\e903';
  padding-right: 6px;
  font-size: 1vw;
}

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

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

/* stylelint-disable-next-line selector-class-pattern */
aside.sidebar-ad-div > div.htlad-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%);
}


.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) !important;
  margin: 0 auto;
}

.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(--body-font-size-m);
  }
}


/* 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;
  position: relative;
}

.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: 80px;
  height: 80px;
  position: relative;
  left: calc(50% - 40px);
  top: calc(50% - 40px);
  animation: rotation 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 rotation {
  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-light-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: 1.75rem;
  padding-right: 1.75rem;
}

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

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


label-list {
  font-family: 'Akzidenz-Grotesk Pro Regular', var(--body-font-family);
  font-size: 0.875rem;
  line-height: 1.125rem;
}

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

label-list li {
  display: inline-block;
  background-color: black;
  padding: 0.125rem 0.375rem .254rem;
  margin: 0 0.25rem 0.25rem 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.31rem 0.26rem 0.37rem;
}

.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.2rem 0.5rem 0.044rem;
}

.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 .adgrid-video-player-wrapper,
.disable-ads .revolt-video-player-wrapper {
  display: none;
}

.disable-floating-video .adgrid-video-player-wrapper,
.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;
  }
}

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

  label-list a:any-link {
    margin: 0 0 .05rem;
    line-height: 1.3rem;
}
}

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: "Akzidenz-Grotesk Pro Med" , 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;
}

.providers-list p.button-container a{
  font-size: 1.5rem !important;
  line-height: 2;
  text-transform: uppercase;
  color: #fff;
  font-family: "Akzidenz-Grotesk Pro Regular" , var(--body-font-family);
  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;
}

.klaviyo-form-wrapper form.needsclick.klaviyo-form.klaviyo-form-version-cid_1.kl-private-reset-css-Xuajs1 {
  width: unset !important;
}

/* 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 */