/*
 * 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: 0.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);
  overflow-x: hidden;
  display: none;
}

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

body.appear {
  display: unset;
  overflow-x: hidden;
}

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

header.sticky {
  position: sticky;
}

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

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

h3 {
  font-size: var(--heading-font-size-l);
  line-height: 1.3;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h4 {
  font-size: var(--heading-font-size-m);
  line-height: 0.5;
  margin-bottom: 0.25rem;
 }

 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: 0.125em;
}

pre {
  overflow: scroll;
}

main pre {
  background-color: var(--overlay-background-color);
  padding: 1em;
  border-radius: 0.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: 0.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), button:not(.continue-reading-btn) {
  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: 0.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;
}

@media (hover: hover) and (pointer: fine) {
  a.button.primary:hover, button:hover {
    color: #000;
    text-decoration: none;
  }
}

a.button.primary:focus,
a.button.primary:active,
button:focus {
  -webkit-tap-highlight-color: transparent;
  -webkit-focus-ring-color: transparent;
  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: 0.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: 0.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 img{
  visibility: hidden;
  z-index: 2;
}

.icon-masthead .columns-wrapper img{
  height: 45px;
  width: 48px;
}

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.loaded img{
  visibility: visible;
}

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

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

.icon-play {
  font-style: normal;
  display:flex;
  align-items: center;
}

.icon-play::before {
  font-family: revolt;
  content: "\e903";
  padding-right: 6px;
  position: relative;
  top: 1px;
}

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

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

.section.creators-masthead {
  background-image: url('/icons/creatorDesktop.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.creators-masthead .button-container {
  padding: 0;
  margin: 0;
}

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

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

.creators-masthead .default-content-wrapper .button-container a {
  background-color: #000;
  border-radius: 42px;
  border: 1px solid #fff;
  display: flex;
  width: 322px;
  height: 76px;
  justify-content: center;
  align-items: center;
  color: #FFF;
  font-family: "Akzidenz-Grotesk Pro Ex Bold", var(--body-font-family);
  font-size: 24px !important;
  font-style: normal;
  font-weight: 700;
  line-height: 18px; /* 75% */
}

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

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

.section.creators-masthead .default-content-wrapper:nth-child(1){
  padding: 4% 10% 2%;
}

.form-masthead {
  padding: 4% 10% 0;
  background: #212121;
}

.section.creators-masthead .default-content-wrapper:nth-child(3){
  padding: 5% 4% 7%;
}

.title-masthead h2{
  margin-bottom: 0;
}

.shows-masthead h1 {
  color: var(--color-white);
  text-align: center;
  font-size: 2rem;
  line-height: 1.2;
  font-family: "Akzidenz-Grotesk Pro Ex Bold", var(--body-font-family);
  text-transform: uppercase;
}


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

.creators-masthead  h1, .title-masthead h2, .form-masthead h1 {
  color: #fff;
  text-align: center;
  font-family: "Akzidenz-Grotesk Pro Ex Bold", var(--body-font-family) !important;
  font-size: 64px !important;
  font-style: normal;
  font-weight: 700 !important;
  line-height: normal !important;
  text-transform: capitalize !important;
}

.form-masthead h1{
  padding: 0 !important;
  margin-bottom: 8px !important;
  letter-spacing: 0 !important;
}

.table-masthead .columns h2,.table-mobile .columns h2 {
  color: #FFF;
  font-family: "Akzidenz-Grotesk Pro",  var(--body-font-family);;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.section.creators-masthead .default-content-wrapper h1 {
  color: #fff;
  text-align: center;
  font-family: "Akzidenz-Grotesk Pro Ex Bold", var(--body-font-family);
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
}

.icon-masthead h4, .icon-masthead p{
  padding: 0;
  margin: 0;
  color: #fff;
}

.icon-masthead p{
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
}

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

.form-masthead p{
  margin: 0;
}

.form-masthead p, .section.creators-masthead .default-content-wrapper p {
  color: #fff;
  text-align: center;
  font-family: "Akzidenz-Grotesk Pro", var(--body-font-family);
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: flex;
  justify-content: center;
  padding: 0 17%;
}

.section.creators-masthead .columns-wrapper p {
  text-align: center;
  color: white;
}

.creators-masthead .columns >div >div  p:nth-of-type(2){
  padding: 0;
  text-align: center;
  position: relative;
}

.section.creators-masthead .columns-wrapper p:nth-of-type(1){
  margin-bottom: 0;
}

.section.creators-masthead .default-content-wrapper p:nth-of-type(2) {
  padding: 0 18%;
}

.icon-masthead .columns-wrapper{
  height: 100%;
}

.section.creators-masthead .columns-wrapper {
  padding: 0 10%;
}

.section.creators-masthead .columns-wrapper img {
  width: 216px;
  height: 216px;
  border-radius: 50%;
  border: 1px solid rgb(237 237 237 / 10%);
}

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

.section.creators-masthead .columns-wrapper picture {
  display: unset;
}

.section.creators-masthead .columns-wrapper .button-container a{
  background-color: transparent;
  color: #fff;
}

.columns > div > div {
  flex: 0;
}

.creators-masthead .columns > div > div{
  order: unset;
  flex:unset
}

.creators-masthead .columns-wrapper >div > div {
  display: flex;
  flex-direction: row;
  gap: 10%;
  justify-content: center;
}

.creators-masthead .columns >div >div  p:nth-of-type(2)::before {
  content: '';
  width: 10px;
  height: 10px;
  background-color: red;
  border-radius: 50%;
  display: inline-block;
  margin-right: -4px;
  vertical-align: middle;
}

.icon-masthead{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  padding: 2% 15%;
  column-gap: 5%;
}

.table-masthead, .table-mobile {
  background: #000;
  padding: 2% 20% ;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.icon-masthead h4{
  line-height: 1.3;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
}

.icon-masthead .columns-img-col{
  flex:unset
}

.icon-masthead .columns.columns-2-cols  > div{
  align-items: flex-start;
}

.title-masthead, .icon-masthead{
  background: #000;
}

.table-masthead .columns-wrapper [data-valign="middle"] h3, .table-mobile .columns-wrapper [data-valign="middle"] h3 {
  color: #FFF;
  font-family: "Akzidenz-Grotesk Pro", var(--body-font-family);
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 30.8px */
  text-align: left;
}

.table-masthead .columns-wrapper [data-valign="middle"] .button-container a,.table-mobile .columns-wrapper [data-valign="middle"] .button-container a {
  border-radius: 32px;
  border: 1px solid #FFF;
  background: #FFF;
  box-shadow: 0 2px 4px 0 rgb(0 0 0 / 5%);
  font-family: "Akzidenz-Grotesk Pro Ex Bold",  var(--body-font-family);;
  font-size: 20px !important;
  font-style: normal;
  font-weight: 700;
  line-height: 14px;
  width: 238px;
  min-height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
}

.table-masthead .columns-wrapper [data-valign="middle"] .button-container a:hover,
.table-mobile .columns-wrapper [data-valign="middle"] .button-container a:hover {
  color: #000;
}

.table-masthead .columns-wrapper:first-of-type [data-valign="middle"]:nth-of-type(1),
.table-masthead .columns-wrapper:nth-of-type(2) [data-valign="middle"]:nth-of-type(2),
.table-masthead .columns-wrapper:nth-of-type(3) [data-valign="middle"]:nth-of-type(1)
{
  width: 30%;
  flex: unset;
}

.table-masthead .columns-wrapper:first-of-type [data-valign="middle"]:nth-of-type(2),
.table-masthead .columns-wrapper:nth-of-type(2) [data-valign="middle"]:nth-of-type(1),
.table-masthead .columns-wrapper:nth-of-type(3) [data-valign="middle"]:nth-of-type(2)
{
  width: 70%;
  flex: unset;
}

.table-masthead .columns-wrapper [data-valign="middle"] picture img{
  max-height: 300px;
  max-width: 220px;
}

#what-we-offer{
  padding-top: 4%;
}

/* stylelint-disable selector-id-pattern */
#JotFormIFrame-233305746370050{
  scroll-margin-top: 0;
}
/* stylelint-enable selector-id-pattern */

ul.form-section{
  padding: 0;
}

@media screen and (min-width:485px){
  .table-mobile{
    display: none;
  }
}

@media screen and (min-width:900px) and (max-width:1500px){
  .section.creators-masthead .columns-wrapper .button-container a{
   font-size: 24px !important;
  }
}

@media screen and (min-width:676px) and (max-width:899px){
  .section.creators-masthead .columns-wrapper .button-container a{
   font-size: 20px !important;
  }
}

@media screen and (min-width:381px) and (max-width:675px){
  .section.creators-masthead .columns-wrapper .button-container a{
   font-size: 12px !important;
  }
}

@media screen and (min-width:331px) and (max-width:380px){
  .section.creators-masthead .columns-wrapper .button-container a{
   font-size: 10px !important;
  }
}

@media screen and (max-width:330px){
  .section.creators-masthead .columns-wrapper .button-container a{
   font-size: 9px !important;
  }
}

@media screen and (min-width: 1020px) {
  .title-masthead .default-content-wrapper{
    width: 1000px;
  }

  .form-masthead .default-content-wrapper:nth-child(1){
    width: 1000px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .section.creators-masthead .default-content-wrapper:nth-child(1){
    width: 1000px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4% 0 0;
  }

  .form-masthead p{
    width: 886px;
    padding: 0 120px;
  }

   .section.creators-masthead .default-content-wrapper:nth-of-type(1) p:nth-of-type(1){
    width: 752px;
    padding: 0;
    margin-bottom: 0;
  }

  .section.creators-masthead .default-content-wrapper:nth-of-type(1) p:nth-of-type(2){
    width: 752px;
    padding: 0 5px;
  }

  .form-masthead{
    padding: 4% 0 0;
  }

  .contact-form-wrapper{
    max-width: 900px !important;
  }

  .icon-masthead{
    column-gap: 10px;
    padding: 4% 16%;
  }

  .icon-masthead .columns-wrapper{
    width: 450px;
  }

  .table-masthead .columns-wrapper{
    width: 950px;
  }

  .table-masthead .columns-wrapper:nth-of-type(1) .columns div > div:nth-of-type(2),
  .table-masthead .columns-wrapper:nth-of-type(2) .columns div > div:nth-of-type(1),
  .table-masthead .columns-wrapper:nth-of-type(3) .columns div > div:nth-of-type(2){
    width: 517px;
  }
}

@media screen and (min-width: 800px)and (max-width: 1060px)  {
  .table-masthead, .table-mobile{
    padding: 0 2%;
  }

  .icon-masthead{
    padding: 2%;
  }
}

@media screen and (min-width: 485px)and (max-width: 900px) {
  .title-masthead h2, .table-masthead h2, .form-masthead h1,
  .section.creators-masthead .default-content-wrapper h1 {
    font-size: 32px !important;
  }

  /* stylelint-disable selector-id-pattern */
  #JotFormIFrame-233305746370050{
    scroll-margin-top: 0;
  }
  /* stylelint-enable selector-id-pattern */

  .form-masthead p, .section.creators-masthead .default-content-wrapper p {
    font-size: 22px;
  }

  .section.creators-masthead .default-content-wrapper p {
    padding: 0 4%;
  }

  .section.creators-masthead .default-content-wrapper p:nth-of-type(2) {
    padding: 0 6%;
  }

  .section.creators-masthead .default-content-wrapper{
    padding: 2% 5%;
  }

  .section.creators-masthead .default-content-wrapper:nth-child(1) {
    padding: 8% 4% 4%;
  }

  .table-masthead {
    padding: 2% 4% 5%;
  }

  .main > div.section > div.default-content-wrapper{
    padding-left: 0;
    padding-right: 0;
  }

  .section.creators-masthead .columns-wrapper img{
    height: 114px;
    width: 114px;
    border-radius: 50%
  }

  .creators-masthead .default-content-wrapper .button-container a {
    font-size: 18px !important;
    width: 260px;
  }

  .table-masthead, .icon-masthead {
    padding: 2% 5%;
  }

  .table-masthead .columns-wrapper >div >div{
    display: flex;
    flex-direction: row;
    gap: 12px;
  }

  .table-masthead .columns-wrapper [data-valign="middle"] .button-container a{
    font-size: 16px !important;
    width: 30%;
  }

  .form-masthead{
    padding: 10% 0 0;
  }

  #what-we-offer {
    padding: 10% 0 5%;
  }
}

@media screen and (max-width: 485px) {
  .table-masthead{
    display: none;
  }

  .table-mobile .columns-wrapper:first-of-type [data-valign="middle"]:nth-of-type(1),
  .table-mobile .columns-wrapper:nth-of-type(2) [data-valign="middle"]:nth-of-type(2),
  .table-mobile .columns-wrapper:nth-of-type(3) [data-valign="middle"]:nth-of-type(1),
  .table-mobile .columns-wrapper:first-of-type [data-valign="middle"]:nth-of-type(2),
  .table-mobile .columns-wrapper:nth-of-type(2) [data-valign="middle"]:nth-of-type(1),
  .table-mobile .columns-wrapper:nth-of-type(3) [data-valign="middle"]:nth-of-type(2){
      width: 100%;
  }

  .table-mobile{
    display: flex;
    flex-direction: column;
    gap: 48px;
    padding: 2% 4% 5%;
  }

  .form-masthead{
    padding: 10% 0 12%;
  }

  .table-mobile .button-container{
    margin: 1rem;
  }

  #what-we-offer {
    padding: 12% 0 5%;
  }

  /* stylelint-disable selector-id-pattern */
  .form-masthead #JotFormIFrame-233305746370050{
    min-height: 1220px !important;
  }
  /* stylelint-enable selector-id-pattern */

  .creators-masthead .columns-wrapper >div > div{
    display: flex;
    flex-direction: row;
    gap: 5%;
    justify-content: center;
  }

  .creators-masthead .default-content-wrapper .button-container a{
    height: 48px;
    font-size: 18px !important;
    width: 229px;
  }

  .table-mobile .columns-wrapper [data-valign="middle"] .button-container a {
    width: 100%;
  }

  .icon-masthead{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    column-gap: 5%;
    gap: 40px;
    padding: 2% 4%;
  }

  .icon-masthead .columns-wrapper .columns-2-cols > div{
    display: flex;
    flex-direction: row;
    gap: 10px;
  }

  .table-mobile .columns-wrapper .columns > div{
    display: flex;
    gap: 15px;
  }

  .icon-masthead .columns-wrapper .columns-2-cols > div > div:nth-of-type(2){
    width: 100%;
    flex: unset;
    order: unset;
  }

  .section.creators-masthead .columns-wrapper img{
    height: 90px;
    width: 90px;
    border-radius: 50%
  }

  .table-mobile .columns-wrapper [data-valign="middle"] picture img{
    max-width: unset;
    width: 100%;
  }

  .table-mobile .columns-wrapper:nth-of-type(2) [data-valign="middle"]:nth-of-type(1){
    order: 1;
  }

  .title-masthead h2, .form-masthead h1 {
    font-size: 32px !important;
  }

  .table-mobile .columns h2{
    font-size: 26px;
  }

  .section.creators-masthead .default-content-wrapper h1 {
    font-size: 32px !important;
  }

  .section.creators-masthead .default-content-wrapper:nth-child(1) {
    padding: 10% 4% 4%;
  }

  .form-masthead p{
    padding: 0 2%;
  }

  .form-masthead p, .section.creators-masthead .default-content-wrapper p {
    font-size: 22px;
  }

  .section.creators-masthead .default-content-wrapper p{
    padding: 0;
  }

  .section.creators-masthead .default-content-wrapper p:nth-of-type(2){
    padding: 0;
  }

  .section.creators-masthead .columns-wrapper{
    padding: 0 4%;
  }

  .section.creators-masthead .default-content-wrapper:nth-child(3){
    padding: 2% 4% 12%;
  }
}

@media screen and (max-width:375px) {
  .shows-masthead h1 {
  color: var(--color-white);
  text-align: center;
  font-size: 32px;
  line-height: 1.2;
}
}

@media screen and (min-width: 1320px) {
  .icon-masthead {
    row-gap: 5%;
  }
}

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

  aside {
    flex: 0 0 21.6rem;
  }

  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: absolute;
  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: 2rem;
  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;
  padding: 0 1rem;
}

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 0.254rem;
  margin: 0 0.25rem 0.25rem 0;
  text-transform: uppercase;
  font-size: 0.75rem;
  line-height: 0.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);
}

@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 */
.header-banner-wrapper {
  min-height: 54px;
  width: auto;
}

/* sticky for all view port ref=sb */
.header-banner-wrapper.sticky-sb {
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Sticky for Mobile (≤768px) when ref=msb */
@media (max-width: 768px) {
  .header-banner-wrapper.sticky-msb {
    position: sticky;
    top: 0;
    z-index: 1000;
  }
}

/* Sticky for Desktop (>768px) when ref=dsb */
@media (min-width: 769px) {
  .header-banner-wrapper.sticky-dsb {
    position: sticky;
    top: 0;
    z-index: 1000;
  }
}

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

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

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

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

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

  header {
    height: 48px;
  }
}

.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 footer.footer-wrapper {
  display: none;
}

/* END - Theme for mobile application pages */