/*
xs:     0 - 576px
sm:     576 - 768px
md:     768 - 992px
lg:     992 - 1200px
xl:     1200 - 1400px
xxl:    1400+
xxxl:   1600+
*/
@keyframes pulsing {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInTop {
  0% {
    opacity: 0;
    top: -5rem;
  }
  100% {
    opacity: 1;
    top: 0;
  }
}
@keyframes fadeInGrow {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
@keyframes fadeInTop20 {
  0% {
    opacity: 0;
    top: -2rem;
  }
  100% {
    opacity: 1;
    top: 0;
  }
}
@keyframes fadeInBottom {
  0% {
    opacity: 0;
    bottom: -5rem;
  }
  100% {
    opacity: 1;
    bottom: 0;
  }
}
@keyframes grow {
  0% {
    transform: translate(-50%, -50%) scale(0);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}
*,
*:after,
*:before {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: all 300ms;
}

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

body {
  font-family: "FeltTipRom", sans-serif;
  overflow-x: hidden;
}

.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-size: 1.6rem;
  font-family: "FeltTipRom", sans-serif;
}

a:focus {
  outline: 0;
}

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

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

button {
  transition: all 400ms;
  font-family: "FeltTipRom", sans-serif;
}

p, strong {
  font-size: 1.6rem;
}

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

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

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

::placeholder {
  color: hsl(33, 35%, 19%);
}

::-moz-placeholder {
  color: hsl(33, 35%, 19%);
}

::-webkit-input-placeholder {
  color: hsl(33, 35%, 19%);
}

/*------------------------------------*\
    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: "HelveticaNeue55Roman";
  src: url("../assets/fonts/HelveticaNeue55Roman/roman.otf") format("opentype");
}
@font-face {
  font-family: "Ringold";
  src: url("../assets/fonts/Ringold/slab.ttf") format("truetype");
}
@font-face {
  font-family: "Context Reprise Condensed";
  src: url("../assets/fonts/context_reprise_condensed_ssi.ttf") format("truetype");
}
@font-face {
  font-family: "MrEavesXLSan";
  src: url("../assets/fonts/MrEavesXLSan/regular.ttf") format("truetype");
}
@font-face {
  font-family: "FeltTipRom";
  src: url("../assets/fonts/FeltTipRom/roman.ttf") format("truetype");
}
.is-uppercase {
  text-transform: uppercase;
}

.is-lowercase {
  text-transform: lowercase;
}

.small {
  font-size: 1.1rem;
}
@media only screen and (max-width: 36em) {
  .small {
    font-size: 0.8rem;
  }
}

button, input, select, textarea {
  font-size: initial;
}

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

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

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

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

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

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

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

/* 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 only screen and (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 only screen and (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 only screen and (max-width: 36em) {
  .fd-xs-c {
    flex-direction: column;
  }
}

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

/* Flex */
.flex-1 {
  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;
}

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

/* Paddings */
.p-0 {
  padding: 0;
}

.py-1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-3 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.pt-1 {
  padding-top: 1rem;
}

.pt-2 {
  padding-top: 2rem;
}

.pt-3 {
  padding-top: 3rem !important;
}

.pt-4 {
  padding-top: 4rem !important;
}

.pt-5 {
  padding-top: 5rem !important;
}

.pt-6 {
  padding-top: 6rem !important;
}

.pt-7 {
  padding-top: 7rem !important;
}

.pt-11 {
  padding-top: 11rem;
}

.pt-12 {
  padding-top: 12rem;
}

.pt-8 {
  padding-top: 8rem;
}

@media only screen and (max-width: 48em) {
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pt-sm-1 {
    padding-top: 1rem !important;
  }
  .pt-sm-2 {
    padding-top: 2rem !important;
  }
  .pt-sm-3 {
    padding-top: 3rem !important;
  }
  .pt-sm-4 {
    padding-top: 4rem !important;
  }
  .pt-sm-5 {
    padding-top: 5rem !important;
  }
  .pt-sm-6 {
    padding-top: 6rem;
  }
}
.pl-0 {
  padding-left: 0;
}

.pl-4 {
  padding-left: 4rem;
}

.pl-5 {
  padding-left: 5rem;
}

.pl-6 {
  padding-left: 6rem;
}

.pl-7 {
  padding-left: 7rem;
}

.pl-8 {
  padding-left: 8rem;
}

@media only screen and (max-width: 48em) {
  .pl-sm-0 {
    padding-left: 0;
  }
  .pl-sm-1 {
    padding-left: 1rem;
  }
  .pl-sm-2 {
    padding-left: 2rem;
  }
  .pl-sm-3 {
    padding-left: 3rem;
  }
  .pl-sm-4 {
    padding-left: 4rem;
  }
  .pl-sm-5 {
    padding-left: 5rem;
  }
  .pl-sm-6 {
    padding-left: 6rem;
  }
}
.pr-0 {
  padding-right: 0;
}

.pr-4 {
  padding-right: 4rem;
}

.pr-5 {
  padding-right: 5rem;
}

.pr-6 {
  padding-right: 6rem;
}

.pr-7 {
  padding-right: 7rem;
}

.pr-8 {
  padding-right: 8rem;
}

@media only screen and (max-width: 48em) {
  .pr-sm-0 {
    padding-right: 0;
  }
  .pr-sm-1 {
    padding-right: 1rem;
  }
  .pr-sm-2 {
    padding-right: 2rem;
  }
  .pr-sm-3 {
    padding-right: 3rem;
  }
  .pr-sm-4 {
    padding-right: 4rem;
  }
}
.pb-3 {
  padding-bottom: 3rem;
}

.pb-4 {
  padding-bottom: 4rem;
}

.pb-5 {
  padding-bottom: 5rem;
}

.pb-6 {
  padding-bottom: 6rem;
}

.pb-7 {
  padding-bottom: 7rem;
}

.pb-8 {
  padding-bottom: 8rem;
}

.pb-11 {
  padding-bottom: 11rem;
}

.pb-12 {
  padding-bottom: 12rem;
}

@media only screen and (max-width: 48em) {
  .pb-sm-0 {
    padding-bottom: 0;
  }
  .pb-sm-1 {
    padding-bottom: 1rem;
  }
  .pb-sm-2 {
    padding-bottom: 2rem;
  }
  .pb-sm-3 {
    padding-bottom: 3rem;
  }
  .pb-sm-4 {
    padding-bottom: 4rem;
  }
  .pb-sm-5 {
    padding-bottom: 5rem;
  }
  .pb-sm-6 {
    padding-bottom: 6rem;
  }
}
/* Margins */
.m-auto {
  margin: auto !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mt-4 {
  margin-top: 4rem;
}

.mt-5 {
  margin-top: 5rem;
}

.mt-10 {
  margin-top: 10rem;
}

@media only screen and (max-width: 36em) {
  .mt-xs-0 {
    margin-top: 0;
  }
  .mt-xs-1 {
    margin-top: 1rem;
  }
  .mt-xs-2 {
    margin-top: 2rem;
  }
  .mt-xs-3 {
    margin-top: 3rem;
  }
  .mt-xs-4 {
    margin-top: 4rem;
  }
}
.mr-0 {
  margin-right: 0 !important;
}

.mr-1 {
  margin-right: 1rem !important;
}

.mr-2 {
  margin-right: 2rem !important;
}

.mr-3 {
  margin-right: 3rem !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 1rem !important;
}

.mb-2 {
  margin-bottom: 2rem !important;
}

.mb-3 {
  margin-bottom: 3rem !important;
}

.mb-4 {
  margin-bottom: 4rem !important;
}

.mb-5 {
  margin-bottom: 5rem !important;
}

.mb-6 {
  margin-bottom: 6rem !important;
}

.mb-7 {
  margin-bottom: 7rem !important;
}

@media only screen and (max-width: 36em) {
  .mb-xs-0 {
    margin-bottom: 0;
  }
  .mb-xs-1 {
    margin-bottom: 1rem;
  }
  .mb-xs-2 {
    margin-bottom: 2rem;
  }
}
.ml-0 {
  margin-left: 0 !important;
}

.ml-1 {
  margin-left: 1 !important;
}

.ml-2 {
  margin-left: 2 !important;
}

.ml-3 {
  margin-left: 3 !important;
}

body {
  color: hsl(33, 35%, 19%);
  margin: 0;
  position: relative;
  font-family: "FeltTipRom", sans-serif;
  background-color: #222;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 100vh;
  min-height: 100svh;
  height: 100%;
}
body.open-modal::before {
  content: "";
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 1000;
  transition: all 200ms;
  opacity: 1;
  background-color: hsla(33, 35%, 19%, 0.3);
}
body main {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  /*padding: 0 5rem 0 30rem;*/
}
@media only screen and (max-width: 75em) {
  body main {
    padding: 0 2rem;
  }
}
@media only screen and (max-width: 36em) {
  body main {
    padding: 0;
  }
}
body main .release-cover {
  max-height: 50vh;
}
@media only screen and (max-width: 75em) {
  body main .release-cover {
    max-height: initial;
  }
}
body main section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0 4rem;
  max-width: 150rem;
}
body main section#merch .container {
  width: 100%;
  max-width: 90rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 8rem;
}
@media only screen and (max-width: 62em) {
  body main section#merch .container {
    flex-direction: column;
    gap: 1rem;
  }
}
body main section#merch .container div.merch-thumbnail {
  flex: 1;
}
body main section#merch .container div.merch-thumbnail img {
  height: 100%;
}
body main section#merch .container div.cta-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #826646;
}
body main section#merch .container div.cta-container p {
  font-size: 2.4rem;
  text-transform: uppercase;
  line-height: 1.7cap;
  text-align: center;
}
body main section#merch .container div.cta-container a {
  background-color: black;
  color: white;
  font-size: 2.4rem;
  text-transform: uppercase;
  line-height: 1.7cap;
  padding: 1rem 2rem;
}
body main section#merch .container div.cta-container a:hover {
  opacity: 0.6;
}
body main section#tour-section {
  font-family: "Context Reprise Condensed", sans-serif;
  color: #C7BF91;
  text-transform: uppercase;
  font-size: 2.4rem;
  align-items: unset;
  position: relative;
  /*.seated-events-table{
      border: none;
      .seated-event-row {
          border: none;
          .seated-event-description-cells {
              width: 100%;
              display: flex;
              gap: 20px;
          }
          .seated-event-link {
              font-family: "Context Reprise Condensed", sans-serif;
              color: #C7BF91;
              text-transform: uppercase;
              font-size: 2.4rem;
              background: transparent;
              border: none;
          }
      }
      .seated-follow-box {
          display: flex;
          gap: 20px;
          align-items: center;
          a {
              font-family: "Context Reprise Condensed", sans-serif;
              background-color: transparent;
              color: #C7BF91;
              text-transform: uppercase;
              display: inline-block;
              font-size: 1.5rem;
              padding: 1.3rem 3.5rem;
              cursor: pointer;
              border: 1px solid #C7BF91;
              margin-top: 1.2rem;
              cursor: pointer;
          }
          .seated-follow-text {
              display: none;
          }
      }
  }
  .container {
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 2.6vh;
      @include respond(xs) {
          gap: 1.5rem;
      }
  }
  .seated-event-row {
      display: flex;
      align-items: center;
      padding: 0.4rem 0;
      gap: 1rem; 

      .seated-event-row > div:first-child {
      flex: 1;
      white-space: nowrap;
      text-align: left;
      }

      .seated-event-row > div:last-child {
      flex: 1;
      white-space: nowrap;
      text-align: right;
      }

      .seated-event-row > div:not(:first-child):not(:last-child) {
      flex: 3;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
  }*/
}
body main section#tour-section .seated-follow-box {
  display: flex;
  gap: 20px;
  align-items: center;
}
@media only screen and (max-width: 36em) {
  body main section#tour-section .seated-follow-box {
    justify-content: center;
  }
}
body main section#tour-section .seated-follow-box a {
  font-family: "Context Reprise Condensed", sans-serif;
  background-color: transparent;
  color: #C7BF91;
  text-transform: uppercase;
  display: inline-block;
  font-size: 1.5rem;
  padding: 1.3rem 3.5rem;
  cursor: pointer;
  border: 1px solid #C7BF91;
  margin-top: 1.2rem;
  cursor: pointer;
}
body main section#tour-section .seated-follow-box .seated-follow-text {
  display: none;
}
body main section#tour-section .seated-event-details-sold-out {
  position: absolute;
  right: 5.5rem;
  display: flex;
  width: 125px;
  transform: rotate(2.277deg);
  justify-content: center;
  align-items: center;
  background: #D7772A;
  font-size: 1.5rem;
  margin-top: 0.5rem;
}
@media only screen and (max-width: 36em) {
  body main section#tour-section .seated-event-details-sold-out {
    right: 50%;
    transform: rotate(2.277deg) translateX(50%);
    bottom: 6rem;
  }
}
body main section#tour-section .seated-event-link {
  font-family: "Context Reprise Condensed", sans-serif;
  color: #C7BF91;
  text-transform: uppercase;
  font-size: 2.4rem;
  background: transparent;
  border: none;
}
@media only screen and (max-width: 36em) {
  body main section#tour-section .seated-event-row {
    position: relative;
  }
}
body main section#signup {
  padding: 3rem 0;
}
body main section#signup p {
  font-size: 3.2rem;
  text-align: center;
  margin: 0 0 2rem 0;
  font-family: "Ringold", sans-serif;
  color: #FFFEF9;
}
@media only screen and (max-width: 75em) {
  body main section#signup p {
    margin: 0 auto 3rem 0;
    line-height: 1.6cap;
  }
}
@media only screen and (max-width: 36em) {
  body main section#signup p {
    font-size: 2.5rem;
  }
}
body main section#music-section, body main section#video-section {
  margin-bottom: 10rem;
}
body main section#music-section .listen-all-wrapper, body main section#video-section .listen-all-wrapper {
  text-align: left;
  width: 100%;
}
body main section#music-section a, body main section#video-section a {
  font-family: "Context Reprise Condensed", sans-serif;
  background-color: transparent;
  color: #C7BF91;
  text-transform: uppercase;
  display: inline-block;
  font-size: 1.5rem;
  padding: 1.3rem 3.5rem;
  cursor: pointer;
  border: 1px solid #C7BF91;
  margin-top: 1.2rem;
  margin-bottom: 1px;
}
@media only screen and (max-width: 36em) {
  body main section#music-section a, body main section#video-section a {
    font-size: 1.3rem;
    padding: 0.8rem 2.5rem;
    text-align: center;
  }
}
body main section#video-section .splide .splide__arrow--prev {
  top: 36%;
}
body main section#newsletter-section {
  min-height: 900px;
  align-items: flex-start;
}
body main section#newsletter-section h2 {
  margin-top: 10rem;
}
body main section#newsletter-section p.disc a {
  text-decoration: underline;
}
body main section#newsletter-section #newsletter {
  font-family: "HelveticaNeue55Roman", Helvetica, sans-serif;
}
body main section#newsletter-section #newsletter .form-container form .form-group {
  display: block;
}
body main section#newsletter-section #newsletter div[eo-block=title] {
  display: none;
}
body main section#newsletter-section #newsletter .newsletter-socials {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
}
@media only screen and (max-width: 36em) {
  body main section#newsletter-section #newsletter .newsletter-socials {
    justify-content: center;
  }
}
body main section#newsletter-section #newsletter .main-form {
  flex-direction: row;
  flex-wrap: unset;
}
@media only screen and (max-width: 36em) {
  body main section#newsletter-section #newsletter .main-form {
    flex-direction: column;
    width: 100%;
  }
}
body main section#newsletter-section #newsletter .emailoctopus-form [eo-form-fields-container] {
  flex-direction: row;
  flex-wrap: unset;
}
@media only screen and (max-width: 36em) {
  body main section#newsletter-section #newsletter .emailoctopus-form [eo-form-fields-container] {
    flex-direction: column;
    width: 100%;
  }
}
body main section#newsletter-section #newsletter .emailoctopus-form input[type=submit] {
  border-bottom: 1px solid #C7BF91;
  text-align: center;
}
body main section#newsletter-section #newsletter .emailoctopus-form .emailoctopus-form-row {
  border-bottom: 1px solid #C7BF91;
  margin: 0;
}
body main section#newsletter-section #newsletter input {
  color: #C7BF91;
  font-family: "Context Reprise Condensed";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background: none;
  border: none;
  text-align: left;
}
body main section#newsletter-section #newsletter input::placeholder {
  color: #C7BF91;
  font-family: "Context Reprise Condensed";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
@media only screen and (max-width: 36em) {
  body main section#newsletter-section #newsletter input {
    text-align: center;
  }
}
body main section#newsletter-section #newsletter input#field_0 {
  margin-bottom: -9px;
}
@media only screen and (max-width: 36em) {
  body main section#newsletter-section #newsletter input#field_0 {
    margin-bottom: 3px;
  }
}
body main section#newsletter-section #newsletter input#field_6 {
  border-left: 1px solid #C7BF91;
}
@media only screen and (max-width: 36em) {
  body main section#newsletter-section #newsletter input#field_6 {
    border-left: none;
  }
}
body main section#newsletter-section #newsletter input[type=submit] {
  margin: 0;
}
body main section#newsletter-section #newsletter p, body main section#newsletter-section #newsletter a {
  font-family: "HelveticaNeue55Roman", Helvetica, sans-serif;
  color: #C7BF91;
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
}
body main section#newsletter-section #newsletter .emailoctopus-success-message {
  color: #C7BF91 !important;
  font-family: "Context Reprise Condensed";
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background: none;
  border: none;
  text-align: left;
}
body main section#pre-save {
  padding: 5rem 0 2.5rem 0;
  gap: 1.5rem;
  margin-top: 10rem;
  min-height: 70vh;
}
body main section#pre-save h2 {
  font-family: "Ringold", sans-serif;
  font-size: 10.5vw;
  color: #C7BF91;
}
@media only screen and (max-width: 36em) {
  body main section#pre-save h2 {
    font-size: 18.5vw;
  }
}
body main section#pre-save p {
  font-family: "FeltTipRom", sans-serif;
  font-size: 2.5vw;
  color: #FFFEF9;
  margin: 0 auto;
}
@media only screen and (max-width: 36em) {
  body main section#pre-save p {
    font-size: 7vw;
  }
}
body main section#pre-save .cta-container {
  padding-top: 1.5rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 4rem;
}
@media only screen and (max-width: 75em) {
  body main section#pre-save .cta-container {
    flex-direction: column;
    gap: 2rem;
  }
}
body main section#pre-save .cta-container a, body main section#pre-save .cta-container button {
  font-family: "Context Reprise Condensed", sans-serif;
  background-color: transparent;
  color: #C7BF91;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  border: none;
  font-size: 1.5rem;
  padding: 1.3rem 3.5rem;
  cursor: pointer;
  border: 1px solid #C7BF91;
}
body main section#pre-save .cta-container a:hover, body main section#pre-save .cta-container button:hover {
  border: 1px solid #D7772A;
  background: #D7772A;
}
@media only screen and (max-width: 36em) {
  body main section#pre-save .cta-container a, body main section#pre-save .cta-container button {
    font-size: 1.3rem;
    padding: 0.8rem 2.5rem;
    text-align: center;
  }
}
body main section#pre-save .cta-disclaimer p {
  font-size: 10px;
  font-family: "HelveticaNeue55Roman", sans-serif;
  text-align: center;
}
@media only screen and (max-width: 36em) {
  body main section#pre-save .cta-disclaimer p {
    max-width: 25rem;
  }
}
body main section#listen-section {
  padding: 2.5rem 0 2.5rem 0;
  gap: 1.5rem;
}
body main section#listen-section .container {
  background-image: url("../assets/img/sheet-bg.webp");
  padding: 3.3rem 5rem 3rem 5rem;
  background-position: top right;
}
@media only screen and (max-width: 75em) {
  body main section#listen-section .container {
    width: 100%;
  }
}
body main section#listen-section .container h2 {
  font-family: "Ringold", sans-serif;
  font-size: 3.5vw;
  color: #AA7610;
}
@media only screen and (max-width: 36em) {
  body main section#listen-section .container h2 {
    font-size: 11.5vw;
  }
}
body main section#listen-section .container .cta-container {
  padding-top: 3rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 4rem;
}
@media only screen and (max-width: 62em) {
  body main section#listen-section .container .cta-container {
    flex-direction: column;
    gap: 2rem;
  }
}
body main section#listen-section .container .cta-container a,
body main section#listen-section .container .cta-container button {
  background-color: #826646;
  color: #FFFEF9;
  display: flex;
  flex-direction: column;
  border: none;
  font-size: 2.5rem;
  padding: 0.5rem 4rem;
  cursor: pointer;
  text-align: center;
}
body main section#listen-section .container .cta-container a:hover,
body main section#listen-section .container .cta-container button:hover {
  background-color: hsl(33, 35%, 19%);
  color: #FFFEF9;
}
body main section#follow {
  padding: 60px 0;
}
body main section#follow .container h2 a {
  display: flex;
  flex-direction: row;
  font-size: 4rem;
  gap: 2rem;
  align-items: center;
}
@media only screen and (max-width: 62em) {
  body main section#follow .container h2 a {
    font-size: 3.2rem;
  }
}
body main section#follow .container h2 a img {
  width: 4rem;
}
@media only screen and (max-width: 62em) {
  body main section#follow .container h2 a img {
    width: 3.2rem;
  }
}
body main section .section-title {
  width: 100%;
  text-align: left;
  margin-bottom: 2.5rem;
}
body main section .splide {
  width: 100%;
  /* Custom prev */
  /* Custom next */
}
body main section .splide h3 {
  color: #C7BF91;
  text-align: left;
  margin-top: 2rem;
  height: 4rem;
  margin-right: 2rem;
  display: flex;
  align-items: center;
}
body main section .splide h3.smaller {
  font-size: 2.2rem;
}
@media only screen and (max-width: 62em) {
  body main section .splide h3.smaller {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 36em) {
  body main section .splide h3.smaller {
    font-size: 1.5rem;
  }
}
body main section .splide .splide__arrow {
  background: none; /* remove default bg */
  border: none;
  width: 40px; /* size of arrow button */
  height: 40px;
  cursor: pointer;
  top: 40%;
}
@media only screen and (max-width: 36em) {
  body main section .splide .splide__arrow {
    top: 40%;
    width: 20px;
    height: 20px;
  }
}
body main section .splide .splide__arrow svg {
  display: none; /* hide default icon */
}
body main section .splide .splide__arrow--prev {
  background-image: url("../../assets/img/slider_arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  transform: scaleX(-1);
  left: -3.6rem;
  top: 38%;
}
@media only screen and (max-width: 36em) {
  body main section .splide .splide__arrow--prev {
    left: -2rem;
  }
}
body main section .splide .splide__arrow--next {
  background-image: url("../../assets/img/slider_arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  right: -1rem;
}
@media only screen and (max-width: 36em) {
  body main section .splide .splide__arrow--next {
    right: -1.6rem;
  }
}
body main section .splide .splide__slide a {
  font-family: "Context Reprise Condensed", sans-serif;
  background-color: transparent;
  color: #C7BF91;
  text-transform: uppercase;
  display: inline-block;
  font-size: 1.5rem;
  padding: 1.3rem 3.5rem;
  cursor: pointer;
  border: 1px solid #C7BF91;
  margin-top: 1.2rem;
  margin-bottom: 1px;
}
@media only screen and (max-width: 36em) {
  body main section .splide .splide__slide a {
    font-size: 1.3rem;
    padding: 0.8rem 2.5rem;
    text-align: center;
  }
}
body main section .splide .splide__slide img {
  max-width: 639px;
}
@media only screen and (max-width: 36em) {
  body main section .splide .splide__slide img {
    width: 100%;
  }
}
body h1,
body h2,
body h3 {
  font-family: "Ringold", sans-serif;
  font-weight: lighter;
  text-transform: uppercase;
  margin: 0 auto;
  text-align: center;
  line-height: 1.3cap;
}
body h1 {
  font-size: 7rem;
}
@media only screen and (max-width: 62em) {
  body h1 {
    font-size: 5rem;
  }
  body h1 img {
    max-width: 100%;
  }
}
body h2 {
  font-size: 4.4vw;
  color: #AA7610;
}
body h2 img {
  max-width: 50rem;
}
@media only screen and (max-width: 62em) {
  body h2 {
    font-size: 3.9rem;
  }
}
@media only screen and (max-width: 36em) {
  body h2 {
    font-size: 11vw;
  }
}
body h3 {
  font-size: 2.8rem;
}
@media only screen and (max-width: 62em) {
  body h3 {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 36em) {
  body h3 {
    font-size: 1.5rem;
  }
}
body#home #music h3 {
  color: #C7BF91;
  text-align: left;
  margin-top: 2rem;
}
body#home #video h3 {
  color: #C7BF91;
  text-align: left;
  margin-top: 2rem;
}
body.internal {
  background-color: #826646;
}
body.internal#music .music-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 112rem;
  padding: 0 1.5rem;
  gap: 2vw;
}
@media only screen and (max-width: 62em) {
  body.internal#music .music-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 36em) {
  body.internal#music .music-container {
    grid-template-columns: 1fr;
  }
}
body.internal#music .music-container .album-container {
  position: relative;
}
body.internal#music .music-container .album-container .album-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 2;
}
body.internal#music .music-container .album-container a {
  background-color: hsl(33, 35%, 19%);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 74px;
  width: 244px;
  font-size: 31px;
  font-family: "Ringold", sans-serif;
  text-transform: uppercase;
  color: #FFFEF9;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.3s;
  z-index: 3;
}
body.internal#music .music-container .album-container a:hover {
  background-color: #826646;
  color: #FFFEF9;
}
body.internal#music .music-container .album-container:hover a,
body.internal#music .music-container .album-container:hover .album-overlay {
  opacity: 1;
}
body.internal#music #signup {
  background-color: #826646;
}
body::before {
  transition: all 200ms;
}
body::after {
  content: "";
  width: 100%;
  height: 100vh;
  height: 100svh;
  background-image: url("../assets/img/bg_dark2.webp");
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 1;
  z-index: -10;
}
body .md-only {
  display: flex !important;
  opacity: 1;
}
@media only screen and (max-width: 62em) {
  body .md-only {
    display: none !important;
    opacity: 0;
  }
}
body .xs-only {
  display: none !important;
  opacity: 0;
}
@media only screen and (max-width: 62em) {
  body .xs-only {
    display: flex !important;
    opacity: 1;
  }
}
body #bgOverlay {
  background-color: #826646;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  z-index: -1;
}
body .ae-modal-overlay-closed,
body .ae-modal-closed {
  display: none;
}
body #bottom-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%; /* or whatever width you want */
  height: 1200px; /* fixed height */
  overflow: hidden; /* hides overflow */
  z-index: -1;
}
@media only screen and (max-width: 36em) {
  body #bottom-bg {
    height: 900px;
  }
}
body #bottom-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* keeps ratio and crops */
  object-position: bottom; /* crop from center */
}
@media only screen and (max-width: 36em) {
  body #bottom-bg img {
    object-position: 90% bottom;
  }
}

body > header {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  animation-delay: 1s;
  min-height: 14rem;
  align-items: center;
  justify-content: center;
  z-index: 10;
  margin-bottom: 5rem;
}
body > header .top-content {
  position: absolute;
  top: 0;
  width: 100%;
  display: flex;
  gap: 4rem;
  padding: 4rem 5rem 0 5rem;
}
@media only screen and (max-width: 75em) {
  body > header .top-content {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 0;
  }
}
body > header .top-content h1 {
  color: #D7772A;
  font-size: 6vw;
  /*font-size: 5rem;
  font-family: $bold-font;
  font-weight: lighter;
  text-align: center;
  position: fixed;
  top: 4.2rem;
  left: 6rem;
  width: fit-content;
  max-width: 18rem;
  z-index: 100;
  @include respond(lg) {
      position: absolute;
      top: 2rem;
      left: 50%;
      transform: translateX(-50%);
  }
  @include respond(xs) {
      font-size: 4.3rem;
  }
  a {
      font-size: inherit;
      font-family: inherit;
      color: $light-color;
  }*/
}
body > header .top-content .container {
  width: 100%;
}
body > header .top-content .split {
  align-items: normal;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  justify-content: space-between;
}
body > header .top-content .split .side.menu-container {
  height: unset;
  opacity: 1;
  padding: 10px;
  pointer-events: all;
  position: unset;
  width: 60%;
  text-align: center;
}
body > header .top-content .split .side.menu-container .menu {
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  height: 7rem;
}
@media only screen and (max-width: 36em) {
  body > header .top-content .split .side.menu-container .menu {
    display: none;
  }
}
body > header .top-content .split .side.menu-container .menu a {
  flex: 1;
  font-size: 33px;
  font-family: "Ringold";
  color: #C7BF91;
}
body > header .top-content .split .side:first-child {
  max-width: 40%;
  text-align: center;
}
@media only screen and (max-width: 36em) {
  body > header .top-content .split .side:first-child {
    max-width: 100%;
    position: absolute;
    top: 2rem;
    left: 5%;
  }
}
@media only screen and (max-width: 36em) {
  body > header .top-content .split .side:first-child h1 {
    font-size: 13vw;
  }
}
body > header .top-content nav {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 1rem;
}
@media only screen and (max-width: 75em) {
  body > header .top-content nav {
    background-color: #826646;
    position: fixed;
    opacity: 0;
    right: -100%;
    min-height: 100vh;
    min-height: 100svh;
    top: 0;
    width: 100%;
    padding: 14rem 5rem 0 5rem;
    z-index: 10;
    flex-direction: column;
    justify-content: center;
    gap: 6vh;
    align-items: center;
    pointer-events: none;
  }
  body > header .top-content nav.open {
    right: 0;
    opacity: 1;
    pointer-events: initial;
  }
}
body > header .top-content nav .social-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}
@media only screen and (max-width: 75em) {
  body > header .top-content nav .social-container {
    flex-direction: column-reverse;
    gap: 2rem;
  }
}
body > header .top-content nav .social-container .be-a-craig {
  font-size: 2.5rem;
  border-bottom: 1px solid transparent;
}
body > header .top-content nav .social-container .be-a-craig:hover {
  border-bottom: 1px solid #FFFEF9;
}
@media only screen and (max-width: 75em) {
  body > header .top-content nav .social {
    justify-content: center;
  }
}
body > header .top-content nav ul {
  position: fixed;
  top: 17rem;
  left: 6rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 6vh;
  list-style: none;
  margin: 0;
  padding: 0;
  width: fit-content;
  text-align: center;
}
@media only screen and (max-width: 75em) {
  body > header .top-content nav ul {
    position: relative;
    align-items: center;
    margin: auto;
    left: initial;
    top: initial;
    width: 100%;
    margin: 0 auto;
  }
}
body > header .top-content nav ul li a, body > header .top-content nav ul li button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12vw;
  max-width: 17rem;
  height: 10vh;
  max-height: 9rem;
  position: relative;
  font-family: "Ringold", sans-serif;
  font-weight: 500;
  font-size: 2.7rem;
  text-transform: uppercase;
  color: #AA7610;
  background-color: transparent;
  border: 0;
  opacity: 1;
  position: relative;
}
@media only screen and (max-width: 75em) {
  body > header .top-content nav ul li a, body > header .top-content nav ul li button {
    height: 3.2rem;
    color: #FFFEF9;
    width: fit-content;
  }
}
body > header .top-content nav ul li a span, body > header .top-content nav ul li button span {
  border-bottom: 2px solid transparent;
  line-height: 1.5cap;
}
body > header .top-content nav ul li a:hover span, body > header .top-content nav ul li button:hover span {
  border-bottom: 2px solid #AA7610;
}
body > header .top-content nav ul li a:hover::after, body > header .top-content nav ul li button:hover::after {
  opacity: 0.8;
}
body > header .top-content nav ul li a::after, body > header .top-content nav ul li button::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("../assets/img/buttons/btn_music.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media only screen and (max-width: 75em) {
  body > header .top-content nav ul li a::after, body > header .top-content nav ul li button::after {
    content: none;
  }
}
body > header .top-content nav ul li.current a span {
  border-bottom: 2px solid #AA7610;
}
body > header .top-content button.toggle-menu {
  display: none;
  background-color: transparent;
  border: none;
  color: #FFFEF9;
  z-index: 100;
  grid-area: toggle;
}
@media only screen and (max-width: 75em) {
  body > header .top-content button.toggle-menu {
    position: absolute;
    right: 1rem;
    top: 2rem;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 3rem;
    margin: 0;
    width: 100%;
    padding: 0;
  }
}
body > header .top-content button.toggle-menu .line {
  transition: 500ms;
  transform-origin: center;
  fill: #FFFEF9;
}
body > header .top-content button.toggle-menu.active .top {
  y: 46;
  transform: rotate(-45deg);
}
body > header .top-content button.toggle-menu.active .bottom {
  y: 46;
  transform: rotate(45deg);
}
body > header .top-content button.toggle-menu.active .middle {
  opacity: 0;
}
body > header a.home-header-album-container {
  max-width: 70rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 6rem;
}
@media only screen and (max-width: 75em) {
  body > header a.home-header-album-container {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 1rem;
  }
}
@media only screen and (max-width: 75em) {
  body > header a.home-header-album-container .thumbnail-container {
    max-width: 17rem;
  }
}
body > header a.home-header-album-container .cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
body > header a.home-header-album-container .cta-container span {
  font-size: 4rem;
  font-family: "MrEavesXLSan", sans-serif;
  padding: 0rem 4rem;
  text-transform: uppercase;
  background-color: #9dcac5;
  color: hsl(33, 35%, 19%);
  border-radius: 20px;
}
@media only screen and (max-width: 62em) {
  body > header a.home-header-album-container .cta-container span {
    font-size: 2.2rem;
    border-radius: 10px;
  }
}
@media only screen and (max-width: 62em) {
  body > header a.home-header-album-container .cta-container img {
    max-width: 17rem;
  }
}
body > header a.home-header-album-container:hover .cta-container span {
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.7607843137);
  background-color: #5f8782;
}
body > header #menuToggle {
  display: none;
  font-size: 2rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  z-index: 10;
  background-color: transparent;
  position: fixed;
  justify-content: center;
  border: none;
  height: 3.5rem;
  width: 3.5rem;
  width: fit-content;
  right: 2rem;
  top: 3rem;
}
@media only screen and (max-width: 75em) {
  body > header #menuToggle {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media only screen and (max-width: 36em) {
  body > header #menuToggle {
    right: 1rem;
    top: 2.4rem;
  }
}
body > header #menuToggle span {
  display: flex;
}
body > header #menuToggle span:last-of-type {
  display: none;
}
body > header #menuToggle.active span:last-of-type {
  display: flex;
}
body > header #menuToggle.active span:first-of-type {
  display: none;
}
body #mobile-menu {
  position: absolute;
  background: #222;
  width: 100%;
  text-align: center;
  top: 8rem;
  display: none;
  flex-direction: column;
  transition: height 1s;
}
body #mobile-menu.open {
  display: flex;
}
body #mobile-menu a {
  color: #C7BF91;
  text-align: center;
  font-family: "Context Reprise Condensed";
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 99.751% */
  text-transform: uppercase;
  padding: 1.8rem;
  border-bottom: 1px solid #C7BF91;
}
body #mobile-menu a.current {
  color: #222;
  background: #C7BF91;
}
body #mobile-menu a.last {
  border: none;
}
@media only screen and (max-width: 75em) {
  body.menu-open > header .top-content h1 {
    position: fixed;
  }
}
body.menu-open #menuToggle {
  position: fixed;
}

.btn {
  font-family: "Ringold", sans-serif;
  text-align: center;
  text-transform: uppercase;
  color: hsl(33, 35%, 19%);
  background-color: transparent;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  border: 1px solid hsl(33, 35%, 19%);
  border-radius: 5px;
  cursor: pointer;
  height: 4rem;
  width: 100%;
  font-size: 1.5rem;
  padding: 1rem 2.5rem 0.5rem 2.5rem;
}
.btn-sm {
  border-radius: 3px;
  height: 2.6rem;
  padding: 0.7rem 1.4rem 0.2rem 1.4rem;
}
.btn svg {
  max-width: 1.9rem;
}
.btn svg path {
  transition: all 200ms;
}
.btn img {
  max-width: 1.9rem;
  margin-top: -4px;
}
.btn span {
  text-wrap-mode: nowrap;
}
.btn i {
  font-size: 2.4rem;
}

.social {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 2rem;
}
.social:hover a {
  opacity: 0.5;
}
.social a {
  margin: 0;
  color: var(--clr-light);
}
.social a:hover {
  opacity: 1;
}
.social a.rca-icon img {
  fill: white;
  width: 21px;
  max-height: 21px;
}
.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 only screen and (max-width: 75em) {
  .social {
    text-align: center;
    width: 100%;
  }
}
@media only screen and (max-width: 36em) {
  .social {
    min-width: inherit;
    margin-bottom: 0;
  }
}

.modal {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  min-height: 15rem;
  max-width: 32rem;
  width: 100%;
  z-index: 1000;
  background-color: #826646;
  transition: all 300ms;
  gap: 1rem;
  padding: 2rem;
  border-radius: 5px;
  border: 1px solid hsl(33, 35%, 19%);
}
@media only screen and (max-width: 36em) {
  .modal {
    max-width: 90%;
  }
}
.modal p {
  font-size: 0.8rem;
  font-family: "HelveticaNeue55Roman", sans-serif;
  text-align: center;
}
.modal h2 {
  text-align: center;
  font-size: 3.2rem;
  line-height: 1.2cap;
  color: #FFFEF9;
  margin: 0;
  font-weight: 600;
  text-transform: initial;
  text-wrap: balance;
}
.modal a {
  font-size: 2.2rem;
  margin-top: 1rem;
  text-transform: lowercase;
  color: hsl(33, 35%, 19%);
  display: block;
  text-decoration: underline;
}
.modal a.btn {
  font-family: "FeltTipRom", sans-serif;
  color: hsl(33, 35%, 19%);
  background-color: transparent;
  border: 1px solid hsl(33, 35%, 19%);
  text-decoration: none;
  display: flex;
  padding: 1rem;
  text-transform: uppercase;
}
.modal a.btn:hover {
  background-color: hsla(32, 30%, 39%, 0.4);
}
.modal.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-30%) translateX(-50%);
}
.modal .btn-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  letter-spacing: 0;
  max-width: 2rem;
  text-transform: uppercase;
  cursor: pointer;
  color: hsl(33, 35%, 19%);
}
.modal .btn-close svg {
  width: 100%;
}
.modal.pre-save {
  background-image: url("../assets/img/pre-save/sheet-bg.webp");
  background-size: cover;
  max-width: 68rem;
  height: 43.1rem;
  width: 100%;
  box-shadow: -6px 8px 10.4px 0px rgba(0, 0, 0, 0.29);
  padding: 7.2rem 4rem 4rem 4rem;
  justify-content: flex-start;
}
@media only screen and (max-width: 48em) {
  .modal.pre-save {
    max-width: 90%;
    height: initial;
    padding: 3rem;
  }
}
@media only screen and (max-width: 36em) {
  .modal.pre-save {
    background-size: cover;
  }
}
.modal.pre-save .modal-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media only screen and (max-width: 48em) {
  .modal.pre-save .modal-content {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}
.modal.pre-save .modal-content .artwork {
  max-width: 30rem;
  height: 100%;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 36em) {
  .modal.pre-save .modal-content .artwork {
    max-width: 23rem;
  }
}
.modal.pre-save .modal-content .pre-save-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 1rem;
}
@media only screen and (max-width: 48em) {
  .modal.pre-save .modal-content .pre-save-container {
    padding-top: 0;
  }
}
.modal.pre-save .modal-content .pre-save-container img:first-of-type {
  max-width: 80%;
}
.modal.pre-save .modal-content .pre-save-container img:last-of-type {
  max-width: 60%;
  padding-top: 1rem;
  padding-bottom: 2rem;
}
.modal.pre-save .modal-content .pre-save-container .cta-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  width: 100%;
}
@media only screen and (max-width: 36em) {
  .modal.pre-save .modal-content .pre-save-container .cta-container {
    gap: 1rem;
  }
}
.modal.pre-save .modal-content .pre-save-container .cta-container a,
.modal.pre-save .modal-content .pre-save-container .cta-container button {
  background-color: #826646;
  color: white;
  text-decoration: none;
  font-size: 2rem;
  border: none;
  width: 100%;
  text-align: center;
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  text-transform: initial;
  cursor: pointer;
}
.modal.pre-save .modal-content .pre-save-container .cta-container a:hover,
.modal.pre-save .modal-content .pre-save-container .cta-container button:hover {
  background-color: #644C31;
}
.modal.pre-save .modal-content .pre-save-container .cta-disclaimer {
  display: flex;
  flex-direction: column;
  padding-top: 2.3rem;
}
@media only screen and (max-width: 36em) {
  .modal.pre-save .modal-content .pre-save-container .cta-disclaimer {
    padding-top: 1.3rem;
  }
}
.modal.pre-save .modal-content .pre-save-container .cta-disclaimer p {
  margin: 0 auto;
  color: #826646;
  font-size: 8px;
}
.modal.pre-add-modal {
  background: #222;
  background-size: cover;
  max-width: 40rem;
  width: 100%;
  box-shadow: -6px 8px 10.4px 0px rgba(0, 0, 0, 0.29);
  padding: 4rem 2rem;
}
.modal.pre-add-modal h2 {
  color: #D7772A;
  text-transform: uppercase;
}
.modal.pre-add-modal .input-group {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 2rem;
}
.modal.pre-add-modal .input-group input {
  border-color: #C7BF91;
  font-size: 1.8rem;
  color: #C7BF91;
  height: 4.2rem;
}
.modal.pre-add-modal .input-group input#apple_music_email_address {
  border-bottom: 1px solid #C7BF91;
}
.modal.pre-add-modal .input-group input::placeholder {
  color: #C7BF91;
  opacity: 0.7;
}
.modal.pre-add-modal .input-group button {
  font-family: "Context Reprise Condensed", sans-serif;
  background-color: transparent;
  color: #C7BF91;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  border: none;
  font-size: 1.5rem;
  padding: 1.3rem 3.5rem;
  height: inherit;
  width: 12rem;
  cursor: pointer;
  border: 1px solid #C7BF91;
}
.modal.pre-add-modal .input-group button:hover {
  border: 1px solid #D7772A;
  background: #D7772A;
}

footer {
  border-top: 0;
  color: #fff6e1;
  width: 100%;
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  opacity: 0;
  position: relative;
  bottom: -5rem;
  animation: fadeInBottom 1s ease forwards;
  animation-delay: 1s;
  align-items: center;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 75em) {
  footer {
    padding: 5rem 2rem 2rem 2rem;
    margin-bottom: 0;
  }
}
footer .legal {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-items: center;
  align-items: center;
  justify-content: center;
  align-content: center;
  max-width: 50rem;
}
@media only screen and (max-width: 62em) {
  footer .legal {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    max-width: initial;
  }
}
footer .legal .logos {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  width: 7.9rem;
}
footer .legal .logos .rca {
  width: 6.9rem;
}
footer .legal .logos .rca img {
  width: 100%;
}
footer .legal .disclaimer {
  text-align: center;
  font-family: "HelveticaNeue55Roman", sans-serif;
  font-size: 0.8rem;
  color: #fff6e1;
  width: 100%;
  padding: 0;
}
@media only screen and (max-width: 62em) {
  footer .legal .disclaimer {
    text-align: center;
    padding: 0rem;
  }
}
footer .legal .disclaimer p, footer .legal .disclaimer a {
  font-size: 0.8rem;
  font-family: "HelveticaNeue55Roman", sans-serif;
  color: #fff6e1;
  margin-bottom: 0;
}
footer .legal .rca {
  display: flex;
}
@media only screen and (max-width: 62em) {
  footer .social {
    justify-content: center;
  }
}
footer .winners-circle {
  width: 4.5rem;
}
footer.internal {
  margin-bottom: 0;
}
footer.internal .legal {
  width: 100%;
  padding: 0 2.5rem 1.5rem 2.5rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 100%;
}
@media only screen and (max-width: 36em) {
  footer.internal .legal {
    flex-direction: column-reverse;
    width: 100%;
  }
}
footer.internal .legal .footer-left {
  width: 35%;
  padding-right: 5%;
}
@media only screen and (max-width: 36em) {
  footer.internal .legal .footer-left {
    width: 100%;
    padding-right: 0;
  }
}
footer.internal .legal .footer-left .disclaimer {
  text-align: left;
  margin-right: 3rem;
}
@media only screen and (max-width: 62em) {
  footer.internal .legal .footer-left .disclaimer {
    text-align: center;
  }
}
@media only screen and (max-width: 62em) {
  footer.internal .legal .footer-left .logos {
    margin: 5px auto;
  }
}
footer.internal .legal .footer-center {
  width: 45%;
  display: flex;
  align-items: flex-end;
  gap: 2rem;
}
@media only screen and (max-width: 36em) {
  footer.internal .legal .footer-center {
    flex-direction: column;
    width: 100%;
    text-align: center;
    align-items: center;
  }
}
footer.internal .legal .footer-center .text-center {
  display: none;
}
footer.internal .legal .footer-center .form-container form .form-group {
  display: block;
}
footer.internal .legal .footer-center div[eo-block=title] {
  display: none;
}
footer.internal .legal .footer-center .newsletter-socials {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
}
@media only screen and (max-width: 36em) {
  footer.internal .legal .footer-center .newsletter-socials {
    justify-content: center;
    width: 100%;
  }
}
footer.internal .legal .footer-center .main-form {
  flex-direction: row;
  flex-wrap: unset;
}
@media only screen and (max-width: 36em) {
  footer.internal .legal .footer-center .main-form {
    flex-direction: column;
    width: 100%;
  }
}
footer.internal .legal .footer-center .emailoctopus-form [eo-form-fields-container] {
  flex-direction: row;
  flex-wrap: unset;
}
@media only screen and (max-width: 36em) {
  footer.internal .legal .footer-center .emailoctopus-form [eo-form-fields-container] {
    flex-direction: column;
    width: 100%;
  }
}
footer.internal .legal .footer-center .emailoctopus-form input[type=submit] {
  border: 1px solid #fff6e1;
  text-align: center;
  height: 30px;
  margin-left: 1rem;
  font-size: 1.5rem;
}
footer.internal .legal .footer-center .emailoctopus-form .emailoctopus-form-row {
  border-bottom: 1px solid #fff6e1;
  margin: 0;
}
footer.internal .legal .footer-center p.disc a {
  text-decoration: underline;
}
footer.internal .legal .footer-center input {
  color: #fff6e1;
  font-family: "Context Reprise Condensed";
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background: none;
  border: none;
  text-align: left;
  height: 3.5rem;
}
footer.internal .legal .footer-center input::placeholder {
  color: #fff6e1;
  font-family: "Context Reprise Condensed";
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
@media only screen and (max-width: 36em) {
  footer.internal .legal .footer-center input {
    text-align: center;
  }
}
footer.internal .legal .footer-center input#field_0 {
  margin-bottom: -9px;
}
@media only screen and (max-width: 36em) {
  footer.internal .legal .footer-center input#field_0 {
    margin-bottom: 3px;
    height: 2.5rem;
  }
}
footer.internal .legal .footer-center input#field_6 {
  border-left: 1px solid #fff6e1;
  height: 1.8rem;
}
@media only screen and (max-width: 36em) {
  footer.internal .legal .footer-center input#field_6 {
    border-left: none;
    height: 2.5rem;
  }
}
footer.internal .legal .footer-center input[type=submit] {
  margin: 0;
  height: 2.5rem;
}
footer.internal .legal .footer-center p, footer.internal .legal .footer-center a {
  font-family: "HelveticaNeue55Roman", Helvetica, sans-serif;
  color: #fff6e1;
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
}
footer.internal .legal .footer-center p.disc, footer.internal .legal .footer-center a.disc {
  margin: 5px;
}
footer.internal .legal .footer-center .emailoctopus-success-message {
  color: #fff6e1 !important;
  font-family: "Context Reprise Condensed";
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background: none;
  border: none;
  text-align: left;
}
footer.internal .legal .footer-right {
  width: 20%;
}
@media only screen and (max-width: 36em) {
  footer.internal .legal .footer-right {
    width: 100%;
  }
}
footer.internal .legal .footer-right .footer-socials {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: center;
  height: 5rem;
}
footer.internal .legal .footer-right .footer-socials img {
  width: 15px;
  height: 15px;
}

.form-container {
  max-width: 60rem;
  width: 100%;
  margin: auto;
}
.form-container form {
  display: flex;
  flex-direction: row;
  gap: 0.3rem;
  width: 100%;
}
.form-container form label {
  display: none;
}
.form-container form .form-group {
  display: grid;
  grid-template-columns: 1fr 19rem;
  gap: 2rem;
  width: 100%;
}
@media only screen and (max-width: 36em) {
  .form-container form .form-group {
    grid-template-columns: 1fr 12rem;
    justify-items: center;
    gap: 1rem;
  }
}
.form-container form input[type=email] {
  border: none;
  border-bottom: 3px solid #FFFEF9;
  border-radius: 0;
  background-color: transparent;
  color: #FFFEF9;
  padding-right: 0;
  padding-left: 0;
  height: 5rem;
  font-family: "Ringold", sans-serif;
  font-size: 2.8rem;
  width: 100%;
}
@media only screen and (max-width: 36em) {
  .form-container form input[type=email] {
    font-size: 1.6rem;
    height: 3rem;
  }
}
.form-container form button {
  background-color: transparent;
  border: 3px solid #FFFEF9;
  border-radius: 0;
  color: #FFFEF9;
  text-transform: uppercase;
  font-size: 2.8rem;
  cursor: pointer;
  font-family: "Ringold", sans-serif;
  font-weight: 400;
  height: 100%;
  min-width: 4rem;
  padding: 0;
  height: 5rem;
  width: 19rem;
}
@media only screen and (max-width: 36em) {
  .form-container form button {
    font-size: 1.6rem;
    height: 3rem;
    width: 100%;
  }
}
.form-container form button:hover {
  background-color: #FFFEF9;
  color: hsl(33, 35%, 19%);
}
.form-container .input-group.checkbox-container .checkbox label {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 1rem;
}
.form-container .input-group.checkbox-container .checkbox label span {
  font-size: 1.4rem;
}

::placeholder {
  color: white;
  opacity: 0.5;
}

.splide__arrows.ray-slider button {
  background-color: transparent;
  background-repeat: no-repeat;
  width: 7rem;
  border-radius: 0;
}
.splide__arrows.ray-slider button:hover {
  scale: 1.2;
}
.splide__arrows.ray-slider button svg {
  display: none;
}
.splide__arrows.ray-slider button.splide__arrow--prev {
  left: -2rem;
  background-image: url("../assets/img/arrow-left.svg");
  opacity: 1;
}
@media only screen and (max-width: 36em) {
  .splide__arrows.ray-slider button.splide__arrow--prev {
    left: -3rem;
  }
}
.splide__arrows.ray-slider button.splide__arrow--next {
  right: -2rem;
  background-image: url("../assets/img/arrow-right.svg");
  opacity: 1;
}
@media only screen and (max-width: 36em) {
  .splide__arrows.ray-slider button.splide__arrow--next {
    right: -3rem;
  }
}

.splide__slide a {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.splide__slide a span {
  font-family: "Ringold", sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
}
.splide__slide a:hover {
  filter: brightness(1.2);
}

.bit-widget {
  position: relative;
}
.bit-widget a {
  color: hsl(33, 35%, 19%) !important;
  font-family: "MrEavesXLSan", sans-serif !important;
  text-transform: initial !important;
  line-height: 1.2cap;
}
.bit-widget .bit-upcoming-events {
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 2rem !important;
  border-bottom: none !important;
}
.bit-widget .bit-nav-bar-container {
  display: none;
}
@media only screen and (max-width: 62em) {
  .bit-widget .bit-event .bit-button {
    font-size: 2rem !important;
    text-align: center !important;
    display: flex !important;
  }
}

.bit-widget .bit-show-local {
  display: none;
}

.bit-widget .bit-play-my-city-wrapper {
  display: none !important;
}

.bit-widget .bit-details-inner-wrapper,
.bit-widget.bit-layout-desktop .bit-details-inner-wrapper {
  display: grid;
  grid-template-columns: 20rem 1fr 1fr;
  column-gap: 2rem;
}
@media only screen and (max-width: 90em) {
  .bit-widget .bit-details-inner-wrapper,
  .bit-widget.bit-layout-desktop .bit-details-inner-wrapper {
    display: flex !important;
    flex-direction: column !important;
  }
}

.bit-widget .bit-offers-inner-wrapper {
  margin-right: 0 !important;
}

.bit-widget.bit-layout-ipad .bit-event .bit-rsvp-container {
  margin: 5px !important;
}

.bit-widget.bit-layout-desktop .bit-event .bit-button,
.bit-widget.bit-layout-ipad .bit-event .bit-offers {
  height: 3.4rem !important;
}
@media only screen and (max-width: 62em) {
  .bit-widget.bit-layout-desktop .bit-event .bit-button,
  .bit-widget.bit-layout-ipad .bit-event .bit-offers {
    font-size: 2rem !important;
    text-align: center !important;
    padding: 0.5rem 1rem !important;
  }
}

.bit-widget.bit-layout-logo-ipad .bit-logo-desktop {
  opacity: 0.2;
}

.bit-logo-container {
  position: absolute;
  right: 0;
  top: 110px;
}

.bit-lineUp-container {
  grid-column: span 2;
  opacity: 0.6;
  padding-left: 13rem !important;
}
@media only screen and (max-width: 62em) {
  .bit-lineUp-container {
    padding-left: 0 !important;
  }
}

.bit-widget .bit-rsvp,
.bit-widget .bit-offers {
  width: fit-content !important;
  padding: 0.5rem 2rem !important;
  letter-spacing: 2px !important;
  font-size: 1.1rem !important;
  border: 2px solid hsl(33, 35%, 19%) !important;
  font-family: "FeltTipRom", sans-serif !important;
  font-size: 1.4vw !important;
}

.bit-widget .bit-offers {
  background-color: transparent !important;
  color: hsl(33, 35%, 19%) !important;
}

.bit-widget .bit-event {
  border-top: none !important;
  border-bottom: none !important;
  padding: 0.7vh 0 !important;
}
@media only screen and (max-width: 75em) {
  .bit-widget .bit-event {
    gap: 1rem !important;
    padding: 0 !important;
    gap: 0.5rem !important;
  }
}

.bit-widget .bit-mobile-date {
  font-family: "FeltTipRom", sans-serif !important;
  font-size: 3rem !important;
  font-weight: lighter !important;
  line-height: 4.9rem !important;
}

.bit-widget .bit-event .bit-date {
  font-weight: bold !important;
  letter-spacing: 0.5px !important;
  font-size: 3.4vh !important;
  font-weight: lighter !important;
  text-transform: uppercase !important;
  font-family: "FeltTipRom", sans-serif !important;
  color: hsl(33, 35%, 19%) !important;
}

.bit-widget .bit-follow-section-wrapper {
  padding: 10px 0px !important;
}

.bit-play-my-city-cta,
.bit-follow-section-cta {
  font-weight: bold !important;
  letter-spacing: 0.5px !important;
  font-size: 1.3rem !important;
  text-transform: uppercase !important;
  font-family: "Ringold", sans-serif !important;
  background-color: transparent;
  border: 2px solid hsl(33, 35%, 19%) !important;
}

.bit-follow-section-heading-text,
.bit-play-my-city-heading-text {
  font-family: "Ringold", sans-serif;
  font-size: 2rem;
}
@media only screen and (max-width: 36em) {
  .bit-follow-section-heading-text,
  .bit-play-my-city-heading-text {
    max-width: 60% !important;
    font-size: 1.5rem;
  }
}

.bit-widget .bit-event .bit-event-buttons,
.bit-widget.bit-layout-ipad .bit-event .bit-event-buttons {
  flex-direction: row !important;
}

.bit-ticket-more-info {
  color: #826646 !important;
}

@media only screen and (max-width: 62em) {
  .bit-tickets-popup .bit-eventInfo-container {
    flex-direction: column !important;
    height: initial !important;
    gap: 2rem !important;
    padding: 1rem 0.6rem !important;
  }
}
@media only screen and (max-width: 62em) {
  .bit-tickets-popup .bit-eventInfo-venueContainer {
    width: 100% !important;
    margin-top: 0 !important;
  }
}
@media only screen and (max-width: 62em) {
  .bit-tickets-popup .bit-eventInfo-venueInnerTextWrapper {
    margin-left: 10px !important;
  }
}/*# sourceMappingURL=style.css.map */