@import url("https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css");
@import url("https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css");
@import url("https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.9.0/slick.min.css");
@import url("https://fast.fonts.net/cssapi/84d7689e-30bd-4cb3-842d-d54fcb33ffab.css");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");
/*
Note that typefaces used in SMEUK websites must be licensed. There are 3 web font services with licenced web fonts:
- Google Fonts (https://fonts.google.com)
- Adobe Typekit (https://fonts.adobe.com contact neato@sonymusic.com to set up a webkit)
- Monotype (https://enterprise.monotype.com contact neato@sonymusic.com to set up a webkit)
*/
html,
body {
  background: #d8d8b4;
  color: #000;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: normal;
  font-size: 1em;
  font-display: swap;
  margin: 0;
  padding: 0;
  font-display: optional;
}

h2,
h3,
h4,
h5,
h6 {
  color: #000;
  font-family: "Montserrat";
  font-weight: normal;
  text-transform: uppercase;
}

main:focus {
  outline: none;
}

a:link,
a:visited {
  color: #84989c;
}
a:link:hover,
a:visited:hover {
  color: #999;
}

main {
  min-height: 100vh;
  background: none;
  position: relative;
  z-index: 1;
  margin: 100px auto 0;
}
@media (max-width: 996px) {
  main {
    margin: 52px auto 0;
  }
}
main:focus {
  outline: none;
}
main .pagewrapper {
  width: 100%;
}

.pagecontent #main {
  background-color: #d8d8b4;
}

.sme_cookie {
  background: #000 !important;
}

.hide {
  display: none;
}

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

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

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

.seo-text,
.seo-text * {
  text-indent: -99999px;
  margin: 0;
  padding: 0;
  height: 0;
  width: 0;
}

.cta {
  margin: 0.5em auto;
  text-align: center;
  border-radius: 5px;
}
.cta a {
  font-family: "Montserrat";
  display: inline-block;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.14rem;
  font-weight: 500;
  padding: 1em 2em;
  background-color: #000;
  color: #000;
  border: 1px solid #d8d8b4;
  transition: all 0.4s ease-in-out;
  border-radius: 5px;
}
.cta a:hover {
  background-color: #d8d8b4;
  color: #000;
  border: 1px solid #d8d8b4;
}
.cta.more {
  border-top: 1px dashed rgba(0, 0, 0, 0.5);
  width: 80%;
  max-width: 600px;
}
.cta.more a {
  background-color: rgba(169, 40, 25, 0);
  color: #A92819;
  border: 1px solid #A92819;
  margin-top: 2em;
}
.cta.more a:hover {
  background-color: #A92819;
  color: #d8d8b4;
  border: 1px solid #A92819;
}
.cta.readmore-link a {
  background-color: #000;
  color: #d8d8b4;
  border: 1px solid #d8d8b4;
}
.cta.readmore-link a:hover {
  background-color: #000;
  color: #000;
  border: 1px solid #000;
}
.loading-section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #d8d8b4;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  overflow: hidden;
}
.loading-section .loading {
  max-width: 200px;
  height: auto;
  animation-name: stretch;
  animation-duration: 2s;
  animation-timing-function: ease-out;
  animation-direction: alternate;
  animation-iteration-count: infinite;
}

@keyframes stretch {
  0% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1.2);
  }
}
a.skip-main {
  left: -999px;
  position: absolute;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: -999;
}

a.skip-main:focus, a.skip-main:active {
  color: #fff;
  background-color: #000;
  left: auto;
  top: auto;
  width: 30%;
  height: auto;
  overflow: auto;
  margin: 10px 35%;
  padding: 5px;
  border-radius: 15px;
  border: 4px solid yellow;
  text-align: center;
  font-size: 1.2em;
  z-index: 999;
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  display: none;
}
@media (max-width: 996px) {
  .hamburger {
    padding: 11px 14px;
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0px !important;
    overflow: visible;
    background-color: #000;
    position: fixed;
    right: 0;
    cursor: pointer;
    z-index: 800;
    top: 0;
    transition: top 0.3s;
    vertical-align: middle;
  }
  .hamburger.header-up {
    top: -100px;
  }
  .hamburger:hover {
    filter: opacity(60%);
  }
  .hamburger.is-active:hover {
    filter: opacity(60%);
  }
  .hamburger.is-active .hamburger-inner,
  .hamburger.is-active .hamburger-inner::before,
  .hamburger.is-active .hamburger-inner::after {
    background-color: #d8d8b4;
  }
}

.hamburger-box {
  width: 30px;
  height: 26px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 30px;
  height: 2px;
  background-color: #d8d8b4;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -12px;
}
.hamburger-inner::after {
  bottom: -12px;
}

/*
 * Spin
 */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

header {
  width: 100%;
  height: 100px;
  text-align: center;
  font-family: "Montserrat";
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  position: fixed;
  top: 0;
  transition: top 0.3s;
  z-index: 999;
}
header:before {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  bottom: 0;
  position: absolute;
  opacity: 1;
  background: rgba(216, 216, 180, 0.9);
}
@media (max-width: 996px) {
  header:before {
    opacity: 1;
  }
}
header.header-up {
  top: -200px;
}
@media (max-width: 996px) {
  header {
    height: 52px;
  }
}
header nav {
  box-sizing: border-box;
  width: 80vw;
  padding-right: 29px;
  padding-top: 19.3333333333px;
  padding-top: 0;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: left;
  transition: all 1s ease-in-out;
  z-index: 999;
}
@media (max-width: 996px) {
  header nav {
    z-index: 98;
    position: fixed;
    top: 0;
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    left: -100vw;
    margin: 0px;
    padding-right: 0;
    background: #d8d8b4;
  }
}
header nav .site-nav {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding-bottom: 10px;
  order: 2;
}
@media (max-width: 996px) {
  header nav .site-nav {
    text-align: center;
    padding-bottom: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
    order: 1;
  }
}
header nav .site-nav a {
  text-decoration: none;
  color: #000;
  transition: all 0.4s ease-in-out;
  padding: 0 0.1em;
  margin: 0 0.9em;
  display: inline-block;
  line-height: 2;
  font-size: 12px;
  font-weight: bold;
  vertical-align: bottom;
  letter-spacing: 0.2em;
  border-bottom: rgba(169, 40, 25, 0);
}
@media (max-width: 996px) {
  header nav .site-nav a {
    color: #000;
    display: block;
    font-size: 12px;
    padding: 0.5rem 1em;
    line-height: 100%;
    text-shadow: none;
    width: auto;
    margin-bottom: 12px;
  }
  header nav .site-nav a:hover {
    color: #999;
    transition: all 0.4s ease-in-out;
    text-shadow: none;
    border-bottom: solid 2px #a92819;
  }
}
header nav .site-nav a:hover {
  color: #000;
  transition: all 0.4s ease-in-out;
  text-shadow: none;
  border-bottom: solid 2px #a92819;
}
header nav .site-nav a.current {
  color: #000;
  border-bottom: solid 2px #a92819;
}
@media (max-width: 996px) {
  header nav .site-nav a.current {
    color: #000;
    border-bottom: solid 2px #a92819;
    transition: all 0.4s ease-in-out;
  }
}

@media (max-width: 996px) {
  body.menu-open header nav {
    left: 0;
  }
}

.pagecontent header {
  width: 100%;
  height: 100px;
  text-align: center;
  font-family: "Montserrat";
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  position: fixed;
  top: 0;
  transition: top 0.3s;
  z-index: 999;
}
.pagecontent header:before {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  bottom: 0;
  position: absolute;
  opacity: 1;
  background: rgba(216, 216, 180, 0.9);
}
@media (max-width: 996px) {
  .pagecontent header:before {
    opacity: 1;
  }
}
.pagecontent header.header-up {
  top: -100px;
}
@media (max-width: 996px) {
  .pagecontent header {
    height: 52px;
  }
}
.pagecontent header nav {
  box-sizing: border-box;
  width: 80vw;
  padding-right: 29px;
  padding-top: 19.3333333333px;
  padding-top: 0;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: left;
  transition: all 1s ease-in-out;
  z-index: 999;
}
@media (max-width: 996px) {
  .pagecontent header nav {
    z-index: 98;
    position: fixed;
    top: 0;
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    left: -100vw;
    margin: 0px;
    padding-right: 0;
    background: #d8d8b4;
  }
}
.pagecontent header nav .site-nav {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-end;
  flex-wrap: wrap;
  order: 2;
  padding-bottom: 10px;
}
@media (max-width: 996px) {
  .pagecontent header nav .site-nav {
    text-align: center;
    padding-bottom: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
    order: 1;
  }
}
.pagecontent header nav .site-nav a {
  text-decoration: none;
  color: #000;
  transition: all 0.4s ease-in-out;
  padding: 0 0.1em;
  margin: 0 0.9em;
  display: inline-block;
  line-height: 2;
  font-size: 12px;
  vertical-align: bottom;
  letter-spacing: 0.2em;
  border-bottom: solid 2px rgba(169, 40, 25, 0);
}
@media (max-width: 996px) {
  .pagecontent header nav .site-nav a {
    color: #000;
    display: block;
    font-size: 12px;
    padding: 0.5rem 1rem;
    line-height: 100%;
    text-shadow: none;
    margin-bottom: 12px;
  }
  .pagecontent header nav .site-nav a:hover {
    color: #999;
    transition: all 0.4s ease-in-out;
    text-shadow: none;
    border-bottom: solid 2px #a92819;
  }
}
.pagecontent header nav .site-nav a:hover {
  color: #84989c;
  transition: all 0.4s ease-in-out;
  text-shadow: none;
  border-bottom: solid 2px #a92819;
}
.pagecontent header nav .site-nav a.current {
  color: #000;
  border-bottom: solid 2px #a92819;
}
.pagecontent header nav .site-nav a.current:hover {
  color: #000;
  border-bottom: solid 2px #a92819;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 996px) {
  body.menu-open header nav {
    left: 0;
  }
}

.artistlogo {
  left: 0;
  width: 20vw;
  padding: 0;
  z-index: 99;
}
@media (max-width: 996px) {
  .artistlogo {
    width: 100%;
    z-index: 99;
    transition: top 0.5s;
  }
}
.artistlogo .smem-logo {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 996px) {
  .artistlogo .smem-logo {
    width: 200px;
  }
}
.artistlogo .smem-logo img {
  width: 90%;
  transition: all 0.4s ease-in-out;
}
.pagehome .artistlogo {
  z-index: 99;
}
@media (max-width: 996px) {
  .pagehome .artistlogo {
    width: 100%;
    z-index: 99;
    transition: top 0.5s;
  }
}
@media (max-width: 996px) {
  .pagehome .artistlogo .smem-logo {
    width: 200px;
  }
}

@media (max-width: 996px) {
  body.menu-open header .artistlogo .smem-logo img {
    filter: invert(0%);
  }
}
@media (max-width: 996px) {
  body.pagecontent.menu-open header .artistlogo .smem-logo img {
    filter: invert(0%);
  }
}

.social-nav {
  width: 100%;
  margin: 0;
  display: flex;
  align-items: left;
  justify-content: flex-end;
  order: 2;
}
@media (max-width: 996px) {
  .social-nav {
    width: 100%;
    justify-content: center;
    order: 2;
  }
}
.social-nav .smem-socials {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 0.5em 0.5em;
}
.social-nav .smem-socials a {
  color: #000;
  font-size: 14px;
  text-decoration: none;
  padding-left: 1vw;
  padding-right: 1vw;
  transition: all 0.4s ease-in-out;
}
.social-nav .smem-socials a:hover {
  color: #999;
}
@media (max-width: 996px) {
  .social-nav .smem-socials a {
    padding: 0 10px;
    text-align: center;
    font-size: 15px;
    line-height: 3rem;
    margin: 0.1rem;
    text-shadow: none;
    color: #000;
  }
  .social-nav .smem-socials a:hover {
    color: #999;
  }
}
.social-nav .smem-socials a.tiktok span.tiktok-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 0.8rem;
  height: 100%;
  transition: all 0.4s ease-in-out;
}
.social-nav .smem-socials a.tiktok span.tiktok-icon svg path.tiktok-icon-fill {
  /* Change to match theme text */
  fill: #000;
}
.social-nav .smem-socials a.tiktok span.tiktok-icon:hover svg path.tiktok-icon-fill {
  fill: #999;
}

.pagecontent .smem-socials a {
  color: #000;
}
.pagecontent .smem-socials a:hover {
  fill: #999;
}
.pagecontent .smem-socials a.tiktok span.tiktok-icon svg path.tiktok-icon-fill {
  /* Change to match theme text */
  fill: #000;
}
.pagecontent .smem-socials a.tiktok span.tiktok-icon:hover svg path.tiktok-icon-fill {
  fill: #999;
}

section {
  padding: 0;
  margin: 0px auto;
  display: flex;
  flex-direction: column;
}
section h2.section-title {
  width: 100%;
  text-align: center;
  justify-content: center;
  display: inline-block;
  margin: 1em auto;
  color: #000;
  font-size: 350%;
  font-weight: 300;
}
@media (max-width: 996px) {
  section h2.section-title {
    font-size: 350%;
  }
}
section.page-section .content-section {
  margin: 10vh auto;
  max-width: 1000px;
}

body.pagecontent .divider,
body.pagehome .divider {
  margin-bottom: 5vh;
}
body.pagecontent .divider .jarallax,
body.pagehome .divider .jarallax {
  display: flex;
  align-items: flex-end;
}
body.pagecontent .divider .jarallax h2.section-title,
body.pagehome .divider .jarallax h2.section-title {
  color: #fff;
  text-shadow: 1px 10px 10px rgba(0, 0, 0, 0.5), 2px 2px 5px rgba(0, 0, 0, 0.3);
  font-size: 350%;
}
@media (max-width: 996px) {
  body.pagecontent .divider .jarallax h2.section-title,
  body.pagehome .divider .jarallax h2.section-title {
    font-size: 350%;
  }
}

.sidebar-section {
  margin: 10vh auto;
  max-width: 1000px;
}
.sidebar-section section h2.section-title, .sidebar-section section h3.section-title {
  font-size: 2.5em;
}
@media (max-width: 414px) {
  .sidebar-section section h2.section-title, .sidebar-section section h3.section-title {
    font-size: 1em;
    font-weight: 500;
    margin-bottom: 2em;
  }
}
.sidebar-section.single {
  display: block;
  max-width: 100%;
  margin: 5em 0 0;
  padding: 3em 0 5em;
  background-color: #cfcfa3;
}
.sidebar-section.single section {
  width: 90%;
  max-width: 700px;
}
.sidebar-section.double {
  display: block;
  max-width: 100%;
  margin: 5em 0 0;
  padding: 3em 0 5em;
  background-color: #cfcfa3;
}
.sidebar-section.double section {
  width: 90%;
  max-width: 700px;
}
.sidebar-section.double #section_videos {
  margin-top: 3em;
}
.sidebar-section section.page-section.videos .smem-videos .video {
  width: 90%;
}
.sidebar-section section.page-section.videos .smem-videos .video .video-subtitle h3 {
  font-size: 150%;
}
.sidebar-section .sidebar-item h3.section-title {
  text-align: center;
}
.sidebar-section .sidebar-item .smem-releases .release {
  display: flex;
  flex-direction: column;
}
.sidebar-section .sidebar-item .smem-releases .release.playlist .packshot {
  display: none;
}
.sidebar-section .sidebar-item .smem-releases .release.playlist .info .release-meta .release-embed {
  display: block;
}
.sidebar-section .sidebar-item .smem-releases .release .packshot {
  width: 100%;
  text-align: center;
}
.sidebar-section .sidebar-item .smem-releases .release .packshot img {
  width: 90%;
}
.sidebar-section .sidebar-item .smem-releases .release .info {
  width: 100%;
}
.sidebar-section .sidebar-item .smem-releases .release .info .release-title {
  font-size: 150%;
}
.sidebar-section .sidebar-item .smem-releases .release .info .release-meta .release-date {
  display: none;
}
.sidebar-section .sidebar-item .smem-releases .release .info .release-meta .release-custominfo {
  display: none;
}
.sidebar-section .sidebar-item .smem-releases .release .info .release-meta .release-embed {
  display: none;
}
.sidebar-section .sidebar-item .smem-releases .release .info .release-meta .tracklist {
  display: none;
}

body.pagehome section.page-section {
  padding-bottom: 3em;
}
body.pagehome section.page-section .content-section {
  margin: 5vh auto;
}
body.pagehome section.page-section:last-of-type {
  margin: 0 auto;
}
body.pagehome section.page-section.carousel {
  padding-bottom: 0;
}
body.pagehome section.page-section.carousel .smem-carousel .slides-wrap .slick-list .slick-track .slick-slide .slide .slide-inner .buttons-wrap .carousel-button-wrap .carousel-button .slide-button {
  background-color: color-mix(in hsl, #d8d8b4 20%, transparent 80%);
}
body.pagehome section.page-section.news {
  background-color: #d8d8b4;
}
body.pagehome section.page-section.videos {
  background-color: #cfcfa3;
}
body.pagehome section.page-section.videos.single {
  border-bottom: 0;
  margin: 0px auto 0px auto;
}
body.pagehome section.page-section.tourdates {
  background-color: #000;
  color: #d8d8b4;
}
body.pagehome section.page-section.tourdates .cta.more a {
  border-color: #d8d8b4;
  font-weight: 500;
}
body.pagehome section.page-section.tourdates .cta.more a:hover {
  color: #000;
  background: #d8d8b4;
}
body.pagehome section.page-section.tourdates a {
  color: #d8d8b4;
}
body.pagehome section.page-section.tourdates .date {
  border-color: #d8d8b4;
}
body.pagehome section.page-section.tourdates .date div.ticketlinks-wrap a {
  color: #d8d8b4;
  border-color: #d8d8b4;
}
body.pagehome section.page-section.tourdates .date div.ticketlinks-wrap a:hover {
  color: #000;
}
body.pagehome section.page-section.releases {
  background-color: #e1e1c5;
}
body.pagehome section.page-section.releases .content-section {
  max-width: 100% !important;
}
body.pagehome section.page-section.releases .content-section .smem-releases {
  flex-direction: row;
  flex-wrap: nowrap;
}
@media (max-width: 996px) {
  body.pagehome section.page-section.releases .content-section .smem-releases {
    flex-direction: column;
    flex-wrap: wrap;
  }
}
body.pagehome section.page-section.releases .content-section .smem-releases .release {
  flex-direction: column;
  width: 100%;
  min-width: 80vw;
  flex-wrap: nowrap;
}
body.pagehome section.page-section.releases .content-section .smem-releases .release .packshot {
  width: 100%;
}
body.pagehome section.page-section.releases .content-section .smem-releases .release .packshot img {
  vertical-align: middle;
}
body.pagehome section.page-section.releases .content-section .smem-releases .release .info {
  padding: 0 1rem;
  width: calc(100% - 2rem);
}
body.pagehome section.page-section.releases .content-section .smem-releases .release .info .release-title {
  font-size: 2rem;
}
body.pagehome section.page-section.releases .content-section .smem-releases .release .info .release-meta .release-date {
  display: none;
}
body.pagehome section.page-section.releases .content-section .smem-releases .release .info .release-meta .release-custominfo {
  display: none;
}
body.pagehome section.page-section.releases .content-section .smem-releases .release .info .release-meta .release-embed {
  display: none;
}
body.pagehome section.page-section.releases .content-section .smem-releases .release .info .release-meta .tracklist {
  display: none;
}
body.pagehome section.page-section.releases .content-section .smem-releases .release.playlist {
  margin: 0;
}
body.pagehome section.page-section.releases .content-section .smem-releases .release.playlist .packshot {
  display: none;
}
body.pagehome section.page-section.releases .content-section .smem-releases .release.playlist .info .release-meta .release-embed {
  display: block;
}
body.pagehome section.page-section.releases .content-section .smem-releases .release:nth-child(even) .packshot {
  order: unset;
}
body.pagehome section.page-section.releases .content-section .smem-releases .release:nth-child(even) .info {
  order: unset;
}
body.pagehome section.page-section.instagram {
  background-color: #d8d8b4;
}
body.pagehome section.page-section.store {
  background-color: #d8d8b4;
}

.modal {
  background: rgba(216, 216, 180, 0.95);
  color: #000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  min-height: 100vh;
  z-index: 999;
  display: none;
}
.modal .modal-close {
  display: block;
  font-size: 3em;
  width: 1.25em;
  height: 1.25em;
  position: absolute;
  top: 0.75em;
  right: 0.75em;
  background-color: #000;
  color: #d8d8b4;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
  border-radius: 0;
  border-radius: 50%;
  z-index: 801;
}
@media (max-width: 996px) {
  .modal .modal-close {
    top: 0;
    right: 0;
  }
}
.modal .modal-close:hover {
  background-color: #d8d8b4;
  color: #000;
}
.modal .modal-close i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.modal .modal-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

footer {
  text-transform: uppercase;
  padding: 1.5em 0;
  background: #000;
  color: #d8d8b4;
  text-align: center;
  font-size: 10px;
  position: sticky;
  bottom: 0;
  left: 0;
  width: 100%;
  display: grid;
  place-items: center;
}
footer .label {
  padding: 1em;
}
footer .label img {
  max-height: 52px;
}
footer .legals span.sep {
  margin: 0 0.5em;
}
footer .legals span a {
  color: #d8d8b4;
  text-decoration: none;
}
@media (max-width: 996px) {
  footer .smeuk {
    display: block;
  }
  footer .privacy {
    display: block;
  }
  footer .sep {
    display: none;
  }
}

.pagecontent.page-bio {
  width: 100%;
  padding: 0;
}
@media (max-width: 996px) {
  .pagecontent.page-bio #main .jarallax h2.section-title, .pagecontent.page-bio #main body.pagehome .divider .jarallax h2.section-title {
    font-size: 250%;
  }
}
.pagecontent.page-bio #main .content-section {
  width: 100%;
  width: 80%;
  margin: 0 auto;
}
@media (max-width: 996px) {
  .pagecontent.page-bio #main .content-section {
    width: 100%;
  }
}
.pagecontent.page-bio #main .content-section .bio img {
  margin-bottom: 2em;
}
.pagecontent.page-bio #main .content-section h1, .pagecontent.page-bio #main .content-section h2, .pagecontent.page-bio #main .content-section h3, .pagecontent.page-bio #main .content-section h4, .pagecontent.page-bio #main .content-section h5, .pagecontent.page-bio #main .content-section h6 {
  width: 85%;
  margin: 15px auto;
}
.pagecontent.page-bio #main .content-section a {
  color: #000;
}
.pagecontent.page-bio #main .content-section a:hover {
  opacity: 0.8;
}
.pagecontent.page-bio #main .content-section blockquote {
  font-style: italic;
}
.pagecontent.page-bio #main .content-section ul, .pagecontent.page-bio #main .content-section ol {
  width: 85%;
  margin: 15px auto;
}
.pagecontent.page-bio #main .content-section .section-title {
  margin: 0.5em auto;
  padding: 1%;
}
.pagecontent.page-bio #main .content-section .bio {
  text-align: left;
}
.pagecontent.page-bio #main .content-section .bio p {
  line-height: 1.6em;
  width: 85%;
  margin: 0 auto;
}
.pagecontent.page-bio #main .content-section .bio img,
.pagecontent.page-bio #main .content-section .bio p img {
  width: 100%;
  height: auto;
  margin-top: 3em;
}
.pagecontent.page-bio #main .content-section .page-section.site-page.faq {
  width: 100%;
  margin: 5em auto;
}
.pagecontent.page-bio #main .content-section .page-section.site-page.faq .section-title {
  margin: 0.5em auto;
  padding: 1%;
}
section.page-section.carousel {
  position: relative;
  margin: 0;
  width: 100%;
  padding: 0px;
  background-color: #000;
}
section.page-section.carousel .smem-carousel {
  position: relative;
  height: 80vh;
  min-height: 500px;
  overflow: hidden;
  width: 100%;
  margin: 0px auto;
}
section.page-section.carousel .smem-carousel #carouselPlayer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background: transparent;
  display: none;
}
section.page-section.carousel .smem-carousel #carouselPlayer iframe {
  width: 100%;
  height: 100%;
}
section.page-section.carousel .smem-carousel .slides-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
section.page-section.carousel .smem-carousel .slides-wrap .slider-arrows {
  position: absolute;
  top: 50%;
  left: 0px;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  z-index: 20;
  pointer-events: none;
  font-size: 3em;
}
@media (max-width: 996px) {
  section.page-section.carousel .smem-carousel .slides-wrap .slider-arrows {
    font-size: 2em;
    top: auto;
    bottom: 0;
  }
}
section.page-section.carousel .smem-carousel .slides-wrap .slider-arrows .slick-arrow {
  pointer-events: all;
  cursor: pointer;
  filter: opacity(100%);
  color: #d8d8b4;
  transition: all 0.4s ease-in-out;
}
section.page-section.carousel .smem-carousel .slides-wrap .slider-arrows .slick-arrow:hover {
  filter: opacity(70%);
}
section.page-section.carousel .smem-carousel .slides-wrap .slider-arrows .slick-prev {
  padding: 15px 20px 13px 30px;
  -webkit-border-top-right-radius: 30px;
  -webkit-border-bottom-right-radius: 30px;
  border-radius: 0px 30px 30px 0px;
}
@media (max-width: 996px) {
  section.page-section.carousel .smem-carousel .slides-wrap .slider-arrows .slick-prev {
    padding: 35px 10px 35px 5px;
  }
}
section.page-section.carousel .smem-carousel .slides-wrap .slider-arrows .slick-next {
  padding: 15px 30px 13px 20px;
  -webkit-border-top-left-radius: 30px;
  -webkit-border-bottom-left-radius: 30px;
  border-radius: 30px 0 0 30px;
}
@media (max-width: 996px) {
  section.page-section.carousel .smem-carousel .slides-wrap .slider-arrows .slick-next {
    padding: 35px 5px 35px 10px;
  }
}
section.page-section.carousel .smem-carousel .slides-wrap .slick-list {
  height: 100%;
}
section.page-section.carousel .smem-carousel .slides-wrap .slick-list .slick-track {
  height: 100%;
}
section.page-section.carousel .smem-carousel .slides-wrap .slick-list .slick-track::after {
  content: "";
  background: url(../images/Buffalo_Man.png) no-repeat;
  width: 250px;
  height: 250px;
  position: absolute;
  top: 20vh;
  left: 49%;
  transform: translate(-50%, -50%);
  z-index: 97;
  display: none;
}
section.page-section.carousel .smem-carousel .slides-wrap .slick-list .slick-track .slick-slide > div {
  height: 100%;
}
section.page-section.carousel .smem-carousel .slides-wrap .slick-list .slick-track .slick-slide > div .slide {
  position: relative;
  height: 100%;
  background-position: center 20%;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex !important;
  flex-direction: column;
  justify-content: flex-end !important;
  align-items: center;
  background-color: #000;
  mix-blend-mode: multiply;
}
@media (max-width: 1600px) and (max-height: 800px) {
  section.page-section.carousel .smem-carousel .slides-wrap .slick-list .slick-track .slick-slide > div .slide {
    background-position: center center;
  }
}
section.page-section.carousel .smem-carousel .slides-wrap .slick-list .slick-track .slick-slide > div .slide.has-title:before {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  bottom: 0;
  position: absolute;
  opacity: 1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.5) 100%) no-repeat center center scroll;
}
@media (max-width: 996px) {
  section.page-section.carousel .smem-carousel .slides-wrap .slick-list .slick-track .slick-slide > div .slide.has-title:before {
    opacity: 1;
  }
}
section.page-section.carousel .smem-carousel .slides-wrap .slick-list .slick-track .slick-slide > div .slide.video-slide {
  overflow: hidden;
}
section.page-section.carousel .smem-carousel .slides-wrap .slick-list .slick-track .slick-slide > div .slide.video-slide .slide-inner {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 200%;
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  section.page-section.carousel .smem-carousel .slides-wrap .slick-list .slick-track .slick-slide > div .slide.video-slide .slide-inner {
    font-size: 150%;
  }
}
@media (max-width: 996px) {
  section.page-section.carousel .smem-carousel .slides-wrap .slick-list .slick-track .slick-slide > div .slide.video-slide .slide-inner {
    font-size: 150%;
  }
}
@media (max-width: 414px) {
  section.page-section.carousel .smem-carousel .slides-wrap .slick-list .slick-track .slick-slide > div .slide.video-slide .slide-inner {
    font-size: 100%;
  }
}
section.page-section.carousel .smem-carousel .slides-wrap .slick-list .slick-track .slick-slide > div .slide.video-slide .slide-inner .slide-video-embed {
  position: absolute;
  top: auto;
  left: auto;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}
section.page-section.carousel .smem-carousel .slides-wrap .slick-list .slick-track .slick-slide > div .slide.video-slide .slide-inner .slide-video-embed iframe {
  width: 100vw !important;
  height: 56.25vw !important; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
  min-height: 100vh;
  min-width: 177.77vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%);
  /* VIMEO - MOBILE LOADING OTHER SCALE 1:2 */
}
@media screen and (max-width: 822px) {
  section.page-section.carousel .smem-carousel .slides-wrap .slick-list .slick-track .slick-slide > div .slide.video-slide .slide-inner .slide-video-embed iframe {
    width: 100% !important;
    height: 200vw !important; /* Given a 2:1 aspect ratio, 2/1*100 = 200 */
    min-height: 100vh;
    min-width: 50vh; /* Given a 16:9 aspect ratio, 1/2*100 = 50 */
  }
}
section.page-section.carousel .smem-carousel .slides-wrap .slick-list .slick-track .slick-slide > div .slide.video-slide .slide-inner .slide-title {
  text-align: center;
  width: 80%;
  color: #d8d8b4;
  text-decoration: none;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.125), 0 0 10px rgba(0, 0, 0, 0.25), 0 0 20px rgba(0, 0, 0, 0.25);
  display: block;
  z-index: 97;
  position: relative;
}
@media (max-width: 996px) {
  section.page-section.carousel .smem-carousel .slides-wrap .slick-list .slick-track .slick-slide > div .slide.video-slide .slide-inner .slide-title {
    text-align: center;
  }
}
section.page-section.carousel .smem-carousel .slides-wrap .slick-list .slick-track .slick-slide > div .slide.video-slide .slide-inner .subtitle {
  color: #d8d8b4;
  width: 80%;
}
section.page-section.carousel .smem-carousel .slides-wrap .slick-list .slick-track .slick-slide > div .slide.video-slide .slide-inner .buttons-wrap {
  width: 80%;
}
section.page-section.carousel .smem-carousel .slides-wrap .slick-list .slick-track .slick-slide > div .slide a.full-slide-cta {
  display: block;
  width: 100%;
  height: 100%;
  z-index: 10;
  text-decoration: none;
}
section.page-section.carousel .smem-carousel .slides-wrap .slick-list .slick-track .slick-slide > div .slide a.full-slide-cta * {
  pointer-events: none;
}
section.page-section.carousel .smem-carousel .slides-wrap .slick-list .slick-track .slick-slide > div .slide .slide-inner {
  width: 80%;
  margin: 0 auto 30px;
  text-align: center;
  text-transform: none;
  display: flex;
  flex-flow: column wrap;
  z-index: 21;
  font-size: 200%;
}
@media (max-width: 1200px) {
  section.page-section.carousel .smem-carousel .slides-wrap .slick-list .slick-track .slick-slide > div .slide .slide-inner {
    font-size: 150%;
  }
}
@media (max-width: 996px) {
  section.page-section.carousel .smem-carousel .slides-wrap .slick-list .slick-track .slick-slide > div .slide .slide-inner {
    font-size: 120%;
  }
}
@media (max-width: 414px) {
  section.page-section.carousel .smem-carousel .slides-wrap .slick-list .slick-track .slick-slide > div .slide .slide-inner {
    font-size: 100%;
  }
}
@media (max-width: 996px) {
  section.page-section.carousel .smem-carousel .slides-wrap .slick-list .slick-track .slick-slide > div .slide .slide-inner {
    text-align: center;
  }
}
section.page-section.carousel .smem-carousel .slides-wrap .slick-list .slick-track .slick-slide > div .slide .slide-inner .slide-title {
  line-height: 100%;
  font-size: 1.75em;
  letter-spacing: 0.02em;
  font-weight: normal;
  padding: 0;
  margin: 0;
  display: inline;
  color: #d8d8b4;
  text-shadow: 1px 10px 10px rgba(0, 0, 0, 0.5019607843), 0px 0px 5px rgba(0, 0, 0, 0.5019607843);
}
@media (max-width: 996px) {
  section.page-section.carousel .smem-carousel .slides-wrap .slick-list .slick-track .slick-slide > div .slide .slide-inner .slide-title {
    font-size: 1.75em;
  }
}
@media (max-width: 414px) {
  section.page-section.carousel .smem-carousel .slides-wrap .slick-list .slick-track .slick-slide > div .slide .slide-inner .slide-title {
    font-size: 1.75em;
  }
}
section.page-section.carousel .smem-carousel .slides-wrap .slick-list .slick-track .slick-slide > div .slide .slide-inner .subtitle {
  line-height: 100%;
  text-transform: uppercase;
  font-weight: 400;
  font-family: "Montserrat";
  font-size: 75%;
  letter-spacing: 0.2em;
  padding: 0;
  margin: 0.5em 0;
  display: inline-block;
  width: auto;
  color: #d8d8b4;
}
@media (max-width: 996px) {
  section.page-section.carousel .smem-carousel .slides-wrap .slick-list .slick-track .slick-slide > div .slide .slide-inner .subtitle {
    font-size: 100%;
  }
}
section.page-section.carousel .smem-carousel .slides-wrap .slick-list .slick-track .slick-slide > div .slide .slide-inner .buttons-wrap {
  display: flex;
  flex-flow: row wrap;
  align-content: space-between;
  justify-content: center;
  padding: 0;
  margin: 1em 0 3em;
}
@media (max-width: 996px) {
  section.page-section.carousel .smem-carousel .slides-wrap .slick-list .slick-track .slick-slide > div .slide .slide-inner .buttons-wrap {
    flex-direction: column;
    align-content: center;
  }
}
section.page-section.carousel .smem-carousel .slides-wrap .slick-list .slick-track .slick-slide > div .slide .slide-inner .buttons-wrap .carousel-button-wrap {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}
@media (max-width: 414px) {
  section.page-section.carousel .smem-carousel .slides-wrap .slick-list .slick-track .slick-slide > div .slide .slide-inner .buttons-wrap .carousel-button-wrap {
    margin: 0.5em 0;
    width: 100%;
  }
}
section.page-section.carousel .smem-carousel .slides-wrap .slick-list .slick-track .slick-slide > div .slide .slide-inner .buttons-wrap .carousel-button-wrap .carousel-button {
  margin: 0.5em auto;
  text-align: center;
  border-radius: 5px;
  padding: 0;
  margin: 0;
}
section.page-section.carousel .smem-carousel .slides-wrap .slick-list .slick-track .slick-slide > div .slide .slide-inner .buttons-wrap .carousel-button-wrap .carousel-button a {
  font-family: "Montserrat";
  display: inline-block;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.14rem;
  font-weight: 500;
  padding: 1em 2em;
  background-color: #000;
  color: #000;
  border: 1px solid #d8d8b4;
  transition: all 0.4s ease-in-out;
  border-radius: 5px;
}
section.page-section.carousel .smem-carousel .slides-wrap .slick-list .slick-track .slick-slide > div .slide .slide-inner .buttons-wrap .carousel-button-wrap .carousel-button a:hover {
  background-color: #d8d8b4;
  color: #000;
  border: 1px solid #d8d8b4;
}
section.page-section.carousel .smem-carousel .slides-wrap .slick-list .slick-track .slick-slide > div .slide .slide-inner .buttons-wrap .carousel-button-wrap .carousel-button.more {
  border-top: 1px dashed rgba(0, 0, 0, 0.5);
  width: 80%;
  max-width: 600px;
}
section.page-section.carousel .smem-carousel .slides-wrap .slick-list .slick-track .slick-slide > div .slide .slide-inner .buttons-wrap .carousel-button-wrap .carousel-button.more a {
  background-color: rgba(169, 40, 25, 0);
  color: #A92819;
  border: 1px solid #A92819;
  margin-top: 2em;
}
section.page-section.carousel .smem-carousel .slides-wrap .slick-list .slick-track .slick-slide > div .slide .slide-inner .buttons-wrap .carousel-button-wrap .carousel-button.more a:hover {
  background-color: #A92819;
  color: #d8d8b4;
  border: 1px solid #A92819;
}
section.page-section.carousel .smem-carousel .slides-wrap .slick-list .slick-track .slick-slide > div .slide .slide-inner .buttons-wrap .carousel-button-wrap .carousel-button.readmore-link a {
  background-color: #000;
  color: #d8d8b4;
  border: 1px solid #d8d8b4;
}
section.page-section.carousel .smem-carousel .slides-wrap .slick-list .slick-track .slick-slide > div .slide .slide-inner .buttons-wrap .carousel-button-wrap .carousel-button.readmore-link a:hover {
  background-color: #000;
  color: #000;
  border: 1px solid #000;
}
@media (max-width: 414px) {
  section.page-section.carousel .smem-carousel .slides-wrap .slick-list .slick-track .slick-slide > div .slide .slide-inner .buttons-wrap .carousel-button-wrap .carousel-button {
    width: 100%;
  }
}
section.page-section.carousel .smem-carousel .slides-wrap .slick-list .slick-track .slick-slide > div .slide .slide-inner .buttons-wrap .carousel-button-wrap .carousel-button a.slide-button {
  background-color: transparent;
  color: #000;
  border: 1px solid #000;
  letter-spacing: 0.2em;
}
section.page-section.carousel .smem-carousel .slides-wrap .slick-list .slick-track .slick-slide > div .slide .slide-inner .buttons-wrap .carousel-button-wrap .carousel-button a.slide-button i {
  padding-right: 10px;
}
section.page-section.carousel .smem-carousel .slides-wrap .slick-list .slick-track .slick-slide > div .slide .slide-inner .buttons-wrap .carousel-button-wrap .carousel-button a.slide-button:hover {
  background-color: #d8d8b4;
  color: #000;
  border: 1px solid #d8d8b4;
}
@media (max-width: 414px) {
  section.page-section.carousel .smem-carousel .slides-wrap .slick-list .slick-track .slick-slide > div .slide .slide-inner .buttons-wrap .carousel-button-wrap .carousel-button a.slide-button {
    box-sizing: border-box;
    width: 100%;
    font-size: 100%;
  }
}

section.page-section.carousel .smem-carousel .slides-wrap .slider-arrows .slick-next .fa-chevron-right:before {
  content: "\f105";
}

section.page-section.carousel .smem-carousel .slides-wrap .slider-arrows .slick-prev .fa-chevron-left:before {
  content: "\f104";
}

.pagecontent.page-contact #main #section_contact .smem-contact {
  font-size: 1.2em;
  width: 80%;
  margin: 0 auto;
}
.pagecontent.page-contact #main #section_contact .smem-contact .contact-details p {
  line-height: 1.6em;
  font-size: 0.9em;
}
.pagecontent.page-contact #main #section_contact .smem-contact .contact-details p img {
  width: 80%;
  margin: 3rem auto;
  display: block;
  height: auto;
}
.pagecontent.page-contact #main #section_contact .smem-contact .contact-details p iframe {
  margin: 3rem auto;
  display: block;
}
@media (max-width: 1200px) {
  .pagecontent.page-contact #main #section_contact .smem-contact .contact-details iframe {
    width: 80%;
  }
}
@media (max-width: 996px) {
  .pagecontent.page-contact #main #section_contact .smem-contact .contact-details img {
    width: 100%;
  }
  .pagecontent.page-contact #main #section_contact .smem-contact .contact-details iframe {
    width: 100%;
  }
}
.pagecontent.page-contact #main {
  display: flex;
}
@media (max-width: 996px) {
  .pagecontent.page-contact #main {
    flex-direction: column;
  }
}
.pagecontent.page-contact #main .content-section {
  width: 100%;
}
@media (max-width: 996px) {
  .pagecontent.page-contact #main .content-section {
    width: 100%;
  }
}
.pagecontent.page-contact #main .content-section .page-section.site-page.contact {
  width: 100%;
  margin: 5em auto;
  padding: 0;
}
.pagecontent.page-contact #main .content-section .page-section.site-page.contact .section-title {
  margin: 0.5em auto;
  padding: 1%;
}
.pagecontent.page-contact #main .content-section .page-section.site-page.contact .smem-contact {
  width: 80%;
  margin: 0 auto;
}
.pagecontent.page-contact #main .content-section .page-section.site-page.contact .smem-contact .contact {
  text-align: left;
}
.pagecontent.page-contact #main .content-section .page-section.site-page.contact .smem-contact .contact p {
  line-height: 1.6em;
}
.pagecontent.page-contact #main .content-section .page-section.site-page.contact .smem-contact .contact img,
.pagecontent.page-contact #main .content-section .page-section.site-page.contact .smem-contact .contact p img {
  width: 100%;
}

section.page-section.faq {
  margin: 100px auto;
}
section.page-section.faq .section-title {
  left: -999px;
  position: absolute;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: -999;
}
section.page-section.faq .smem-faq .faq-item {
  margin: 30px auto;
  width: 80%;
}
section.page-section.faq .smem-faq .faq-item .faq-title {
  margin: 0 auto 1em auto;
  text-align: center;
  color: #000;
  font-weight: 900;
  font-family: "Montserrat";
}
section.page-section.faq .smem-faq .faq-item .faq-answer p {
  text-align: center;
}
@media (max-width: 1200px) {
  section.page-section.faq .smem-faq .faq-item .faq-answer p {
    margin: auto;
  }
}
@media (max-width: 414px) {
  section.page-section.faq .smem-faq .faq-item .faq-answer p {
    margin: auto;
  }
}

#image-viewer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  min-height: 100vh;
  overflow-y: scroll;
  background: rgba(255, 255, 255, 0.9);
  z-index: 802;
  display: none;
}
#image-viewer #image-viewer-nav {
  width: 100vw;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: space-between;
  z-index: 810;
  font-size: 1em;
}
@media (max-width: 996px) {
  #image-viewer #image-viewer-nav {
    top: auto;
    bottom: 10%;
  }
}
#image-viewer #image-viewer-nav div {
  pointer-events: all;
  cursor: pointer;
  background-color: #000;
  filter: opacity(50%);
  color: #d8d8b4;
  transition: all 0.4s ease-in-out;
}
#image-viewer #image-viewer-nav div:hover {
  filter: opacity(100%);
  background-color: #d8d8b4;
  color: #000;
}
#image-viewer #image-viewer-nav #image-nav-prev {
  padding: 15px 20px 13px 10px;
  -webkit-border-top-right-radius: 30px;
  -webkit-border-bottom-right-radius: 30px;
  border-radius: 0px 30px 30px 0px;
}
@media (max-width: 996px) {
  #image-viewer #image-viewer-nav #image-nav-prev {
    padding: 35px 10px 35px 5px;
  }
}
#image-viewer #image-viewer-nav #image-nav-next {
  padding: 15px 10px 13px 20px;
  -webkit-border-top-left-radius: 30px;
  -webkit-border-bottom-left-radius: 30px;
  border-radius: 30px 0 0 30px;
}
@media (max-width: 996px) {
  #image-viewer #image-viewer-nav #image-nav-next {
    padding: 35px 5px 35px 10px;
  }
}
#image-viewer #image-viewer-close {
  display: block;
  font-size: 2em;
  width: 1.25em;
  height: 1.25em;
  position: absolute;
  top: 100px;
  right: 0.75em;
  background-color: #A92819;
  color: #d8d8b4;
  transition: all 0.4s ease-in-out;
  border-radius: 50%;
  cursor: pointer;
  z-index: 801;
}
@media (max-width: 996px) {
  #image-viewer #image-viewer-close {
    width: 58px;
    height: 58px;
    top: 58px;
    right: 0;
    z-index: 801;
  }
}
#image-viewer #image-viewer-close:hover {
  background-color: #d8d8b4;
  color: #A92819;
}
#image-viewer #image-viewer-close i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#image-viewer #image-viewer-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}
#image-viewer #image-viewer-inner img {
  width: 100%;
  height: 90vh;
  object-fit: contain;
}

section.page-section.gallery .smem-gallery {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  margin: 50px auto;
}
section.page-section.gallery .smem-gallery .gallery {
  width: calc(33.33% - 2rem);
  padding: 1rem;
  flex-grow: 0.5;
}
section.page-section.gallery .smem-gallery .gallery a.gallery-link .gallery-thumb img {
  width: 100%;
}
section.page-section.gallery .smem-gallery .gallery .gallery-title {
  text-align: center;
}
section.page-section.gallery.grid .smem-gallery {
  flex-direction: row;
}
section.page-section.gallery.grid .smem-gallery .gallery-image {
  width: calc((100vw - 20vw) / 3 - 1rem);
  height: calc((100vw - 20vw) / 3 - 1rem);
  padding: 0.5rem;
}
section.page-section.gallery.grid .smem-gallery .gallery-image a.gallery-link {
  display: block;
  width: 100%;
  height: 100%;
}
section.page-section.gallery.grid .smem-gallery .gallery-image a.gallery-link .gallery-thumb {
  width: 100%;
  height: 100%;
}
section.page-section.gallery.grid .smem-gallery .gallery-image a.gallery-link .gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.page-section.gallery.grid .smem-gallery .gallery-image .image-subtitle {
  display: none;
}

#lyricsModal {
  overflow: scroll;
}
#lyricsModal .modal-inner .content-container {
  text-align: center;
  padding: 10vmin 0;
}
#lyricsModal .modal-inner .content-container h2 {
  color: #000;
}
#lyricsModal .modal-inner .content-container .lyrics-content {
  width: 90%;
  margin: 0 auto;
}

.pagehome section.page-section.news .smem-news {
  width: 100%;
  max-width: 1400px;
}
.pagehome section.page-section.news .smem-news .news-item {
  width: 100%;
  color: #000;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 50% auto;
  column-gap: 3vw;
  margin: 0;
}
@media (max-width: 996px) {
  .pagehome section.page-section.news .smem-news .news-item {
    display: flex;
    flex-direction: column;
    width: 90%;
    margin: 0 auto 3em auto;
  }
}
.pagehome section.page-section.news .smem-news .news-item .image-wrap {
  grid-column: 1/1;
  grid-row: 1/4;
}
.pagehome section.page-section.news .smem-news .news-item .image-wrap a.imagelink {
  display: block;
  border: solid 1px #999;
  margin: 30px;
}
@media (max-width: 414px) {
  .pagehome section.page-section.news .smem-news .news-item .image-wrap a.imagelink {
    width: 100%;
    margin: 30px auto;
  }
}
.pagehome section.page-section.news .smem-news .news-item .image-wrap a.imagelink img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
.pagehome section.page-section.news .smem-news .news-item .news-title {
  grid-column: 2/2;
  text-align: left;
  padding: 0px;
  font-size: 1.15em;
  padding-right: 2em;
  padding-top: 1em;
  text-transform: uppercase;
  width: 90%;
}
@media (max-width: 996px) {
  .pagehome section.page-section.news .smem-news .news-item .news-title {
    text-align: center;
    padding: 0;
    margin: 0.5em auto;
  }
}
.pagehome section.page-section.news .smem-news .news-item .news-title h2 {
  margin: 2em auto 1em auto;
  line-height: 1em;
  font-weight: 400;
  font-family: "Montserrat";
  text-transform: uppercase;
  width: 90%;
}
@media (max-width: 996px) {
  .pagehome section.page-section.news .smem-news .news-item .news-title h2 {
    margin: 0 auto;
    font-size: 100%;
  }
}
.pagehome section.page-section.news .smem-news .news-item .news-excerpt {
  grid-column: 2/2;
  padding-bottom: 2em;
  padding-right: 2em;
}
@media (max-width: 996px) {
  .pagehome section.page-section.news .smem-news .news-item .news-excerpt {
    width: 100%;
    margin: 0px;
    padding: 0;
  }
}
.pagehome section.page-section.news .smem-news .news-item .news-excerpt p {
  text-align: left;
  font-size: 1em;
  line-height: 1.6em;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 996px) {
  .pagehome section.page-section.news .smem-news .news-item .news-excerpt p {
    font-size: 1em;
    text-align: center;
  }
}
.pagehome section.page-section.news .smem-news .news-item .news-excerpt .cta {
  text-align: center;
  display: flex;
  flex-flow: row wrap;
  align-content: space-between;
  justify-content: space-between;
  margin: 40px auto 20px auto;
}
.pagehome section.page-section.news .smem-news .news-item .news-excerpt .cta a {
  background-color: #000;
  color: #d8d8b4;
  border: 1px solid #000;
}
@media (max-width: 996px) {
  .pagehome section.page-section.news .smem-news .news-item .news-excerpt .cta a {
    width: 100%;
    margin: 0px;
  }
}
.pagehome section.page-section.news .smem-news .news-item .news-excerpt .cta a:hover {
  background-color: #d8d8b4;
  color: #000;
  border: 1px solid #000;
}
.pagehome section.page-section.news .smem-news .news-item .news-metas {
  display: none;
}
.pagehome section.page-section.news .smem-news .news-item .news-content {
  display: none;
}
.pagehome section.page-section.news .smem-news .news-item .news-embed {
  display: none;
}
.pagehome section.page-section.news.single-news-item .smem-news .news-item:not(.active) {
  display: none;
}

section.page-section.news .smem-news {
  width: 100%;
  max-width: 1400px;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  margin-bottom: 4em;
  justify-content: center;
}
section.page-section.news .smem-news .news-item {
  width: calc(33% - 2rem);
  margin: 0 1rem;
  display: flex;
  flex-direction: column;
  margin-bottom: 2em;
  color: #000;
}
@media (max-width: 996px) {
  section.page-section.news .smem-news .news-item {
    width: 100%;
  }
}
section.page-section.news .smem-news .news-item .image-wrap {
  order: 1;
  width: 100%;
  overflow: hidden;
}
section.page-section.news .smem-news .news-item .image-wrap a.imagelink {
  display: block;
  border: solid 1px #999;
  position: relative;
  object-position: 50% 50%;
  width: 90%;
  margin: auto auto 1em;
}
section.page-section.news .smem-news .news-item .image-wrap a.imagelink:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 100%;
}
section.page-section.news .smem-news .news-item .image-wrap a.imagelink > img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
section.page-section.news .smem-news .news-item .image-wrap a.imagelink img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
section.page-section.news .smem-news .news-item .news-title {
  order: 2;
  text-align: left;
  padding: 0px;
  font-size: 100%;
  text-transform: uppercase;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 996px) {
  section.page-section.news .smem-news .news-item .news-title {
    font-size: 100%;
    text-align: center;
  }
}
section.page-section.news .smem-news .news-item .news-title h2 {
  font-weight: 300;
  font-family: "Montserrat";
  font-size: 1.3em;
}
section.page-section.news .smem-news .news-item .news-title h2:hover {
  -webkit-text-fill-color: #000;
}
section.page-section.news .smem-news .news-item .news-excerpt {
  order: 4;
}
section.page-section.news .smem-news .news-item .news-excerpt p {
  text-align: left;
  width: 100%;
  margin: 0px auto;
  font-size: 100%;
  line-height: 1.6em;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 996px) {
  section.page-section.news .smem-news .news-item .news-excerpt p {
    font-size: 100%;
    text-align: center;
  }
}
section.page-section.news .smem-news .news-item .news-excerpt .cta {
  text-align: center;
  display: flex;
  flex-flow: row wrap;
  align-content: space-between;
  justify-content: space-between;
  margin: 20px auto;
  width: 90%;
}
section.page-section.news .smem-news .news-item .news-excerpt .cta a {
  width: 100%;
}
section.page-section.news .smem-news .news-item .news-excerpt .cta a:hover {
  background-color: #d8d8b4;
  color: #000;
  border: 1px solid #000;
}
section.page-section.news .smem-news .news-item .news-metas {
  order: 3;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  font-family: "Montserrat";
  color: #A92819;
  width: 90%;
  margin: 0 auto 20px;
}
section.page-section.news .smem-news .news-item .news-metas .news-date {
  text-transform: uppercase;
}
@media (max-width: 996px) {
  section.page-section.news .smem-news .news-item .news-metas .news-date {
    width: 100%;
    text-align: center;
  }
}
section.page-section.news .smem-news .news-item .news-metas .news-date:before {
  font-weight: 400;
  content: "\f073";
  font-family: "FontAwesome";
  margin-right: 0.6em;
}
section.page-section.news .smem-news .news-item .news-metas .categories {
  display: none;
}
section.page-section.news .smem-news .news-item .news-metas .categories:before {
  font-weight: 400;
  content: "\f02c";
  font-family: "FontAwesome";
  margin-right: 0.6em;
}
section.page-section.news .smem-news .news-item .news-content {
  order: 4;
  display: none;
}
section.page-section.news .smem-news .news-item .news-content img {
  display: block;
  width: auto !important;
  max-width: 100% !important;
  height: auto !important;
  margin: 0 auto;
}
section.page-section.news .smem-news .news-item .news-embed {
  display: none;
}
section.page-section.news.single-news-item .smem-news .news-item:not(.active) {
  display: none;
}

section.site-page.news .smem-news {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
section.site-page.news .smem-news .news-item {
  width: 100%;
  flex-direction: column;
  margin: 0 auto;
}
section.site-page.news .smem-news .news-item .image-wrap {
  order: 2;
}
section.site-page.news .smem-news .news-item .image-wrap img {
  width: 100%;
}
section.site-page.news .smem-news .news-item .news-title {
  order: 1;
  font-size: 200%;
  text-align: center;
  font-family: "Montserrat";
}
@media (max-width: 996px) {
  section.site-page.news .smem-news .news-item .news-title {
    font-size: 100%;
  }
}
section.site-page.news .smem-news .news-item .news-excerpt {
  order: 4;
}
section.site-page.news .smem-news .news-item .news-metas {
  order: 3;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-evenly;
  color: #666;
  font-family: "Montserrat";
  text-transform: uppercase;
  margin: 15px 0px;
}
section.site-page.news .smem-news .news-item .news-metas .news-date {
  color: #A92819;
}
section.site-page.news .smem-news .news-item .news-metas .news-date:before {
  font-family: "FontAwesome";
  margin-right: 0.6em;
}
section.site-page.news .smem-news .news-item .news-metas .categories {
  display: none;
}
section.site-page.news .smem-news .news-item .news-metas .categories:before {
  content: "\f02c";
  font-family: "FontAwesome";
  margin-right: 0.6em;
}
section.site-page.news .smem-news .news-item .news-embed {
  order: 6;
  display: block;
  text-align: center;
  margin: 2rem 0;
}
section.site-page.news .smem-news .news-item .news-embed iframe,
section.site-page.news .smem-news .news-item .news-embed embed,
section.site-page.news .smem-news .news-item .news-embed object {
  margin: 0 auto !important;
}
section.site-page.news .smem-news .news-item .news-embed[data-service="youtube com"], section.site-page.news .smem-news .news-item .news-embed[data-service="vimeo com"] {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
section.site-page.news .smem-news .news-item .news-embed[data-service="youtube com"] iframe, section.site-page.news .smem-news .news-item .news-embed[data-service="vimeo com"] iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
section.site-page.news .smem-news .news-item .news-content {
  order: 5;
  margin-bottom: 50px;
  display: block;
  text-align: justify;
}
@media (max-width: 996px) {
  section.site-page.news .smem-news .news-item .news-content {
    width: 90%;
    margin: 0 auto;
  }
}
section.site-page.news .smem-news .news-item .news-content h1,
section.site-page.news .smem-news .news-item .news-content h2,
section.site-page.news .smem-news .news-item .news-content h3,
section.site-page.news .smem-news .news-item .news-content h4,
section.site-page.news .smem-news .news-item .news-content h5,
section.site-page.news .smem-news .news-item .news-content h6 {
  color: #000;
  font-family: "Montserrat";
  font-weight: normal;
  text-transform: uppercase;
  margin: auto;
  width: 90%;
}
section.site-page.news .smem-news .news-item .news-content p,
section.site-page.news .smem-news .news-item .news-content div {
  margin: 15px auto;
  line-height: 1.6em;
  width: 90%;
}
section.site-page.news .smem-news .news-item .news-content p img,
section.site-page.news .smem-news .news-item .news-content div img {
  display: block;
  width: auto !important;
  max-width: 100% !important;
  height: auto !important;
  margin: 0 auto;
}
section.site-page.news.single-news-item h2.section-title {
  padding-bottom: 0;
  margin-bottom: 0;
}
section.site-page.news.single-news-item .smem-news .news-item:not(.active) {
  display: none;
}

.article-page section h2.section-title {
  display: none;
}
.article-page .sidebar-section section h2.section-title {
  display: block;
}
.article-page .news-excerpt {
  display: none;
}

@media (max-width: 996px) {
  #newsletterModal {
    position: fixed;
    overflow: scroll;
  }
}
@media (max-width: 996px) and (orientation: portrait) {
  #newsletterModal {
    height: auto;
    max-height: none;
  }
}
#newsletterModal .modal-inner .content-container {
  display: flex;
  flex-direction: row;
  width: 80vw;
  height: auto;
  max-width: 90vw;
  max-height: 90vh;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #d8d8b4;
  color: #000;
  -webkit-overflow-scrolling: touch;
  overflow-y: scroll;
}
@media (max-width: 996px) {
  #newsletterModal .modal-inner .content-container {
    width: 90%;
    max-width: 100vw;
    margin: 0 auto;
    position: relative;
    top: 0;
    left: 0;
    transform: none;
  }
}
@media (max-width: 996px) and (orientation: portrait) {
  #newsletterModal .modal-inner .content-container {
    display: block;
    flex-direction: column;
  }
}
#newsletterModal .modal-inner .content-container .left {
  overflow: hidden;
  width: 50%;
}
#newsletterModal .modal-inner .content-container .left .image-desktop {
  display: block;
  height: 100%;
}
#newsletterModal .modal-inner .content-container .left .image-mobile {
  display: none;
}
@media (max-width: 996px) and (orientation: portrait) {
  #newsletterModal .modal-inner .content-container .left {
    width: 100%;
  }
  #newsletterModal .modal-inner .content-container .left .image-desktop {
    display: none;
  }
  #newsletterModal .modal-inner .content-container .left .image-mobile {
    display: block;
  }
  #newsletterModal .modal-inner .content-container .left .image-mobile img {
    height: auto;
    max-height: 45vh;
    max-width: 100vmin;
  }
}
@media (max-width: 996px) and (orientation: landscape) {
  #newsletterModal .modal-inner .content-container .left .image-desktop {
    width: 100%;
    height: 100%;
  }
  #newsletterModal .modal-inner .content-container .left .image-desktop img {
    height: 100%;
    width: 100%;
  }
}
#newsletterModal .modal-inner .content-container .left img {
  width: 100%;
  height: 100%;
  max-width: 90vmin;
  display: block;
  object-fit: cover;
  object-position: center center;
}
#newsletterModal .modal-inner .content-container .right {
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2em;
  width: calc(50% - 4em);
}
@media (max-width: 996px) and (orientation: portrait) {
  #newsletterModal .modal-inner .content-container .right {
    width: calc(100% - 4em);
    justify-content: unset;
  }
}
@media (max-width: 996px) and (orientation: landscape) {
  #newsletterModal .modal-inner .content-container .right {
    width: calc(50% - 2em);
    padding: 1em;
  }
}
#newsletterModal .modal-inner .content-container .right .logo {
  width: 100%;
  margin: 0;
}
#newsletterModal .modal-inner .content-container .right .logo img,
#newsletterModal .modal-inner .content-container .right .logo svg {
  width: 100%;
}
#newsletterModal .modal-inner .content-container iframe {
  width: 100%;
  height: 90vh;
}
#newsletterModal .modal-inner .content-container .cta {
  margin: 1em auto 1rem;
  width: 100%;
}
#newsletterModal .modal-inner .content-container .cta a {
  margin: 5px 0;
  text-transform: uppercase;
  background-color: #000;
  color: #d8d8b4;
  width: 100%;
  padding: 1em 0;
}
#newsletterModal .modal-inner .content-container .cta a:hover {
  color: #d8d8b4 !important;
  background-color: #999;
}
@media (max-width: 996px) and (orientation: landscape) {
  #newsletterModal .modal-inner .content-container .cta a {
    padding: 0.5em 0;
  }
}
#newsletterModal .modal-inner .content-container .newsletter-dismiss {
  background-color: #000;
  color: #d8d8b4;
  text-decoration: none;
  letter-spacing: 0.2rem;
  width: 100%;
  padding: 1em 0;
  transition: all 0.4s ease-in-out;
  font-size: 12px;
  font-weight: 500;
  border-radius: 5px;
}
#newsletterModal .modal-inner .content-container .newsletter-dismiss:hover {
  color: #d8d8b4 !important;
  background-color: #999;
}
@media (max-width: 996px) and (orientation: landscape) {
  #newsletterModal .modal-inner .content-container .newsletter-dismiss {
    padding: 0.5em 0;
  }
}

section.releases .smem-releases {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-around;
}
@media (max-width: 996px) {
  section.releases .smem-releases {
    margin-bottom: 0em;
  }
}
section.releases .smem-releases .release {
  display: flex;
  flex-direction: row;
  padding: 0 1rem 1rem;
  border-bottom: 1px solid #999;
  width: calc(100% - 2rem);
  margin-bottom: 10px;
  flex-grow: 0.5;
}
section.releases .smem-releases .release:last-child {
  border-bottom: none;
}
@media (max-width: 996px) {
  section.releases .smem-releases .release {
    width: 100%;
    flex-direction: column;
    padding: 0 0 2rem;
  }
}
section.releases .smem-releases .release .packshot {
  width: 50%;
  text-align: center;
  align-self: stretch;
}
@media (max-width: 996px) {
  section.releases .smem-releases .release .packshot {
    width: 100%;
  }
}
section.releases .smem-releases .release .packshot img {
  width: 90%;
  position: sticky;
  position: -webkit-sticky;
  top: 0px;
}
section.releases .smem-releases .release .info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
}
@media (max-width: 996px) {
  section.releases .smem-releases .release .info {
    width: 100%;
  }
}
section.releases .smem-releases .release .info .release-title {
  font-size: 150%;
  font-weight: 300;
  text-align: center;
  line-height: 1em;
  font-family: "Montserrat";
  text-transform: uppercase;
}
section.releases .smem-releases .release .info .release-meta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 90%;
}
@media (max-width: 996px) {
  section.releases .smem-releases .release .info .release-meta {
    width: 100%;
  }
}
section.releases .smem-releases .release .info .release-meta .release-date {
  display: none;
  font-family: "Montserrat";
  font-weight: 400;
  font-style: normal;
  font-size: 75%;
}
section.releases .smem-releases .release .info .release-meta .release-date span {
  display: none;
}
section.releases .smem-releases .release .info .release-meta .release-custominfo {
  padding: 0.25em;
  text-align: center;
  line-height: 1.5;
  font-size: 14px;
}
@media (max-width: 996px) {
  section.releases .smem-releases .release .info .release-meta .release-custominfo {
    width: 90%;
    margin: 0px auto;
  }
}
section.releases .smem-releases .release .info .release-meta .release-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
section.releases .smem-releases .release .info .release-meta .release-embed:empty {
  display: none;
}
section.releases .smem-releases .release .info .release-meta .release-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 996px) {
  section.releases .smem-releases .release .info .release-meta .release-embed {
    width: 90%;
    margin: 0 auto;
  }
}
section.releases .smem-releases .release .info .release-meta .tracklist {
  flex-grow: 2;
  list-style-position: inside;
  margin: 20px;
  padding: 0;
  counter-reset: item;
  text-align: left;
}
@media (max-width: 996px) {
  section.releases .smem-releases .release .info .release-meta .tracklist {
    width: 90%;
    margin: 20px auto;
  }
}
section.releases .smem-releases .release .info .release-meta .tracklist:empty {
  display: none;
}
section.releases .smem-releases .release .info .release-meta .tracklist li {
  margin: 0.5em 0;
  list-style: none;
  list-style-position: inside;
  border-bottom: solid 1px #ddd;
  padding-bottom: 0.5em;
  text-align: center;
}
section.releases .smem-releases .release .info .release-meta .tracklist li:before {
  content: "";
  margin-right: 0.5em;
}
section.releases .smem-releases .release .info .release-meta .tracklist li:last-child {
  border-bottom: solid 0px #000;
}
@media (max-width: 996px) {
  section.releases .smem-releases .release .info .release-meta .tracklist li {
    font-size: 115%;
    text-align: center;
  }
}
section.releases .smem-releases .release .info .release-meta .tracklist li.has-lyrics {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 996px) {
  section.releases .smem-releases .release .info .release-meta .tracklist li.has-lyrics {
    flex-direction: column;
    align-content: center;
    align-items: center;
    padding: 1em 0;
  }
}
section.releases .smem-releases .release .info .release-meta .tracklist li.has-lyrics .lyrics-button {
  vertical-align: top;
  color: #000;
  background: #d8d8b4;
  display: inline-block;
  padding: 0.2em 0.9em;
  margin: 0 0.25em;
  font-size: 0.7em;
  border: 1px solid #ddd;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  text-transform: uppercase;
}
@media (max-width: 996px) {
  section.releases .smem-releases .release .info .release-meta .tracklist li.has-lyrics .lyrics-button {
    margin-top: 1em;
  }
}
section.releases .smem-releases .release .info .release-meta .tracklist li.has-lyrics:hover > .lyrics-button {
  color: #d8d8b4;
  background: #000;
  border: 1px solid #000;
}
section.releases .smem-releases .release .info .release-meta .retail-links {
  margin: 0.5em auto;
  text-align: center;
  border-radius: 5px;
  display: flex;
  flex-flow: row wrap;
  align-content: space-between;
  justify-content: space-between;
  margin: 10px 0px;
  width: auto;
}
section.releases .smem-releases .release .info .release-meta .retail-links a {
  font-family: "Montserrat";
  display: inline-block;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.14rem;
  font-weight: 500;
  padding: 1em 2em;
  background-color: #000;
  color: #000;
  border: 1px solid #d8d8b4;
  transition: all 0.4s ease-in-out;
  border-radius: 5px;
}
section.releases .smem-releases .release .info .release-meta .retail-links a:hover {
  background-color: #d8d8b4;
  color: #000;
  border: 1px solid #d8d8b4;
}
section.releases .smem-releases .release .info .release-meta .retail-links.more {
  border-top: 1px dashed rgba(0, 0, 0, 0.5);
  width: 80%;
  max-width: 600px;
}
section.releases .smem-releases .release .info .release-meta .retail-links.more a {
  background-color: rgba(169, 40, 25, 0);
  color: #A92819;
  border: 1px solid #A92819;
  margin-top: 2em;
}
section.releases .smem-releases .release .info .release-meta .retail-links.more a:hover {
  background-color: #A92819;
  color: #d8d8b4;
  border: 1px solid #A92819;
}
section.releases .smem-releases .release .info .release-meta .retail-links.readmore-link a {
  background-color: #000;
  color: #d8d8b4;
  border: 1px solid #d8d8b4;
}
section.releases .smem-releases .release .info .release-meta .retail-links.readmore-link a:hover {
  background-color: #000;
  color: #000;
  border: 1px solid #000;
}
section.releases .smem-releases .release .info .release-meta .retail-links a:hover {
  background-color: #d8d8b4;
  color: #000;
  border: 1px solid #000;
}
@media (max-width: 996px) {
  section.releases .smem-releases .release .info .release-meta .retail-links {
    width: 90%;
    margin: 10px auto;
  }
}
section.releases .smem-releases .release .info .release-meta .retail-links .retail-link {
  font-family: "Montserrat";
  display: inline-block;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.14rem;
  padding: 1em 2em;
  background-color: #000;
  color: #d8d8b4;
  transition: all 0.4s ease-in-out;
}
section.releases .smem-releases .release .info .release-meta .retail-links .retail-link:hover {
  background-color: #d8d8b4;
  color: #000;
}
section.releases .smem-releases .release .info .release-meta .retail-links .retail-link i {
  padding-right: 10px;
}
@media (max-width: 996px) {
  section.releases .smem-releases .release .info .release-meta .retail-links .retail-link {
    flex-direction: column;
  }
}
section.releases .smem-releases .release.playlist .packshot {
  display: none;
}
section.releases .smem-releases .release.playlist .info {
  width: 100%;
}
section.releases .smem-releases .release.playlist .info .release-meta .release-embed {
  display: block;
}
section.releases .smem-releases .release:nth-child(even) .packshot {
  order: 2;
}
@media (max-width: 996px) {
  section.releases .smem-releases .release:nth-child(even) .packshot {
    order: 1;
  }
}
section.releases .smem-releases .release:nth-child(even) .info {
  order: 1;
}

section.store {
  padding: 2em 0;
}
section.store .products-widget {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
section.store .products-widget .product {
  width: 33%;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
@media (max-width: 996px) {
  section.store .products-widget .product {
    width: calc(100% - 2rem);
  }
}
section.store .products-widget .product .product-image {
  width: 100%;
}
section.store .products-widget .product .product-image a {
  width: 100%;
}
section.store .products-widget .product .product-image a img {
  width: 100%;
}
section.store .products-widget .product .product-info-wrap {
  display: flex;
  flex-direction: column;
  margin-top: auto;
  text-align: center;
}
section.store .products-widget .product .product-info-wrap .product-title h2 {
  margin-bottom: 0.8em;
  font-size: 1.5rem;
  font-weight: 300;
}
section.store .products-widget .product .product-info-wrap .product-price h3 {
  font-size: 2rem;
  font-weight: 300;
  color: #999;
}
section.store .products-widget .product .product-info-wrap .product-content {
  display: none;
}
section.store .products-widget .product .product-info-wrap .product-buy-button a {
  font-family: "Montserrat";
  display: inline-block;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.14rem;
  padding: 1em 2em;
  background-color: #000;
  color: #d8d8b4;
  transition: all 0.4s ease-in-out;
  width: 80%;
  border: 1px solid #000;
}
section.store .products-widget .product .product-info-wrap .product-buy-button a:hover {
  background-color: #d8d8b4;
  color: #000;
}
section.store .products-widget .product .product-info-wrap .product-buy-button a:hover {
  background-color: #d8d8b4;
  color: #000;
  border: 1px solid #000;
}

section.store {
  padding: 2em 0;
}
section.store .products-widget {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
section.store .products-widget .store-panel {
  width: 100%;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}
@media (max-width: 996px) {
  section.store .products-widget .store-panel {
    width: calc(100% - 2rem);
  }
}
section.store .products-widget .store-panel .panel-image-wrap {
  width: 100%;
}
section.store .products-widget .store-panel .panel-image-wrap a {
  display: block;
}
section.store .products-widget .store-panel .panel-image-wrap a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  vertical-align: bottom;
}
section.store .products-widget .store-panel .panel-title {
  margin-bottom: 0.8em;
  font-size: 1.5rem;
  font-weight: 300;
  text-align: center;
}
section.store .products-widget .store-panel .panel-description {
  text-align: center;
}
section.store .products-widget .store-panel .panel-description img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  vertical-align: bottom;
}
section.store .products-widget .store-panel .panel-links a {
  font-family: "Montserrat";
  display: inline-block;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.14rem;
  padding: 1em 2em;
  background-color: #000;
  color: #d8d8b4;
  transition: all 0.4s ease-in-out;
  display: block;
  border: 1px solid #000;
}
section.store .products-widget .store-panel .panel-links a:hover {
  background-color: #d8d8b4;
  color: #000;
}
section.store .products-widget .store-panel .panel-links a:hover {
  background-color: #d8d8b4;
  color: #000;
  border: 1px solid #000;
}
section.store .products-widget .store-panel .product-info-wrap {
  display: flex;
  flex-direction: column;
  margin-top: auto;
  text-align: center;
}
section.store .products-widget .store-panel .product-info-wrap .product-price h3 {
  font-size: 2rem;
  font-weight: 300;
  color: #999;
}
section.store .products-widget .store-panel .product-info-wrap .product-content {
  display: none;
}
section.store .products-widget .store-panel .product-info-wrap .product-buy-button a {
  font-family: "Montserrat";
  display: inline-block;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.14rem;
  padding: 1em 2em;
  background-color: #000;
  color: #d8d8b4;
  transition: all 0.4s ease-in-out;
  width: 80%;
  border: 1px solid #000;
}
section.store .products-widget .store-panel .product-info-wrap .product-buy-button a:hover {
  background-color: #d8d8b4;
  color: #000;
}
section.store .products-widget .store-panel .product-info-wrap .product-buy-button a:hover {
  background-color: #d8d8b4;
  color: #000;
  border: 1px solid #000;
}
section.store .products-widget .no-store-panels {
  width: 80%;
  text-align: center;
  line-height: 1.7;
}
section.store .products-widget .no-store-panels a {
  color: #000;
}
section.store .products-widget .no-store-panels a:hover {
  color: #999;
}
section.store .products-widget .no-store-panels a.newsletter-cta {
  font-family: "Montserrat";
  display: inline-block;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.14rem;
  padding: 1em 2em;
  background-color: #000;
  color: #d8d8b4;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  text-align: center;
  border: 1px solid #000;
  font-size: 12px;
  margin-top: 1em;
}
section.store .products-widget .no-store-panels a.newsletter-cta:hover {
  background-color: #d8d8b4;
  color: #000;
}
section.store .products-widget .no-store-panels a.newsletter-cta:hover {
  background-color: #d8d8b4;
  color: #000;
  border: 1px solid #000;
}

#section_store .divider {
  margin-bottom: -6em;
}

section.tourdates {
  text-align: left;
  margin-top: 1em;
}
section.tourdates .smem-tourdates {
  width: 90%;
  margin: 0px auto;
  text-align: left;
}
section.tourdates .smem-tourdates .date {
  display: flex;
  flex-wrap: wrap;
  padding: 0.8em 2em;
  font-size: 1rem;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #000;
  border-bottom: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-sizing: border-box;
}
@media (max-width: 996px) {
  section.tourdates .smem-tourdates .date {
    flex-direction: column;
    width: 90%;
    margin: 30px auto;
    border-bottom: 1px solid #000;
  }
}
section.tourdates .smem-tourdates .date:last-child {
  border-bottom: 1px solid #000;
}
section.tourdates .smem-tourdates .date:hover {
  background-color: #000;
  color: #d8d8b4;
}
section.tourdates .smem-tourdates .date:hover .show-info a {
  color: #d8d8b4;
}
section.tourdates .smem-tourdates .date:hover .ticketlinks-wrap a {
  color: #d8d8b4;
  border-radius: 5px;
  border-color: #d8d8b4;
}
section.tourdates .smem-tourdates .date div.day {
  order: 1;
  width: 20%;
}
@media (max-width: 996px) {
  section.tourdates .smem-tourdates .date div.day {
    width: 100%;
    text-align: center;
    margin-bottom: 0.5em;
  }
}
section.tourdates .smem-tourdates .date div.venue {
  order: 2;
  width: 28%;
  font-weight: 700;
}
@media (max-width: 996px) {
  section.tourdates .smem-tourdates .date div.venue {
    width: 100%;
    text-align: center;
    margin-bottom: 0.5em;
    font-size: 1.25em;
  }
}
section.tourdates .smem-tourdates .date div.town {
  order: 3;
  width: 28%;
}
@media (max-width: 996px) {
  section.tourdates .smem-tourdates .date div.town {
    width: 100%;
    text-align: center;
    margin-bottom: 0.5em;
  }
}
section.tourdates .smem-tourdates .date div.ticketlinks-wrap {
  order: 4;
  display: flex;
  flex-direction: column;
  align-content: flex-end;
  padding: 0.5em 0em;
  width: 19%;
}
@media (max-width: 996px) {
  section.tourdates .smem-tourdates .date div.ticketlinks-wrap {
    width: 100%;
    text-align: center;
    margin-bottom: 0.5em;
  }
}
section.tourdates .smem-tourdates .date div.ticketlinks-wrap a {
  align-self: stretch;
  color: #000;
  padding: 0.5em 1em;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
  margin: 5px 0;
  border-radius: 5px;
}
@media (max-width: 996px) {
  section.tourdates .smem-tourdates .date div.ticketlinks-wrap a {
    font-size: 1rem;
    padding: 1em 2em;
  }
}
section.tourdates .smem-tourdates .date div.ticketlinks-wrap a:hover {
  background-color: #d8d8b4;
  color: #000;
  border: 1px solid rgb(255, 255, 255);
}
section.tourdates .smem-tourdates .date div.show-info {
  box-sizing: border-box;
  order: 5;
  font-size: 0.75rem;
  padding: 1em 0;
}
@media (max-width: 996px) {
  section.tourdates .smem-tourdates .date div.show-info {
    text-align: center;
  }
}
section.tourdates .smem-tourdates .date div.show-info a {
  color: #000;
  transition: all 0.4s ease-in-out;
}
section.tourdates .smem-tourdates .date div.show-info a:hover {
  color: #fff !important;
}
section.tourdates .smem-tourdates .date:last-child .show-info {
  border-bottom: 3px solid #000;
  margin-bottom: 0;
}
section.tourdates .smem-tourdates .no-tour-dates {
  text-align: center;
  padding: 5em 0;
}
section.tourdates .smem-tourdates .no-tour-dates p {
  width: 80%;
  margin: 0 auto;
}
section.tourdates .smem-tourdates .no-tour-dates p a {
  font-weight: 700;
  text-decoration: none;
  color: #000;
  transition: all 0.4s ease-in-out;
}
section.tourdates .smem-tourdates .no-tour-dates p a:hover {
  color: #000;
  text-decoration: underline;
}
section.tourdates .smem-tourdates .no-tour-dates .cta {
  font-family: "Montserrat";
  display: inline-block;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.14rem;
  padding: 1em 2em;
  background-color: #000;
  color: #d8d8b4;
  transition: all 0.4s ease-in-out;
}
section.tourdates .smem-tourdates .no-tour-dates .cta:hover {
  background-color: #d8d8b4;
  color: #000;
}

.pagehome section.tourdates {
  margin: 0 0 0 0;
  width: 100%;
  background: #000;
}
.pagehome section.tourdates .no-tour-dates p, .pagehome section.tourdates .no-tour-dates a, .pagehome section.tourdates .no-tour-dates p a {
  color: #d8d8b4;
  font-weight: 400;
  line-height: 1.7;
}
.pagehome section.tourdates .no-tour-dates .smem-newsletter-link {
  text-decoration: underline;
}
.pagehome section.tourdates .no-tour-dates .smem-newsletter-link:hover {
  color: #d8d8b4;
}
.pagehome section.tourdates .no-tour-dates .cta {
  font-family: "Montserrat";
  display: inline-block;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.14rem;
  padding: 1em 2em;
  background-color: #000;
  color: #d8d8b4;
  transition: all 0.4s ease-in-out;
  border: 1px solid #d8d8b4;
  font-size: 12px;
  margin-top: 3em;
}
.pagehome section.tourdates .no-tour-dates .cta:hover {
  background-color: #d8d8b4;
  color: #000;
}
.pagehome section.tourdates .more a:hover {
  color: #d8d8b4;
  background-color: #000;
}

#video-player {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1200;
  display: none;
}
#video-player.active {
  display: block;
}
#video-player #video-player-inner,
#video-player #video-player-inner iframe {
  width: 100%;
  height: 100%;
}
#video-player #video-player-close {
  display: block;
  font-size: 3em;
  width: 1.25em;
  height: 1.25em;
  position: absolute;
  top: 0.75em;
  right: 0.75em;
  background-color: #999;
  color: #000;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
  border-radius: 0;
  z-index: 801;
}
#video-player #video-player-close:hover {
  background-color: #000;
  color: #999;
}
#video-player #video-player-close i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

section.page-section.videos .smem-videos {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 996px) {
  section.page-section.videos .smem-videos {
    flex-direction: column;
  }
}
section.page-section.videos .smem-videos .video {
  width: calc(33.33% - 2rem);
  margin: 20px;
  flex-grow: 0.5;
}
@media (max-width: 996px) {
  section.page-section.videos .smem-videos .video {
    width: 90%;
    margin: 20px auto;
  }
}
section.page-section.videos .smem-videos .video a.video-link {
  display: block;
}
section.page-section.videos .smem-videos .video a.video-link .video-thumb {
  width: 100%;
  text-align: center;
}
section.page-section.videos .smem-videos .video a.video-link .video-thumb img,
section.page-section.videos .smem-videos .video a.video-link .video-thumb video {
  max-width: 100%;
}
section.page-section.videos .smem-videos .video .video-subtitle {
  text-align: center;
  font-size: 1rem;
}
section.page-section.videos .smem-videos .video .video-subtitle h3 {
  color: #000;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1em;
  font-family: "Montserrat";
  text-transform: uppercase;
}
section.page-section.videos .smem-videos .video.--video-single {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  margin: 0;
}
section.page-section.videos .smem-videos .video.--video-single iframe,
section.page-section.videos .smem-videos .video.--video-single video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
section.page-section.videos.single {
  padding: 0;
}
section.page-section.videos.single .smem-videos {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  width: 100%;
  margin: 0px auto 0px auto;
}
section.page-section.videos.single .smem-videos iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.jarallax {
  position: relative;
  z-index: 0;
  height: 60vh;
  background-color: #000;
}
.jarallax > .jarallax-img {
  position: absolute;
  object-fit: cover;
  /* support for plugin https://github.com/bfred-it/object-fit-images */
  font-family: "object-fit: cover;";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

body.pagecontent .jarallax {
  position: relative;
  z-index: 0;
  height: 60vh;
}/*# sourceMappingURL=main.css.map */