@font-face {
  font-family: "Linotype Regular";
  src: url("../FONTS/LinotypeUnivers-420Cn.woff");
}
@font-face {
  font-family: "Linotype Italic";
  src: url("../FONTS/LinotypeUnivers-521CnMdIt.woff");
}
@font-face {
  font-family: "Linotype Heavy";
  src: url("../FONTS/LinotypeUnivers-720CnHeavy.ttf");
}
@font-face {
  font-family: "Linotype Bold";
  src: url("../FONTS/LinotypeUnivers-820CnBlack.woff");
}
@font-face {
  font-family: "Linotype Bolder";
  src: url("../FONTS/LinotypeUnivers-920CnXBlack.woff");
}
:root {
  --primary: #fff;
  --primary-alt: #F7F4EF;
  --secondary: #000;
  --tertiary: #20a1b0;
  --accent: #b71d1c;
  --pink: #ba0070;
  --orange: #d55b15;
  --xl: 140px;
  --l: 70px;
  --m: 40px;
  --s: 25px;
  --xs: 15px;
}
@media (max-width: 600px) {
  :root {
    --xl: 70px;
    --l: 35px;
    --m: 20px;
    --s: 15px;
    --xs: 5px;
  }
}
:root {
  --gorillaz-font: "Balboa", sans-serif;
  --hok-font: "Roboto", sans-serif;
  --linotype: "Linotype Regular";
  --linotype-italic: "Linotype Italic";
  --linotype-heavy: "Linotype Heavy";
  --linotype-bold: "Linotype Bold";
  --linotype-bolder: "Linotype Bolder";
}

body {
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
body::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  min-height: 100vh;
  background-image: url("../IMG/kong-background-large.webp");
  background-size: cover;
  background-size: 150vmax;
  background-position: 50% 80%;
  background-repeat: no-repeat;
  z-index: 0;
  opacity: 0.7;
}
body::after {
  content: "";
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  min-height: 100vh;
  z-index: 1;
  background-color: black;
  opacity: 0.2;
  pointer-events: none;
}

header {
  position: relative;
  padding: var(--l) var(--m);
}
header .kong-studios {
  width: 30%;
  max-width: 300px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 1400px) {
  header .kong-studios {
    max-width: 250px;
  }
}
@media (max-width: 1150px) {
  header .kong-studios {
    max-width: 175px;
  }
}
@media (max-width: 825px) {
  header {
    padding: var(--m);
  }
  header .kong-studios {
    position: static;
    transform: unset;
    max-width: 100px;
    margin-left: calc(var(--xs) / 2);
    margin-right: auto;
  }
}
@media (max-width: 600px) {
  header .kong-studios {
    position: static;
    transform: unset;
    max-width: 100px;
    margin-left: var(--xs);
  }
}
@media (max-width: 500px) {
  header .kong-studios {
    display: none;
  }
}
@media (max-width: 440px) {
  header {
    gap: var(--xs);
  }
  header .kong-studios {
    display: block;
    width: 80%;
    max-width: 140px;
    margin: 0px;
    margin-bottom: var(--s);
  }
}

main {
  position: relative;
  z-index: 2;
  margin-bottom: auto;
  padding: 0px var(--m);
}
main .tabs-container {
  width: 100%;
  margin: 0px auto;
  padding-top: var(--m);
  padding-bottom: var(--xl);
}
main .tabs-container .tab {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin: 0px auto;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: var(--s);
  display: none;
}
main .tabs-container .tab.active {
  display: flex;
}
main .tabs-container .tab .section {
  width: 100%;
  height: auto;
}
main .tabs-container .tab .section .heading,
main .tabs-container .tab .section .subheading,
main .tabs-container .tab .section .body {
  font-family: var(--gorillaz-font);
}
main .tabs-container .tab .section .heading a,
main .tabs-container .tab .section .subheading a,
main .tabs-container .tab .section .body a {
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  font-weight: inherit;
  font-family: inherit;
  text-decoration: underline;
  transition: color 0.3s;
}
main .tabs-container .tab .section .heading a:hover,
main .tabs-container .tab .section .subheading a:hover,
main .tabs-container .tab .section .body a:hover {
  color: var(--orange);
}
main .tabs-container .tab .section .heading,
main .tabs-container .tab .section .subheading {
  color: var(--primary);
  line-height: 1.1em;
  font-weight: 900;
  text-transform: uppercase;
}
main .tabs-container .tab .section .heading {
  font-size: 38px;
}
@media (max-width: 768px) {
  main .tabs-container .tab .section .heading {
    font-size: 32px;
  }
}
main .tabs-container .tab .section .subheading {
  font-size: 24px;
}
@media (max-width: 768px) {
  main .tabs-container .tab .section .subheading {
    font-size: 20px;
  }
}
main .tabs-container .tab .section .body {
  font-size: 19px;
  line-height: 1.25em;
  color: var(--primary-alt);
  font-weight: 500;
}
@media (max-width: 768px) {
  main .tabs-container .tab .section .body {
    font-size: 16px;
  }
}
main .tabs-container .tab .section .body.small-body {
  font-size: 0.5em;
}
main .tabs-container .tab .section .body p,
main .tabs-container .tab .section .body ul,
main .tabs-container .tab .section .body ol,
main .tabs-container .tab .section .body li,
main .tabs-container .tab .section .body a {
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
  color: inherit;
  font-weight: inherit;
}
main .tabs-container .tab .section ol.body,
main .tabs-container .tab .section ul.body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.75em;
}
main .tabs-container .tab .section ol.body li,
main .tabs-container .tab .section ul.body li {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
}
main .tabs-container .tab .section .button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--s);
  flex-wrap: wrap;
}
main .tabs-container .tab .section .submit-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--s);
  margin-top: var(--s);
}
main .tabs-container .tab .section .button,
main .tabs-container .tab .section .button-alt,
main .tabs-container .tab .section .link {
  position: relative;
  font-family: var(--gorillaz-font);
  font-size: 16px;
  font-weight: 900;
  line-height: 1em;
  padding: 0.65em 1.3em;
  min-width: 13.5em;
  text-align: center;
  text-transform: uppercase;
  border: none;
  border-radius: 3em;
  opacity: 1;
  transition: color 0.3s, background-color 0.3s, opacity 0.15s;
  cursor: pointer;
}
main .tabs-container .tab .section .button.loading,
main .tabs-container .tab .section .button-alt.loading,
main .tabs-container .tab .section .link.loading {
  opacity: 0.85;
  pointer-events: none;
}
main .tabs-container .tab .section .button.loading::after,
main .tabs-container .tab .section .button-alt.loading::after,
main .tabs-container .tab .section .link.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.6em;
  translate: 0% -50%;
  width: 1em;
  height: 1em;
  border: solid 0.2em;
  border-top-color: transparent !important;
  border-radius: 100%;
  animation: loading 1s linear infinite;
}
main .tabs-container .tab .section .button {
  background-color: var(--orange);
  color: var(--primary);
}
main .tabs-container .tab .section .button:hover {
  background-color: var(--primary);
  color: var(--secondary);
}
main .tabs-container .tab .section .button.loading {
  background-color: var(--orange) !important;
  color: var(--primary) !important;
}
main .tabs-container .tab .section .button.loading::after {
  border-color: var(--primary);
}
main .tabs-container .tab .section .button-alt {
  background-color: var(--primary);
  color: var(--secondary);
}
main .tabs-container .tab .section .button-alt:hover {
  background-color: var(--orange);
  color: var(--primary);
}
main .tabs-container .tab .section .button-alt.loading {
  background-color: var(--primary) !important;
  color: var(--secondary) !important;
}
main .tabs-container .tab .section .button-alt.loading::after {
  border-color: var(--secondary);
}
main .tabs-container .tab .section .link {
  position: relative;
  width: max-content;
  min-width: unset;
  font-size: 16px;
  font-weight: 900;
  line-height: 1em;
  text-align: center;
  color: var(--primary);
  border: none;
  padding: 0px;
  background-color: transparent;
  opacity: 1;
  transition: opacity 0.3s;
  cursor: pointer;
}
main .tabs-container .tab .section .link:hover {
  opacity: 0.7;
}
main .tabs-container .tab .section .link.loading::after {
  right: unset;
  left: calc(100% + 0.75em);
}
main .tabs-container .tab .section form {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: var(--s);
}
main .tabs-container .tab .section form label {
  width: 100%;
  height: auto;
  font-family: var(--gorillaz-font);
  color: var(--primary);
  line-height: 1em;
  font-weight: 500;
  font-size: 20px;
  text-align: left;
}
main .tabs-container .tab .section form label span {
  display: inline-block;
  font-family: inherit;
  color: inherit;
  line-height: inherit;
  font-weight: inherit;
  font-size: inherit;
  text-align: inherit;
  margin-bottom: 0.5em;
}
main .tabs-container .tab .section form label span i {
  display: block;
  font-size: 0.7em;
  margin-top: 0.25em;
  font-family: inherit;
  color: inherit;
  line-height: inherit;
  font-weight: inherit;
  text-align: inherit;
  font-style: normal;
}
main .tabs-container .tab .section form label span i.required {
  display: inline;
  font-size: 1em;
  margin-top: 0px;
  margin-left: 0.2em;
  color: var(--accent);
}
main .tabs-container .tab .section form label input,
main .tabs-container .tab .section form label select {
  width: 100%;
  font-family: inherit;
  color: inherit;
  line-height: inherit;
  font-weight: inherit;
  font-size: inherit;
  text-align: inherit;
  background-color: transparent;
  margin: 0px;
  padding: 0.5em 1em;
  border: solid 2px color-mix(in hsl, var(--primary) 80%, black 20%);
  outline: none;
  transition: border 0.3s;
}
main .tabs-container .tab .section form label input:focus,
main .tabs-container .tab .section form label select:focus {
  border-color: var(--primary);
}
main .tabs-container .tab .section .messages {
  padding-top: var(--s);
}
main .tabs-container .tab .section .messages .subheading {
  text-align: center;
  margin-bottom: 0.5em;
}
main .tabs-container .tab .section .messages .subheading:last-of-type {
  margin-bottom: 0px;
}
main .tabs-container .tab .section .messages .body {
  color: var(--orange);
  text-align: center;
  margin-bottom: 0.25em;
}
main .tabs-container .tab .section .messages .body:last-of-type {
  margin-bottom: 0px;
}
main .tabs-container .tab .section .messages.success .body {
  color: var(--primary);
}
main .tabs-container .tab#welcome {
  max-width: 900px;
}
@media (max-width: 768px) {
  main .tabs-container .tab#welcome {
    max-width: 350px;
  }
}
main .tabs-container .tab#welcome #column-layout {
  display: grid;
  grid-template-columns: 1fr 385px;
  gap: var(--m);
  margin-bottom: var(--m);
}
main .tabs-container .tab#welcome #column-layout .inner-tab {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: var(--s);
}
main .tabs-container .tab#welcome #column-layout .inner-tab .kong-card-mobile {
  display: none;
}
main .tabs-container .tab#welcome #column-layout .inner-tab .kong-card {
  position: relative;
  width: 100%;
  max-width: 336px;
  margin-left: auto;
  height: auto;
}
@media (max-width: 956px) {
  main .tabs-container .tab#welcome #column-layout .inner-tab .kong-card {
    max-width: 372px;
  }
}
@media (max-width: 875px) {
  main .tabs-container .tab#welcome #column-layout .inner-tab .kong-card {
    max-width: unset;
    margin: 0px;
  }
}
main .tabs-container .tab#welcome #column-layout .inner-tab .kong-card .title {
  position: relative;
  z-index: 3;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: var(--xs);
  gap: var(--xs);
  background-color: black;
}
main .tabs-container .tab#welcome #column-layout .inner-tab .kong-card .title img {
  width: 20%;
  height: auto;
}
main .tabs-container .tab#welcome #column-layout .inner-tab .kong-card .title p {
  font-size: 20px;
  line-height: 1em;
}
main .tabs-container .tab#welcome #column-layout .inner-tab .kong-card .kong-card-video {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 336/420;
  object-fit: cover;
  object-position: center;
  background-image: url("../IMG/kong-card-placeholder.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
main .tabs-container .tab#welcome #column-layout .inner-tab ul.body {
  list-style-type: disc;
  padding-left: 0.85em;
}
main .tabs-container .tab#welcome #column-layout .inner-tab .button-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
main .tabs-container .tab#welcome #column-layout .inner-tab .button-container .button,
main .tabs-container .tab#welcome #column-layout .inner-tab .button-container .button-alt {
  width: 100%;
  min-width: unset;
}
@media (max-width: 875px) {
  main .tabs-container .tab#welcome #column-layout .inner-tab .button-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 15px var(--xs);
  }
  main .tabs-container .tab#welcome #column-layout .inner-tab .button-container .button,
  main .tabs-container .tab#welcome #column-layout .inner-tab .button-container .button-alt {
    width: max-content;
    min-width: 13.5em;
  }
}
@media (max-width: 768px) {
  main .tabs-container .tab#welcome #column-layout {
    grid-template-columns: 1fr;
    place-items: center;
  }
  main .tabs-container .tab#welcome #column-layout .inner-tab {
    margin-bottom: var(--l);
  }
  main .tabs-container .tab#welcome #column-layout .inner-tab:nth-of-type(2) {
    display: none;
  }
  main .tabs-container .tab#welcome #column-layout .inner-tab .kong-card-mobile {
    display: block;
    max-width: 300px;
    margin: 0px auto;
  }
  main .tabs-container .tab#welcome #column-layout .inner-tab .heading {
    text-align: center;
  }
  main .tabs-container .tab#welcome #column-layout .inner-tab .subheading {
    text-align: center;
  }
  main .tabs-container .tab#welcome #column-layout .inner-tab .body {
    text-align: center;
  }
  main .tabs-container .tab#welcome #column-layout .inner-tab .benefits-heading,
  main .tabs-container .tab#welcome #column-layout .inner-tab .body li,
  main .tabs-container .tab#welcome #column-layout .inner-tab .benefits-body {
    text-align: left;
  }
  main .tabs-container .tab#welcome #column-layout .inner-tab .button-container {
    align-items: center;
  }
}
main .tabs-container .tab#welcome .section .button-container {
  justify-content: flex-start;
}
main .tabs-container .tab#welcome .section.us-can-tour {
  margin-top: var(--l);
}
main .tabs-container .tab#welcome .section.us-can-tour-body .body {
  margin-bottom: 0.5em;
  line-height: 1.25em;
}
main .tabs-container .tab#welcome .section.us-can-tour-body .body:last-of-type {
  margin-bottom: 0px;
}
main .tabs-container .tab#welcome .section .faqs {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
}
main .tabs-container .tab#welcome .section .faqs .faq {
  width: 100%;
  height: auto;
}
main .tabs-container .tab#welcome .section .faqs .faq .question {
  display: block;
  margin-bottom: 0.5em;
  font-weight: 900;
}
main .tabs-container .tab#welcome .section .faqs .faq .answer {
  line-height: 1.25em;
}
main .tabs-container .tab#welcome .section .faqs .faq .answer ul {
  list-style-type: disc;
  padding-left: 0.85em;
}
main .tabs-container .tab#welcome .section .faqs .faq .answer ol {
  padding-left: 0.8em;
}
main .tabs-container .tab#register-email {
  max-width: 400px;
}
main .tabs-container .tab#register-email .section .heading,
main .tabs-container .tab#register-email .section .subheading,
main .tabs-container .tab#register-email .section .body {
  text-align: center;
}
main .tabs-container .tab#register-email .section #age {
  display: grid;
  place-items: center;
  grid-template-columns: 3fr 4fr 3fr;
  gap: 15px;
}
@media (max-width: 500px) {
  main .tabs-container .tab#register-email .section #age {
    grid-template-columns: 2fr 4fr 3fr;
    gap: 10px;
  }
}
main .tabs-container .tab#register-email .section #age #day,
main .tabs-container .tab#register-email .section #age #month,
main .tabs-container .tab#register-email .section #age #year {
  text-align: center;
  padding: 0.5em;
  height: 2.25em;
}
main .tabs-container .tab#sign-up .section .heading,
main .tabs-container .tab#sign-up .section .subheading,
main .tabs-container .tab#sign-up .section .body {
  text-align: center;
}
main .tabs-container .tab#user-details {
  max-width: 400px;
}
main .tabs-container .tab#user-details .section .heading,
main .tabs-container .tab#user-details .section .subheading,
main .tabs-container .tab#user-details .section .body {
  text-align: center;
}
main .tabs-container .tab#login {
  max-width: 400px;
}
main .tabs-container .tab#login .section .heading,
main .tabs-container .tab#login .section .subheading,
main .tabs-container .tab#login .section .body {
  text-align: center;
}
main .tabs-container .tab#login .section .button-container {
  justify-content: center;
}
main .tabs-container .tab#reset-password-request {
  max-width: 400px;
}
main .tabs-container .tab#reset-password-request .section .button-container {
  justify-content: center;
}
main .tabs-container .tab#password-reset {
  max-width: 400px;
}
main .tabs-container .tab#payment {
  max-width: 600px;
}
main .tabs-container .tab#payment .section .heading,
main .tabs-container .tab#payment .section .subheading,
main .tabs-container .tab#payment .section .body {
  text-align: center;
}
main .tabs-container .tab#payment .section .heading,
main .tabs-container .tab#payment .section .subheading {
  margin-bottom: 0.25em;
}
main .tabs-container .tab#payment .section ul.body {
  list-style-type: disc;
  padding-left: 0.85em;
  max-width: 475px;
  text-align: left;
  margin: 0px auto;
}
main .tabs-container .tab#payment .section .log-out {
  margin-top: var(--m);
}
main .tabs-container .tab#payment .benefits {
  margin-top: var(--s);
}
main .tabs-container .tab#payment #stripe {
  background-color: var(--primary);
  padding: var(--s);
  border-radius: var(--s);
  opacity: 0;
  pointer-events: none;
}
main .tabs-container .tab#payment #stripe #payment-form {
  width: 100%;
  min-height: 340px;
}
main .tabs-container .tab#payment #stripe #payment-form #payment-details {
  width: 100%;
  display: grid;
  place-items: center;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
main .tabs-container .tab#payment #stripe #payment-form #payment-details #name-payment,
main .tabs-container .tab#payment #stripe #payment-form #payment-details #email-payment,
main .tabs-container .tab#payment #stripe #payment-form #payment-details .location {
  width: 100%;
  background-color: transparent;
  border: solid 1px #e6e6e6;
  border-radius: 5px;
  padding: 8px 10px;
  color: #757575;
}
main .tabs-container .tab#payment #stripe #payment-form #payment-details .location {
  grid-column: span 2;
}
main .tabs-container .tab#payment #stripe #payment-form #payment-details #payment-element {
  width: 100%;
  grid-column: span 2;
  background-color: transparent;
}
main .tabs-container .tab#payment #stripe #payment-form #payment-details #terms-agreement-label {
  width: 100%;
  grid-column: span 2;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  margin-top: 10px;
  padding: 0px 16px;
}
main .tabs-container .tab#payment #stripe #payment-form #payment-details #terms-agreement-label input {
  width: auto;
  margin-top: 2px;
}
main .tabs-container .tab#payment #stripe #payment-form #payment-details #terms-agreement-label span {
  font-size: 12px;
  color: var(--secondary);
  font-weight: 500;
  text-align: left;
}
@media (max-width: 500px) {
  main .tabs-container .tab#payment #stripe #payment-form #payment-details {
    grid-template-columns: 1fr;
  }
  main .tabs-container .tab#payment #stripe #payment-form #payment-details #payment-element,
  main .tabs-container .tab#payment #stripe #payment-form #payment-details .location,
  main .tabs-container .tab#payment #stripe #payment-form #payment-details #terms-agreement-label {
    grid-column: span 1;
  }
}
main .tabs-container .tab#payment #stripe #payment-form #submit {
  margin-top: auto;
}
main .tabs-container .tab#payment #stripe #payment-form #submit:hover {
  background-color: var(--secondary);
  color: var(--primary);
}
main .tabs-container .tab#payment #stripe #payment-form #payment-message {
  text-align: center;
  word-break: break-word;
  color: var(--secondary);
}
main .tabs-container .tab#payment #stripe.loading {
  position: relative;
}
main .tabs-container .tab#payment #stripe.loading::before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 7%;
  height: auto;
  aspect-ratio: 1;
  border: solid 5px var(--orange);
  border-radius: 100%;
  border-top-color: transparent;
  animation: loading 1s linear infinite;
}
main .tabs-container .tab#payment #stripe.loading #payment-form {
  opacity: 0;
  pointer-events: none;
}
main .tabs-container .tab#payment.active #stripe {
  animation: paymentEntrance 0.3s ease-out 0.15s forwards;
}
@keyframes paymentEntrance {
  0% {
    opacity: 0;
    transform: translateY(15%);
    pointer-events: none;
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
    pointer-events: all;
  }
}
main .tabs-container .tab#kong-card {
  max-width: 500px;
}
main .tabs-container .tab#kong-card .just-paid {
  margin-bottom: var(--s);
  display: none;
}
main .tabs-container .tab#kong-card .just-paid .heading {
  margin-bottom: 0.5em;
}
main .tabs-container .tab#kong-card .already-subscribed {
  display: block;
}
main .tabs-container .tab#kong-card.new-subscription .just-paid {
  display: block;
}
main .tabs-container .tab#kong-card.new-subscription .already-subscribed {
  display: none;
}
main .tabs-container .tab#kong-card .heading,
main .tabs-container .tab#kong-card .subheading {
  text-align: center;
}
main .tabs-container .tab#kong-card ol {
  padding-left: 0.8em;
}
main .tabs-container .tab#kong-card .button-container {
  margin-top: var(--s);
  justify-content: center;
}
@media (max-width: 490px) {
  main .tabs-container .tab#kong-card .button-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

@keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
footer {
  position: relative;
  z-index: 2;
}/*# sourceMappingURL=kong-card.css.map */