.parent-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--xs);
  padding-bottom: var(--xl);
}
@media (max-width: 1200px) {
  .parent-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .parent-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 550px) {
  .parent-grid {
    grid-template-columns: 1fr;
    gap: var(--m);
  }
}
.parent-grid .filter-container {
  position: relative;
  width: 100%;
  height: auto;
}
.parent-grid .filter-container .filter-menu {
  position: sticky;
  top: 0px;
  left: 0px;
  width: auto;
  max-width: 100%;
  height: auto;
}
.parent-grid .filter-container .filter-menu .body {
  margin-bottom: 1em;
}
.parent-grid .filter-container .filter-menu ul {
  font-size: 14px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.85em;
}
.parent-grid .filter-container .filter-menu ul li {
  font-size: 1em;
}
.parent-grid .filter-container .filter-menu ul li:has(~ li button:hover) button, .parent-grid .filter-container .filter-menu ul li:hover ~ li button {
  opacity: 0.5;
  transition-delay: 0s;
}
.parent-grid .filter-container .filter-menu ul li button {
  font-size: 1em;
  color: inherit;
  line-height: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  opacity: 1;
  transition: opacity 0.4s 0.1s;
}
.parent-grid .grid {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: 2/-1;
  gap: inherit;
}
@media (max-width: 768px) {
  .parent-grid .grid {
    gap: var(--m);
  }
}
@media (max-width: 550px) {
  .parent-grid .grid {
    grid-column: 1/-1;
  }
}
.parent-grid .grid .no-items {
  grid-column: 1/-1;
  display: none;
  animation: fadeIn 0.4s ease-out;
}
.parent-grid .grid.no-items .no-items {
  display: block;
}
.parent-grid .button-container {
  grid-column: 1/-1;
  padding-top: var(--xl);
}
.parent-grid .button-container.hide {
  display: none;
}
.parent-grid .button-container .load-more {
  font-size: 14px;
  position: relative;
  color: var(--primary);
  padding-bottom: 0.25em;
}
.parent-grid .button-container .load-more::before, .parent-grid .button-container .load-more::after {
  content: "";
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 1px;
  background-color: var(--primary);
}
.parent-grid .button-container .load-more::before {
  opacity: 0.5;
  z-index: 1;
  left: 0px;
}
.parent-grid .button-container .load-more::after {
  width: 0%;
  z-index: 2;
  right: 0px;
  left: unset;
  transform: unset;
  transition: width 0.4s ease-out;
}
.parent-grid .button-container .load-more:hover::after {
  left: 0px;
  right: unset;
  width: 100%;
}

.item, .product {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: calc(var(--xs) / 2);
  transition: opacity 0.4s ease-out;
  animation: fadeIn 0.4s ease-out;
}
.item.hide, .hide.product {
  opacity: 0;
  pointer-events: none;
  display: none;
}
.item.fade, .fade.product {
  opacity: 0;
  pointer-events: none;
  animation: none;
}
.item .packshot, .product .packshot {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
}
.item .packshot .button, .product .packshot .button {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: max-content;
  max-width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease-out;
}
.item .packshot::before, .product .packshot::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease-out;
}
.item .packshot img, .product .packshot img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
}
.item .packshot:hover .button, .product .packshot:hover .button, .item .packshot:hover::before, .product .packshot:hover::before {
  opacity: 1;
  pointer-events: all;
}
.item .info, .product .info {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: calc(var(--xs) / 2);
}
.item .info .title-info, .product .info .title-info {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--xs);
}
.item .info .title-info .subheading, .product .info .title-info .subheading {
  font-size: 12px;
  line-height: 1.1em;
}
.item .info .categories, .product .info .categories {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: calc(var(--xs) / 2);
  flex-wrap: wrap;
}
.item .info .categories span, .product .info .categories span {
  line-height: 1em;
}
.item .info .categories span.hide, .product .info .categories span.hide {
  display: none;
}

.pg-modal {
  position: fixed;
  z-index: 999;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  backdrop-filter: blur(20px);
  background-color: rgba(0, 0, 0, 0.15);
  background-image: linear-gradient(5deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.25) 70%);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s;
}
.pg-modal .close {
  position: absolute;
  z-index: 2;
  top: 1em;
  right: 1em;
  width: 1em;
  height: 1em;
  font-size: 20px;
  line-height: 1em;
  color: var(--primary);
  transition: color 0.3s;
}
.pg-modal .close:hover {
  color: var(--accent);
}
@media (max-width: 768px) {
  .pg-modal .close {
    top: var(--l);
    right: var(--gutter);
    font-size: 24px;
  }
}
.pg-modal .content {
  position: relative;
  z-index: 1;
  width: calc(100% - var(--gutter) * 2);
  max-width: 600px;
  height: auto;
  max-height: 90%;
  background-color: var(--primary);
  padding: var(--xs);
  border-radius: 5px;
  transform: translateY(10%);
  transition: transform 0.3s;
}
.pg-modal.active {
  opacity: 1;
  pointer-events: all;
}
.pg-modal.active .content {
  transform: translateY(0%);
}

@font-face {
  font-family: "GaramondClassico";
  src: url("../FONTS/GaramondClassico.woff");
}
@font-face {
  font-family: "Medusa";
  src: url("../FONTS/Medusa.woff");
}
@font-face {
  font-family: "UnderwoodEtendu1913";
  src: url("../FONTS/UnderwoodEtendu1913.woff");
}
:root {
  --primary: #fff;
  --primary-alt: #F5E8D4;
  --secondary: #000;
  --secondary-alt: #231b0c;
  --accent: #C5A07E;
  --accent2: #F1C69D;
  --accent3: #F5D9B0;
  --accent4: #F8E9D0;
  --accent5: #F7E2C4;
  --font1: "GaramondClassico";
  --font2: "Medusa";
  --font3: "UnderwoodEtendu1913";
  --xl: 100px;
  --l: 65px;
  --m: 50px;
  --s: 30px;
  --xs: 20px;
  --gutter: 50px;
  --content-width: 1800px;
}
@media (max-width: 1024px) {
  :root {
    --xl: 75px;
    --l: 48px;
    --m: 37.5px;
    --s: 22.5px;
    --xs: 15px;
    --gutter: 40px;
  }
}
@media (max-width: 768px) {
  :root {
    --xl: 50px;
    --l: 32.5px;
    --m: 25px;
    --s: 15px;
    --xs: 10px;
    --gutter: 30px;
  }
}
@media (max-width: 450px) {
  :root {
    --xl: 40px;
    --l: 26px;
    --m: 20px;
    --s: 12px;
    --xs: 8px;
    --gutter: 15px;
  }
}

* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html, body {
  background-color: var(--secondary);
}

h1, h2, h3, h4, h5, h6, p, a, em, strong, span, button, li, input, select, textarea, div, .ae-cform-container {
  font-family: var(--font1), serif;
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
}

button,
[role=button] {
  background-color: transparent;
  border: none;
  cursor: pointer;
}

::selection {
  background-color: var(--accent2);
  color: var(--secondary);
}

img::selection {
  background-color: color-mix(in hsl, var(--accent2) 50%, transparent 50%);
}

#umggr-wc-preloader {
  display: none !important;
}

umg-page::part(page) {
  background-color: transparent;
}

#cpra_button {
  display: none !important;
}

#wpadminbar {
  display: none;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: auto;
  min-height: 100svh;
}
body header {
  z-index: 3;
}
body main,
body umg-page {
  width: 100%;
  height: auto;
  flex-grow: 1;
}
body footer {
  z-index: 2;
  margin-top: auto;
}

.content-width {
  width: 100%;
  max-width: var(--content-width);
  height: auto;
  margin: 0px auto;
  padding: 0px var(--gutter);
}

.link, #music .content-width #featured-section .release.featured .packshot .title, #store #store-items-section .content-width .parent-grid .filter-container .filter-menu ul li button, footer .content-width .sub-footer .footer-links li a, header .content-width .burger-menu-nav .burger-menu-nav-content nav ul li a, header .content-width nav .header-links li a, .subheading {
  position: relative;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1em;
  letter-spacing: 0.33em;
  font-size: 14px;
}
.link::after, #music .content-width #featured-section .release.featured .packshot .title::after, #store #store-items-section .content-width .parent-grid .filter-container .filter-menu ul li button::after, footer .content-width .sub-footer .footer-links li a::after, header .content-width .burger-menu-nav .burger-menu-nav-content nav ul li a::after, header .content-width nav .header-links li a::after, .subheading::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  translate: -0.1em 0px;
  width: 0%;
  height: 1px;
  background-color: var(--primary);
  transition: width 0.4s ease-in;
}
.link:hover::after, #music .content-width #featured-section .release.featured .packshot .title:hover::after, #store #store-items-section .content-width .parent-grid .filter-container .filter-menu ul li button:hover::after, footer .content-width .sub-footer .footer-links li a:hover::after, header .content-width .burger-menu-nav .burger-menu-nav-content nav ul li a:hover::after, header .content-width nav .header-links li a:hover::after, .subheading:hover::after {
  width: calc(100% - 0.2em);
  transition-timing-function: ease-out;
}

.button-container {
  width: auto;
  max-width: max-content;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--xs);
  margin: 0px auto;
}

.button,
.button1,
.button2 {
  font-size: 14px;
  font-weight: 400;
  line-height: 1em;
  letter-spacing: 0.33em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.5em 0.8em;
  border: solid 1px;
  border-radius: 0.3em;
  background-color: transparent;
  transition: background-color 0.4s ease-out, color 0.4s ease-out;
}

.button,
.button1 {
  color: var(--primary);
  border-color: var(--primary);
}
.button:hover,
.button1:hover {
  background-color: var(--primary);
  color: var(--secondary);
}

.button2 {
  color: var(--secondary);
  border-color: var(--secondary);
}
.button2:hover {
  background-color: var(--secondary);
  color: var(--primary);
}

.subheading::after {
  content: none;
}

.body {
  font-size: 12px;
  color: var(--primary);
  line-height: 1em;
  font-weight: 400;
  letter-spacing: 0.07em;
}

header {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: auto;
  padding: calc(var(--s) * 1.25) 0px;
  background-color: transparent;
  --text: var(--primary);
  transition: background-color 0.4s ease-out, --text 0.4s ease-out;
}
header.black {
  background-color: var(--secondary);
  --text: var(--primary);
}
header.white {
  background-color: var(--primary);
  --text: var(--secondary);
}
header.store .content-width nav .header-links .store a::after {
  width: 100%;
}
header.music .content-width nav .header-links .music a::after {
  width: 100%;
}
header.watch .content-width nav .header-links .watch a::after {
  width: 100%;
}
header.live .content-width nav .header-links .live a::after {
  width: 100%;
}
header .content-width {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  place-items: center;
  gap: var(--xs);
}
header .content-width .logo {
  display: block;
  width: 250px;
  height: auto;
}
header .content-width .logo img {
  display: block;
  width: 100%;
  height: auto;
}
header .content-width nav:first-of-type {
  margin-right: auto;
}
header .content-width nav:last-of-type {
  margin-left: auto;
}
header .content-width nav .header-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em 1.5em;
}
header .content-width nav .header-links li {
  font-size: 1em;
  color: var(--text);
}
header .content-width nav .header-links li a {
  color: inherit;
}
header .content-width nav .header-links li a::after {
  background-color: var(--text);
}
header .content-width nav .socials li a {
  color: var(--text);
}
header .content-width .burger-menu {
  display: none;
}
header .content-width .burger-menu-nav {
  display: none;
}
@media (max-width: 1500px) {
  header {
    padding: var(--s) 0px;
  }
  header .content-width .logo {
    width: 200px;
  }
  header .content-width nav .header-links {
    gap: 0.5em 1em;
  }
}
@media (max-width: 1385px) {
  header {
    padding: var(--xs) 0px;
  }
  header .content-width {
    grid-template-columns: 1fr auto auto;
  }
  header .content-width .logo {
    order: -1;
    margin-right: auto;
    width: 150px;
  }
  header .content-width nav:first-of-type {
    margin-left: auto;
    margin-right: unset;
  }
}
@media (max-width: 1024px) {
  header .content-width {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--xs);
  }
  header .content-width .logo {
    width: 420px;
    max-width: 100%;
    grid-column: 1/-1;
    margin: 0px auto;
    margin-bottom: var(--xs);
  }
  header .content-width nav:last-of-type {
    margin-right: auto;
    margin-left: unset;
  }
}
@media (max-width: 768px) {
  header {
    padding: var(--m) 0px;
  }
  header .content-width {
    display: grid;
    grid-template-columns: auto 1fr;
  }
  header .content-width .logo {
    width: 150px;
    margin-left: 0px;
    margin-bottom: 0px;
    grid-column: unset;
  }
  header .content-width nav:has(> .header-links),
  header .content-width nav:has(> .socials),
  header .content-width .header-links {
    display: none;
  }
  header .content-width .burger-menu {
    width: 25px;
    height: auto;
    aspect-ratio: 5/4;
    display: grid;
    place-items: center;
    gap: 5px;
    position: relative;
    z-index: 3;
    margin-left: auto;
  }
  header .content-width .burger-menu span {
    width: 100%;
    height: 2px;
    background-color: var(--text);
    transition: all 0.3s;
    position: absolute;
  }
  header .content-width .burger-menu span:nth-of-type(1) {
    top: 0%;
  }
  header .content-width .burger-menu span:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  header .content-width .burger-menu span:nth-of-type(3) {
    bottom: 0%;
  }
  header .content-width .burger-menu.active {
    filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.15));
  }
  header .content-width .burger-menu.active span {
    background-color: var(--accent2);
  }
  header .content-width .burger-menu.active span:nth-of-type(1) {
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
  }
  header .content-width .burger-menu.active span:nth-of-type(2) {
    opacity: 0;
  }
  header .content-width .burger-menu.active span:nth-of-type(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(45deg);
  }
  header .content-width .burger-menu-nav {
    position: fixed;
    z-index: 2;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100vh;
    height: 100svh;
    display: grid;
    place-items: center;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
    backdrop-filter: blur(20px);
    background-color: rgba(0, 0, 0, 0.15);
    background-image: linear-gradient(5deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.25) 70%);
  }
  header .content-width .burger-menu-nav .burger-menu-nav-content {
    transform: translateY(5%);
    opacity: 0;
    transition: transform 0.5s ease-out, opacity 0.75s ease-out;
  }
  header .content-width .burger-menu-nav .burger-menu-nav-content nav {
    display: block;
  }
  header .content-width .burger-menu-nav .burger-menu-nav-content nav .header-links {
    display: flex;
    flex-direction: column;
    font-size: 16px;
    gap: 2em;
  }
  header .content-width .burger-menu-nav .burger-menu-nav-content nav .header-links li {
    width: 100%;
    color: var(--primary);
    overflow: hidden;
    display: inline-block;
    line-height: 1em;
  }
  header .content-width .burger-menu-nav .burger-menu-nav-content nav .header-links li a {
    display: inline-block;
    transform: translateY(100%);
    transition: transform 0.3s;
  }
  header .content-width .burger-menu-nav .burger-menu-nav-content nav .header-links li a::after {
    content: none;
  }
  header .content-width .burger-menu-nav .burger-menu-nav-content nav .divide {
    position: relative;
    margin: var(--l) 0px;
    width: 0%;
    height: 1px;
    background-color: var(--accent3);
    opacity: 0;
    transition: width 0.75s ease-out, opacity 0.5s ease-out;
  }
  header .content-width .burger-menu-nav .burger-menu-nav-content nav .socials {
    justify-content: flex-start;
    gap: 0.5em;
    opacity: 0;
    transition: opacity 0.5s ease-out;
  }
  header .content-width .burger-menu-nav .burger-menu-nav-content nav .socials li {
    height: auto;
  }
  header .content-width .burger-menu-nav .burger-menu-nav-content nav .socials li a {
    font-size: 1em;
  }
  header .content-width .burger-menu-nav.active {
    opacity: 1;
    pointer-events: all;
  }
  header .content-width .burger-menu-nav.active .burger-menu-nav-content {
    transform: translateY(0%);
    opacity: 1;
  }
  header .content-width .burger-menu-nav.active .burger-menu-nav-content nav .header-links li a {
    transform: translateY(0%);
    transition-delay: 0.25s;
  }
  header .content-width .burger-menu-nav.active .burger-menu-nav-content nav .divide {
    width: 80%;
    opacity: 1;
    transition-delay: 0.5s;
  }
  header .content-width .burger-menu-nav.active .burger-menu-nav-content nav .socials {
    opacity: 1;
    transition-delay: 0.5s;
  }
}

footer {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-bottom: var(--m);
  background-color: var(--primary);
}
footer .content-width {
  position: relative;
  padding-top: var(--m);
}
footer .content-width .form {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: calc(var(--xs) / 2);
  width: 100%;
  max-width: 540px;
  margin-bottom: var(--xl);
}
footer .content-width .form .body {
  color: var(--secondary);
}
footer .content-width .form #pseudo-email {
  position: relative;
  z-index: 1;
  width: 100%;
  text-align: left;
  font-size: 12px;
  transition: border-color 0.4s ease-out;
}
footer .content-width .form #pseudo-email:hover {
  background-color: transparent;
  color: var(--secondary);
}
footer .content-width .form #pseudo-email:focus {
  outline: none;
  border-color: color-mix(in hsl, var(--secondary) 65%, transparent 35%);
}
footer .content-width .form button[type=submit] {
  font-size: 12px;
  position: absolute;
  z-index: 2;
  right: 0px;
  bottom: 0px;
  padding: 0.65em 1em;
  display: grid;
  place-items: center;
  width: auto;
  min-height: 1em;
}
footer .content-width .form button[type=submit] img {
  display: block;
  width: auto;
  height: 1em;
  opacity: 1;
  transition: opacity 0.4s ease-out;
}
footer .content-width .form button[type=submit]:hover img {
  opacity: 0.5;
}
footer .content-width .sub-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s);
}
footer .content-width .sub-footer .footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-size: 10px;
  gap: 0.5em 1em;
}
footer .content-width .sub-footer .footer-links li {
  position: relative;
  font-size: 1em;
  line-height: 1em;
  text-align: center;
}
footer .content-width .sub-footer .footer-links li a {
  color: var(--secondary);
  font-size: 1em;
}
footer .content-width .sub-footer .footer-links li a::after {
  background-color: var(--secondary);
}
@media (max-width: 920px) {
  footer .content-width .sub-footer {
    flex-direction: column-reverse;
  }
}
@media (max-width: 768px) {
  footer .content-width .sub-footer .footer-links {
    flex-wrap: wrap;
  }
}

.socials {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  gap: 1em;
}
.socials li {
  font-size: 1em;
  line-height: 1em;
}
.socials li a {
  font-size: 1em;
  color: var(--secondary);
  transition: color 0.4s ease-out;
}
.socials li a i {
  color: inherit;
}
.socials li a:hover {
  color: var(--accent) !important;
}

.body strong,
.post-content strong {
  font-weight: 900;
}
.body em,
.post-content em {
  font-style: italic;
}
.body ul, .body ol,
.post-content ul,
.post-content ol {
  list-style-position: inside;
}
.body ul,
.post-content ul {
  list-style-type: disc;
}
.body blockquote,
.post-content blockquote {
  padding: 0.75em;
  padding-left: 1.5em;
  background-color: rgba(0, 0, 0, 0.2);
  border-left: solid 1px #323232;
}
.body p, .body h1, .body h2, .body h3, .body h4, .body h5, .body h6,
.post-content p,
.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
  margin-bottom: 1em;
}
.body p:last-of-type, .body h1:last-of-type, .body h2:last-of-type, .body h3:last-of-type, .body h4:last-of-type, .body h5:last-of-type, .body h6:last-of-type,
.post-content p:last-of-type,
.post-content h1:last-of-type,
.post-content h2:last-of-type,
.post-content h3:last-of-type,
.post-content h4:last-of-type,
.post-content h5:last-of-type,
.post-content h6:last-of-type {
  margin-bottom: 0px;
}
.body a,
.post-content a {
  color: inherit;
  text-decoration: underline;
  transition: color 0.3s;
}
.body a:hover,
.post-content a:hover {
  color: var(--accent);
}

section {
  position: relative;
  z-index: 2;
}

#hero {
  position: fixed;
  z-index: 1;
  width: 100%;
  height: 100vh;
  height: 100svh;
}
#hero .bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 15%;
}
@media (max-width: 600px) {
  #hero .bg {
    object-position: 65% 15%;
  }
}

#store {
  position: relative;
  z-index: 0;
  padding-top: 200vh;
  padding-top: 200svh;
  width: 100%;
  height: auto;
  background-color: var(--primary);
}
#store .banner {
  position: fixed;
  z-index: 1;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100vh;
  height: 100svh;
}
#store .banner .banner-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#store #store-items-section {
  position: relative;
  z-index: 1;
  background-color: var(--primary);
  padding-top: var(--xl);
}
#store #store-items-section .content-width .parent-grid .filter-container .filter-menu .body {
  color: var(--secondary);
}
#store #store-items-section .content-width .parent-grid .filter-container .filter-menu ul {
  margin-bottom: var(--xs);
}
#store #store-items-section .content-width .parent-grid .filter-container .filter-menu ul:last-of-type {
  margin-bottom: 0px;
}
#store #store-items-section .content-width .parent-grid .filter-container .filter-menu ul li button {
  color: var(--secondary);
  opacity: 1 !important;
}
#store #store-items-section .content-width .parent-grid .filter-container .filter-menu ul li button::after {
  background-color: var(--secondary);
  right: 0px;
  left: unset;
  transform: unset;
}
#store #store-items-section .content-width .parent-grid .filter-container .filter-menu ul li button:hover::after {
  width: 100%;
  left: 0px;
  right: unset;
}
#store #store-items-section .content-width .parent-grid .grid .no-items {
  color: var(--secondary);
}
#store #store-items-section .content-width .parent-grid .grid.bestsellers .bestsellers {
  order: -2;
}

.product {
  background-color: #F1F1F2;
  border-radius: 5px;
  gap: var(--xs);
  padding: var(--xs);
  transition: all 0.4s ease-out;
}
.product:hover {
  background-color: #cbcbcb;
}
.product .packshot img {
  aspect-ratio: 280/332;
  object-fit: contain;
  object-position: center;
}
.product .packshot::before {
  content: none;
}
.product .info {
  margin-top: auto;
}
.product .info .title-info {
  flex-direction: column;
  gap: 5px;
}
.product .info .title-info .subheading {
  color: var(--secondary);
}

#music {
  background-color: var(--secondary);
}
#music .content-width {
  padding-top: calc(var(--xl) * 2);
  /*
  --size is used to manage the expanded size of releases on both desktop & mobile, it uses min() to set a size based on VW but also a PX value to limit the size
  when expanded, --size is multiplied by 1.6 to match the size increases provided in the design. This multiplication used on desktop & mobile.

  Desktop:
  Wrapping shouldn't happen, but if it does the z-index for hovered release is increased

  Mobile:
  Releases are displayed vertically now, the width is increased and the title of the release is no longer positioned absolutely so that it can be revealed
  when a release is activated/expanded. It uses margin-top to hide the title when not active
  When an inactibe release is clicked/tapped it becomes the active releases, when active releases are tapped it opens the link - handled in JavaScript
  */
}
#music .content-width #featured-section {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--xs);
  margin-bottom: calc(var(--xl) * 2);
}
#music .content-width #featured-section .release.featured {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  --size: min(250px, 13vw);
  width: auto;
  height: calc(var(--size) * 1.6);
}
#music .content-width #featured-section .release.featured .packshot {
  position: relative;
  width: var(--size);
  height: auto;
  display: block;
  aspect-ratio: 1;
  opacity: 1;
  transition: opacity 0.5s ease-out, width 0.5s ease-out;
}
#music .content-width #featured-section .release.featured .packshot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#music .content-width #featured-section .release.featured .packshot .title {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  color: var(--primary);
  text-align: center;
  line-height: 1.5em;
  margin-top: var(--xs);
  opacity: 0;
  pointer-events: none;
  filter: blur(1px);
  transition: opacity 0.5s ease-out, filter 0.5s ease-out;
  transition-delay: inherit;
}
#music .content-width #featured-section .release.featured .packshot .title::after {
  content: none;
}
@media (max-width: 768px) {
  #music .content-width #featured-section .release.featured .packshot .title {
    font-size: 12px;
  }
}
@media (min-width: 551px) {
  #music .content-width #featured-section .release.featured .packshot:hover {
    width: calc(var(--size) * 1.6);
  }
  #music .content-width #featured-section .release.featured .packshot:hover .title {
    opacity: 1;
    pointer-events: all;
    filter: blur(0px);
    transition-delay: 0.5s;
  }
}
#music .content-width #featured-section .release.featured .packshot:hover {
  opacity: 1 !important;
}
#music .content-width #featured-section .release.featured:hover {
  z-index: 2;
}
#music .content-width #featured-section .release.featured:hover ~ .release.featured .packshot, #music .content-width #featured-section .release.featured:has(~ .release.featured .packshot:hover) .packshot {
  opacity: 0.5;
}
@media (max-width: 550px) {
  #music .content-width #featured-section {
    flex-direction: column;
  }
  #music .content-width #featured-section:has(.release.featured.active) .release.featured .packshot {
    opacity: 0.5;
  }
  #music .content-width #featured-section .release.featured {
    --size: min(200px, 36vw);
    width: auto;
    max-width: calc(var(--size) * 1.6);
    height: auto;
  }
  #music .content-width #featured-section .release.featured .packshot {
    aspect-ratio: unset;
  }
  #music .content-width #featured-section .release.featured .packshot img {
    position: relative;
    z-index: 2;
    aspect-ratio: 1;
    transition: height 0.5s ease-out;
  }
  #music .content-width #featured-section .release.featured .packshot .title {
    margin-top: -3em;
    position: relative;
    z-index: 1;
    top: unset;
    width: max-content;
    max-width: 98vw;
    font-size: 16px;
    transition: margin-top 0.5s ease-out, opacity 0.5s ease-out, filter 0.5s ease-out;
  }
  #music .content-width #featured-section .release.featured.active {
    width: calc(var(--size) * 1.6);
    height: auto;
  }
  #music .content-width #featured-section .release.featured.active .packshot {
    opacity: 1 !important;
    width: 100%;
    height: auto;
  }
  #music .content-width #featured-section .release.featured.active .packshot img {
    width: 100%;
    height: calc(var(--size) * 1.6);
  }
  #music .content-width #featured-section .release.featured.active .title {
    opacity: 1;
    pointer-events: all;
    filter: blur(0px);
    margin-top: var(--xs);
    transition-delay: 0s, 0.5s, 0.5s;
  }
}
#music .content-width .parent-grid .filter-container .filter-menu ul li {
  color: var(--primary);
}
#music .content-width .parent-grid .grid .item .packshot, #music .content-width .parent-grid .grid .product .packshot {
  aspect-ratio: 1;
}
#music .content-width .parent-grid .grid .item .info .title-info .subheading, #music .content-width .parent-grid .grid .product .info .title-info .subheading {
  color: var(--primary);
}

#watch {
  background-color: var(--secondary);
}
#watch #video-player {
  width: 100%;
  height: auto;
  aspect-ratio: 560/315;
}
#watch #video-player iframe {
  width: 100%;
  height: 100%;
}
#watch .content-width #hazel-eyes {
  width: 100%;
  max-width: 700px;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: var(--s);
  margin: var(--xl) auto;
}
#watch .content-width #hazel-eyes img {
  width: 50%;
  max-width: 250px;
}
#watch .content-width #hazel-eyes .copy {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: calc(var(--xs) / 2);
}
#watch .content-width #hazel-eyes .copy .subheading {
  color: var(--primary);
  font-size: 12px;
  width: 100%;
  text-align: center;
}
#watch .content-width #hazel-eyes .copy .body {
  width: 100%;
  text-align: center;
  line-height: 1.5em;
}
#watch .content-width #videos .parent-grid .filter-container .filter-menu ul li {
  color: var(--primary);
}
#watch .content-width #videos .parent-grid .grid .item .info .title-info .subheading, #watch .content-width #videos .parent-grid .grid .product .info .title-info .subheading {
  color: var(--primary);
}

#live {
  width: 100%;
  height: auto;
  background-color: var(--primary);
}
#live .banner {
  width: 100%;
  height: 100vh;
  height: 100svh;
}
#live .banner .banner-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#live #tour-dates-section {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  background-color: var(--primary);
}
#live #tour-dates-section .content-width {
  background-color: inherit;
}
#live #tour-dates-section .content-width #tour-dates {
  width: 100%;
  height: auto;
  margin: 0px auto;
  display: grid;
  grid-template-columns: 3fr 6fr 7fr 7fr;
  gap: 0px var(--l);
  padding: var(--xl) 0px;
  border-bottom: solid 1px var(--secondary);
  background-color: inherit;
}
#live #tour-dates-section .content-width #tour-dates .no-dates {
  width: 100%;
  height: auto;
  text-align: center;
  padding: var(--xl) 1em;
  color: var(--secondary);
}
#live #tour-dates-section .content-width #tour-dates .tour-date {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: subgrid;
  grid-column: 1/-1;
  padding: var(--xs) 0px;
}
#live #tour-dates-section .content-width #tour-dates .tour-date::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 1px;
  background-color: var(--secondary);
  opacity: 0;
  transition: width 1s ease-out, opacity 1s ease-out;
}
#live #tour-dates-section .content-width #tour-dates .tour-date.active::after {
  width: 100%;
  opacity: 1;
}
#live #tour-dates-section .content-width #tour-dates .tour-date.tour-header {
  padding-top: 0px;
}
#live #tour-dates-section .content-width #tour-dates .tour-date.tour-header::after {
  width: 100% !important;
  opacity: 1 !important;
}
#live #tour-dates-section .content-width #tour-dates .tour-date.tour-header .subheading {
  font-size: 12px;
  text-transform: capitalize;
  letter-spacing: 0.07em;
}
#live #tour-dates-section .content-width #tour-dates .tour-date.tour-header .subheading:last-of-type {
  text-align: right;
}
#live #tour-dates-section .content-width #tour-dates .tour-date:last-of-type::after {
  content: none;
}
#live #tour-dates-section .content-width #tour-dates .tour-date .subheading {
  width: 100%;
  text-align: left;
  color: var(--secondary);
}
#live #tour-dates-section .content-width #tour-dates .tour-date .ticket-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 14px;
  gap: 1em;
}
#live #tour-dates-section .content-width #tour-dates .tour-date .ticket-container a {
  font-size: 1em;
  color: var(--secondary);
}
#live #tour-dates-section .content-width #tour-dates .tour-date .ticket-container a::before {
  content: "|";
  position: absolute;
  top: 50%;
  right: -0.5em;
  transform: translate(50%, -50%);
  font-size: 1em;
  color: inherit;
  pointer-events: none;
}
#live #tour-dates-section .content-width #tour-dates .tour-date .ticket-container a::after {
  background-color: var(--secondary);
}
#live #tour-dates-section .content-width #tour-dates .tour-date .ticket-container a:last-of-type::before {
  content: none;
}
@media (max-width: 1500px) {
  #live #tour-dates-section .content-width #tour-dates {
    grid-template-columns: 1fr 2fr 3fr auto;
    gap: 0px var(--l);
  }
}
@media (max-width: 1300px) {
  #live #tour-dates-section .content-width #tour-dates {
    grid-template-columns: auto 1fr 2fr auto;
    gap: 0px var(--s);
  }
  #live #tour-dates-section .content-width #tour-dates .tour-date .date {
    padding-right: var(--s);
  }
}
@media (max-width: 1200px) {
  #live #tour-dates-section .content-width #tour-dates .tour-date .date {
    padding-right: 0px;
  }
}
@media (max-width: 1100px) {
  #live #tour-dates-section .content-width #tour-dates {
    grid-template-columns: auto auto 2fr auto;
    gap: 0px var(--xs);
  }
}
@media (max-width: 985px) {
  #live #tour-dates-section .content-width #tour-dates .tour-date {
    grid-template-columns: 1fr;
    gap: var(--xs);
    max-width: 400px;
    margin: 0px auto;
    padding: var(--l) 0px;
  }
  #live #tour-dates-section .content-width #tour-dates .tour-date.tour-header {
    display: none;
  }
  #live #tour-dates-section .content-width #tour-dates .tour-date:last-of-type::before {
    content: none;
  }
  #live #tour-dates-section .content-width #tour-dates .tour-date .subheading {
    text-align: center;
  }
  #live #tour-dates-section .content-width #tour-dates .tour-date .ticket-container {
    margin-top: var(--xs);
    justify-content: center;
  }
  #live #tour-dates-section .content-width #tour-dates .tour-date.active::after {
    width: 40%;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    pointer-events: none;
  }
  100% {
    opacity: 1;
    pointer-events: all;
  }
}
body.error404 umg-page {
  display: grid;
  place-items: center;
}
body.error404 umg-page main {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background-color: var(--secondary);
}
body.error404 umg-page main .content-width .subheading {
  font-size: 20px;
  color: var(--primary);
}
body.error404 umg-page main .content-width .button-container {
  margin-top: var(--s);
}
body.error404 footer {
  filter: invert(1);
}/*# sourceMappingURL=styles.css.map */