html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
    -webkit-overflow-scrolling: touch;
}

body {
    background-color: #fff;
    color: #0a0a0a;
    font-family: "Review", "Helvetica Neue", sans-serif;
    font-size: 15px;
    margin: 0;
    padding: 0;
}

body.theme-dark {
    background-color: #0A0A0A;
    color: #fff;
}

body.no-scroll {
  overflow: hidden;
}

/* Header */

header {
    height: 93px;
    width: 100%;
    padding: 0 64px;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    border-bottom: 1px solid #0a0a0a;
    background-color: #fff;
    z-index: 1;
}

.theme-dark header {
    border: 0;
    background-color: #0A0A0A;
}

header > .inner {
    height: 100%;
    width: 100%;
    max-width: 1547px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

header .inner a.logo-container {
    display: block;
    height: 51px;
    max-width: 57px;
    width: 100%;
}

header .inner .logo {
    background-image: url("/assets/images/logo-small-black.svg");
    background-repeat: no-repeat;
    height: 51px;
    max-width: 57px;
    width: 100%;
    z-index: 3;
    position: absolute;
}

.theme-dark header .inner .logo {
    background-image: url("/assets/images/logo-small-white.svg");
}

header .inner nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    width: 100%;
    margin-left: 40px;
}

header .inner nav > ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    list-style: none;
    margin-right: auto;
}

header .inner nav > ul li a {
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    margin-right: 24px;
    color: #0a0a0a;
}

.theme-dark header .inner nav > ul li a {
    color: #fff;
}

header .inner nav > ul li a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
}

header .inner nav a.btn, 
footer .inner .btn, 
main a.btn, 
main button.btn {
    text-decoration: none;
    color: #fff;
    background-color: #0A0A0A;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 24px 1px 24px;
    width: 195px;
    box-sizing: border-box;
    font-weight: 500;
    border: 2px solid #fff;
    border-radius: 100px;
    position: relative;
    z-index: 2;
}

main button.btn:disabled {
    background-color: #161616;
    color: #0a0a0a;
    border-color: #161616;
    opacity: 1;
}

main a.btn:hover {
    color: #0a0a0a;
    background-color: #fff;
}

header .inner nav a.btn .arrow,
footer .inner .btn .arrow, 
main a.btn .arrow {
    height: 15px;
    width: 16px;
    background-image: url("/assets/images/icons/nav-arrow-right-white.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    margin: 0px 0 0 6px;
    will-change: background-image;
}

.theme-dark header .inner nav a.btn {
    background-color: #fff;
    color: #0A0A0A;
}

.theme-dark header .inner nav a.btn .arrow {
    background-image: url("/assets/images/icons/nav-arrow-right-black.svg");
}

.theme-dark header .inner nav a.btn:hover .arrow, 
footer .inner .btn:hover .arrow {
    background-image: url("/assets/images/icons/nav-arrow-right-black.svg");
}

/* Nav panel */
.header-nav {
  position: fixed;
  z-index: 10;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100vh - 94px);
  background: #fff;
  color: #0a0a0a;
  padding: 0px 24px;
  box-sizing: border-box;
  pointer-events: none;
    display: none;
}

.theme-dark .header-nav {
    background: #0A0A0A;
}

/* Open state */
header.nav-open .header-nav {
  display: block;
  pointer-events: auto;
}

header.nav-open .header-nav .inner{
    max-width: 1547px;
    width: 100%;
    margin: 0 auto;
}

/* Nav typography */
.nav-primary {
  list-style: none;
  padding: 0;
}

.nav-primary li {
 
}

.nav-primary a {
  font-size: 20px;
  font-weight: 500;
  color: #0a0a0a;
  text-decoration: none;
  display: block;
  padding: 20px 0;
  box-sizing: border-box;
  border-top: 2px solid #0a0a0a;
}

.theme-dark .nav-primary a {
    color: #fff;
    border-top: 2px solid #fff;
}

.nav-primary a:hover {

}

.menu-icon {
  background: none;
  border: none;
    cursor: pointer;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
  position: relative;
  margin-left: 16px;
  display: none;
}

.menu-icon .line {
  width: 30px;
  height: 3px;
  background-color: #0a0a0a;
  margin: 8px 0;
  transition: transform 100ms ease-in-out;
}

.theme-dark .menu-icon .line {
    background-color: #fff;
}

/* Transform to X */
header.nav-open .menu-icon .line-1 {
  transform: rotate(-45deg) translateY(8px);
}

header.nav-open .menu-icon .line-2 {
  transform: rotate(45deg) translateY(-8px);
}

/* Section 1 */

section.section-1 {
    margin-top: -93px;
}

section.section-1 .inner {
    position: relative;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

section.section-1 .inner .stat-wrapper {
    position: absolute;
    bottom: 0px;
    background-color: #0a0a0a;
    width: 100%;
    padding: 24px;
    box-sizing: border-box;
}

section.section-1 .inner .stat {
    font-size: 13px;
    line-height: 21px;
    letter-spacing: 0.5px;
    color: #69666C;
    max-width: 365px;
    width: 100%;
    text-align: center;
    margin: 0 auto 64px auto;
}

section.section-1 .inner .stat a {
    text-decoration: underline;
    color: #FF27B0;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    font-weight: 500;
}

section.section-1 .heading-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100svw;
}

section.section-1 .myth-label-section-1, 
.myth-quick-view .myth-label,
.myth-full-view .myth-label {
    position: absolute;
    font-family: "Review";
    color: #fff;
    margin-top: -56px;
    font-size: 13px;
    letter-spacing: 0.8px;
    font-weight: 400;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 56px;
    height: 23px;
    border: 1px solid #fff;
    border-radius: 100px;
}

section.section-1 .myth-label-section-1 {
    width: 130px;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 28px;
    position: relative;
}

section.section-1 .false {
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.8;
    font-size: 16px;
    text-align: center;
    font-family: 'Review';
    padding: 8px;
    box-sizing: border-box;
    border-radius: 100px;
    background-color: #0a0a0a;
    display: block;
    width: 100px;
    margin: 0 auto 8px auto;
}

section.section-1 .heading-container .heading {
    font-family: "Offbeat Line";
    overflow-y: hidden;
    margin-top: -104px;
}

section.section-1 .heading .char {
  display: inline-block;
  will-change: transform, opacity, color;
  transition: none; /* IMPORTANT: scroll-driven */
}

section.section-1 .heading .char.recede {
  color: #1D1B1D;
}

section.section-1 .heading-container .heading .line-1 {
    font-size: 244px;
    line-height: 0.85;
    margin-bottom: -34px;
}
section.section-1 .heading-container .heading .line-2 {
    font-size: 99px;
    line-height: 0.88;
    margin-bottom: -11px;
}
section.section-1 .heading-container .heading .line-3 {
    font-size: 92px;
    line-height: 0.88;
    margin-bottom: -10px;
}
section.section-1 .heading-container .heading .line-4 {
    font-size: 102px;
    line-height: 0.85;
}

/* Section 2 */

section.section-2 {
    background-color: #fff;
    color: #0a0a0a;
    padding: 0 64px;
    box-sizing: border-box;
}

section.section-2 .inner {
    width: 100%;
    max-width: 1547px;
    margin: 0 auto;
}

section.section-2 .upper {
    border-bottom: 1px solid #0a0a0a;
    padding: 24px 0;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

main nav button, 
button.pagination-left, 
button.pagination-right {
    border: 3px solid #0a0a0a;
    border-radius: 100%;
    height: 48px;
    width: 48px;
    background-color: #fff;
    box-sizing: border-box;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-left: 12px;
    cursor: pointer;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
}

button.pagination-left, 
button.pagination-right {
    margin: 0;
}

main nav button .arrow, 
button.pagination-left .arrow, 
button.pagination-right .arrow {
    height: 24px;
    width: 27px;
    background-image: url("/assets/images/icons/nav-arrow-right-black.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

main nav button .arrow-left, 
button.pagination-left .arrow {
    background-image: url("/assets/images/icons/nav-arrow-left-black.svg");
}

button.pagination-white {
    background-color: #0a0a0a;
    border: 3px solid #fff;
}

button.pagination-white .arrow-left {
    background-image: url("/assets/images/icons/nav-arrow-left-white.svg");
}

main nav button:disabled, 
button.pagination:disabled {
  opacity: 1;
}

section.section-2 .upper h1 {
    font-size: 36px;
    font-weight: 500;
}

section.section-2 .inner .upper a {
    text-decoration: none;
    color: #0a0a0a;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 24px 1px 24px;
    margin-top: 24px;
    width: 181px;
    box-sizing: border-box;
    font-weight: 500;
    border: 2px solid #0a0a0a;
    border-radius: 100px;
}

section.section-2 .inner .upper a:hover {
    color: #fff;
    background-color: #0a0a0a;
}

section.section-2 .inner .myths {
    padding: 72px 0 72px 0;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap; /* allow items to wrap to next row */
    gap: 16px;
    justify-content: flex-start;
}

section.section-2 .inner .myth-cat {
    flex: 0 0 calc((100% - 32px) / 3); /* 3 per row */
    padding: 0 0 32px 0;
    box-sizing: border-box;
}

section.section-2 .inner .myths .myth-cat h1 {
    font-weight: 500;
    font-size: 38px;
    font-family: "Offbeat Line";
    margin: 0 0 16px 0;
    padding: 0;
}

section.section-2 .inner .myths .myth-cat a {
    font-weight: 500;
    font-family: "Review";
    font-size: 16px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-decoration: none;
    color: #0a0a0a;
    margin: 0 0 24px 0;
}

section.section-2 .inner .myths .myth-cat a:hover {
    
}

section.section-2 .inner .myths .myth-cat a .bullet {
    margin: 0 8px 0 0;
    background-color: #0a0a0a;
    height: 6px;
    width: 6px;
    border-radius: 100px;
}

section.section-2 .inner .myths .myth-cat a.see-all {
    font-weight: 500;
    font-size: 15px;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    font-family: "Review";
    margin-top: 24px;
    
}

/* Myth category slider */

section.section-2 .myths-slider {
  overflow: hidden;
  position: relative;
}

section.section-2 .myths-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(.4,0,.2,1);
}

section.section-2 .myths-page {
  min-width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

section.section-2 .myth-cat {
  flex: 0 0 calc((100% - 32px) / 3);
}

footer {
    background-color: #0A0A0A;
    color: #fff;
    width: 100%;
    padding: 8px 64px;
    box-sizing: border-box;
    margin-top: auto;
}

footer .inner {
    width: 100%;
    max-width: 1547px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

footer .inner span {
    margin-left: 16px;
    font-size: 12px;
}

footer .inner span a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}

footer .inner .top {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 48px 0;
    box-sizing: border-box;
}

footer .inner .logo {
    background-image: url("/assets/images/logo-small-white.svg");
    background-repeat: no-repeat;
    background-size: cover;
    height: 99px;
    max-width: 110px;
    width: 100%;
    margin-right: 64px;
}

footer .inner .links {
    box-sizing: border-box;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: -8px;
}

footer .inner .btn {
    margin-left: auto;
}

footer .inner .links .column-1, 
footer .inner .links .column-2 {
    padding: 0;
    box-sizing: border-box;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.3;
    line-height: 30px;
    width: 110px;
}

footer .inner .links a {
    color: #fff;
    text-decoration: none;
    display: block;
}

footer .inner .links a:hover {
  
}

footer .inner .bottom {
    border-top: 0px solid #fff;
    padding: 40px 0;
    box-sizing: border-box;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    letter-spacing: 0.3px;
}

footer .inner .disclaimer {
    margin-left: auto;
}

footer .inner .disclaimer-copy {
    font-size: 13px;
    margin-top: 40px;
    text-align: right;
    font-weight: 500;
}

footer .inner .bottom .disclaimer a {
    text-decoration: underline;
    font-weight: 500;
    margin-left: 24px;
    color: #fff;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

footer .inner .bottom .disclaimer a:hover {

}

footer .inner .bottom h1 {
    margin: 0;
    padding: 0;
    font-weight: 500;
    font-size: 16px;
}

footer .inner .btn {
    background-color: #fff;
    color: #0A0A0A;
}

footer .inner .btn .arrow {
    background-image: url("/assets/images/icons/nav-arrow-right-black.svg");
}

/* Myth Panel Desktop */

#world {
  transform: translateX(0) scale(1);
  transition:
    transform 120ms cubic-bezier(0.2, 0, 0, 1),
    opacity 120ms linear;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.theme-dark #world {

}

span.alert.alert-verify-email {
    color: #FF27B0;
}

body.myth-opening #world {
  transform: translateX(-6vw) scale(1);
}

body.header-none #world {
    min-height: 0;
}

body.myth-open {
  overflow: hidden; /* disables page scroll */
}

body.myth-open #world {
  opacity: 0.85;
  pointer-events: none;   /* disables clicks, hovers, etc. */
  touch-action: none;     /* prevents touch scrolling on mobile/tablets */
}

#myth-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;        /* wider than before */
  max-width: 700px;   /* allow larger screens */
  height: 100vh;
  transform: translateX(100%);
  transition: transform 100ms cubic-bezier(0.2, 0, 0, 1);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  background-color: #fff;
  color: #0a0a0a;
}

body.myth-open #myth-panel {
  transform: translateX(0);
}

#myth-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999; /* just below the panel */
  background: rgba(0, 0, 0, 0.33); /* invisible, can add slight dim if desired */
  display: none; /* hidden by default */
  transition: 100ms ease-in-out;
  pointer-events: auto;
}

body.myth-open #myth-overlay {
  display: block;
}

.close-icon {
  position: fixed;
  width: 32px;       /* overall width of icon */
  height: 32px;      /* overall height of icon */
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  top: 32px;
  right: 32px;
  z-index: 1001;
}

.close-icon:hover {
  opacity: 0.5;
}

.close-icon::before,
.close-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;       /* length of each stroke */
  height: 3px;       /* thickness of stroke */
  background-color: #0a0a0a; /* stroke color */
  transform-origin: center;
  transition: transform 0.2s;
}

/* Rotate the pseudo-elements to form X */
.close-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.close-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* Quick View */

.quick-view-header {
    
}

.quick-view-header .quick-view-back {
    color: #FF27B0;
    outline: none;
    background-color: transparent;
    border: none;
    margin: 40px 24px 0 64px;
    font-family: Review;
    font-size: 14px;
    padding: 0;
    box-sizing: border-box;
    font-weight: 500;
    max-width: 66.66%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
}

.quick-view-header .quick-view-back .arrow-left {
    display: inline-block;
    width: 12px;     /* arrow size */
    height: 12px;
    position: relative;
    cursor: pointer;
    top: 1px;
    left: 2px;
}

.quick-view-header .quick-view-back .arrow-left::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 6px;
    height: 6px;
    border-left: 1px solid #FF27B0;
    border-bottom: 1px solid #FF27B0;
}

.myth-quick-view.quick-view-objection  {
    padding-top: 40px;
}

.myth-quick-view {
    padding: 72px 64px 72px 64px;
    box-sizing: border-box;
  overflow-y: auto;       /* allow vertical scrolling inside panel */
    max-height: 100vh;
  -webkit-overflow-scrolling: touch;  /* smooth scroll iOS */
  position: relative;
}

.myth-quick-view .inner {
    
}

.myth-quick-view .heading,
.myth-full-view .heading {
    font-family: "Offbeat Line";
    font-size: 38px;
    margin: 0 0 32px 0;
    line-height: 28px;
}

.myth-quick-view .heading-1 {
    
}

.myth-quick-view .heading-2,
.myth-full-view .heading-2 {
    margin: 32px 0;
}

.myth-quick-view .info {
    
}

.myth-quick-view .myth-label,
.myth-full-view .myth-laebl {
    position: static;
    margin: -16px 0 32px 0;
    color: #0a0a0a;
    border: 1px solid #0a0a0a;
}

.myth-quick-view .body,
.myth-full-view .body {
    letter-spacing: 0.3px;
    line-height: 1.6;
    box-sizing: border-box;
    font-size: 16px;
}

.myth-full-view .body {
    font-size: 18px;
}

.myth-full-view .body strong {
    font-weight: 500;
}

.myth-full-view .body h3 {
    font-weight: 500;
    font-size: 22px;
    margin: 24px 0 24px 0;
    padding: 0;
    display: block;
    line-height: 1.2;
}

.myth-full-view .body h4 {
    font-weight: 500;
    font-size: 18px;
    margin: 24px 0 24px 0;
    padding: 0;
    display: block;
    line-height: 1.2;
}

.myth-quick-view .body-intro {
    
}

.myth-quick-view .key-points {
    
}

.myth-quick-view ul, 
.myth-full-view ul {
    padding-left: 20px;
}

.myth-quick-view li, 
.myth-full-view li {
    margin-bottom: 16px;
    font-size: 16px;
}

.myth-full-view li {
    font-size: 18px;
}

.myth-full-view .divider-dashed, 
.myth-quick-view .divider-dashed {
    height: 1px;
    width: 100%;
    border-top: 1px dashed #c7c7c9;
    margin: 32px 0;
}

.myth-quick-view .divider-dashed {
    border-top: 1px dashed #333;
}

.myth-full-view label, 
.myth-quick-view label {
    font-size: 13px;
    font-weight: 500;
    margin: 0 0 16px 0;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5;
}

.myth-full-view table {
    border-collapse: collapse;
}

.myth-full-view table tr.table-heading {
    border: none;
    font-size: 16px;
    font-weight: 500;
}

.myth-full-view table tr.table-heading td {
    padding-top: 0;
    padding-bottom: 0;
}

.myth-full-view table td {
    vertical-align: top;
    padding: 24px 0;
    box-sizing: border-box;
    line-height: 1.5;
}

.myth-full-view table tr td:first-child {
    padding-right: 8px;
}

.myth-full-view table tr td:last-child {
    padding-left: 8px;
}

.myth-full-view table tr {
    border-bottom: 1px solid #0a0a0a;
}

.myth-full-view table tr:last-child {
    border-bottom: none;
}

.myth-quick-view .vertical-spacing {
    min-height: 140px;
}

.myth-quick-view .common-objections, 
.myth-full-view .common-objections {
    padding-bottom: 150px;
}

.myth-quick-view .common-objections > li a,
.myth-full-view .common-objections > li a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
}

.myth-full-view .common-objections > li a {
    text-decoration: none;
    color: #0a0a0a;
}

.myth-quick-view .common-objections > li a:hover, 
.myth-full-view .common-objections > li a:hover {
    color: #FF27B0;
}

.myth-quick-view .common-objections .btn-objection {
    border: none;
    outline: none;
    background-color: transparent;
    background: transparent;
    padding: 0;
    font-size: 16px;
    font-weight: 500;
    font-family: Review;
    color: #0a0a0a;
    cursor: pointer;
    text-align: left;
}

.myth-quick-view .common-objections .btn-objection:hover {
    color: #FF27B0;
}

.myth-quick-view strong, 
.myth-full-view strong {
    font-weight: 500;
    font-size: inherit;
}

.myth-quick-view .cite, 
.myth-full-view .cite {
    text-decoration: underline;
}

.myth-full-view a.btn-add-objection {
    width: 220px;
    border: 2px solid #0a0a0a;
    background-color: #fff;
    color: #0a0a0a;
    margin-top: 32px;
    display: flex;
    text-decoration: none;
}

.myth-full-view a.btn-add-objection:active {
    display: flex;
    text-decoration: none;
    text-underline-offset: 0;
    text-decoration-thickness: auto;
}

/* Clickable cite */
.cite-link {
  color: #0a0a0a;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 4px;
  display: inline;
  text-decoration-thickness: 2px;
  font-weight: 500;
}

.myth-full-view .cite-link {
    color: #0a0a0a;
}

.cite-link:hover {
    color: #FF27B0;
}

/* Expanded evidence block */
.cite-expand {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(0px) scale(1);
  transform-origin: top;
  transition:
    max-height 220ms cubic-bezier(0.4, 0, 0.2, 1),
    opacity 180ms ease-out,
    transform 220ms cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    margin-left: -40px;
}

.myth-full-view .cite-expand {
    margin-left: 0;
}

.cite-expand.is-open {
  max-height: 1000px;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.cite-inner {
  transform: translateY(0px) scale(1);
  opacity: 0;
  transition:
    transform 180ms ease-in-out,
    opacity 180ms ease-in-out;
  margin: 32px 0 24px 40px;
  padding: 16px 32px;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.3px;
}

.cite-inner {
    background-color: #fff;
    border: 1px solid #0a0a0a;
    color: #0a0a0a;
}

.myth-full-view .cite-inner {
  border: 1px solid #0a0a0a;
  background-color: #fff;
  color: #0a0a0a;
 }

.cite-expand.is-open .cite-inner {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.cite-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 24px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 2;
}

.cite-close::before,
.cite-close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 1px;
  background-color: #0a0a0a;
  transform-origin: center;
  transition: transform 0.2s;
}

.theme-dark .cite-close::before,
.theme-dark .cite-close::after, 
.myth-quick-view .cite-close::before, 
.myth-quick-view .cite-close::after {
  background-color: #0a0a0a;
}

.cite-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.cite-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.cite-inner .cite-heading {
    font-size: 14px;
    font-weight: 500;
    margin: 16px 0 24px 0;
    color: #0a0a0a;
}

.myth-full-view .cite-inner .cite-heading {
    color: #0a0a0a;
}

.cite-inner p {
  margin: 0 0 16px 0;
}

.cite-inner ul {
  margin: 0;
  padding-left: 16px;
}

.cite-inner li {
  margin-bottom: 16px;
}

.cite-inner a {
  color: #0a0a0a;
  text-decoration: underline;
}

.myth-full-view .cite-inner a {
  color: #0a0a0a;
  text-decoration: underline;
}

.cite-inner a:hover {
  color: #FF27B0;
}

.cite-inner .publisher {
    font-weight: 500;
    font-size: 15px;
    color: #0a0a0a;
}

.myth-full-view .cite-inner .publisher {
    color: #0a0a0a;
}

.cite-inner .title {
}

.cite-inner .authors {
    font-size: 13px;
    color: #69666C;
    display: inline;
}

.cite-inner .date {
    font-size: 13px;
    color: #69666C;
    display: inline;
}

.myth-quick-view .objection {
}

.myth-quick-view .objection-1 {
}

.myth-quick-view .objection-2 {
}

.myth-quick-view .objection-3 {
}

#myth-panel .bottom {
    position: fixed;
    background-color: #fff;
    padding: 32px 0 64px 0;
    box-sizing: border-box;
    bottom: 0;
    width: 100%;
}

#myth-panel .bottom a.btn {
    text-decoration: none;
    color: #0a0a0a;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 24px 1px 24px;
    width: 280px;
    box-sizing: border-box;
    font-weight: 500;
    border: 2px solid #0a0a0a;
    border-radius: 100px;
    position: relative;
    z-index: 2;
    margin-left: 64px;
}

#myth-panel .bottom a.btn:hover {
    color: #fff;
    background-color: #0a0a0a;
}

#myth-panel .bottom a.btn .arrow {
    height: 15px;
    width: 16px;
    background-image: url("/assets/images/icons/nav-arrow-right-black.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    margin: 0px 0 0 6px;
    will-change: background-image;
}

#myth-panel .bottom a.btn:hover .arrow {
    background-image: url("/assets/images/icons/nav-arrow-right-white.svg");
}

/* Progress bar track */
.myth-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: transparent;
  overflow: hidden;
  pointer-events: none;
  z-index: 20;
}

/* The moving bar */
.myth-progress::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #0a0a0a;

  transform: translateX(-100%);
}

@keyframes mythProgress {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0%);
  }
}

#myth-panel.is-loading .myth-progress::before {
  animation: mythProgress 900ms linear forwards;
}

/* Fade the bar out once loading is complete */
#myth-panel.is-loaded .myth-progress {
  opacity: 0;
  transition: opacity 200ms ease;
}

#myth-panel.is-loading #myth-panel-title {
    color: #0a0a0a;
}

#myth-panel.is-loading .bottom a.btn-disabled {
    pointer-events: none;
}

#myth-panel.is-loading .myth-quick-view .myth-label {
    border-color: #0a0a0a;
    color: #0a0a0a;
}

/* Myth Full View */

.myth-full-view {
    padding: 64px 40px;
    box-sizing: border-box;
}

.myth-full-view .inner {
    margin: 0 auto;
    width: 100%;
    max-width: 640px;
}

.myth-full-view .heading {
    font-size: 48px;
    line-height: 36px;
    margin: 0;
}

.myth-full-view .heading-2 {
    font-size: 36px;
    line-height: 28px;
    margin: 40px 0 32px 0;
}

.myth-full-view .heading-3 {
    font-size: 16px;
    margin: 0px 0 24px 0;
    font-family: "Review";
    font-weight: 500;
}

.myth-full-view .heading-3 a {
    text-decoration: none;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
    color: #0a0a0a;
}

.myth-full-view .heading-3 a:hover {
    text-decoration: underline;
}

.myth-full-view .myth-label {
    margin: 14px 0 32px 0;
    color: #0a0a0a;
    border-color: #0a0a0a;
    position: static;
}

.myth-full-view .common-objections {
    padding-bottom: 0;
}

.myth-full-view b {
    font-weight: 500;
}

.myth-full-view a, 
.myth-full-view a:active, 
.myth-full-view a:visited {
  color: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 4px;
  display: inline;
  text-decoration-thickness: 2px;
  font-weight: 500;
}

.myth-full-view .analogy, 
.myth-full-view .example, 
.myth-full-view .definition {
    background-color: #F5F6F7;
    padding: 32px;
    font-size: 16px;
    letter-spacing: 0.3px;
    margin: 40px 0;
    box-sizing: border-box;
    border-radius: 10px;
}

.myth-quick-view .definition {
    background-color: #F5F6F7;
    padding: 32px;
    font-size: 16px;
    letter-spacing: 0.3px;
    margin: 40px 0;
    box-sizing: border-box;
    border-radius: 4px;
}

.myth-full-view .analogy b,
.myth-full-view .example label, 
.myth-full-view .definition label {
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 16px 0;
    display: block;
}

.myth-quick-view .quote, 
.myth-full-view .quote {
    border-radius: 0;
    padding: 24px 0;
    box-sizing: border-box;
    font-size: 36px;
    line-height: 0.8;
    font-weight: 500;
    margin-bottom: 8px;
    color: #FF27B0;
    font-family: "Offbeat Line";
}

.myth-quick-view .quote {
    font-size: 28px;
}

.myth-full-view .quote.quote-black {
    color: #0a0a0a;
    font-family: "Review";
    font-size: 18px;
    line-height: 1.5;
    font-weight: 500;
}

.myth-full-view .quote.quote-twitter, 
.myth-full-view .quote.quote-truth-social {
    background-color: #f3f4f5;
    color: #0a0a0a;
    padding: 32px;
    box-sizing: border-box;
    font-family: "Review";
    line-height: 1.5;
}

.myth-full-view .content {
    font-size: 15px;
    font-weight: 400;
    color: #0a0a0a;
}

.myth-full-view .quote label {
    font-size: 13px;
    font-weight: 500;
    margin: 0 0 16px 0;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5;
    display: none;
}

.myth-full-view .quote .details {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 24px;
}

.myth-full-view .quote .details .avatar {
    border-radius: 100%;
    height: 48px;
    width: 48px;
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 8px;
}

.myth-full-view .quote.quote-twitter .details .avatar {
    background-image: url('/assets/images/icons/twitter-white.png');
    background-color: #0a0a0a;
}

.myth-full-view .quote.quote-truth-social .details .avatar {
    background-image: url('/assets/images/icons/truth-social-white.png');
    background-color: #0a0a0a;
    background-size: 28px 24px;
}

.myth-full-view .quote .details .author {
    font-size: 15px;
    font-weight: 500;
}

.myth-full-view .quote .details .author small {
    font-size: 14px;
    font-weight: 400;
    color: #666;
    display: block;
}

.myth-full-view .quote-block {
    font-size: 15px;
    background-color: #f2f3f4;
    padding: 24px;
} 

.myth-full-view .quote .date, 
.myth-full-view .quote .info, 
.myth-quick-view .quote .info {
    font-size: 14px;
    font-weight: 400;
    color: #666;
    margin-top: 24px;
    font-family: "Review";
    line-height: 1.5;
}

.myth-full-view .quote .info {
    margin-top: 16px;
}

.myth-quick-view .quote .info {
    margin-top: 16px;
}

.myth-full-view .image {
    max-width: 100%;
}

.myth-full-view img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* Main Section */

main {
    padding-top: 93px;
    box-sizing: border-box;
    background-color: #fff;
}

.header-none main {
    padding-top: 0;
}

.theme-dark main {
    background-color: #0A0A0A;
}

/* Mobile */
@media (max-width: 868px) {
    html, body {
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
    
    header {
        padding-left: 24px;
        padding-right: 24px;
    }
    
    header .inner nav a.btn {
       /* width: 143px; */
    }
    
    header .btn span {
        
    }
    
    header .inner nav > ul {
        display: none;
    }    
    
    header .inner nav .menu-icon {
        display: block;
    }
    
    section.section-1 .heading-container .heading .myth-label-section-1 {
        margin: 0 0 12px 0;
    }
    
    section.section-1 .heading-container .heading .line-1 {
        font-size: 168px;
        line-height: .96;
        margin-bottom: -34px;
    }
    
    section.section-1 .heading-container .heading .line-2 {
        font-size: 68px;
        line-height: .96;
    }
    
    section.section-1 .heading-container .heading .line-3 {
        font-size: 63px;
        line-height: 0.96;
    }
    
    section.section-1 .heading-container .heading .line-4 {
        font-size: 70px;
        line-height: 0.96;
    }
    
    section.section-2 {
        padding-left: 32px;
        padding-right: 32px;
    }
    
    section.section-2 .upper {
        padding-top: 24px;
        box-sizing: border-box;
        border-bottom: none;
    }
    
  section.section-2 .myth-cat {
    flex: 0 0 100%;
    border: 0;
    padding: 40px 0 0 0;
    margin: 48px 0 0 0;
  }
  
    section.section-2 .inner .myth-cat:first-child {
        border-top: 1px solid #0a0a0a;
        padding-top: 64px;
        margin-top: 0;
    }

  section.section-2 .myths-page {
    flex-wrap: nowrap;
    display: block;
  }
    
    section.section-2 .inner .myths {
        display: block;
        padding-top: 0;
    }
    
    section.section-2 .inner .myth:first-child {
        border-top: none;
        margin-top: 0;
    }
    
    section.section-2 .inner .myths .myth h1 {
        font-size: 38px;
    }
    
    section.section-2 .inner .myths .myth a {
        font-size: 16px;
    }   
    
    section.section-2 .inner .myths .myth a.see-all {
        font-size: 16px;
    }
    
    header .inner nav a.btn, 
    footer .inner .btn, 
    section.section-2 .inner .upper a, 
    #myth-panel .bottom a.btn {
        padding: 0 24px 2px 24px;
    }
    
    header .inner nav a.btn .arrow,
    footer .inner .btn .arrow {
        margin-top: 2px;
    }
    
    footer {
        padding: 0 32px;
        box-sizing: border-box;
    }
    
    footer .inner .top {
        display: block;
        padding-top: 48px;
        padding-bottom: 32px;
    }
    

    footer .inner .links {
        margin-top: 32px;
    }
    
    footer .inner .btn {
        margin-left: 0;
        margin-top: 32px;
    }
    
    footer .inner .disclaimer {
        order: 2;
        width: 100%;
        margin-left: 0;
    }
    
    footer .inner .disclaimer-copy {
        text-align: left;
        font-size: 16px;
    }
    
    footer {
        padding: 0 16px;
    }
    
    footer .inner {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start; /* centers orphan row */
        gap: 0px;
        padding-top: 8px;
        padding-bottom: 10px;
    }
    
    footer .inner span:first-child {
        width: 100%;
        flex: -webkit-fill-available;
    }
    
    footer .inner span {
        display: block;
        text-align: left;
        padding: 4px 0;
        box-sizing: border-box;
    }
    
    /* Myth Panel Mobile */
    #myth-panel {
        width: 100vw;
        max-width: none;
/*        transform: translateY(100%);
        right: auto;
        bottom: 0; */
    }

/*    
    body.myth-open #world {
        transform: translateY(-16vw) scale(0.96);
    }

    body.myth-open #myth-panel {
        transform: translateY(0);
    }
*/   
    section.section-2 .inner .myth-cat {
        padding: 0;
    }
    
    /* Myth Quick View Mobile */
    
    #myth-overlay {
      background: rgba(0, 0, 0, 0);
    }
    .quick-view-header .quick-view-back {
        margin-left: 40px;
    }
    
    .myth-quick-view {
        padding: 77px 40px 0 40px;
    }
    
    .myth-quick-view .heading {
        max-width: calc(100% - 50px);
        font-size: 42px;
        line-height: 32px;
    }
    
    .myth-quick-view .myth-label {
        padding-top: -1px;
    }
    
    .myth-quick-view .body, 
    .myth-quick-view .common-objections {
        font-size: 16px;
        line-height: 1.7;
    }
    
    .myth-quick-view .common-objections {
        padding-bottom: 150px;
    }
    
    #myth-panel .bottom {
        padding: 32px 0 40px 0;
    }
    
    #myth-panel .bottom a.btn {
        margin-left: 40px;
    }
    
    .cite-expand {
        margin-left: -40px;
    }
    
    .myth-full-view {
        padding: 64px 32px;
    }
    
    .myth-full-view .heading {
        font-size: 56px;
        line-height: 42px;
    }
    
    .myth-full-view .heading-2 {
        font-size: 36px;
        line-height: 28px;
    }   
    
    .myth-full-view .heading-3 {
        font-size: 16px;
        line-height: 1.5;
    }
    
    .myth-full-view .body {
        font-size: 16px;
        line-height: 1.7;
    }
    
    .myth-full-view .analogy, 
    .myth-full-view .analogy b {
        font-size: 15px;
    }
    
    .myth-full-view li,
    .myth-quick-view li {
        font-size: 16px;
    }
}

@media (max-width: 414px) {
    header .inner nav a.btn {
        display: none;
    }
}