/*
Theme Name: tresor
Theme URI: https://robinbenad.com
Description: Tresor
Author: Robin Benad
Author URI: https://robinbenad.com
Version: 1.0
*/

/* Box sizing rules */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Remove default padding */
ul[class],
ol[class] {
    padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
    margin: 0;
}

/* Set core body defaults */
body {
    min-height: 100dvh;
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
    list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
    text-decoration-skip-ink: auto;
}

a {
    color: inherit;
}

.bar a {
    text-decoration: none;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
    margin: 0;
}

h4, h5, h6 {
    font-size: var(--font-size-small);
    line-height: var(--line-height-small);
    margin-bottom: 4px;
}

/* Make images easier to work with */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
    font: inherit;
}

i,
address {
    font-style: normal;
}

hr {
    border-top: 1px solid var(--medium);
    border-bottom: 0;
    margin-bottom: 1.16666em;
}

/*  FONTS
========================================================================== */


@font-face {
    font-family: 'Px-Grotesk-web-broken';
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(fonts/Px-Grotesk-Regular.woff2) format('woff2'), url(fonts/Px-Grotesk-Regular.woff) format('woff'), url(fonts/Px-Grotesk-Regular.eot) format('eot');
}

@font-face {
    font-family: 'Px-Grotesk-web';
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(fonts/px-grotesk.woff2) format('woff2'), url(fonts/px-grotesk.woff) format('woff'), url(fonts/px-grotesk.eot) format('eot');
}



/*  GRID
========================================================================== */

/*
- body
--- body-inner
----- site-header
------- site-header-title
------- site-header-social
----- site-wrapper
------- nav-header
--------- nav-main
--------- nav-title (mobile only)
--------- nav-sub
------- wrapper-inner
--------- nav-dynamic
--------- hero-outer
----------- hero-inner
------------- hero-content
------------- hero-footer
--------- main-outer
----------- main-content
----------- main-footer
*/

/* HTML */

html {
    --bar-height: 32px;
    --bar-grid-width: 50%;
    --grid-image-width: 96px;
    --grid-image-gap: 3px;
    --pad: 6px;
    --dark: #000;
    --light: #fff;
    --medium: #ccc;
    font-size: 18px;
    --font-size-small: 12px;
    --line-height-small: 14px;
    --line-height-normal: 1.2;
    --checkbox-width: 11px;
    --checkbox-top: 0.28em;
    --placeholder-color: #757575;
}

html, body {
    background: var(--dark);
    color: var(--light);
    font-family: 'Px-Grotesk-web-broken', "Helvetica Neue", "Helvetica", sans-serif;
    font-family: 'Px-Grotesk-web', "Helvetica Neue", "Helvetica", sans-serif;
}

/* Body */

body {
    display: flex;
    flex-direction: column;
    text-rendering: optimizeLegibility;
    -webkit-font-variant-ligatures: common-ligatures;
    font-variant-ligatures: common-ligatures;
    -webkit-font-feature-settings: "kern";
    -moz-font-feature-settings: "kern";
    font-feature-settings: "kern";
    font-kerning: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: var(--line-height-normal);
}


/* Body Inner */

.body-inner {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
}


/* Site Header */


.site-header,
.nav-header {
    z-index: 99999;
}

.site-header-title {
    background: var(--dark);
    color: var(--light);
    display: flex;
    justify-content: space-between;
}

.site-header-title svg {
    fill: var(--light);
}

.site-header-social {
    background: var(--dark);
}


/* Site Wrapper */

.site-wrapper {
    display: flex;
    flex-direction: column;
    flex: 1 0 auto;
}


/* Nav Header */

.nav-main {
    background: var(--dark);
}

.nav-title {
    background: var(--light);
    color: var(--dark);
    display: flex;
    justify-content: space-between;
}

.nav-sub {
    background: var(--dark);
}

.nav-sub-single {
    display: grid;
    grid-template-columns: 50% 50%;
}
.nav-sub-single.long{
    grid-template-columns: 100%;
}

.single-title {
    background: var(--light);
    color: var(--dark);
}

.wrapper-splash {
    display: none;
}

/* Wrapper Inner */

.wrapper-inner {
    flex: 1 0 auto;
}


/* Nav Dynamic */

.nav-dynamic {
    grid-area: nav-dynamic;
    background: var(--dark);
    z-index: 1;
    /*    display: none;*/
}

.nav-dynamic-single,
.nav-dynamic-checkout {
    background: var(--light);
    color: var(--dark);
}
.backlink {
    position: relative;
}
.backlink > span:after {
    content: "×";
    display: block;
    line-height: 1;
    right: 4px;
    position: absolute;
    color: currentColor;
    margin-top: -0.1em;
}
.bar .backlink > span {
    padding-right: 16px;
}


/* Hero Outer */

.hero-outer {
    display: flex;
    flex-direction: column;
    grid-area: hero;
    height: 100vw;
    background: var(--medium);
}

.hero-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.hero-content {
    flex: 1 0 auto;
    height: 100%;
}

.hero-content.has-footer {
    max-height: calc(100% - var(--bar-height));
}

.hero-footer {
    background: var(--dark);
    position: relative;
}

.hero-footer-label {
    position: absolute;
    bottom: 100%;
    background: var(--dark);
    width: var(--bar-grid-width);
}

.hero-footer-label.long-name,
.hero-footer-label.very-long-name,
.hero-footer-label.extra-long-name {
    width: 50%;
}

.hero-credit {
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.home .hero-credit .hero-footer-label,
.wrapper-splash .hero-credit .hero-footer-label {
    background: var(--light);
    color: var(--dark);
}


/* Main Outer */

.main-outer {
    grid-area: content;
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1 0 auto;
    background: var(--light);
    color: var(--dark);
}

.main-text {
    padding-left: var(--pad);
    padding-right: var(--pad);
    padding-bottom: 1em;
}
/*div.woocommerce {
    margin-bottom: var(--bar-height);
}*/

.main-footer {
    background: var(--dark);
}

.main-text h2 {
    text-decoration: underline;
    margin-top: 0.25em;
    margin-bottom: 1em;
}


.player-top {
    background: var(--light);
    color: var(--dark);
    position: -webkit-sticky;
    position: sticky;
    width: 100%;
    left: 0;
    top: calc(2 * var(--bar-height));
    z-index: 99999;
}

/*  SVG
========================================================================== */

svg {
    fill: var(--dark);
    width: 100%;
    height: 100%;
    display: block;
}

/*  HELPER
========================================================================== */

.product-actions-bar,
.bar {
    min-height: var(--bar-height);
    height: max-content;
    line-height: var(--bar-height);
}

/*.product-actions-bar {
    min-height: calc(2 * var(--bar-height));
}*/

/*@media screen and (min-width: 1200px) {
    .product-actions-bar > span.has-button button {
        height: calc(2* var(--bar-height));
        margin-top: calc(-1* var(--bar-height));
        background: var(--accent, #000);
        display: flex;
        align-items: flex-end;
        padding: var(--pad);
        line-height: 1;
        padding-bottom: calc(var(--pad) - 0.1em);
    }

    .single-product .nav-dynamic {
        padding-right: 25%;
    }
}*/

.bar.bar-flex {
    min-height: var(--bar-height);
    height: auto;
}

.nl-form-label {
    background: var(--dark);
}
.nl-form {
    display: grid;
    grid-template-columns: 75% 25%;
}
.nl-form input[type="email"] {
    padding-left: var(--pad);
    padding-right: 2px;
}
.nl-form > *{
    height: var(--bar-height);
    line-height: var(--bar-height);
}

.nl-form button {
    border: none;
    outline: none;
    border-radius: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
    position: relative;
    text-align: left;
    padding-left: var(--pad);
    line-height: var(--bar-height);
    background: black;
    color: #fff;
}

.nl-form input[disabled] {
    background: #2c2c2c;
    color: #fff;
}

.newsletter-form.processing button,
.newsletter-form.processing input,
.newsletter-form.success button,
.newsletter-form.success input {
    pointer-events: none!important;
}

/*.bar span{
    padding-top: 0.355em;
    padding-bottom: 0.096em;
    display: block;
    padding-left: var(--pad);
    padding-right: var(--pad);
}*/

.product-actions-bar > span,
.bar span{
    /*    height: 100%;*/
    display: flex;
    align-items: center;
    padding-left: var(--pad);
    padding-right: 2px;
    min-width: 0;
}

.product-actions-bar > span > span,
.bar span > span,
.bar span > span > h1,
.bar span > span > h2{
    display: block;
    white-space: nowrap;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0;
}

.plus-link {
    position: relative;
}

.plus-link:after {
    content: "+";
    position: absolute;
    right: 3px;
    top: 0;
    margin-top: -0.05em;
}

.plus-link span {
    margin-right: 0.5em;
}

.fancy-radio,
.fancy-checkbox,
.wc-credit-card-form + p label,
.wpcf7-acceptance label{
    cursor: pointer;
}

/*.wpcf7-acceptance {
    line-height: 1.5;
}*/

.fancy-radio input[type="radio"],
.fancy-radio-inline input[type="radio"],
.fancy-checkbox input[type="checkbox"],
.wc-credit-card-form + p input[type="checkbox"],
.wpcf7-acceptance input[type="checkbox"]{
    display: none!important;
}

.fancy-checkbox input + span:before,
.wc-credit-card-form + p input + label:before,
.fancy-radio input + span:before,
.fancy-radio-inline input + span:before,
.wpcf7-acceptance input + span:before{
    content: "";
    display: block;
    width: var(--checkbox-width);
    height: var(--checkbox-width);
    border: 2px solid var(--dark);
    background: transparent;
}

.fancy-checkbox input + span:before,
.wc-credit-card-form + p input + label:before,
.fancy-radio input + span:before,
.wpcf7-acceptance input + span:before{
    position: absolute;
    left: 0;
    top: var(--checkbox-top);
}

/*.fancy-radio-inline input + span:before {
    position: relative;
    top: 0.065em;
}*/

.fancy-checkbox input + span,
.wc-credit-card-form + p input + label,
.fancy-radio input + span,
.wpcf7-acceptance input + span {
    position: relative;
    padding-left: calc(var(--checkbox-width) + var(--pad));
}

.wc-credit-card-form + p input + label {
    display: block!important;
}

.fancy-radio-inline input + span {
    display: block;
}

/*.fancy-radio-inline input + span:before,
.fancy-radio input + span:before {
    content: "\e928";
    opacity: 0.5;
}*/
.fancy-radio-inline input:checked + span:before,
.fancy-radio input:checked + span:before {
    background: var(--dark);
}

/*.fancy-checkbox input + span:before,
.wc-credit-card-form + p input + label:before,
.wpcf7-acceptance input + span:before{
    content: "\e91f";
    opacity: 0.5;
}*/
.fancy-checkbox input:checked + span:before,
.wc-credit-card-form + p input:checked + label:before,
.wpcf7-acceptance input:checked + span:before{
    background: var(--dark);
}
/*
.wpcf7-acceptance input:checked + span,
.wc-credit-card-form + p input:checked + label{
    color: var(--offwhite);
}

.wc-credit-card-form + p input:checked {
    opacity: 1;
}

.wpcf7-acceptance input:checked + span:before {
    opacity: 1!important;
}

.wpcf7-acceptance label:hover span:before,
.fancy-checkbox:hover span:before,
.wc-credit-card-form + p:hover label:before,
.fancy-radio:hover span:before,
.fancy-radio-inline:hover span:before{
    opacity: 0.7;
}*/


input[type="email"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="url"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-shadow: none;
    outline: 0;
    border: 0;
    border-radius: 0;
    max-width: 100%;
    width: 100%;
}

/*  HEADER
========================================================================== */

.logo-bar-link {
    width: 20px;
    height: var(--bar-height);
    padding: 0 var(--pad);
    box-sizing: content-box;
}

.site-header-social {
    height: var(--bar-height);
}

.ext-links {
    height: 100%;
    display: flex;
    justify-content: flex-end;
}

.ext-links a {
    padding: 0 11px;
    box-sizing: content-box;
}

.ext-links a.ext-link-fb {
    padding-right: 15px;
    padding-left: 18px;
}
.ext-links a.ext-link-sc {
    padding-right: 18px;
}

.ext-links a.ext-link-fb svg {
    position: relative;
    top: -1px;
}

.ext-link-fb {
    width: 7px;
}
.ext-link-ra {
    width: 23px;
}
.ext-link-ig {
    width: 14px;
}
.ext-link-bc {
    width: 19px;
    padding: 0 10px!important;
}
.ext-link-sc {
    width: 23px;
}

.ext-links svg {
    fill: var(--light);
}

.menu-trigger {
    width: 25vw;
    height: 100%;
    min-height: var(--bar-height);
    border: none;
    outline: none;
    border-radius: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
    position: relative;
}

.menu-trigger-close {
    display: none;
}

.menu-trigger:before,
.menu-trigger:after{
    position: absolute;
    width: 16px;
    right: 5px;
    box-sizing: content-box;
}


.menu-trigger:after {
    content: "";
    top: 9px;
    height: 10px;
    border-top: 2px solid var(--dark);
    border-bottom: 2px solid var(--dark);
}

.menu-trigger-open:before {
    content: "";
    top: 15px;
    height: 2px;
    background: var(--dark);
}

.menu-trigger-open:after {
    border-top: 2px solid var(--dark);
    border-bottom: 2px solid var(--dark);
}

.menu-trigger-close:after {
    border-top: 2px solid var(--light);
    border-bottom: 2px solid var(--light);
}

.single-event #menu-item-20 > a,
.single-product #menu-item-18017 > a,
.single-artist #menu-item-17961 > a,
.single-release #menu-item-17961 > a,
.single-job #menu-item-34 > a{
    background: var(--light);
    color: var(--dark);
}

/*  MENUS
========================================================================== */

.grid-2 {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}
.grid-2-gap {
    gap: var(--pad);
}


.grid-4 {
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
}

.grey-bg,
.lost_reset_password .woocommerce-form-row,
.account-login-data {
    padding: var(--pad);
    background: #ececec;
}

.current-menu-parent > a,
.current-menu-item > a {
    background: var(--light);
    color: var(--dark);
}

.checkout-menu-item {
    display: none;
}

.edit-account {
    margin-top: var(--pad);
}
.pw-confirm {
    grid-column: 2;
}

@media (hover: hover) {
    .menu-item:not(.current-menu-item):not(.current-menu-parent):hover > a,
    a.plus-link:hover,
    a.backlink:hover span,
    .product-actions-bar .add-to-cart-wrapper button:not(.disabled):hover,
    a.button:hover,
    .select-var:hover,
    .select-item:not(.select-disabled):hover,
    .woocommerce-notices-wrapper.item-removed-message > .woocommerce-message[role="alert"] .restore-item:hover,
    body button[name="calc_shipping"]:hover,
    body button[name="apply_coupon"]:hover,
    .step-buttons .next-posts-link button:hover,
    .wc-gzd-order-submit button:hover,
    .woocommerce-MyAccount-navigation-link:not(.is-active) a:hover,
    .main-outer .account-action button:hover {
        background: #2c2c2c !important;
        color: var(--light)!important;
    }

    .audio-playlist li:hover {
        background: var(--dark)!important;
        color: var(--light)!important;
    }
    .audio-playlist li:hover svg {
        fill: var(--light);
    }

    .step-buttons .next-posts-link span:hover:after,
    .wc-gzd-place-order:hover:after {
        color: var(--dark)!important;
    }

    .nl-form button:hover {
        background: #2c2c2c;
    }

}

/*  MAIN TEXT
========================================================================== */

p {
    margin-top: 0.2em;
    margin-bottom: 1em;
}
p:last-child {
    margin-bottom: 0.2em;
}

.pad {
    padding-left: var(--pad);
    padding-right: var(--pad);
}

/*  HERO
========================================================================== */

.picture-outer {
    height: 100%;
    width: 100%;
    position: relative;
}

.delay-load {
    position: relative;
    visibility: hidden;
}

.delay-load.loaded {
    visibility: visible;
}

picture.placeholder {
    position: absolute;
    width: 100%;
    height: 100%;
}

.hero-content img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.hero-content.contain-image{
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.hero-content.pad-image {
    padding: var(--bar-height);
}

.hero-content.dark-bg {
    background: var(--dark);
}
.hero-content.light-bg {
    background: var(--light);
}

.hero-content.contain-image img {
    object-fit: contain;
}

.hero-content.round-image img {
    height: auto;
}

.hero-content.round-image .picture-outer {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content.contain-image picture{
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content.round-image img {
    border-radius: 9999px;
}

.item-image {
    position: relative;
}

.item-image:not(.round-image):after,
.hero-content:not(.contain-image):not(.round-image) .picture-outer:after {
    content: "";
    background: rgba(255,255,255,0.01);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.hero-texts-2,
.hero-texts-3,
.hero-texts-4 {
    display: grid!important;
}

.hero-texts-2,
.hero-texts-3,
.hero-texts-4 {
    grid-template-columns: 50% 50%;
}

/*  HERO SPLASH
========================================================================== */


.splash-link {
    display: block;
    height: 100%;
}


/*  HERO SLIDER / SPLIDE
========================================================================== */

.splide__container{
    position:relative;
    box-sizing:border-box
}
.splide__list{
    margin:0!important;
    padding:0!important;
    width: 100%;
    will-change:transform;
    min-width: 100%;
}
.splide.is-active .splide__list{
    display:flex;
    width:-webkit-max-content;
    width:max-content;
}
.splide,.splide__slide{
    position:relative;
    outline:none
}
.splide__slide{
    box-sizing:border-box;
    list-style-type:none!important;
    margin:0;
    flex-shrink:0
}
.splide__slider{
    position:relative
}
.splide__track{
    position:relative;
    z-index:0;
    overflow:hidden
}
.splide--draggable>.splide__track>.splide__list>.splide__slide{
    -webkit-user-select:none;
    user-select:none
}

.splide,
.splide__track,
.splide__list,
.splide__slide {
    height: 100%;
}

.splide__slide {
    /*transform: translateZ(0px);*/
}

.splide__arrow {
    position: absolute;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
    width: 2em;
    height: 6em;
    display: flex;
    align-items: center;
    border: none;
    padding: 0;
    opacity: 0;
    background: transparent;
    color: #fff;
    /*
    text-shadow: -0.5px -0.5px 0px rgb(0 0 0 / 10%), 0.5px -0.5px 0px rgb(0 0 0 / 10%), -0.5px 0.5px 0px rgb(0 0 0 / 10%), 0.5px 0.5px 0px rgb(0 0 0 / 10%), 0.5px 0px 0px rgb(0 0 0 / 10%), -0.5px 0px 0px rgb(0 0 0 / 10%), 0px 0.5px 0px rgb(0 0 0 / 10%), 0px -0.5px 0px rgb(0 0 0 / 10%);
    */
}

.splide__arrow svg {
    width: 14px;
    stroke: #000000;
    stroke-width: 0.1px;
}

.splide__arrow--prev svg {
    transform: scaleX(-1);
}

.hero-inner:hover .splide.is-active .splide__arrow,
.splide__arrow:hover {
    opacity: 1;
}

.splide__arrow:focus {
    outline: none;
}

.splide__arrow:hover {
    cursor: pointer;
}

.splide__arrow--prev {
    left: 0;
    padding-left: var(--pad);
}
.splide__arrow--next {
    right: 0;
    padding-right: var(--pad);
    justify-content: flex-end;
}

@media (pointer: coarse) {
    .splide__arrow {
        display: none!important;
    }
}

/*  FIX FLASH */

.splide__pagination{
    position:absolute;
    visibility: hidden;
    pointer-events: none;
    height: 0;
    width: 0;
}
.splide__pagination__page{
    transition: opacity .2s linear;
    opacity: .9
}
.splide__pagination__page.is-active{
    opacity: .8;
}


/*  HERO MAP
========================================================================== */

.map {
    width: 100%;
    height: 100%;
}

.map,
.map > div {
    background: #fff!important;
}

.map *:focus {
    outline: none!important;
}

/*  TRESOR LOGO SLIDE
========================================================================== */

.tresor-slide {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tresor-slide.white {
    background: var(--dark);
}
.tresor-slide.black {
    background: var(--light);
}

.tresor-slide.white svg {
    fill: var(--light);
}

.tresor-slide svg {
    width: 41.666%;
    max-height: 75%;
    min-width: 177px;
}

/*  ITEM GRID
========================================================================== */

.pagination {
    display: grid;
    grid-template-columns: 50% 50%;
    border-bottom: 1px solid var(--medium);
}
.pagination.step-buttons {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: var(--pad);
    padding: var(--pad);
    border: none;
}

.pagination a {
    display: block;
    text-decoration: none;
    width: 100%;
}

.pagination a.prev-step-button {
    padding-top: var(--pad);
    min-height: calc(2* var(--bar-height));
}

.next-posts-link {
    grid-column: 2;
}

.nav-posts-link {
    position: relative;
}

.next-step-button {
    grid-column: 2;
}

.step-buttons .nav-posts-link {
    padding: var(--pad);
}

.next-posts-link a span:after {
    display: block;
    position: absolute;
    font-size: 0.7em;
    right: 6px;
    content: "→";
    pointer-events: none;
}


/*  ITEM GRID
========================================================================== */

.item-grid.related {
    background: var(--light);
}

.item-grid.related .grid-item,
.item-grid.related .grid-item.grid-item-outofstock .grid-item-inner{
    background: var(--dark);
}

.grid-item-outofstock a:not(:hover) .item-image {
    mix-blend-mode: darken;
}

.grid-item {
    position: relative;
    overflow: hidden;
}

.grid-item-inner {
    display: grid;
    grid-template-columns: var(--grid-image-width) minmax(0, 1fr);
    grid-column-gap: var(--grid-image-gap);
    grid-template-rows: var(--grid-image-width);
}

.item-gallery {
    display: grid;
    grid-template-columns: 50% 50%;
}

@media screen and (min-width: 1420px) {
    .item-gallery {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
    }
}

@media screen and (min-width: 1800px) {
    .item-gallery {
        grid-template-columns: 25% 25% 25% 25%;
    }
}
@media screen and (min-width: 900px) and (max-width: 1023px) {
    .item-gallery {
        grid-template-columns: 25% 25% 25% 25%;
    }
}

.item-gallery .grid-item-inner {
    grid-template-columns: 100%;
    grid-template-rows: auto minmax(0, 1fr);
    height: 100%;
}

.item-gallery .item-image {
    aspect-ratio: 1;
}
.item-gallery .item-meta {
    padding: var(--pad);
}

.item-gallery .grid-item a h1 {
    padding: 0;
}

.item-gallery .item-meta-bottom {
    padding-bottom: 0;
    margin-top: 3px;
}

.item-image img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.item-image {
    grid-column: 1;
    grid-row: 1;
}

.hover-image {
    visibility: hidden;
}

.item-image.round-image {
    padding: 6px;
}
.item-image.round-image img {
    border-radius: 100%;
}
.item-image.cover-image img {
    object-fit: cover;
}

.item-meta {
    padding-top: 6px;
    padding-right: var(--grid-image-gap);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.item-meta-bottom {
    padding-bottom: 8px;
}

.item-meta h1 {
    padding-left: 0!important;
    line-height: 1;
    padding-top: 2px;
}

.small {
    font-size: var(--font-size-small);
    line-height: var(--line-height-small);
}

.slash-small {
    display: inline-block;
    margin-left: 5px;
    text-decoration: line-through;
}


.item-meta-top span {
    display: block;
}

.item-meta h1 + span {
    margin-top: 3px;
}

.item-meta-bottom {

}

.accent-color {
    color: var(--accent, #000);
}

.grey-color {
    color: #757575;
}

.grid-item a h1 span.small {
    margin-top: 3px;
    margin-bottom: 3px;
}
.grid-item a h1 span.small:first-child {
    margin-top: 0;
}

.grid-item a {
    display: block;
    text-decoration: none;
    width: 100%;
    height: 100%;
}

.grid-item a .item-meta:after {
    content: "+";
    display: block;
    position: absolute;
    font-size: 24px;
    right: 6px;
    top: 3px;
    line-height: 1;
}

.grid-item a h1 {
    padding-right: 7px;
}
.grid-item a h1 span.small {
    padding-right: 5px;
}

.grid-item.grid-item-outofstock .grid-item-inner {
    background: #dcdcdc;
}


@media (hover: hover) {
    .grid-item a:hover .grid-item-inner {
        background: var(--dark);
        color: var(--light);
    }

    .item-grid.related .grid-item a:hover .grid-item-inner {
        color: var(--dark);
        background: var(--light);
    }

    .bundle-product-details a:hover {
        text-decoration: underline;
    }

    /*.page-id-17949 .item-image img,
.single-artist .item-image img{
    filter: contrast(10) grayscale(1);
}*/

    .grid-item:not(.has-hover-image) a:hover .item-image img {
        filter: contrast(10) grayscale(1);
    }

    .grid-item.has-hover-image a:hover .item-image{
        visibility: hidden;
    }
    .grid-item.has-hover-image a:hover .item-image.hover-image{
        visibility: visible;
    }

}


/*temp*/

.page-id-11 .nav-sub > span:first-child {
    background: var(--light);
    color: var(--dark);
}

/*  EVENT SINGLE LINEUP
========================================================================== */


a.lineup-item {
    text-decoration: none;
    display: block;
    position: relative;
}

a.lineup-item:after {
    content: "";
    position: absolute;
    font-size: 12px;
    right: var(--pad);
    top: 9px;
    width: 7px;
    height: 7px;
    background-image: url(images/arrow-up-right.svg);
    background-repeat: no-repeat;
}

.lineup {
    margin-bottom: 12px;
    display: grid;
    grid-template-columns: 50% 50%;
    background: var(--light);
}

.event-lineup {
    display: flex;
    flex-wrap: wrap;
}

.event-floor {
    width: 33.3333%;
    flex-grow: 0;
    flex-shrink: 0;
}

.event-floors-1 .floor-name-empty,
.floors-1 .floor-name-empty,
.split-lineup .floor-name-empty {
    min-height: 9px;
}

/*.lineup [data-floor="1"] {
    grid-column: 1;
}
.lineup [data-floor="2"] {
    grid-column: 2;
}*/

/*.floors-1 {
    grid-template-columns: 100%;
}*/

.floors-3 {
    grid-template-columns: 33.3333% 33.3333% 33.3333%;
}


.floor {
    display: flex;
    flex-direction: column;
}

.floor-lineup {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.lineup-placeholder {
    flex-grow: 1;
    padding: 0!important;
    /*margin-bottom: -1px;*/
}

.track-group,
.floor-name,
.lineup-item {
    padding: 0 var(--pad);
}


.lineup-item {
    padding-top: 5px;
    padding-bottom: 5px;
}

.lineup-time {
    margin-bottom: -1px;
}

.lineup-subtitle {
    margin-top: -2px;
}

.page-id-11 .main-content {
    background: var(--dark);
}

.event-item {
    margin-top: var(--bar-height);
    margin-bottom: var(--bar-height);
}

.event-date {
    width: var(--bar-grid-width);
}

.event-date a,
.event-title {
    display: block;
    text-decoration: none;
}


.event-date,
.event-title,
.floor-name,
.floor-artist {
    background: var(--light);
}

.related .event-date,
.related .event-title,
.related .floor-name,
.related .floor-artist {
    background: var(--dark);
}

.event-grid.related {
    background: var(--light);
}

.event-floor .floor-artist:last-of-type {
    min-height: var(--bar-height);
}

.track-group,
.floor-name,
.floor-artist {
    padding: 0 2px 0 var(--pad);
    min-height: var(--bar-height);
    display: flex;
}

.track-group,
.floor-name {
    align-items: flex-end;
    padding-bottom: 3px;
}

.floor-artist {
    align-items: center;
}

.floor-name span,
.floor-artist span {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/*  AUDIO PLAYER
========================================================================== */


audio {
    height: calc(77px + 2.61111111em)!important;
    overflow: hidden;
    display: block;
    visibility: hidden;
}

.audio-playlist {
    list-style: none;
    margin: 0;
    padding: 0;
    line-height: inherit;
}
.audio-playlist li {
    margin: 0;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
}

.player-track-meta {
    display: flex;
    background: var(--dark);
    color: var(--light);
}

.audio-playlist li span.audio-title {
    flex-grow: 1;
    flex-shrink: 1;
}

/*.audio-tracknumber {
    display: inline-block;
    margin-right: 0.77777778em;
    font-feature-settings: "tnum";
    font-variant-numeric: tabular-nums;
    min-width: 3.11111111em;
}*/

.player-track-time,
.audio-playlist li span.audio-length {
    flex-grow: 0;
    flex-shrink: 0;
    font-feature-settings: "tnum";
    font-variant-numeric: tabular-nums;
    font-size: 12px;
    margin-right: 0.5em;
}

.page-template-page-podcasts .player-track-time,
.page-template-page-podcasts .audio-playlist li span.audio-length {
    min-width: 53px;
    display: flex;
    justify-content: flex-end;
}

.plyr {
    position: relative;
    max-width: 100%;
    min-width: 200px;
    font-feature-settings: "tnum";
    font-variant-numeric: tabular-nums;
    direction: ltr;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
.plyr,
.plyr *,
.plyr ::after,
.plyr ::before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
.plyr a,
.plyr button,
.plyr input,
.plyr label {
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
.plyr:focus {
    outline: 0;
}
.plyr audio {
    width: 100%;
    height: auto;
    vertical-align: middle;
    border-radius: inherit;
    display: none;
}
.plyr input[type="range"] {
    display: block;
    height: var(--bar-height); /*progress*/
    width: 100%;
    margin: 0;
    padding: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    border: none;
    background: 0 0;
}
.plyr input[type="range"]::-webkit-slider-runnable-track {
    height: var(--bar-height); /*progress*/
    background: 0 0;
    border: 0;
    border-radius: 0;
    -webkit-user-select: none;
    user-select: none;
}
.plyr input[type="range"]::-webkit-slider-thumb,
.plyr input[type="range"]:active::-webkit-slider-thumb{
    -webkit-appearance: none;
    margin-top: 0;
    position: relative;
    height: var(--bar-height); /*progress*/
    width: 1px;
    background: var(--light);
    border: none;
    border-radius: 0;
    transition: none;
    box-shadow: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.plyr input[type="range"]::-moz-range-track {
    height: var(--bar-height); /*progress*/
    background: 0 0;
    border: 0;
    border-radius: 0;
    -moz-user-select: none;
    user-select: none;
}
.plyr input[type="range"]::-moz-range-thumb,
.plyr input[type="range"]:active::-moz-range-thumb{
    position: relative;
    height: var(--bar-height); /*progress*/
    width: 1px;
    background: var(--light);
    border: none;
    border-radius: 0;
    transition: none;
    box-shadow: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.plyr input[type="range"]::-ms-track {
    height: var(--bar-height); /*progress*/
    background: 0 0;
    border: 0;
    border-radius: 0;
    color: transparent;
}
.plyr input[type="range"]::-ms-fill-upper {
    height: var(--bar-height); /*progress*/
    background: 0 0;
    border: 0;
    border-radius: 0;
    -ms-user-select: none;
    user-select: none;
}
.plyr input[type="range"]::-ms-fill-lower {
    height: var(--bar-height); /*progress*/
    background: 0 0;
    border: 0;
    border-radius: 0;
    -ms-user-select: none;
    user-select: none;
    background: var(--light);
}
.plyr input[type="range"]::-ms-thumb,
.plyr input[type="range"]:active::-ms-thumb{
    position: relative;
    height: var(--bar-height); /*progress*/
    width: 1px;
    background: var(--light);
    border: none;
    border-radius: 0;
    transition: none;
    box-shadow: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 0;
}
.plyr input[type="range"]::-ms-tooltip {
    display: none;
}
.plyr input[type="range"]:focus {
    outline: 0;
}
.plyr input[type="range"]::-moz-focus-outer {
    border: 0;
}
.plyr input[type="range"].tab-focus:focus {
    outline-offset: 3px;
}



.plyr--audio input[type="range"].tab-focus:focus {
    outline: 1px dotted rgba(86, 93, 100, 0.5);
}
.plyr__sr-only {
    clip: rect(1px, 1px, 1px, 1px);
    overflow: hidden;
    position: absolute !important;
    padding: 0 !important;
    border: 0 !important;
    height: 1px !important;
    display: none!important;
    width: 1px !important;
}


.plyr ::-webkit-media-controls {
    display: none;
}
.plyr__controls {

}
.plyr__controls > * {
    pointer-events: all;
}
.plyr__controls > button {
    margin-left: 5px;
}


.plyr__controls [data-plyr="pause"] {
    margin-left: 0;
}



.plyr__controls button {
    position: relative;
    display: inline-block;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    overflow: visible;
    vertical-align: middle;
    padding: 0;
    border: 0;
    background: 0 0;
    border-radius: 0;
    cursor: pointer;
    transition: none;
    color: inherit;
    margin: 0;
}
.plyr__controls button svg {
    width: 14px;
    height: 14px;
    display: block;
    fill: currentColor;
}

.plyr__controls button.prev-next-song {
    font-size: 24px;
    padding: 0 5px;
}

.prev-next-song i {
    line-height: 0;
    position: relative;
    top: -1px;
}


.plyr__controls button:focus {
    outline: 0;
}


.plyr__controls [data-plyr="play"]:first-child,
.plyr__controls [data-plyr="play"]:first-child + [data-plyr="pause"] {
    padding-left: var(--pad);
}

.plyr__controls [data-plyr="play"] {
    position: relative;
    left: 1px;
}

.plyr__controls [data-plyr="play"],
.plyr__controls [data-plyr="pause"] {
    padding: 9px 10px;
}


.plyr--hide-controls .plyr__controls {
    opacity: 0;
    pointer-events: none;
}

.plyr--audio .plyr__controls {
    border-radius: 0;
}

.plyr--playing .plyr__controls [data-plyr="play"],
.plyr__controls [data-plyr="pause"] {
    display: none;
}
.plyr--playing .plyr__controls [data-plyr="pause"] {
    display: inline-block;
}

.plyr__tooltip {
    position: absolute;
    z-index: 2;
    bottom: 35px;
    padding: 2px 6px!important;
    pointer-events: none;
    opacity: 0;
    color: var(--dark);
    line-height: 1;
    transform: translateX(-50%);
    transform-origin: 50% 100%;
    transition: transform 0.1s 0s ease, opacity 0.1s 0s ease;
    border: 1px solid var(--medium);
    background: var(--light);
    font-size: 12px;
}
.plyr__tooltip::before {
    content: "";
    position: absolute;
    width: 1px;
    height: calc(var(--bar-height) + 4px);
    background: var(--light);
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 2;
    bottom: -37px;
}
.plyr button.tab-focus:focus .plyr__tooltip,
.plyr button:hover .plyr__tooltip,
.plyr__tooltip--visible {
    opacity: 1;
    -webkit-transform: translate(-50%, 0) scale(1);
    transform: translate(-50%, 0) scale(1);
}
.plyr button:hover .plyr__tooltip {
    z-index: 3;
}
.plyr__controls button:first-child .plyr__tooltip {
    left: 0;
    -webkit-transform: translate(0, 10px) scale(0.8);
    transform: translate(0, 10px) scale(0.8);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
}
.plyr__controls button:first-child .plyr__tooltip::before {
    left: 14px;
}
.plyr__controls button:last-child .plyr__tooltip {
    right: 0;
    -webkit-transform: translate(0, 10px) scale(0.8);
    transform: translate(0, 10px) scale(0.8);
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
}
.plyr__controls button:last-child .plyr__tooltip::before {
    left: auto;
    right: 14px;
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
}
.plyr__controls button:first-child .plyr__tooltip--visible,
.plyr__controls button:first-child.tab-focus:focus .plyr__tooltip,
.plyr__controls button:first-child:hover .plyr__tooltip,
.plyr__controls button:last-child .plyr__tooltip--visible,
.plyr__controls button:last-child.tab-focus:focus .plyr__tooltip,
.plyr__controls button:last-child:hover .plyr__tooltip {
    -webkit-transform: translate(0, 0) scale(1);
    transform: translate(0, 0) scale(1);
}
.plyr__progress {
    position: relative;
    display: none;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.plyr__progress input[type="range"] {
    position: relative;
    z-index: 2;
}
.plyr__progress input[type="range"]::-webkit-slider-runnable-track {
    background: 0 0;
}
.plyr__progress input[type="range"]::-moz-range-track {
    background: 0 0;
}
.plyr__progress input[type="range"]::-ms-fill-upper {
    background: 0 0;
}
.plyr__progress .plyr__tooltip {
    left: 0;
    overflow: visible;
}
.plyr .plyr__progress {
    display: block;
    width: 75%;
    padding: 0;
    position: absolute;
    height: 100%;
}

.audio-element {
    border-bottom: 1px solid var(--medium);
}
.plyr__progress--buffer,
.plyr__progress--played {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: var(--bar-height); /*progress*/
    padding: 0;
    vertical-align: top;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 0;
    border-radius: 0;
    mix-blend-mode: difference;
}
.plyr__progress--buffer::-webkit-progress-bar,
.plyr__progress--played::-webkit-progress-bar {
    background: 0 0;
}
.plyr__progress--buffer::-webkit-progress-value,
.plyr__progress--played::-webkit-progress-value {
    background: currentColor;
    border-radius: 0;
    min-width: 0; /*min-bar*/
}
.plyr__progress--buffer::-moz-progress-bar,
.plyr__progress--played::-moz-progress-bar {
    background: currentColor;
    border-radius: 0;
    min-width: 0; /*min-bar*/
}
.plyr__progress--buffer::-ms-fill,
.plyr__progress--played::-ms-fill {
    border-radius: 0;
}
.plyr__progress--played {
    z-index: 1;
    color: var(--light);
    background: 0 0;
    -webkit-transition: none;
    transition: none;
}
.plyr__progress--played::-webkit-progress-value {
    min-width: 0; /*min-bar*/
    max-width: 100%;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    -webkit-transition: none;
    transition: none;
}
.plyr__progress--played::-moz-progress-bar {
    min-width: 0; /*min-bar*/
    max-width: 100%;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    -webkit-transition: none;
    transition: none;
}
.plyr__progress--played::-ms-fill {
    display: none;
}
.plyr__progress--buffer::-webkit-progress-value {
    -webkit-transition: width 0.2s ease;
    transition: width 0.2s ease;
}
.plyr__progress--buffer::-moz-progress-bar {
    -webkit-transition: width 0.2s ease;
    transition: width 0.2s ease;
}
.plyr__progress--buffer::-ms-fill {
    -webkit-transition: width 0.2s ease;
    transition: width 0.2s ease;
}


.plyr--audio .plyr__progress--buffer {
    background: transparent;
}
.plyr--audio .plyr__progress--buffer {
    color: transparent;
}
.plyr--loading .plyr__progress--buffer {
    background: transparent;
    color: transparent;
}
.plyr--audio.plyr--loading .plyr__progress--buffer {
    background-color: transparent;
}

.plyr__time {
    font-size: 12px;
}


.audio-playlist-wrapper {
    position: relative;
    margin-bottom: 12px;
    display: flex;
    flex-wrap: wrap;
}

.player-controls {
    display: grid;
    width: 100%;
    grid-template-columns: 75% 25%;
    position: relative;
}

.player-buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: var(--pad);
    padding-right: var(--pad);
}

.audio-playlist-wrapper.show-artist {
    display: block;
}


.audio-playlist {
    width: 50%;
}
.audio-playlist-wrapper.show-artist .audio-playlist {
    width: 100%;
}

.plyr__progress--played[value="0"] + progress:before {
    content: "";
    display: block;
    position: absolute;
    left: 0px;
    top: 0;
    height: 100%;
    width: 1px;
    background: var(--dark);
    z-index: 12;
    pointer-events: none;
}

.single-track .audio-playlist {
    display: none;
}

.tracklist-placeholder {
    height: var(--bar-height);
}

.player-track-title {
    min-width: 0;
}


/*.show-artist .player-track-title {
    grid-column: span 2;
}*/

.play-icon {
    height: 15px;
    width: 17px;
    justify-self: flex-end;
    margin-right: 7px;
    flex-shrink: 0;
}

.play-icon svg:nth-child(2){
    display: none;
}

.song-playing .active .play-icon svg:nth-child(2) {
    position: relative;
    left: -1px;
}

.song-playing .active .play-icon svg:nth-child(1){
    display: none;
}
.song-playing .active .play-icon svg:nth-child(2) {
    display: block;
}



/*  SUPPORT
========================================================================== */

.support {
    padding-left: var(--pad);
    padding-right: var(--pad);
    justify-self: flex-end;
    margin-bottom: 0.55em;
}

.support p {
    margin-bottom: 0.5em;
}

.support-grid {
    display: grid;
    grid-template-columns: 4fr 3fr 12fr;
    align-items: center;
    grid-column-gap: 16px;
    max-width: 514px;
    padding-left: 4px;
    padding-right: 4px
}

.support img {
    display: block;
    width: 100%;
}

.support a {
    display: block;
}

.page-id-30 .main-content {
    display: flex;
    flex-direction: column;
}

.page-id-30 .main-text {
    flex-grow: 1;
}

/*  MEDIA QUERIES
========================================================================== */


/*@media screen and (min-width: 1024px) and (min-aspect-ratio: 1860/1000){
    .hero-content.round-image img {
        height: 100%;
        width: auto;
    }
}*/

@media screen and (max-width: 1580px) {
    .hero-footer-label.long-name-mid {
        width: 50%;
    }
}


@media screen and (max-width: 767px),
screen and (min-width: 1024px) and (max-width: 1680px){
    .event-floor {
        width: 50%;
    }
}

@media screen and (max-width: 767px) {
    .plus-link:after {
        right: 4px;
    }
}

@media screen and (min-width: 481px){
    .event-floors-1 .event-floor,
    .event-floors-2 .event-floor{
        width: 50%;
    }

}

@media screen and (max-width: 480px){
    .event-floor {
        width: 100%;
    }

    .split-lineup .event-floor[data-floor="2"] .floor-name-empty {
        display: none;
    }
}

@media screen and (min-width: 1024px) and (max-height: 53.5vw){
    .hero-content.round-image img {
        height: 100%;
        width: auto;
    }
}

@media screen and (min-width: 1200px) and (max-width: 1358px){
    .floors-3 {
        grid-template-columns: 50% 50%;
    }

    .floors-3 > .floor:first-child {
        grid-column: span 2;
    }

    .floors-3 .lineup-placeholder {
        display: none;
    }
}

@media screen and (max-width: 413px),
screen and (min-width: 1024px) and (max-width: 1199px) {
    .hero-footer-label.very-long-name {
        width: 75%;
    }
    .hero-footer-label.extra-long-name {
        width: 100%;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1534px){
    .single-product .player-controls {
        grid-template-columns: 1fr 190px;
    }
    .single-product .plyr .plyr__progress {
        width: calc(100% - 190px);
    }
}

@media screen and (min-width: 1200px) and (max-width: 1420px){
    .single-product .player-track-time, .audio-playlist li span.audio-length {
        margin-right: var(--pad);
    }


    .single-product .audio-playlist-wrapper {
        display: block;
    }
    .single-product .audio-playlist {
        width: 100%;
    }
    .single-product .tracklist-placeholder {
        display: none;
    }
}

@media screen and (max-width: 767px),
screen and (min-width: 1024px) and (max-width: 1199px){
    .hero-texts-3 > span:nth-child(3),
    .hero-texts-3 > span:nth-child(4),
    .hero-texts-4 > span:nth-child(3),
    .hero-texts-4 > span:nth-child(4) {
        display: none;
    }

    .nav-sub-single.long-mobile {
        grid-template-columns: 100%;
    }

    .player-track-time, .audio-playlist li span.audio-length {
        margin-right: var(--pad);
    }

    /*    .player-track-title {
            grid-column: span 2;
        }*/

    .plyr__controls button svg {
        width: 14px;
        height: 14px;
    }
    .plyr__controls [data-plyr="play"] {
        left: 1px;
    }

    .plyr__controls [data-plyr="play"], .plyr__controls [data-plyr="pause"] {
        padding: 9px 10px;
    }

    .plyr__controls button.prev-next-song {
        font-size: 24px;
    }

    .prev-next-song i {
        top: -1px;
    }

    .audio-playlist-wrapper {
        display: block;
    }
    .audio-playlist {
        width: 100%;
    }
    .tracklist-placeholder {
        display: none;
    }

    /*  .player-track-title {
          font-size: 12px;
      }*/

    .event-lineup {
        grid-template-columns: 100% !important;
    }

    .lineup {
        grid-template-columns: 100% !important;
        margin-bottom: 13px;
    }

    a.lineup-item:after {
        right: 9px;
        top: 12px;
    }

    .lineup-item {
        display: flex!important;
        padding-top: 6px;
        padding-bottom: 4px;
    }

    .lineup-subtitle,
    .lineup-placeholder {
        display: none;
    }

    .lineup-time {
        margin-bottom: 0;
        margin-top: 4px;
        padding-right: var(--pad);
        flex-shrink: 0;
        width: 91px;
    }

    .split-lineup .floor[data-floor="2"] .floor-name-empty {
        display: none;
    }

}

@media screen and (min-width: 1024px) and (max-width: 1199px){

    .lineup-item {
        padding-top: 5px;
        padding-bottom: 3px;
    }
    .lineup-time {
        margin-top: 6px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px),
screen and (min-width: 1200px){

    html {
        --bar-grid-width: 25%;
    }

    .hero-texts-2 {
        grid-template-columns: 25% 1fr;
    }
    .hero-texts-2.hero-texts-2-long {
        grid-template-columns: 50% 50%;
    }
    .hero-texts-3 {
        grid-template-columns: 25% 25% 1fr;
    }
    .hero-texts-4 {
        grid-template-columns: 25% 25% 25% 25%;
    }


}

@media screen and (min-width: 1200px){
    .postid-18135 .lineup {
        position: sticky;
        top: calc(3 * var(--bar-height))
    }
}

@media screen and (min-width: 768px){
    html {
        font-size: 20px;
        --grid-image-width: 104px;
        --grid-image-gap: 12px;
        --pad: 7px;
        --checkbox-width: 13px;
    }

}

@media screen and (min-width: 1024px){

    /* .bar span{
         padding-top: 0.15em;
         padding-bottom: 0.017em;
         display: block;
     }
 */



    html {
        --line-height-normal: 1.16666666667;
    }

    p {
        margin-top: 0.25em;
    }
    p:last-child {
        margin-bottom: 0.25em;
    }


    .site-header {
        display: grid;
        grid-template-columns: 50% 50%;
        position: -webkit-sticky;
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
    }

    .site-header-title {
        background: var(--light);
        color: var(--dark);
    }

    .site-header-title svg {
        fill: var(--dark);
    }

    .wrapper-inner {
        display: grid;
        grid-template-areas: "hero nav-dynamic" "hero content";
        grid-template-columns: 50% 50%;
        grid-template-rows: min-content minmax(auto, 100%);
    }

    .page-template-page-splash .wrapper-inner {
        grid-template-areas: "hero content" "hero content";
        margin-top: 0;
    }
    .wrapper-splash .hero-inner,
    .page-template-page-splash .hero-inner {
        margin-top: var(--bar-height);
    }

/*    .page-template-page-splash .main-outer .splash-link {
        padding-bottom: var(--bar-height);
    }*/


    .nav-header {
        display: grid;
        grid-template-columns: 50% 50%;
    }

    .nav-title {
        display: none;
    }

    .hero-outer {
        height: 100%;
    }

    .hero-inner {
        height: calc(100% - 2 * var(--bar-height));
        position: fixed;
        width: 50%;
    }


    .plus-link:after {
        right: .2333em;
        font-size: 1.25em;
    }

    .plus-link span {
        margin-right: 1em;
    }



    .grid-item a .item-meta:after {
        top: 4px;
        right: 8px;
    }

    .backlink > span:after {
        font-size: 1.25em;
        right: .2666em;
    }
    .bar .backlink > span {
        padding-right: 1.1em;
    }


}

@media screen and (min-width: 1540px){
    html {
        --grid-image-width: 112px;
        --grid-image-gap: 15px;
        --pad: 8px;
        --checkbox-top: 0.133em;
        --checkbox-width: 14px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px),
screen and (min-width: 1260px){

    .item-grid {
        display: grid;
        grid-template-columns: 50% 50%;
    }

}


@media screen and (min-width: 1024px){

    .site-header {
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
    }

    .nav-header {
        position: fixed;
        width: 100%;
        left: 0;
    }

    .nav-dynamic {
        position: -webkit-sticky;
        position: sticky;
        width: 100%;
        left: 0;
        top: calc(2 * var(--bar-height));
    }

    .site-wrapper,
    .wrapper-inner {
        margin-top: var(--bar-height);
    }
}


@media screen and (max-width: 1023px){

    .lineup {
        padding-top: 0;
    }


    .woocommerce-page:not(.single-product):not(.archive) .wrapper-inner .hero-outer,
    .page-id-40 .wrapper-inner .hero-outer,
    .page-id-38 .wrapper-inner .hero-outer {
        display: none!important;
    }

    .nav-main,
    .site-header-title {
        display: none;
    }


    .menu-open .nav-title,
    .menu-open .nav-sub {
        display: none;
    }

    .menu-open .site-header-title {
        display: flex;
    }
    .menu-open .nav-main,
    .menu-open .menu-trigger-close {
        display: block;
    }
    .menu-open .logo-bar-link,
    .menu-open .menu-trigger-open {
        display: none;
    }


    body.page-template-page-splash {
        height: 100vh;
        height: 100svh;
        max-height: 100svh;
        overflow: hidden;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
    }

    .page-template-page-splash .nav-main {
        display: block;
    }
    .page-template-page-splash .site-header-title {
        display: flex;
    }

    .page .hero-outer {
        height: calc(100vw + var(--bar-height));
    }

    .wrapper-splash .hero-outer {
        height: 100%;
        flex: 1 0 auto;
    }

    .page-template-page-splash .hero-outer {
        flex: 1 0 auto;
        position: absolute;
        width: 100%;
        height: calc(100% - 2 * var(--bar-height));
    }

    .wrapper-splash .hero-content,
    .wrapper-splash .hero-inner,
    .wrapper-splash .picture-outer,
    .page-template-page-splash .hero-content,
    .page-template-page-splash .hero-inner,
    .page-template-page-splash .picture-outer,
    .splash-link-image,
    .splash-link-image picture,
    .splash-link-image img {
        display: flex;
        flex-direction: column;
        flex: 1 0 auto;
        height: 100%;
    }
    .wrapper-splash .main-outer,
    .page-template-page-splash .main-outer {
        position: absolute;
        height: calc(100% - 2 * var(--bar-height));
        width: 100%;
        left: 0;
    }

    .wrapper-splash .main-outer {
        height: 100%;
    }

   /* .wrapper-splash .main-outer .splash-link,
    .page-template-page-splash .main-outer .splash-link {
        padding-bottom: calc(2 * var(--bar-height));
    }*/

    .wrapper-splash .main-outer .tresor-slide.white,
    .page-template-page-splash .main-outer .tresor-slide.white {
        background: transparent;
       /* padding-bottom: calc(2 * var(--bar-height));*/
    }

    .wrapper-splash .hero-outer .splash-link-image,
    .page-template-page-splash .hero-outer .splash-link-image {
        padding-bottom: calc(2 * var(--bar-height));
    }

    .logo-bar-link {
        width: 15px;
        padding-right: 5px;
    }


    #main-menu .current-menu-parent > a, #main-menu .current-menu-item > a {
        background: transparent;
        color: var(--light);
    }

    .site-header-social {
        display: none;
    }

    .wrapper-inner {
        display: flex;
        flex-direction: column;
    }

    .main-outer {
        flex-grow: 1;
    }




    .hero-content.contain-image.no-mobile-contain{
        display: block;
    }
    .hero-content.pad-image.no-mobile-contain {
        padding: 0;
    }
    .hero-content.contain-image.no-mobile-contain img {
        object-fit: cover;
    }
    .hero-content.contain-image.no-mobile-contain picture{
        display: block;
    }



    .site-header,
    .nav-header,
    .nav-dynamic-single,
    .nav-dynamic-checkout {
        position: -webkit-sticky;
        position: sticky;
        width: 100%;
        left: 0;
        top: 0;
        z-index: 99999;
    }
    .menu-open .nav-header,
    .nav-dynamic-single {
        top: var(--bar-height);
    }

    .nav-dynamic-checkout {
        top: calc(2 * var(--bar-height));
    }

    .menu-open .nav-dynamic-checkout {
        display: none;
    }

    .menu-open .wrapper-splash {
        display: flex;
        flex-direction: column;
        flex-grow: 1;
        /*        height: 100vh;
                max-height: 100vh;*/
        overflow: hidden;
        position: fixed;
        top: calc(2 * var(--bar-height));
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 999;
        min-height: calc(100vh - 2 * var(--bar-height));
    }


}


@media screen and (max-width: 413px){

    .bar #menu-item-17959 a {
        margin-right: 9px;
    }

    .bar #menu-item-17958 a {
        margin-left: -9px;
    }

    #menu-item-18078 span span {
        text-overflow: clip!important;
    }

}

@media screen and (max-width: 374px){

    html {
        font-size: 18px;
    }

}