:root {
  --bg-color: #ffffff;
  --bg-color-85: #ffffffe3;
  --error: #FF0B0B;
  --main-color: #D3648D;
  --main-color-dark: #773756;
  --font-regular: "neuehaas55",sans-serif;
  --font-suisse: "suisse-int", sans-serif;
  --font-lo-res-bold: "LoRes12OT-Bold", sans-serif;
  --font-lo-res-regular: "LoRes12OT-Regular", sans-serif;
  --font-base-weight: 500;
  --font-base-size: 1.4rem;
  --font-xs-size: .8rem;
}

/*
xs:     0 - 576px
sm:     576 - 768px
md:     768 - 992px
lg:     992 - 1200px
xl:     1200 - 1400px
xxl:    1400+
xxxl:   1600+
*/
*,
*:after,
*:before {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}

body {
  font-family: --font-regular;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

.clear:before,
.clear:after {
  content: " ";
  display: table;
}

.clear:after {
  clear: both;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

a {
  color: white;
  text-decoration: none;
  transition: all 400ms;
  font-family: var(--font-suisse);
}

a:focus {
  outline: 0;
}

a:hover,
a:active {
  outline: 0;
}

input:focus {
  outline: 0;
  border: 1px solid #04A4CC;
}

button {
  transition: all 400ms;
}

p, strong {
  font-size: var(--font-base-size);
  font-family: var(--font-regular);
}

/*------------------------------------*\
    MISC
\*------------------------------------*/
::selection {
  background: white;
  color: black;
  text-shadow: none;
}

::-webkit-selection {
  background: white;
  color: black;
  text-shadow: none;
}

::-moz-selection {
  background: white;
  color: black;
  text-shadow: none;
}

/*------------------------------------*\
    PRINT
\*------------------------------------*/
@media print {
  * {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
a:visited {
    text-decoration: underline;
  }

  a[href]:after {
    content: " (" attr(href) ")";
  }

  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  .ir a:after,
a[href^="javascript:"]:after,
a[href^="#"]:after {
    content: "";
  }

  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  tr, img {
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
  }

  @page {
    margin: 0.5cm;
  }
  p,
h2,
h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
h3 {
    page-break-after: avoid;
  }
}
/* Typography */
@font-face {
  font-family: "neuehaas55";
  src: url("../assets/fonts/neuehaas55.ttf") format("truetype");
}
@font-face {
  font-family: "suisse-int";
  src: url("../assets/fonts/suisse-intl.otf") format("opentype");
}
@font-face {
  font-family: "LoRes12OT-Bold";
  src: url("../assets/fonts/LoRes12OT-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "LoRes12OT-Regular";
  src: url("../assets/fonts/LoRes12OT-Regular.ttf") format("truetype");
}
.is-uppercase {
  text-transform: uppercase;
}

h1, h2, h3, h4, h5, h6 {
  font-family: --font-base-size;
  font-weight: 200;
}

h1 {
  font-size: 4.2rem;
}

h2 {
  font-size: 3rem;
}
@media (max-width: 36em) {
  h2 {
    font-size: 2rem;
  }
}

/* Containers */
.container,
.container-fluid,
.container-xxxl,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm,
.container-xs,
.container-xxs {
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5rem;
  width: 100%;
}

.container-xxl {
  max-width: 1600px;
}

.container-xl {
  max-width: 1300px;
}

.container-lg {
  max-width: 1200px;
}

.container-md {
  max-width: 992px;
}

.container-sm {
  max-width: 768px;
}

.container-xs {
  max-width: 576px;
}

.container-xxs {
  max-width: 566px;
}

/* Positions */
.position-absolute {
  position: absolute;
}

.position-relative {
  position: relative;
}

.position-fixed {
  position: fixed;
}

/* Text alignment */
.txt-align-center {
  text-align: center;
}

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

.txt-align-right {
  text-align: right;
}

/* Heights */
.h-100 {
  height: 100%;
}

/* Widths */
.w-100 {
  width: 100%;
}

.w-70 {
  width: 70%;
}

.w-40 {
  width: 40%;
}

@media (max-width: 36em) {
  .w-xs-80 {
    width: 80%;
  }
}

/* Overflow */
.of-h {
  overflow: hidden;
}

/* Display */
.display-none, .d-n {
  display: none !important;
}

.display-flex, .d-flex, .d-f {
  display: flex !important;
}

.display-grid, .d-g {
  display: grid !important;
}

.display-block, .d-b {
  display: block !important;
}

@media (max-width: 36em) {
  .d-xs-b {
    display: block !important;
  }
}

.display-inline-block, .d-ib {
  display: inline-block;
}

/* Flex Justify */
.justify-space-between, .jc-sb {
  justify-content: space-between;
}

.justify-space-evenly, .jc-se {
  justify-content: space-evenly;
}

.fd-c {
  flex-direction: column;
}

@media (max-width: 36em) {
  .fd-xs-c {
    flex-direction: column;
  }
}

/* Flex Align */
.align-items-center, .ai-c {
  align-items: center;
}

/* Flex */
.flex-1 {
  flex: 1;
}

.flex-075 {
  flex: 0.75;
}
@media (max-width: 75em) {
  .flex-075 {
    flex: 1;
  }
}

/* Letter Spacing */
.ls-1 {
  letter-spacing: 1px;
}

/* Stick */
.stick {
  position: fixed;
  top: 0px;
}

/* Disabled text */
.txt-disabled {
  pointer-events: none;
  opacity: 0.5;
}

/* Lazy images */
.lazyImage:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAMAAAC7IEhfAAAAulBMVEUBAAD/AAAIAAD/CgoOAAAZAAAUAAD/BQUeAAAuAAA9AAA4AAAoAAAjAADmAABCAAA0AAD/IiLhAAD/HR3ZAACcAAD/GBj6AADSAAB8AABMAAD/MDD/EhKxAACYAABRAAD/KSm5AACTAAB2AABHAAD1AADGAACBAADxAACkAACJAADqAACrAABqAABmAADJAADBAACgAACFAABhAACNAAC+AABdAABVAADeAADuAACPAABwAADNAAD/OTmppkF+AAAEnklEQVQ4yxSSWbKiQBREb3rVaocuLYrRAkQQZFIBh6c+3f+22v4/kZGRechNbJQFlCxMAz/UCgmcxc2PplGfUus/17GM6A1ixYbxNh4nyN0QbJKk4vGiW23XfUl3JaY3a9ZXpLv8C3o5bChlBAD2crP7gRevljwc5uF8PkOwpBwGENoqFbzE9wXsHAfndR0v7Ivj8IGGArMsdQjQBRpICJw/D0hPQDMdCntU7FoK4mB6Kfbjm0MKsJIzyqeCAD4MYyMclnF7GeVytXH4OlsVp1NFpuNQPjnJAeWVLBl2aHmH/T5ajTa7YVqb6wjRMKazr6VWLPEFlGA0XmlPAj8YZWKgtP3Zds2J6tAmGGbz0AkERIKQ4XVWvBnO0aSUVeZYv3Q439M5k4IE+N2EGq5i92kJuF22bVHPf1s/iKLXMVCX8Z3gGm1KIfOQhftN+3RAn8pqWw2LALtDulvM7hwQicIufcl4iI/+svwwrMax9ibZrtzc7Drz385o3d8o6TQAu9M+5wY6tAyzM+mbFcVDRQGL+WZop45FFnOBhxuqEMyWZ5Xyq8mJdvpwOe7qbfq4/Vm3Ed1IMIuELSMA8WQoDe0u85jix2tq8y8dq/h0FacRcXNOGI1A8u0HlUt8MGvDLA2e6ThtuI34ulxFR2IhE9dK4AowXKiQDV++Mx+nM3tNO29Wbbmjy4NcV8NjwPw/uysB9jT29CrmVJ8D6hGsaxnse7JYg23gLUOPn57yuFHBs15ucFz99tmktn+WDn4mpBIIZpYAc6k/sLSLReYG9z33yxj239p+kVPu/7VAbstpA0EQbcazy17ZNbGwUFlSdAGZi0QAAQ74/78ruCozD/3S1ae60WWP2bfdv3Z5dah8Nhb6vjLwUrA0FkAEICIIG+N3SYH1e8rnlwZfv26uEMozNMkAAUQjYgZCmtz7MDm779SKzecEf+Z7a6Ad2HtuFQzARkZG9lisOF0V4u3bJZd5GPvF8EQDUEYwe7awkF7gFm7vOdl89Nm7Dvnp2NsNNMhLTSyUAbyQrSK89uYz7Xi9+zMM60I1Se1L0k4qBCtF6ZWDFnDAZr/vj3X5SNdreZ1n1PxdNrE0IBUzR8/DzdmoCPpldkZXDQiHZFkv0qap6owUZwrOEgKJoDRZgdE3023sdje1qe7YFwMvLxw9iEoQ8FPcsmwFft9MUdX2a1d3b2NANt25B6CZACfV06MiGSEJ6T3gre6w/FWKyUeHR7KFVWQIlkxQpIRUioigq4WVp7+nWzmJy6ZKaD6pQoRgAy0oMHEU0nmgl4fLJSabkI3znK650fnIgrQiKp10gpSFgDb4sLS6X4/Dep5tpydznZ3p3Skd9Q+dgPD8H0Uzv+abw+F8mlt8TmvXX7ajapm11ELBe20ZpAIwJHmESY+yfPGqeSlj330Tac9MQGuRUZSsgoQXyeEo0sXZZdUXZ/MW5ZYGeND/kRhCkG8xOdvL683luzsdZrV/24xZ6lmXTy4JVuRaGDA59OtlO6z25fWjeGwXZyoO/UAeAEmwN2z0c56oJGQx7a6zWaRkNru2K0/baWjxzIJjQEoARND8D7+tgCt2HKJNAAAAAElFTkSuQmCC") center center repeat;
  opacity: 0;
  transition: opacity 0.5s;
}

.lazyImageWaiting:before {
  opacity: 1;
  transition: opacity 0s;
}

.lazyImageError img,
.lazyImageWaiting img {
  opacity: 0;
  transform: scale(0);
  transition: none;
}

.keen-slider[data-keen-slider-moves] * {
  cursor: grabbing !important;
  pointer-events: unset !important;
}
.keen-slider[data-keen-slider-moves] * a {
  pointer-events: none !important;
}

.d-only {
  display: block;
}
@media (max-width: 36em) {
  .d-only {
    display: none;
  }
}

.m-only {
  display: none;
}
@media (max-width: 36em) {
  .m-only {
    display: block;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@keyframes blur {
  0% {
    filter: blur(50px);
    -webkit-filter: blur(50px);
    -moz-filter: blur(50px);
    -o-filter: blur(50px);
    -ms-filter: blur(50px);
  }
  100% {
    filter: blur(0px);
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -o-filter: blur(0px);
    -ms-filter: blur(0px);
  }
}
@keyframes antiblur {
  0% {
    filter: blur(0px);
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -o-filter: blur(0px);
    -ms-filter: blur(0px);
  }
  100% {
    filter: blur(50px);
    -webkit-filter: blur(50px);
    -moz-filter: blur(50px);
    -o-filter: blur(50px);
    -ms-filter: blur(50px);
  }
}
@keyframes red {
  0% {
    color: white;
  }
  100% {
    color: #aa0707;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
    pointer-events: initial;
  }
  100% {
    opacity: 0;
    pointer-events: none;
  }
}
header {
  position: fixed;
  z-index: 10;
  top: 4rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  opacity: 1;
  transition: all 1000ms;
  padding: 0 5rem;
}
@media (max-width: 75em) {
  header {
    padding: 0 3rem;
  }
}
@media (max-width: 48em) {
  header {
    top: 0;
  }
}
@media (max-width: 36em) {
  header {
    padding: 0 2rem;
  }
}
header .logo {
  z-index: 10;
}
header.hidden {
  top: -4rem;
  opacity: 0;
}
header .nav-container {
  position: relative;
  top: 0;
  width: 100%;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  animation: blur 2s forwards;
  -webkit-animation: blur 2s forwards;
  -moz-animation: blur 2s forwards;
}
header .nav-container button.toggle-menu {
  display: none;
  background-color: transparent;
  border: none;
  color: white;
  z-index: 10;
}
@media (max-width: 62em) {
  header .nav-container button.toggle-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 3rem;
    margin: 0;
    width: 100%;
    padding: 0;
  }
}
header .nav-container button.toggle-menu .line {
  transition: 500ms;
  transform-origin: center;
  fill: white;
}
header .nav-container button.toggle-menu.active .top {
  y: 50;
  transform: rotate(-45deg);
}
header .nav-container button.toggle-menu.active .bottom {
  y: 50;
  transform: rotate(45deg);
}
header .nav-container button.toggle-menu.active .middle {
  opacity: 0;
}
header .nav-container .menu-content {
  transition: all 300ms;
}
@media (max-width: 62em) {
  header .nav-container .menu-content {
    position: absolute;
    opacity: 0;
    right: -100%;
    min-height: 100vh;
    min-height: 100svh;
    background-color: black;
    top: 0;
    width: 100%;
    padding: 14rem 5rem 0 5rem;
  }
  header .nav-container .menu-content.open {
    right: 0;
    opacity: 1;
  }
}
header .nav-container .menu-content nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 8vw;
}
@media (max-width: 62em) {
  header .nav-container .menu-content nav {
    flex-direction: column;
    gap: 6rem;
    padding-top: initial;
  }
}
header .nav-container .menu-content nav a {
  font-size: 1.2rem;
  text-transform: uppercase;
  line-height: 1.5rem;
  transition: all 400ms;
  border-bottom: 1px solid transparent;
  color: white;
}
@media (max-width: 36em) {
  header .nav-container .menu-content nav a {
    font-size: 3rem;
    line-height: 5rem;
  }
}
header .nav-container .menu-content nav a:hover, header .nav-container .menu-content nav a.current {
  opacity: 0.5;
}
header .button-container {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  transition: all 400ms;
  align-items: flex-end;
}
@media (max-width: 48em) {
  header .button-container {
    position: absolute;
    height: 100vh;
    width: 25rem;
    top: 0;
    left: -25rem;
    flex-direction: column;
    padding: 8rem 3rem 3rem 3rem;
    gap: 3rem;
    opacity: 0;
    align-items: initial;
  }
  header .button-container a, header .button-container button {
    pointer-events: none;
  }
  header .button-container.open-menu {
    left: 0;
    opacity: 1;
  }
  header .button-container.open-menu a, header .button-container.open-menu button {
    pointer-events: initial;
  }
}
header .button-container a, header .button-container button {
  display: flex;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
header .button-container a.btn, header .button-container button.btn {
  filter: drop-shadow(5px 5px 0 var(--bg-color));
  height: 3rem;
  background-size: cover;
  transition: all 0ms;
}
@media (max-width: 36em) {
  header .button-container a.btn, header .button-container button.btn {
    height: 2.6rem;
  }
}
header .button-container a.btn:hover, header .button-container button.btn:hover {
  filter: brightness(1.1) drop-shadow(5px 5px 0 var(--bg-color));
}
header .button-container a.btn:active, header .button-container button.btn:active {
  filter: drop-shadow(0 0 0);
  transform: translateX(5px) translateY(5px);
}
header .button-container a.btn.tour-btn, header .button-container button.btn.tour-btn {
  background-image: url("../assets/buttons/title_layer4_Button_Tour.png");
  width: 10.4rem;
}
@media (max-width: 36em) {
  header .button-container a.btn.tour-btn, header .button-container button.btn.tour-btn {
    width: 8.9rem;
  }
}
header .button-container a.btn.music-btn, header .button-container button.btn.music-btn {
  background-image: url("../assets/buttons/title_layer4_Button_Music.png");
  width: 10.4rem;
}
@media (max-width: 36em) {
  header .button-container a.btn.music-btn, header .button-container button.btn.music-btn {
    width: 8.9rem;
  }
}
header .button-container a.btn.video-btn, header .button-container button.btn.video-btn {
  background-image: url("../assets/buttons/title_layer4_Button_Video.png");
  width: 10.4rem;
}
@media (max-width: 36em) {
  header .button-container a.btn.video-btn, header .button-container button.btn.video-btn {
    width: 8.9rem;
  }
}
header .button-container a.btn.store-btn, header .button-container button.btn.store-btn {
  background-image: url("../assets/buttons/title_layer4_Button_Store.png");
  width: 10.4rem;
}
@media (max-width: 36em) {
  header .button-container a.btn.store-btn, header .button-container button.btn.store-btn {
    width: 8.9rem;
  }
}
header .button-container a.btn.mailing-btn, header .button-container button.btn.mailing-btn {
  background-image: url("../assets/buttons/title_layer4_Button_Mailing_List.png");
  width: 18rem;
}
@media (max-width: 36em) {
  header .button-container a.btn.mailing-btn, header .button-container button.btn.mailing-btn {
    width: 15.6rem;
  }
}
header .button-container a.exp-pack-btn, header .button-container button.exp-pack-btn {
  background-image: url("../assets/buttons/house_party_b_btn.png");
  width: 49.6rem;
  height: 4.5rem;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 48em) {
  header .actions-buttons {
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
  }
}
header button.mobile-menu-toggle {
  position: absolute;
  top: 2rem;
  background-image: url("../assets/buttons/menu_toggle_button.png");
  background-color: transparent;
  background-size: cover;
  border: none;
  height: 3rem;
  width: 3rem;
  transition: all 0ms;
  opacity: 0;
  display: none;
  filter: drop-shadow(5px 5px 0 var(--bg-color));
  pointer-events: initial;
}
@media (max-width: 48em) {
  header button.mobile-menu-toggle {
    opacity: 1;
    display: flex;
    z-index: -1;
  }
}
header button.mobile-menu-toggle:hover {
  filter: brightness(1.1) drop-shadow(5px 5px 0 var(--bg-color));
}
header button.mobile-menu-toggle:active {
  filter: drop-shadow(0 0 0);
  transform: translateX(5px) translateY(5px);
}
header button.mobile-menu-toggle.disabled {
  pointer-events: none;
}
header button.audio-btn, header button.outfit-btn {
  background-repeat: no-repeat;
  background-size: cover;
  width: 3rem;
  height: 3rem;
  border: none;
  background-color: transparent;
  display: flex;
  padding: 0;
  cursor: pointer;
  z-index: -1;
  filter: drop-shadow(5px 5px 0 var(--bg-color));
  pointer-events: initial;
}
header button.audio-btn:hover, header button.outfit-btn:hover {
  filter: brightness(1.1) drop-shadow(5px 5px 0 var(--bg-color));
}
header button.audio-btn:active, header button.outfit-btn:active {
  filter: drop-shadow(0 0 0);
  transform: translateX(5px) translateY(5px);
}
header button.audio-btn.audio-active, header button.outfit-btn.audio-active {
  background-image: url("../assets/buttons/audio_button_off.png");
}
header button.audio-btn {
  background-image: url("../assets/buttons/audio_button_on.png");
}
header button.outfit-btn {
  background-image: url("../assets/buttons/swap_costume_button.png");
  margin-top: 2rem;
}
@media (max-width: 48em) {
  header button.outfit-btn {
    position: absolute;
    right: 0;
    margin-top: 1.3rem;
  }
}

body.home header .nav-container button.toggle-menu {
  color: var(--main-color);
}
body.home header .nav-container button.toggle-menu .line {
  fill: var(--main-color);
}
@media (max-width: 62em) {
  body.home header .nav-container .menu-content {
    background-color: var(--bg-color-85);
  }
}
body.home header .nav-container .menu-content nav a {
  color: var(--main-color);
}

body {
  background-color: var(--bg-color);
  min-height: 100vh;
  min-height: 100svh;
}
body iframe {
  left: 0 !important;
}

footer {
  position: fixed;
  z-index: 1;
  bottom: 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  padding: 0 5rem;
  justify-content: space-between;
}
@media (max-width: 75em) {
  footer {
    padding: 0 3rem;
  }
}
@media (max-width: 48em) {
  footer {
    flex-direction: column;
  }
}
@media (max-width: 36em) {
  footer {
    padding: 0 2rem;
  }
}
footer .rca {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  max-width: 43rem;
}
@media (max-width: 75em) {
  footer .rca {
    text-align: left;
    width: 100%;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
}
@media (max-width: 48em) {
  footer .rca {
    align-items: center;
    align-content: center;
    margin: auto;
  }
}
@media (max-width: 36em) {
  footer .rca {
    min-width: inherit;
  }
}
footer .rca #rcalogo {
  font-size: 0;
  width: 4.4rem;
  height: 1.3rem;
  display: inline-block;
  position: relative;
}
@media (max-width: 75em) {
  footer .rca #rcalogo {
    margin-top: 0;
  }
}
@media (max-width: 48em) {
  footer .rca #rcalogo {
    margin: auto;
    margin-bottom: 0;
  }
}
footer .rca #rcalogo::after {
  content: url("../assets/rca.svg");
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}
footer .social {
  text-align: right;
  max-width: 27rem;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  margin: 0.5rem;
}
@media (max-width: 75em) {
  footer .social {
    text-align: center;
    width: 100%;
  }
}
@media (max-width: 48em) {
  footer .social {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
  }
}
@media (max-width: 36em) {
  footer .social {
    min-width: inherit;
  }
}
footer .social a {
  margin: 0 0.8rem;
  font-size: 1.8rem;
  color: var(--main-color);
}
footer .social a span.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
@media (max-width: 36em) {
  footer .disclaimer {
    text-align: center;
  }
}
footer .disclaimer p, footer .disclaimer a {
  color: var(--main-color);
  font-family: var(--font-regular);
  font-size: 0.8rem;
  padding: 0;
}

@media (max-width: 48em) {
  body#doja-cat footer {
    flex-direction: column-reverse;
    align-items: center;
    gap: 2rem;
  }
}
body#doja-cat footer .disclaimer * {
  font-family: var(--font-suisse);
}
@media (max-width: 36em) {
  body#doja-cat footer .newsletter {
    width: 100%;
  }
}
body#doja-cat footer .newsletter form {
  display: flex;
  flex-direction: row;
  gap: 0.6rem;
}
@media (max-width: 36em) {
  body#doja-cat footer .newsletter form {
    flex-direction: column;
  }
}
body#doja-cat footer .newsletter form input#default_mailing_list {
  display: none;
}
body#doja-cat footer .newsletter .form-group label {
  display: none;
}
body#doja-cat footer .newsletter .form-group input[type=email] {
  border: 1px solid white;
  font-size: 1.2rem;
  font-family: var(--font-suisse);
  background-color: black;
  padding: 1rem 2rem;
  color: white;
  max-width: 26rem;
  width: 100%;
}
body#doja-cat footer .newsletter .form-group input[type=email]::placeholder {
  font-family: 1.2rem;
  color: white;
  font-family: var(--font-suisse);
  opacity: 0.5;
}
@media (max-width: 36em) {
  body#doja-cat footer .newsletter .form-group input[type=email] {
    max-width: initial;
  }
}
body#doja-cat footer .newsletter button {
  border: 1px solid white;
  font-size: 1.2rem;
  font-family: var(--font-suisse);
  background-color: var(--main-color);
  color: white;
  padding: 1rem 4rem;
}
body#doja-cat footer .newsletter button:hover {
  background-color: white;
  color: var(--main-color);
  cursor: pointer;
}
body#doja-cat.home footer .newsletter .form-group input[type=email] {
  border: 1px solid var(--main-color);
  color: var(--main-color);
  background-color: white;
}
body#doja-cat.home footer .newsletter .form-group input[type=email]::placeholder {
  color: var(--main-color);
}
@media (max-width: 36em) {
  body#doja-cat.home footer .newsletter .form-group input[type=email] {
    max-width: initial;
  }
}

.modal {
  padding: 2rem;
  border: 2px solid black;
  transition: all 600ms;
  transform: translateY(5rem) translateX(-50%);
}
.modal header {
  position: relative;
  height: 3.2rem;
  display: flex;
  justify-content: flex-end;
  padding: 0;
  top: 0;
}
.modal header .btn-close {
  height: 2.2rem;
  width: 2.4rem;
  text-align: center;
  cursor: pointer;
}
.modal header .btn-close:active {
  box-shadow: none;
}
.modal header .btn-close a {
  font-size: 1.4rem;
  font-family: var(--font-lo-res-bold);
  pointer-events: none;
  color: black;
}
.modal p {
  font-family: var(--font-lo-res-regular);
}
.modal h2 {
  font-size: 2.2rem;
  font-family: var(--font-lo-res-bold);
  text-align: center;
  line-height: 2.3rem;
  margin-top: 0;
}
.modal.open-modal {
  opacity: 1;
  pointer-events: initial;
  transform: translateY(-50%) translateX(-50%);
}

.join-modal {
  position: absolute;
  pointer-events: none;
  z-index: 100;
  left: 50%;
  top: 50%;
  width: 100%;
  overflow: auto;
  max-width: 32rem;
  max-height: 50rem;
  background-color: white;
}
@media (max-width: 36em) {
  .join-modal {
    top: initial;
    bottom: 7rem;
  }
}
.join-modal form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.join-modal form .form-group label {
  display: none;
}
.join-modal form .form-group input#field_email_address {
  font-family: var(--font-lo-res-bold);
  font-size: 1.4rem;
  text-align: center;
  text-transform: uppercase;
  border: none;
  border-bottom: 1px solid black;
  border-radius: 0;
  padding: 1rem 0;
}
.join-modal form .form-group input#field_email_address ::placeholder {
  font-family: var(--font-lo-res-bold);
  color: black;
}
.join-modal form fieldset {
  border: none;
  padding: 0;
}
.join-modal form fieldset legend {
  font-size: 1.4rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.join-modal form input#default_mailing_list {
  display: none;
}
.join-modal form button {
  width: 100%;
  color: black;
  cursor: pointer;
  font-family: var(--font-lo-res-bold);
  font-size: 1.4rem;
  text-decoration: underline;
  text-transform: uppercase;
  border: none;
  background-color: white;
}

.msj-modal {
  pointer-events: none;
  background-color: white;
  max-width: 32rem;
  width: 100%;
  height: 20rem;
  z-index: 1000;
  position: fixed;
  top: 50%;
  left: 50%;
  flex-direction: column;
}
.msj-modal .modal-content {
  display: flex;
  justify-content: center;
  height: 84%;
}
.msj-modal .modal-content h2 {
  height: 12px;
  letter-spacing: 1px;
  color: black;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  margin: 0;
  font-size: 2rem;
  max-width: 85%;
  margin: 0 auto;
  text-align: center;
}

body#doja-cat .modal {
  background-color: var(--main-color);
  max-width: 32.7rem;
  width: 100%;
  height: initial;
  z-index: 1000;
  position: fixed;
  top: 50%;
  left: 50%;
  flex-direction: column;
  border: 1px solid black;
  opacity: 0;
  pointer-events: none;
}
body#doja-cat .modal header {
  position: absolute;
  top: 1rem;
  right: 0.6rem;
}
body#doja-cat .modal header .btn-close a {
  color: black;
  font-family: var(--font-suisse);
}
body#doja-cat .modal .modal-content {
  display: flex;
  justify-content: center;
  height: 84%;
  flex-direction: column;
}
body#doja-cat .modal .modal-content h2 {
  height: 12px;
  letter-spacing: 1px;
  color: black;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 1.6rem;
  max-width: 100%;
  padding: 0;
  margin: 0 auto 1rem auto;
  text-align: center;
  font-family: var(--font-suisse);
}
body#doja-cat .modal.apple-modal .input-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
body#doja-cat .modal.apple-modal .input-group input[type=email] {
  border: 1px solid #5D5D5D;
  font-size: 1.2rem;
  font-family: var(--font-suisse);
  background-color: black;
  padding: 1rem;
  color: white;
  width: 100%;
  border: none;
}
body#doja-cat .modal.apple-modal .input-group button {
  background-color: white;
  color: var(--main-color);
  cursor: pointer;
}
body#doja-cat .modal.apple-modal .input-group button:hover {
  opacity: 0.9;
}
body#doja-cat .modal.open-modal {
  opacity: 1;
  pointer-events: initial;
}
@media (max-width: 48em) {
  body#doja-cat .modal.open-modal {
    transform: translateY(-90%) translateX(-50%);
  }
}
body#doja-cat.body-overlay::after {
  content: "";
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--main-color);
  opacity: 0.8;
  pointer-events: none;
  min-height: 100vh;
  min-height: 100svh;
}

#loading_overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 1000;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#loading_overlay .loading_wrap {
  height: calc(100vh - 4.8rem);
  display: flex;
}
#loading_overlay .loading_wrap .loading_container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin: auto;
  width: 180px;
}
#loading_overlay .loading_wrap .loading_container img.doja-walking {
  max-width: 8rem;
}
#loading_overlay .loading_wrap .loading_container .loading_bar_container {
  position: relative;
  width: 100%;
}
#loading_overlay .loading_wrap .loading_container .loading_bar_container p {
  text-align: center;
  font-family: "LoRes12OT-Bold", sans-serif;
  font-size: 1.4rem;
  text-transform: uppercase;
  color: white;
  background-color: transparent;
  border: none;
  border: 1px solid white;
  margin-top: 4rem;
  height: 23px;
}
#loading_overlay .loading_wrap .loading_container .loading_bar_container #loading_bar {
  position: absolute;
  bottom: 14px;
  height: 23px;
  background: #ccc;
  width: 5%;
}

#music-dialog-box {
  font-family: "LoRes12OT-Bold", sans-serif;
  font-size: 14px;
  padding: 20px;
  background: #fff;
  border: 2px solid #000;
  width: 240px;
  height: 135px;
}
#music-dialog-box p {
  margin-top: 0;
  line-height: 16px;
}
#music-dialog-box .music-actions-cont {
  margin: auto;
  text-align: center;
}
#music-dialog-box .music-actions-cont button {
  position: relative;
  background: transparent;
  border: none;
  font-family: "LoRes12OT-Bold", sans-serif;
  text-transform: uppercase;
  cursor: pointer;
}
#music-dialog-box .music-actions-cont button#get-tickets img {
  position: absolute;
  transform: translateX(-31px) translateY(-2px);
  animation: tilt 700ms infinite step-end;
}
@keyframes tilt {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

#music-albums {
  padding: 20px;
  background: #fff;
  border: 2px solid #000;
  width: 280px;
  height: 200px;
  display: none;
  text-transform: uppercase;
  text-align: left;
  font-size: 1.4rem;
  overflow-y: scroll;
}
#music-albums span, #music-albums button {
  position: relative;
  display: block;
  width: 100%;
  text-align: center;
  background: transparent;
  border: none;
  font-family: "LoRes12OT-Bold", sans-serif;
  text-transform: uppercase;
  cursor: pointer;
}
#music-albums .album-details {
  display: grid;
  grid-template-columns: 4rem 1fr 1fr;
  gap: 1.6rem;
  align-items: center;
  margin-bottom: 15px;
}
#music-albums .album-list {
  list-style: none;
  margin-bottom: 1rem;
  padding: 0;
}
#music-albums .album-cover {
  width: 45px;
  height: 45px;
  background-color: #000;
}
#music-albums .title {
  font-family: "LoRes12OT-Regular";
}
#music-albums .abm-link {
  font-family: "LoRes12OT-Bold";
  color: black;
  text-decoration: underline;
}

body#doja-cat.tour {
  background-color: black;
  color: white;
}
body#doja-cat.tour footer, body#doja-cat.tour footer * {
  color: white;
}
body#doja-cat.tour footer a, body#doja-cat.tour footer * a {
  color: white;
}
body#doja-cat.tour footer .btn, body#doja-cat.tour footer * .btn {
  border: 1px solid white;
  color: white;
}
body#doja-cat.tour footer .btn:hover, body#doja-cat.tour footer * .btn:hover {
  background-color: white;
  color: black;
}
body#doja-cat.tour main {
  overflow: initial;
  height: initial;
  padding-bottom: 12rem;
}
@media (max-width: 48em) {
  body#doja-cat.tour main {
    padding-bottom: 5rem;
  }
}
body#doja-cat.tour main .container {
  display: flex;
  flex-direction: column;
  max-width: 50rem;
  width: 100%;
  margin: auto;
  padding-top: 12rem;
}
@media (max-width: 48em) {
  body#doja-cat.tour main .container {
    padding-top: 9rem;
  }
}
body#doja-cat.tour main .container h1 {
  font-size: 1.4rem;
  font-family: var(--font-suisse);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin: 0 auto 2rem auto;
}
body#doja-cat.tour main .container #dates {
  padding: initial;
  color: white;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 1.2rem;
  display: flex;
  flex-direction: column;
  margin: auto;
  width: 100%;
}
body#doja-cat.tour main .container #dates * {
  font-family: var(--font-suisse);
}
body#doja-cat.tour main .container #dates .no-events {
  text-align: center;
}
body#doja-cat.tour main .container #dates .event {
  margin-bottom: 2rem;
}
body#doja-cat.tour main .container #dates .event .bit-details {
  display: grid;
  grid-template-columns: 11rem 2fr 14rem;
  align-items: center;
}
@media (max-width: 48em) {
  body#doja-cat.tour main .container #dates .event .bit-details {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
}
body#doja-cat.tour main .container #dates .date {
  font-family: var(--font-suisse);
  font-weight: 700;
  text-transform: uppercase;
}
@media (max-width: 48em) {
  body#doja-cat.tour main .container #dates .date {
    margin-bottom: 0.5rem;
  }
}
body#doja-cat.tour main .container #dates .location, body#doja-cat.tour main .container #dates .location2 {
  font-family: var(--font-suisse);
}
body#doja-cat.tour main .container #dates .links, body#doja-cat.tour main .container #dates .tickets {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: flex-end;
}
@media (max-width: 48em) {
  body#doja-cat.tour main .container #dates .links, body#doja-cat.tour main .container #dates .tickets {
    margin-top: 1rem;
  }
}
body#doja-cat.tour main .container #dates .links a, body#doja-cat.tour main .container #dates .tickets a {
  font-family: var(--font-suisse);
  color: white;
  padding: 0.6rem 1rem;
  border: 1px solid white;
  width: 50%;
  text-align: center;
  text-transform: uppercase;
}
@media (max-width: 48em) {
  body#doja-cat.tour main .container #dates .links a, body#doja-cat.tour main .container #dates .tickets a {
    width: 10rem;
  }
}
body#doja-cat.tour main .container #dates .links a:hover, body#doja-cat.tour main .container #dates .tickets a:hover {
  background-color: white;
  color: black;
}
body#doja-cat.tour main .container #dates .tour-more-wrap {
  padding-top: 4rem;
  margin: auto;
}
body#doja-cat.tour main .container #dates .tour-more-wrap a {
  font-family: var(--font-suisse);
  color: white;
  padding: 0.6rem 1.2rem;
  border: 1px solid white;
  width: 50%;
  text-align: center;
}
body#doja-cat.tour main .container #dates .tour-more-wrap a:hover {
  background-color: white;
  color: black;
}
@media (max-width: 48em) {
  body#doja-cat.tour footer {
    position: relative;
  }
  body#doja-cat.tour footer .newsletter {
    overflow: hidden;
  }
}
body#doja-cat.tour .tour-bg {
  left: initial;
  right: 0;
  position: fixed;
  animation: 2s fadeOut 2s forwards;
  -webkit-animation: 2s fadeOut 2s forwards;
  -moz-animation: 2s fadeOut 2s forwards;
  pointer-events: none;
}

.video-title {
  z-index: 1000;
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 10rem;
  text-align: center;
  transform: translateX(-50%) translateY(-50%);
  color: white;
}

#video-player-title {
  width: 100rem;
}
@media (max-width: 36em) {
  #video-player-title {
    width: 40rem;
  }
}
#video-player-title h2 {
  font-family: "LoRes12OT-Bold", sans-serif;
  color: white;
  font-size: 8rem;
  text-align: center;
  text-transform: uppercase;
}
@media (max-width: 36em) {
  #video-player-title h2 {
    font-size: 4rem;
  }
}

.access {
  background-color: black;
  color: white;
}
.access main {
  height: calc(100vh - 4.8rem);
  display: flex;
}
.access main .password {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin: auto;
}
.access main .password img.doja-walking {
  max-width: 8rem;
}
.access main .password form {
  position: relative;
}
.access main .password form input#pwd {
  text-align: center;
  font-family: "LoRes12OT-Bold", sans-serif;
  font-size: 1.4rem;
  text-transform: uppercase;
  color: white;
  background-color: black;
  border: none;
  border-bottom: 1px solid white;
  margin-top: 4rem;
}
.access main .password form p#pwd-error {
  text-align: center;
  font-family: "LoRes12OT-Bold", sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: var(--error);
}

body#doja-cat {
  background-color: white;
  position: relative;
}
body#doja-cat main {
  height: calc(100vh - 6rem);
  height: calc(100svh - 6rem);
  overflow: hidden;
}
@media (max-width: 48em) {
  body#doja-cat main {
    height: calc(100vh - 11rem);
    height: calc(100svh - 11rem);
  }
}
@media (max-width: 36em) {
  body#doja-cat main {
    height: calc(100vh - 16rem);
    height: calc(100svh - 16rem);
  }
}
body#doja-cat .cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  max-width: 50rem;
  width: 100%;
  animation: blur 3s forwards;
  -webkit-animation: blur 3s forwards;
  -moz-animation: blur 3s forwards;
  z-index: 1;
}
@media (max-width: 36em) {
  body#doja-cat .cta-container {
    transform: translateX(-50%) translateY(-60%);
  }
}
body#doja-cat .cta-container .cta-block {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
@media (max-width: 36em) {
  body#doja-cat .cta-container .cta-block {
    gap: 0.7rem;
  }
}
body#doja-cat .cta-container .cta-block a, body#doja-cat .cta-container .cta-block button {
  flex: 0 0 30%;
  cursor: pointer;
}
@media (max-width: 36em) {
  body#doja-cat .cta-container .cta-block a, body#doja-cat .cta-container .cta-block button {
    flex: 0 0 30%;
  }
}
body#doja-cat .cta-container p {
  font-size: 0.8rem;
  color: var(--main-color);
  text-align: center;
  max-width: 27rem;
  margin-top: 2rem;
}
body#doja-cat .cta-container .scarlet {
  max-width: 50rem;
  max-height: 60vh;
  background-image: url("../assets/img/scarlet.webp");
  width: 100%;
  padding-bottom: 60vh;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (max-width: 36em) {
  body#doja-cat .cta-container .scarlet {
    max-height: 46vh;
    padding-bottom: 46vh;
  }
}
body#doja-cat form {
  position: relative;
}
body#doja-cat form .hidden {
  position: absolute;
  left: 1000px;
  pointer-events: none;
}
body#doja-cat .video-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  height: 100vh;
  height: 100svh;
  background-color: black;
  display: flex;
  min-width: 100%;
  max-width: 100%;
  justify-content: center;
  align-content: center;
  width: 100%;
}
body#doja-cat .video-bg-container video {
  min-width: 100%;
  min-height: 100vh;
  min-height: 100svh;
}
@media (max-width: 36em) {
  body#doja-cat .video-bg-container video {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
body#doja-cat .video-bg-container.demons {
  animation: fadeOut 3s forwards;
  -webkit-animation: fadeOut 3s forwards;
  -moz-animation: fadeOut 3s forwards;
  animation-delay: 87000ms;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
@media (max-width: 36em) {
  body#doja-cat .video-bg-container.demons {
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: initial;
    transform: initial;
  }
}
body#doja-cat .video-bg-container.demons.hide {
  animation: fadeOut 3s forwards;
  -webkit-animation: fadeOut 3s forwards;
  -moz-animation: fadeOut 3s forwards;
  animation-delay: 300ms;
  pointer-events: none;
}
body#doja-cat .video-bg-container.demons button#hideVideo {
  position: absolute;
  right: 5rem;
  bottom: 5rem;
  font-family: var(--font-suisse);
  color: var(--main-color);
  text-decoration: underline;
  cursor: pointer;
  padding: 1rem 1rem 0 1rem;
  border: none;
  background-color: transparent;
  z-index: 10;
}
@media (max-width: 36em) {
  body#doja-cat .video-bg-container.demons button#hideVideo {
    right: 3rem;
    bottom: 3rem;
  }
}
body#doja-cat .video-bg-container.demons button#hideVideo:hover {
  filter: brightness(1.1);
}
body#doja-cat .video-bg-container.demons button#toggleVideoSound {
  position: absolute;
  left: 5rem;
  bottom: 5rem;
  font-family: var(--font-suisse);
  color: var(--main-color);
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  border: none;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: left center;
  z-index: 10;
  width: 3rem;
  height: 2rem;
}
@media (max-width: 36em) {
  body#doja-cat .video-bg-container.demons button#toggleVideoSound {
    left: 3rem;
    bottom: 3rem;
  }
}
body#doja-cat .video-bg-container.demons button#toggleVideoSound:hover {
  filter: brightness(1.1);
}
body#doja-cat .video-bg-container.demons button#toggleVideoSound.muted {
  background-image: url("../assets/img/icon-unmute.svg");
  background-size: 2.4rem;
}
body#doja-cat .video-bg-container.demons button#toggleVideoSound.unmuted {
  background-image: url("../assets/img/icon-mute.svg");
  background-size: 2rem;
}
body#doja-cat .video-bg-container.demons video {
  min-width: initial;
}
body#doja-cat .btn.btn-default {
  border: 1px solid var(--main-color);
  color: var(--main-color);
  font-family: var(--font-regular);
  text-transform: uppercase;
  text-align: center;
  font-size: 1.2rem;
  min-width: 10.2rem;
  background-color: transparent;
  height: 3.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
}
body#doja-cat .btn.btn-default:hover {
  background-color: var(--main-color);
  color: white;
}
body#doja-cat h1 {
  font-family: var(--font-suisse);
  text-transform: uppercase;
  pointer-events: none;
  width: max-content;
  z-index: 1;
  font-size: 2rem;
  letter-spacing: 1rem;
  animation: blur 4s forwards;
  -webkit-animation: blur 4s forwards;
  -moz-animation: blur 4s forwards;
  color: white;
}
body#doja-cat.home h1 {
  color: var(--main-color);
}

/*# sourceMappingURL=style.css.map */
