/*****************************************************
*    CSS RESET                                       *
*****************************************************/
html, body, div, span, applet, object, iframe, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, main, nav, output, ruby, section, summary, time, mark, audio, video, picture {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

input[type='text'], input[type='email'], input[type='tel'], input[type='button'], input[type='reset'], input[type='password'], input[type='submit'], input[type='search'], input[type='date'], input[type='datetime'], input[type='time'], input[type='url'], button, select, textarea {
    -webkit-appearance: none;
    box-shadow: none !important;
}

:-webkit-autofill {
    color: #fff !important;
}

::-moz-placeholder {
    opacity: 1;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main, picture {
    display: block;
}

body {
    line-height: 1;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
}

small {
    font-size: 0.70em;
}

/*****************************************************
*    HTML5                                           *
*****************************************************/
:root {
    --blue-light-color: #309CFF;
    --blue-color: #0066FF;
    --red-color: #ff4b20;
    --red-dark-color: #c4300c;
    --dark-color: #232323;
    --teal-color: #2BDECF;
    --teal-light-color: #00FFE0;
    --teal-dark-color: #04828A;
    --purple-color: #9467FF;
}

* {
    text-rendering: optimizeLegibility;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*:focus {
    outline: none;
}

html {
    text-size-adjust: 100%;
    overflow-y: scroll;
    scroll-behavior: smooth;
}

body {
    background: #000;
    font: normal normal normal 20px/1.4em 'Inter', Helvetica, Arial, sans-serif;
    color: #fff;
}

html, body {
    height: 100%;
}

a {
    color: #333;
    text-decoration: none;
}

a, footer a {
    transition: color 0.3s ease-in-out;
}

a:hover {
    color: var(--teal-light-color);
}

a:active {
    color: blue;
}

a[src$='.pdf'] {
}

a[href^='mailto:'] {
}

sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

b, strong {
    font-weight: bold;
}

small {
    font-size: 0.85em;
}

td, th {
    border: 1px solid #999;
    padding: 0.5rem;
    text-align: left;
}

hr {
    border: 0;
    height: 1px;
    width: 100%;
    margin: 40px 0;
    background-color: #999;
}

i, em {
    font-style: italic;
}

p a {
    color: rgba(240, 243, 245, 1);
    text-decoration: underline;
}

/*****************************************************
*    HEADER AREA                                     *
*****************************************************/
header {
    clear: both;
    
}

header .pagewrap {
    display: flex;
    align-items: center;
    max-width: 1200px;
    padding: 24px 0;
    background-color: rgb(0,0,0,0.85);
    position: fixed;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 99;
}

header .pagewrap .button.button-outline {
    margin-left: auto;
}

header ul, header ol {
    list-style: none;
}

/*****************************************************
*    NAVIAGATION AREA                                *
*****************************************************/



/* http://shailan.com/2713/create-a-dropdown-menu-using-css3-transitions/  */
nav[aria-label='main navigation'] {
    padding: 0;
    display: inline-block;
    margin-left: auto;
}

nav[aria-label='main navigation'] ul, nav[aria-label='main navigation'] li {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav[aria-label='main navigation'] ul li {
    float: left;
    position: relative;
    margin-left: 2em;
    align-self: center;
}

nav[aria-label='main navigation'] ul li a {
    display: block;
    padding: 0;
    margin: 0;
    font-weight: 600;
    font-size: 14px;
    color: #bbb;
    transition: color 0.3s ease-in-out;
}

nav[aria-label='main navigation'] ul li a:hover {
    color: #fff;
}

nav#nav-mobile {
    display: none;
}

/*****************************************************
*    CONTENT AREA                                    *
*****************************************************/
.pagewrap {
    width: min(95%, 1200px);
    margin-inline: auto;
    display: flow-root;
}

.pagewrap.narrow-1028 {
    width: min(95%, 1028px);
}

.narrow-column {
    width: min(95%, 380px);
    margin-inline: auto;
    display: flow-root;
}

main {
    clear: both;
}

main img, main embed, main object, main video {
    max-width: 100%;
    height: auto;
}

img, video {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    font-style: italic;
    background-repeat: no-repeat;
    background-size: cover;
    shape-margin: 1rem;
}

p {
    color: #F0F3F5;
}

main ul, main ol {
    margin-left: revert;
    list-style: revert;
    padding: revert;
}

main li {
    padding: revert;
}

main section ul li, main section ol li, main section ol[type='A'] li {
    margin: 0 0 0 25px;
}

main section ul li {
    list-style-type: disc;
    padding-bottom: 24px;
}

main section ol li {
    list-style-type: decimal;
    padding-bottom: 24px;
}

main section ol li a{
    color: rgba(240, 243, 245, 1);
    text-decoration: underline;
}

main section ol[type='A'] li {
    list-style-type: upper-alpha;
}

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

.text-align-left {
    text-align: left;
}

.button {
    display: inline-block;
    background-color: var(--teal-color);
    border: 1px solid var(--teal-color);
    transition: background-color 0.3s ease-in-out, border 0.3s ease-in-out;
    font-size: 17px;
    text-align: center;
    color: #000;
    height: 48px;
    max-width: 280px;
    border-radius: 28px;
    padding: 0 20px;
}

.button-spacer {
    display: inline-block;
    padding: 6px 6px;
    background: #000;
    border-radius: 16px;
    margin: 0 auto;
}

.sign-up {
    width: 100%;
}

.button-secondary {
    background-color: var(--dark-color);
    color: #fff;
}

.button.button-outline {
    border: 1px solid #323334;
    background-color: #000;
}

.button.button-outline:hover {
    border: 1px solid #309CFF;
    background-color: #252729;
}

.button:hover {
    background-color: var(--teal-light-color);
    border: 1px solid var(--teal-light-color);
    color: #000;
}

.button:focus {
    background-color: var(--teal-light-color);
    border: 1px solid var(--teal-light-color);
    color: #000;
    box-shadow: 0 0 0 3px rgba(43, 222, 207, 0.3);
}

.hero-section-padding {
    padding: 120px 0 0;
}

.hero-video {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    z-index: -1;
    margin-bottom: -72px;
}

a.hero-video {
    color: white;
}

.hero-image {
    position: relative;
    display: inline-block;
    width: 95%;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 1) 60%);
    pointer-events: none;
    z-index: 2;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    transform-origin: bottom center;
    transition: transform 0.6s ease-out;
}

.hero-image:hover img {
    transform: scale(1.02);
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateY(5px);
    width: 100%;
    height: 45%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 40%, rgba(0, 0, 0, 1) 55%);
    pointer-events: none;
}

.sign-up-caption {
    display: block;
    position: absolute;
    bottom: 2%;
    width: 100%;
    font-size: 20px;
    color: #B0B3B5;
    text-align: center;
    z-index: 10;
}

#download-on-appstore {
    height: 56px;
}

#download-on-googleplay {
    height: 56px;
    filter: grayscale(100%);
}

.caption-wrapper {
    position: relative;
    display: inline-block;
    margin: auto 0 auto 24px;
}

.caption-wrapper::after {
    content: "coming soon";
    position: absolute;
    display: block;
    padding: 14px 0;
    top: 0%;           /* place directly below the image */
    left: 0%;
    height: 100%;
    width: 100%;
    font-size: 16px;
    color: #ccc;
    background: rgba(0, 0, 0, 0.7);
    white-space: nowrap;
    pointer-events: none; /* doesn’t block clicks on/near the image */
    z-index: 1;
}

.title-section-padding {
    padding: 320px 0 0;
}

.section-padding {
    padding: 120px 0 0;
}

.section-wrap-video video {
    max-width: 790px;
    border: 2px solid #323334;
    border-radius: 30px;
    width: 100%;
}

.section-wrap-video {
    display: grid;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: auto 790px;
}

[class*='grid-columns-'] {
    display: grid;
    grid-column-gap: 24px;
    grid-row-gap: 24px;
}

.grid-columns-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-columns-1-2 {
    grid-template-columns: 1fr 2fr;
}

.grid-columns-2-1 {
    grid-template-columns: 2fr 1fr;
}

.grid-columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-columns-4 {
    grid-template-columns: repeat(4, 1fr);
}

.grid-columns-5 {
    grid-template-columns: repeat(5, 1fr);
}

.grid-columns-1-2, .grid-columns-2-1 {
    grid-column-gap: 24px;
}

.align-self-end {
    align-self: end;
    padding-block: 20px;
}

.row {
    margin: 24px 0;
}

.spacer-8 {
    display: block;
    width: 8px;
    aspect-ratio: 1;
}

.spacer-16 {
    display: block;
    width: 16px;
    aspect-ratio: 1;
}

.spacer-32 {
    display: block;
    width: 32px;
    aspect-ratio: 1;
}

.spacer-48 {
    display: block;
    width: 48px;
    aspect-ratio: 1;
}

.spacer-64 {
    display: block;
    width: 64px;
    aspect-ratio: 1;
}

.spacer-96 {
    display: block;
    width: 96px;
    aspect-ratio: 1;
}

.bkg-gradient {
    background-image: radial-gradient(transparent, black), url('images/bkg-gradient.avif');
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    box-shadow: inset 0 0 2em 2em #000;
}

.mobile-img {
    display: none;
}

/*****************************************************
*    GLOW EFFECT - THUNDERSTRUCK                     *
*****************************************************/

.thunderstruck {
    position: relative;
}

.thunderstruck:hover:before, .thunderstruck:hover:after {
    opacity: 0.7;
    transition: opacity 0.5s;
  }
  
  .thunderstruck:before, .thunderstruck:after {
      content: '';
      position: absolute;
      left: -2px;
      top: -2px;
      background: linear-gradient(45deg, #04828A, #008cff, #2BDECF, #b0fff6, #2BDECF, #00bbff, #04828A);
      background-size: 500%;
      width: calc(100% + 4px);
      height: calc(100% + 4px);
      z-index: -1;
      animation: thunderstriking 20s linear infinite;
    border-radius: 18px;
    opacity: 0.25;
    transition: opacity 2s;
  }
  
  @keyframes thunderstriking {
      0% {
          background-position: 0 0;
      }
      50% {
          background-position: 500% 0;
      }
      100% {
          background-position: 0 0;
      }
  }
  
  .thunderstruck:after {
      filter: blur(80px);
  }


/*****************************************************
*    SIGN UP MODAL                                   *
*****************************************************/

/* Modal */
.modal {
    display: flex; /* Hidden by default */
    position: fixed;
    left: 0;
    bottom: 100%;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background:rgba(0, 0, 0, .3);
    justify-content: center;
    align-items: center;
    transition: bottom 0.7s ease;
}

/* Modal Content */
.modal-content {
    padding: 48px 48px 64px;
    border-radius: 20px;
    max-width: 640px;
    width: 95%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(48px); /* Background blur effect */
    -webkit-backdrop-filter: blur(48px); /* Background blur effect safari*/
    border: solid 1px var(--dark-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); 
    text-align: center;
    position: relative;
}

.modal-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: white;
}

.modal-content p {
    max-width: 420px;
    margin: auto;
    color: #B0B3B5;
}

/* Close Button */
.close-button {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    color: #B0B3B5;
    cursor: pointer;
}

.close-button:hover {
    color: var(--teal-color);
}

@media screen and (max-width:480px) {

    .modal {
        padding: 16px;
    }

    .modal-content {
        padding: 16px 16px 32px;
    }

    .modal-content p, h3 {
        padding: 0 16px;
    }

    h3 {
        font-size: 20px;
    }

    .modal-content p {
        font-size: 16px;
    }
}

  
/*****************************************************
*    PLAY BUTTON                                     *
*****************************************************/

.play-button-container {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: rgba(10, 20, 50, 0.5); /* Semi-transparent background */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    border: 2px solid rgba(30, 50, 60, 0.5);
}

/* The play triangle */
.play-icon {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 0 15px 25px; /* Triangle dimensions */
    border-color: transparent transparent transparent white; /* White triangle */
    -webkit-transform: translateX(3px);
    -ms-transform: translateX(3px);
    transform: translateX(3px); /* Center the triangle */
}

/* Optional: Add hover effect for play icon */
.play-button-container:hover .play-icon {
    border-color: transparent transparent transparent var(--teal-color);
}


/*****************************************************
*    IMAGE WITH CONTENT TEXT ON BOTTOM               *
*****************************************************/
.image-content-wrap {
    position: relative;
}

.border-radius-img img, .border-radius-img picture img, .border-radius-img video{
    border-radius: 30px;
}

.border-radius-img picture {
    position: relative;
    height: 360px;
}

.border-radius-img picture img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.image-content-wrap p {
    position: absolute;
    display: block;
    font-size: 20px;
    text-align: center;
    margin: 0;
    font-weight: 600;
}

.top-grid .image-content-wrap p {
    width: 170px;
    top: 140px;
    left: calc(50% - 212px);
}

.mid-grid .image-content-wrap.mid-large p {
    width: 195px;
    top: 145px;
    left: calc(50% - 135px);
}

.mid-grid .image-content-wrap.mid-small p {
    width: 170px;
    top: 48px;
    left: calc(50% - 85px);
}

.bottom-grid .image-content-wrap.bottom-large p {
    width: 195px;
    top: 145px;
    left: calc(50% - 162px);
}

.bottom-grid .image-content-wrap.bottom-small p {
    width: 170px;
    bottom: 48px;
    left: calc(50% - 85px);
    color: #000;
}

/*****************************************************
*    EMOJI VIDEO SELECTOR.                *
*****************************************************/

#video-container {
    position: relative;
    margin: 0 auto;
  }

.video-shell {
    width: 100%;
    aspect-ratio: 16/9;
    border: solid 2px #2C3341;
    border-radius: 30px;
    overflow: hidden;
}
  
#video-player {
    display: block;
  }
  
#emoji-selector {
    display: flex;
    justify-content: space-around;
    margin: 24px 12px;
  }
  
.emoji {
    font-size: 30px;
    cursor: pointer;
    padding: 12px;
  }
  
.emoji.active {
    background: #2C3341;
    border: 2px solid #2C3341;
    border-radius: 50%;
    padding: 12px;
  }

/*****************************************************
*    SUCCESS TOAST.                                  *
*****************************************************/  
  
.toast {
    /* styling */
    color: white;
    padding: 16px 36px;
    border-radius: 30px;
    background: var(--dark-color);
    box-shadow: 0px 54px 54px 0px rgba(43, 222, 207, 0.04), 0px 13px 29px 0px rgba(43, 222, 207, 0.05);
    min-width: 340px;
    
    /* animation */
    position: fixed;
    bottom: -180px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    transition: 1s ease-in-out;
  }

.toast p {
    color: white;
    font-weight: 600;
    padding: 0;
    margin: 0;
}
  
.toast-content {
    display: flex;
    align-items: center;
    color: white;
  }
  
.toast-icon {
    font-size: 24px;
    margin-right: 10px;
    color: var(--teal-light-color);
  }
  
@media screen and (max-width:610px) {

    .toast {
        padding: 12px 16px;
    }

    .hide-on-mobile {
        display: none;
    }
}

/*****************************************************
*    IMAGE WITH CONTENT SIDE CONTENT.                *
*****************************************************/
.flex-center-vertical {
    display: flex;
    align-items: center;
    flex-direction: row
}

.flex-center-vertical p {
    font-size: 18px;
}

/*****************************************************
*    STAGGERED OFFSET TILES.                         *
*****************************************************/
.staggered-offset-tiles {
    display: flex;
    flex-wrap: wrap;
    row-gap: 10px;
}

.staggered-offset-posistion {
    position: relative;
}

.staggered-offset-posistion section {
    max-width: 280px;
    position: absolute;
    bottom: 24px;
    left: 3em;
}

.staggered-offset-posistion section h2 {
    margin-bottom: 5px;
}

.staggered-offset-tiles div {
    flex: 16.6%;
    padding: 0 12px;
}

.staggered-offset-tiles div img {
    margin-bottom: 24px;
}

.staggered-offset-tiles .half-notch-down {
    margin-top: 45px;
}

.staggered-offset-tiles .one-notch-down {
    margin-top: 90px;
}

.staggered-offset-tiles .two-notch-down {
    margin-top: 185px;
}

.tablet {
    display: none;
}

/*****************************************************
*    SOCIAL MEDIA LINKS                              *
*****************************************************/
.flex-center-horizontal {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

ul.social-media-wrap {
    display: flex;
    list-style: none;
}

article .social-media-wrap {
    margin-top: 56px;
}

ul.social-media-wrap li a {
    height: 56px;
    width: 56px;
    display: block;
    margin: 0 20px 0 0;
    border-radius: 50%;
    background-color: #1A1B1D;
    display: flex;
    justify-content: center;
    align-items: center;
    float: left;
    position: relative;
    transition: background-color 0.3s ease-in-out;
}

ul.social-media-wrap li a:hover {
    background-color: #323334;
}

.narrow-690-extra-top-space {
    width: min(100%, 690px);
    margin-top: 80px;
    margin-inline: auto;
}

/*****************************************************
*    FORM                                            *
*****************************************************/

input[type='text'], input[type='email'], input[type='tel'], input[type='password'], input[type='search'], input[type='date'], input[type='datetime'], input[type='time'], input[type='url'], input[type='autocomplete'], select, textarea {
    transition: border .3s ease-in-out;
    
    display: block;
    width: 100%;
    padding: 16px 24px;
    margin: 12px auto;

    background-color: #1A1B1D;
    border: 1px solid #252729;
    border-radius: 28px;

    color: #fff;
    font-size: 16px;
    line-height: 18px;
    font-feature-settings: 'lnum'1;
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    font-weight: 400;
}

input[type='email']::before {
    content: "👤";
    position: absolute;
    left: 8px;
    font-size: 1em;
}

input:focus {   
    border: 1px solid var(--teal-dark-color);
}

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

form input[type='button'] {
    margin: 0 auto;
}

::placeholder {
    color: #97999B;
}

input[type='button'], input[type='reset'], input[type='submit'] {
    cursor: pointer;
}

.horizontal-email-form {
    box-sizing: border-box;
    display: block;
    position: relative;
    width: 95%;
    max-width: 560px;
    margin: 0 auto;
}

.horizontal-email-form input[type='text'], .horizontal-email-form input[type='email'], .horizontal-email-form input[type='tel'], .horizontal-email-form input[type='password'], .horizontal-email-form input[type='search'], .horizontal-email-form input[type='date'], .horizontal-email-form input[type='datetime'], .horizontal-email-form input[type='time'], .horizontal-email-form input[type='url'] {
    flex: 1;
    align-self: center;
}

.horizontal-email-form input[type='button'], .horizontal-email-form input[type='submit'], .horizontal-email-form .button {
    align-self: center;
}

.slick-slide img {
    border-radius: 30px;
}

/* ****************************************************
 *    SUPPORT FORM (RADIO OPTIONS)                    *
 **************************************************** */

#support-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    align-items: stretch;
}

/* Pill label containing the radio */
#support-form .radio-pill {
    display: block;
}

/* Visually hide the native radio while keeping it accessible */
#support-form .radio-pill input[type='radio'] {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    overflow: hidden;
}

/* Visual pill button */
#support-form .radio-visual {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 28px;
    background-color: #1A1B1D;
    border: 1px solid #252729;
    color: #fff;
    font-size: 16px;
    line-height: 1.2;
    cursor: pointer;
    transition: border 0.3s ease-in-out, background-color 0.3s ease-in-out, color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Custom radio indicator inside the pill */
#support-form .radio-visual::before {
    content: '';
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #323334;
    background: transparent;
    box-shadow: inset 0 0 0 4px transparent;
    transition: border 0.3s ease-in-out, box-shadow 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

#support-form .radio-pill:hover .radio-visual {
    border-color: #323334;
    background-color: #111214;
}

#support-form .radio-pill input[type='radio']:focus + .radio-visual {
    box-shadow: 0 0 0 2px rgba(4, 130, 138, 0.4);
}

#support-form .radio-pill input[type='radio']:checked + .radio-visual {
    border-color: var(--teal-color);
    background-color: rgba(43, 222, 207, 0.08);
    color: var(--teal-light-color);
    box-shadow: 0 0 0 2px rgba(43, 222, 207, 0.12) inset;
}

#support-form .radio-pill input[type='radio']:checked + .radio-visual::before {
    background-color: var(--teal-color);
    border-color: var(--teal-color);
    box-shadow: inset 0 0 0 4px #0b0f10;
}

/* Make subsequent text/email inputs and buttons span the full grid */
#support-form input[type='text'],
#support-form input[type='email'],
#support-form input[type='password'],
#support-form input[type='search'], 
#support-form input[type='submit'],
#support-form input[type='button'],
#support-form input[type='reset'],
#support-form textarea,
#support-form .button {
    grid-column: 1 / -1;
    margin: 0;
}

#support-form-header {
    padding: 0;
    margin: 0;
    line-height: 1.2;
    text-align: center;
    width: 100%;
    max-width: 100%;
}

#support-form-subheader {
    max-width: 560px;
    margin: 12px auto;
}

.form-label {
    font-size: 14px;
    line-height: 1;
    font-weight: 400;
    color: #aaa;
    margin-top: 24px;
    grid-column: 1 / -1;
    text-align: left;
}

/* reCAPTCHA styling */
.g-recaptcha {
    display: flex;
    justify-content: left;
    margin: 12px 0;
    grid-column: 1 / -1;
}

.g-recaptcha > div {
    transform: scale(0.9);
    transform-origin: center;
}

@media screen and (max-width:560px) {
    .g-recaptcha > div {
        transform: scale(0.8);
    }
}


@media screen and (max-width:560px) {
    #support-form {
        grid-template-columns: 1fr; /* stack to single column of options */
    }
}


/*****************************************************
*    SLIDER                                          *
*****************************************************/
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track, .slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.slick-track:before, .slick-track:after {
    display: table;
    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

.slick-loading .slick-list {
    background: #fff url('./ajax-loader.gif') center center no-repeat;
}

/* Arrows */
.slick-prev, .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}

.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
    color: transparent;
    outline: none;
    background: transparent;
}

.slick-prev:hover:before, .slick-prev:focus:before, .slick-next:hover:before, .slick-next:focus:before {
    opacity: 1;
}

.slick-prev.slick-disabled:before, .slick-next.slick-disabled:before {
    opacity: .25;
}

.slick-prev:before, .slick-next:before {
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;
    opacity: .75;
    color: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
    left: -25px;
}

[dir='rtl'] .slick-prev {
    right: -25px;
    left: auto;
}

.slick-prev:before {
    content: '←';
}

[dir='rtl'] .slick-prev:before {
    content: '→';
}

.slick-next {
    right: -25px;
}

[dir='rtl'] .slick-next {
    right: auto;
    left: -25px;
}

.slick-next:before {
    content: '→';
}

[dir='rtl'] .slick-next:before {
    content: '←';
}

/* Dots */
.slick-dotted.slick-slider {
    margin-bottom: 30px;
}

.slick-dots {
    position: absolute;
    bottom: 50%;
    display: block;
    width: 30px;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    right: -50px;
    transform: translateY(50%);
}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 5px 0;
    padding: 0;
    cursor: pointer;
    transition: height 0.3s ease-in-out;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    border-radius: 10px;
    cursor: pointer;
    color: rgba(50, 51, 52, 1);
    border: 0;
    outline: none;
    background: rgba(50, 51, 52, 1);
    transition: height 0.3s ease-in-out;
}

.slick-dots li.slick-active {
    height: 40px;
}

.slick-dots li.slick-active button {
    background-color: var(--teal-color);
    height: 40px;
}

/*****************************************************
*    FOOTER                                          *
*****************************************************/
footer {
    clear: both;
    padding: 48px 0;
    border-top: 2px solid #1A1B1D;
    margin-top: 120px;
}

footer .pagewrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copyright {
    color: rgba(151, 153, 155, 1);
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 0.2em;
    text-align: center;
}

/****************************************************
*    FONTS                                          *
****************************************************/
.x-large-font {
    font-weight: 400;
    color: rgba(255, 255, 255, 1);
    line-height: 1.15em;
    font-size: 56px;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: .1em;
}

.grey-font {
    color: rgba(151, 153, 155, 1);
}

h1 {
    font-size: 1.8em;
    font-style: normal;
    font-weight: 700;
    margin: 0 auto -80px;
    width: 86%;
    max-width: 920px;
}

.legal-page{
    margin: revert;
}

.teal-color {
    color: var(--teal-color);
}

.text-accent {
    color: var(--purple-color);
    font-size: 4.5em;
    line-height: .5em;
    letter-spacing: 0.06em;
}

.large-font-teal-bar {
    font-size: 32px;
    line-height: 1.1em;
    position: relative;
}

.large-font-teal-bar::before {
    height: 100%;
    width: 8px;
    content: '';
    display: block;
    background-color: var(--teal-color);
    position: absolute;
    top: 0;
    left: -24px;
    border-radius: 4px;
}

h2 {
    font-size: 20px;
    margin: 0px 0px 20px 0px;
    padding-top: 10px;
    font-style: normal;
    color: var(--purple-color);
    text-transform: uppercase;
    letter-spacing: 0.3em;
}

h3 {
    font-size: 1.17em
}

h4 {
    margin: revert;
    font-size: 1em
}

h5 {
    font-size: .83em
}

h6 {
    font-size: .67em
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.1em;
}

@font-face {
    font-family: 'Inter';
    src: url('fonts/subset-Inter-Regular.woff2') format('woff2'), url('fonts/subset-Inter-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('fonts/subset-Inter-Medium.woff2') format('woff2'), url('fonts/subset-Inter-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('fonts/subset-Inter-SemiBold.woff2') format('woff2'), url('sfonts/ubset-Inter-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('fonts/subset-Inter-Bold.woff2') format('woff2'), url('fonts/subset-Inter-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

.permanent-marker-regular {
    font-family: "Permanent Marker", cursive;
    font-weight: 400;
    font-style: normal;
}
  

/*****************************************************
*    FULL SCREENS                                    *
*****************************************************/
@media screen and (max-width:1200px) {
    .section-wrap-video {
        grid-template-columns: auto 660px;
    }

    .carousel-position {
        height: 337px;
        width: 604px;
        left: 2px;
    }

}

@media screen and (max-width:1130px) {
    .staggered-offset-posistion section {
        max-width: 280px;
        bottom: -5px;
        left: 1.5em;
    }

}

@media screen and (max-width:1010px) {
    .section-wrap-video {
        grid-template-columns: auto 510px;
    }

    .carousel-position {
        height: 259px;
        width: 466px;
        left: 2px;
    }

    .slick-slide img {
        border-radius: 16px;
    }

    .hero-video {
        margin-bottom: -80px;
    }

    .sign-up-caption {
        font-size: 16px;
    }

}

@media screen and (min-width:760px) {
    nav #toggle {
        display: none;
    }

}

/*****************************************************
*    MOBILE AND TABLET SCREENS                        *
*****************************************************/
@media screen and (max-width:860px) {
    nav[aria-label='main navigation'] ul li {
        margin-left: 1.2em;
    }

    .section-padding {
        padding: 80px 0;
    }

    h1 {
        font-size: 38px;
    }

    .text-accent {
        font-size: 3.2em;
    }

    .hero-video {
        margin-bottom: -40px;
    }

    .sign-up-caption {
        font-size: 16px;
    }

    h2 {
        font-size: 20px;
    }

    .staggered-offset-tiles .two-notch-down {
        margin-top: 5.4em;
    }

    .staggered-offset-tiles .one-notch-down {
        margin-top: 2.2em;
    }

    .tablet {
        display: block;
    }

    .tablet-none {
        display: none;
    }

    .staggered-offset-tiles .tablet-notch-down {
        margin-top: 5.4em;
    }

    .section-wrap-video {
        grid-template-columns: auto 410px;
    }

    .carousel-position {
        height: 210px;
        width: 374px;
        left: 2px;
        top: 32px;
    }

    .staggered-offset-posistion section {
        bottom: -105px;
    }

}

@media screen and (max-width:790px) {
    nav[aria-label='main navigation'] ul li {
        display: none;
    }

    nav[aria-label='main navigation'] ul li:last-child {
        display: inline-block;
    }

    .flex-center-horizontal {
        display: block;
    }

    .extra-top-space {
        margin-top: 50px;
    }

    ul.social-media-wrap {
        margin: 15px auto 0;
    }

    .image-content-wrap p {
        font-size: 16px;
        line-height: 1.1em;
    }

    footer .pagewrap {
        justify-content: center;
        flex-direction: column;
    }

}

/*****************************************************
*    MOBILE SCREENS ONLY                             *
*****************************************************/
@media screen and (max-width:610px) {
    .section-wrap-video {
        grid-template-columns: repeat(1, 1fr);
    }

    .carousel-wrapper {
        width: min(100%, 360px);
        margin-inline: auto;
    }

    .carousel-position {
        height: 182px;
        width: 329px;
        left: 2px;
        top: 28px;
    }

    .grid-columns-1-2, .grid-columns-2-1 {
        grid-template-columns: 1fr;
    }

    .hero-video {
        margin-bottom: 0px;
    }

    .sign-up-caption {
        font-size: 14px;
    }

}

@media screen and (max-width:560px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .policy-page{
        padding: 120px 0 0 0;
    }

    .staggered-offset-tiles .half-notch-down.mobil {
        margin-top: 0;
    }

    .pagewrap.staggered-offset-tiles {
        max-width: 408px;
    }

    .mobile-image-top picture {
        order: 1
    }

    .mobile-image-top article {
        order: 2;
    }

    .mobile-img, .mobile {
        display: block;
    }

    .mobile-none {
        display: none;
    }

    .half-notch-down.mobile {
        margin-top: 0;
    }

    .grid-columns-1-2-1 {
        grid-template-columns: 1fr
    }

    .grid-columns-1-2-1 .image-content-wrap, .grid-columns-1-2-1 .image-content-wrap picture {
        display: inline-block;
    }

    .grid-columns-2.flex-mobile {
        display: flex;
        flex-direction: column;
    }

    .grid-columns-2.flex-mobile picture {
        order: 2;
    }

    h1, .x-large-font {
        font-size: 28px;
    }

    .text-accent {
        font-size: 2.4em;
    }

    h1 {
        width: 75%;
        margin: 0 auto 20px;
    }

    p {
        margin-top: 0;
    }

    .grid-columns-2 {
        grid-template-columns: repeat(1, 1fr);
    }

    .copyright {
        margin-left: 0;
        margin-top: 20px;
    }

    .staggered-offset-tiles {
        display: block;
    }

    .staggered-offset-tiles {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .staggered-offset-tiles .two-notch-down, .staggered-offset-tiles .one-notch-down {
        margin-top: 0em;
    }

    .staggered-offset-tiles div:nth-child(2) {
        margin-top: 45px;
    }

    .image-content-wrap.max-282 p {
        max-width: 282px;
        left: 50%;
        transform: translateX(-50%);
        max-width: 242px;
    }

    .top-grid .image-content-wrap p {
        width: 128px;
        left: calc(50% - 180px);
    }

    .mid-grid .image-content-wrap.mid-large p {
        width: 150px;
        left: calc(50% - 113px);
    }

    .bottom-grid .image-content-wrap.bottom-large p {
        width: 148px;
        left: calc(50% - 145px);
    }

    .bottom-grid .image-content-wrap.bottom-large picture img {
        object-position: 60%;
    }

    .staggered-offset-posistion {
        padding-bottom: 50px;
    }

    .staggered-offset-posistion section {
        left: 0.75em;
        bottom: -55px;
    }

    .pagewrap.staggered-offset-posistion {
        width: min(95%, 409px);
    }
    
    main, p.legal{
        font-size: 0.875em;
    }

    main.legal {
        margin: 0 0.8em;
    }

    .large-font-teal-bar {
        font-size: 1.6em;
    }
    
    ul.legal{
        padding-left: 0.6em;
    }

    ol.legal{
        padding-left: 0.6em;
    }

}

@media screen and (max-width:450px) {
    .mid-grid .image-content-wrap.mid-large p {
        width: 150px;
        left: calc(50% - -7px);
    }

    .image-content-wrap.mid-large picture img {
        object-position: -76px;
    }

    .caption-wrapper {
        width: 100%;
        margin: 24px auto;
    }

}

@media screen and (max-width:410px) {
    .slick-dots {
        right: -35px;
    }

    .top-grid .image-content-wrap p {
        width: 128px;
        top: 140px;
        left: calc(50% - 145px);
    }

    .hero-video {
        margin-bottom: 48px;
        overflow: visible;
    }

    .sign-up-caption {
        font-size: 12px;
    }

}

@media screen and (max-width:380px) {
    .mid-grid .image-content-wrap.mid-large p {
        width: 145px;
        left: calc(50% - -12px);
    }
    
}

/*****************************************************
*    FANCY BOX                                       *
*****************************************************/
body.compensate-for-scrollbar {
    overflow: hidden;
}

.fancybox-active {
    height: auto;
}

.fancybox-is-hidden {
    left: -9999px;
    margin: 0;
    position: absolute !important;
    top: -9999px;
    visibility: hidden;
}

.fancybox-container {
    -webkit-backface-visibility: hidden;
    height: 100%;
    left: 0;
    outline: none;
    position: fixed;
    -webkit-tap-highlight-color: transparent;
    top: 0;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    transform: translateZ(0);
    width: 100%;
    z-index: 99992;
}

.fancybox-container * {
    box-sizing: border-box;
}

.fancybox-outer, .fancybox-inner, .fancybox-bg, .fancybox-stage {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.fancybox-outer {
    -webkit-overflow-scrolling: touch;
    overflow-y: auto;
}

.fancybox-bg {
    background: rgb(30, 30, 30);
    opacity: 0;
    transition-duration: inherit;
    transition-property: opacity;
    transition-timing-function: cubic-bezier(.47, 0, .74, .71);
}

.fancybox-is-open .fancybox-bg {
    opacity: .9;
    transition-timing-function: cubic-bezier(.22, .61, .36, 1);
}

.fancybox-infobar, .fancybox-toolbar, .fancybox-caption, .fancybox-navigation .fancybox-button {
    direction: ltr;
    opacity: 0;
    position: absolute;
    transition: opacity .25s ease, visibility 0s ease .25s;
    visibility: hidden;
    z-index: 99997;
}

.fancybox-show-infobar .fancybox-infobar, .fancybox-show-toolbar .fancybox-toolbar, .fancybox-show-caption .fancybox-caption, .fancybox-show-nav .fancybox-navigation .fancybox-button {
    opacity: 1;
    transition: opacity .25s ease 0s, visibility 0s ease 0s;
    visibility: visible;
}

.fancybox-infobar {
    color: #ccc;
    font-size: 13px;
    -webkit-font-smoothing: subpixel-antialiased;
    height: 44px;
    left: 0;
    line-height: 44px;
    min-width: 44px;
    mix-blend-mode: difference;
    padding: 0 10px;
    pointer-events: none;
    top: 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.fancybox-toolbar {
    right: 0;
    top: 0;
}

.fancybox-stage {
    direction: ltr;
    overflow: visible;
    transform: translateZ(0);
    z-index: 99994;
}

.fancybox-is-open .fancybox-stage {
    overflow: hidden;
}

.fancybox-slide {
    -webkit-backface-visibility: hidden;    /* Using without prefix would break IE11 */
    display: none;
    height: 100%;
    left: 0;
    outline: none;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 44px;
    position: absolute;
    text-align: center;
    top: 0;
    transition-property: transform, opacity;
    white-space: normal;
    width: 100%;
    z-index: 99994;
}

.fancybox-slide::before {
    content: '';
    display: inline-block;
    font-size: 0;
    height: 100%;
    vertical-align: middle;
    width: 0;
}

.fancybox-is-sliding .fancybox-slide, .fancybox-slide--previous, .fancybox-slide--current, .fancybox-slide--next {
    display: block;
}

.fancybox-slide--image {
    overflow: hidden;
    padding: 44px 0;
}

.fancybox-slide--image::before {
    display: none;
}

.fancybox-slide--html {
    padding: 6px;
}

.fancybox-content {
    background: #fff;
    display: inline-block;
    margin: 0;
    max-width: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 44px;
    position: relative;
    text-align: left;
    vertical-align: middle;
}

.fancybox-slide--image .fancybox-content {
    animation-timing-function: cubic-bezier(.5, 0, .14, 1);
    -webkit-backface-visibility: hidden;
    background: transparent;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    left: 0;
    max-width: none;
    overflow: visible;
    padding: 0;
    position: absolute;
    top: 0;
    -ms-transform-origin: top left;
    transform-origin: top left;
    transition-property: transform, opacity;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 99995;
}

.fancybox-can-zoomOut .fancybox-content {
    cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
    cursor: zoom-in;
}

.fancybox-can-swipe .fancybox-content, .fancybox-can-pan .fancybox-content {
    cursor: -webkit-grab;
    cursor: grab;
}

.fancybox-is-grabbing .fancybox-content {
    cursor: -webkit-grabbing;
    cursor: grabbing;
}

.fancybox-container [data-selectable='true'] {
    cursor: text;
}

.fancybox-image, .fancybox-spaceball {
    background: transparent;
    border: 0;
    height: 100%;
    left: 0;
    margin: 0;
    max-height: none;
    max-width: none;
    padding: 0;
    position: absolute;
    top: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 100%;
}

.fancybox-spaceball {
    z-index: 1;
}

.fancybox-slide--video .fancybox-content, .fancybox-slide--map .fancybox-content, .fancybox-slide--pdf .fancybox-content, .fancybox-slide--iframe .fancybox-content {
    height: 100%;
    overflow: visible;
    padding: 0;
    width: 100%;
}

.fancybox-slide--video .fancybox-content {
    background: #000;
}

.fancybox-slide--map .fancybox-content {
    background: #e5e3df;
}

.fancybox-slide--iframe .fancybox-content {
    background: #fff;
}

.fancybox-video, .fancybox-iframe {
    background: transparent;
    border: 0;
    display: block;
    height: 100%;
    margin: 0;
    overflow: hidden;
    padding: 0;
    width: 100%;
}

/* Fix iOS */
.fancybox-iframe {
    left: 0;
    position: absolute;
    top: 0;
}

.fancybox-error {
    background: #fff;
    cursor: default;
    max-width: 400px;
    padding: 40px;
    width: 100%;
}

.fancybox-error p {
    color: #444;
    font-size: 16px;
    line-height: 20px;
    margin: 0;
    padding: 0;
}

/* Buttons */
.fancybox-button {
    background: var(--red-color);
    color: #fff;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    cursor: pointer;
    display: inline-block;
    height: 44px;
    margin: 0;
    padding: 10px;
    position: relative;
    transition: color .2s;
    vertical-align: top;
    visibility: inherit;
    width: 44px;
    transition: color 0.3s ease-in-out, background 0.3s ease-in-out;
}

.fancybox-button, .fancybox-button:visited, .fancybox-button:link {
    color: #ccc;
}

.fancybox-button:hover {
    color: #fff;
    background: var(--red-dark-color);
}

.fancybox-button:focus {
    outline: none;
}

.fancybox-button.fancybox-focus {
    outline: 1px dotted;
}

.fancybox-button[disabled], .fancybox-button[disabled]:hover {
    color: #888;
    cursor: default;
    outline: none;
}

/* Fix IE11 */
.fancybox-button div {
    height: 100%;
}

.fancybox-button svg {
    display: block;
    height: 100%;
    overflow: visible;
    position: relative;
    width: 100%;
}

.fancybox-button svg path {
    fill: currentColor;
    stroke-width: 0;
}

.fancybox-button--play svg:nth-child(2), .fancybox-button--fsenter svg:nth-child(2) {
    display: none;
}

.fancybox-button--pause svg:nth-child(1), .fancybox-button--fsexit svg:nth-child(1) {
    display: none;
}

.fancybox-progress {
    background: #ff5268;
    height: 2px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -ms-transform-origin: 0;
    transform-origin: 0;
    transition-property: transform;
    transition-timing-function: linear;
    z-index: 99998;
}

/* Close button on the top right corner of html content */
.fancybox-close-small {
    background: transparent;
    border: 0;
    border-radius: 0;
    color: #ccc;
    cursor: pointer;
    opacity: .8;
    padding: 8px;
    position: absolute;
    right: -12px;
    top: -44px;
    z-index: 401;
}

.fancybox-close-small:hover {
    color: #fff;
    opacity: 1;
}

.fancybox-slide--html .fancybox-close-small {
    color: currentColor;
    padding: 10px;
    right: 0;
    top: 0;
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
    overflow: hidden;
}

.fancybox-is-scaling .fancybox-close-small, .fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
    display: none;
}

/* Navigation arrows */
.fancybox-navigation .fancybox-button {
    background-clip: content-box;
    height: 100px;
    opacity: 0;
    position: absolute;
    top: calc(50% - 50px);
    width: 70px;
}

.fancybox-navigation .fancybox-button div {
    padding: 7px;
}

.fancybox-navigation .fancybox-button--arrow_left {
    left: 0;
    left: env(safe-area-inset-left);
    padding: 31px 26px 31px 6px;
}

.fancybox-navigation .fancybox-button--arrow_right {
    padding: 31px 6px 31px 26px;
    right: 0;
    right: env(safe-area-inset-right);
}

/* Caption */
.fancybox-caption {
    background: linear-gradient(to top, rgba(0, 0, 0, .85) 0%, rgba(0, 0, 0, .3) 50%, rgba(0, 0, 0, .15) 65%, rgba(0, 0, 0, .075) 75.5%, rgba(0, 0, 0, .037) 82.85%, rgba(0, 0, 0, .019) 88%, rgba(0, 0, 0, 0) 100%);
    bottom: 0;
    color: #eee;
    font-size: 14px;
    font-weight: 400;
    left: 0;
    line-height: 1.5;
    padding: 75px 44px 25px 44px;
    pointer-events: none;
    right: 0;
    text-align: center;
    z-index: 99996;
}

@supports (padding:max(0px)) {
    .fancybox-caption {
        padding: 75px max(44px, env(safe-area-inset-right)) max(25px, env(safe-area-inset-bottom)) max(44px, env(safe-area-inset-left));
    }

}

.fancybox-caption--separate {
    margin-top: -50px;
}

.fancybox-caption__body {
    max-height: 50vh;
    overflow: auto;
    pointer-events: all;
}

.fancybox-caption a, .fancybox-caption a:link, .fancybox-caption a:visited {
    color: #ccc;
    text-decoration: none;
}

.fancybox-caption a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Loading indicator */
.fancybox-loading {
    animation: fancybox-rotate 1s linear infinite;
    background: transparent;
    border: 4px solid #888;
    border-bottom-color: #fff;
    border-radius: 50%;
    height: 50px;
    left: 50%;
    margin: -25px 0 0 -25px;
    opacity: .7;
    padding: 0;
    position: absolute;
    top: 50%;
    width: 50px;
    z-index: 99999;
}

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

}

/* Transition effects */
.fancybox-animated {
    transition-timing-function: cubic-bezier(0, 0, .25, 1);
}

/* transitionEffect: slide */
.fancybox-fx-slide.fancybox-slide--previous {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--next {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--current {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* transitionEffect: fade */
.fancybox-fx-fade.fancybox-slide--previous, .fancybox-fx-fade.fancybox-slide--next {
    opacity: 0;
    transition-timing-function: cubic-bezier(.19, 1, .22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
    opacity: 1;
}

/* transitionEffect: zoom-in-out */
.fancybox-fx-zoom-in-out.fancybox-slide--previous {
    opacity: 0;
    transform: scale3d(1.5, 1.5, 1.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
    opacity: 0;
    transform: scale3d(.5, .5, .5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
    opacity: 1;
    transform: scale3d(1, 1, 1);
}

/* transitionEffect: rotate */
.fancybox-fx-rotate.fancybox-slide--previous {
    opacity: 0;
    -ms-transform: rotate(-360deg);
    transform: rotate(-360deg);
}

.fancybox-fx-rotate.fancybox-slide--next {
    opacity: 0;
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}

.fancybox-fx-rotate.fancybox-slide--current {
    opacity: 1;
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}

/* transitionEffect: circular */
.fancybox-fx-circular.fancybox-slide--previous {
    opacity: 0;
    transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--next {
    opacity: 0;
    transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--current {
    opacity: 1;
    transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
}

/* transitionEffect: tube */
.fancybox-fx-tube.fancybox-slide--previous {
    transform: translate3d(-100%, 0, 0) scale(.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
    transform: translate3d(100%, 0, 0) scale(.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
    transform: translate3d(0, 0, 0) scale(1);
}

/* Styling for Small-Screen Devices */
@media all and (max-height:576px) {
    .fancybox-slide {
        padding-left: 6px;
        padding-right: 6px;
    }

    .fancybox-slide--image {
        padding: 6px 0;
    }

    .fancybox-close-small {
        right: -6px;
    }

    .fancybox-slide--image .fancybox-close-small {
        background: #4e4e4e;
        color: #f2f4f6;
        height: 36px;
        opacity: 1;
        padding: 6px;
        right: 0;
        top: 0;
        width: 36px;
    }

    .fancybox-caption {
        padding-left: 12px;
        padding-right: 12px;
    }

    @supports (padding:max(0px)) {
        .fancybox-caption {
            padding-left: max(12px, env(safe-area-inset-left));
            padding-right: max(12px, env(safe-area-inset-right));
        }

    }

}

/* Share */
.fancybox-share {
    background: #f4f4f4;
    border-radius: 3px;
    max-width: 90%;
    padding: 30px;
    text-align: center;
}

.fancybox-share h1 {
    color: #222;
    font-size: 35px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.fancybox-share p {
    margin: 0;
    padding: 0;
}

.fancybox-share__button {
    border: 0;
    border-radius: 3px;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    line-height: 40px;
    margin: 0 5px 10px 5px;
    min-width: 130px;
    padding: 0 15px;
    text-decoration: none;
    transition: all .2s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
}

.fancybox-share__button:visited, .fancybox-share__button:link {
    color: #fff;
}

.fancybox-share__button:hover {
    text-decoration: none;
}

.fancybox-share__button--fb {
    background: #3b5998;
}

.fancybox-share__button--fb:hover {
    background: #344e86;
}

.fancybox-share__button--pt {
    background: #bd081d;
}

.fancybox-share__button--pt:hover {
    background: #aa0719;
}

.fancybox-share__button--tw {
    background: #1da1f2;
}

.fancybox-share__button--tw:hover {
    background: #0d95e8;
}

.fancybox-share__button svg {
    height: 25px;
    margin-right: 7px;
    position: relative;
    top: -1px;
    vertical-align: middle;
    width: 25px;
}

.fancybox-share__button svg path {
    fill: #fff;
}

.fancybox-share__input {
    background: transparent;
    border: 0;
    border-bottom: 1px solid #d7d7d7;
    border-radius: 0;
    color: #5d5b5b;
    font-size: 14px;
    margin: 10px 0 0 0;
    outline: none;
    padding: 10px 15px;
    width: 100%;
}

/* Thumbs */
.fancybox-thumbs {
    background: #ddd;
    bottom: 0;
    display: none;
    margin: 0;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    padding: 2px 2px 4px 2px;
    position: absolute;
    right: 0;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    top: 0;
    width: 212px;
    z-index: 99995;
}

.fancybox-thumbs-x {
    overflow-x: auto;
    overflow-y: hidden;
}

.fancybox-show-thumbs .fancybox-thumbs {
    display: block;
}

.fancybox-show-thumbs .fancybox-inner {
    right: 212px;
}

.fancybox-thumbs__list {
    font-size: 0;
    height: 100%;
    list-style: none;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0;
    position: absolute;
    position: relative;
    white-space: nowrap;
    width: 100%;
}

.fancybox-thumbs-x .fancybox-thumbs__list {
    overflow: hidden;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
    width: 7px;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
    background: #2a2a2a;
    border-radius: 10px;
}

.fancybox-thumbs__list a {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background-color: rgba(0, 0, 0, .1);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
    float: left;
    height: 75px;
    margin: 2px;
    max-height: calc(100% - 8px);
    max-width: calc(50% - 4px);
    outline: none;
    overflow: hidden;
    padding: 0;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    width: 100px;
}

.fancybox-thumbs__list a::before {
    border: 6px solid #ff5268;
    bottom: 0;
    content: '';
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: all .2s cubic-bezier(.25, .46, .45, .94);
    z-index: 99991;
}

.fancybox-thumbs__list a:focus::before {
    opacity: .5;
}

.fancybox-thumbs__list a.fancybox-thumbs-active::before {
    opacity: 1;
}

/* Styling for Small-Screen Devices */
@media all and (max-width:576px) {
    .fancybox-thumbs {
        width: 110px;
    }

    .fancybox-show-thumbs .fancybox-inner {
        right: 110px;
    }

    .fancybox-thumbs__list a {
        max-width: calc(100% - 10px);
    }

}

/* Make subsequent text/email inputs and buttons span the full grid */
#support-form input[type='text'],
#support-form input[type='email'],
#support-form input[type='password'],
#support-form input[type='search'],
#support-form textarea {
    grid-column: 1 / -1;
}

#support-form textarea {
    resize: vertical;
    min-height: 120px;
    font-family: 'Inter', Helvetica, Arial, sans-serif;
}