/* header — generated by scripts/split-css.mjs from style.css. Do not edit by hand. */
.header-container {
    width: 100%;
    position: absolute;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 62px;
    z-index: 1;
}

@media (min-width: 768px) {
  .header-container {
        margin-top: 17px;
    }
}

.header-title {
    background-image: url("/img/icons/elysium_logo_text-only_white.svg");
    background-repeat: no-repeat;
    background-position: center center;
    width: 36%;
    background-size: 136px;
    width: 136px;
    height: 18px;
}

@media (min-width: 768px) {
  .header-title {
        width: 236px;
        height: 38px;
        background-size: contain;
    }
}

.header-left, .header-right {
    width: 22%;
}

@media (min-width: 768px) {
  .header-left, .header-right {
        width: 34%;
    }
}

.header-left {
    padding-left: 14px;
}

@media (min-width: 768px) {
  .header-left {
        padding-left: 33px;
    }
}

.header-left .hamburger-menu {
    display: block;
    width: 48px;
    height: 48px;
    background-image: url("/img/icons/hamburger_white.svg");
    background-repeat: no-repeat;
    background-position: 12px 12px;
    cursor: pointer;
}

.gold-header .header-left .hamburger-menu {
    background-image: url("/img/icons/hamburger_gold.svg");
}

.header-right {
    text-align: right;
    padding-right: 24px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header-container.gold-header .header-title {
    background-image: url("/img/icons/elysium_logo_text-only_gold.svg");
}

.check-in-icon {
    display: none;
    padding-bottom: 0;
    margin-left: 0;
    padding-right: 8px;
    width: 48px;
    height: 48px;
    background-repeat: no-repeat;
    background-position: center 9px;
    background-image: url("/img/icons/check-in_white.svg");
}

.check-in-icon:hover {
        background-image: url("/img/icons/check-in_hover_white.svg");
    }

@media only screen and (min-width: 1024px) {
  .check-in-icon {
        display: inline-block;
    }
  .gold-header .check-in-icon {
        background-image: url("/img/icons/check-in_gold.svg");
    }
  .gold-header .check-in-icon:hover {
            background-image: url("/img/icons/check-in_hover_gold.svg");
        }
}

.gift-icon {
    display: none;
    padding-bottom: 0;
    margin-left: 6px;
    padding-right: 8px;
    width: 48px;
    height: 48px;
    background-repeat: no-repeat;
    background-position: center 9px;
    background-image: url("/img/icons/gift-icon_white.svg");
}

@media only screen and (min-width: 1024px) {
  .gift-icon {
        display: inline-block;
    }
  .gift-icon:hover {
            background-image: url("/img/icons/gift-icon_hover_white.svg");
        }
  .gold-header .gift-icon {
        background-image: url("/img/icons/gift-icon_gold.svg");
    }
  .gold-header .gift-icon:hover {
            background-image: url("/img/icons/gift-icon_hover_gold.svg");
        }
}

.scrollheader {
    position: fixed;
    top: 0;
    height: 62px;
    background-color: white;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
    width: 100%;
    z-index: 500;
}

@media (min-width: 768px) {
  .scrollheader .header-container.gold-header {
        margin-top: 0;
    }
}

.scrollheader .header-container.gold-header .header-title {
    background-image: url("/img/icons/elysium_lyre-symbol_gold.svg");
    background-size: auto;
    width: 27px;
    height: 34px;
}

.scrollheader .header-container.gold-header .language-container .language-dropdown {
    color: #7C6F27;
    background-image: url("/img/icons/chevron-dropdown_gold.svg");
}

.accordion-menu {
    height: 100vh;
    position: fixed;
    z-index: 600;
    margin: 0px auto 20px;
    background: #ffffff;
    transition: transform 680ms ease-out;
    overflow-y: auto;
    width: 100%;
    left: -100vw;
}

@media (min-width: 768px) {
  .accordion-menu {
        left: -600px;
        max-width: 600px;
    }
}

@media only screen and (min-width: 1024px) {
  .accordion-menu {
        left: -800px;
        max-width: 800px;
    }
}

.accordion-menu.slide-in {
    transform: translateX(100vw);
}

@media (min-width: 768px) {
  .accordion-menu.slide-in {
        transform: translateX(600px);
    }
}

@media only screen and (min-width: 1024px) {
  .accordion-menu.slide-in {
        transform: translateX(800px);
    }
}

.accordion-menu > ul {
    padding-top: 63px;
    padding-left: 12px;
}

@media (min-width: 768px) {
  .accordion-menu > ul {
        padding-top: 90px;
        padding-left: 96px;
    }
}

@media only screen and (min-width: 1024px) {
  .accordion-menu > ul {
        padding-top: 180px;
        padding-left: 156px;
    }
}

.accordion-menu .close-menu {
    position: absolute;
    width: 48px;
    height: 48px;
    background: url(/img/icons/X-close-gold.svg) center center/24px 24px no-repeat;
    background-repeat: no-repeat;
    background-position: center center;
    cursor: pointer;
    top: 6px;
    left: 12px;
}

@media (min-width: 768px) {
  .accordion-menu .close-menu {
        top: 22px;
        left: 32px;
    }
}

.dropdownlink, .non-dropdownlink {
    cursor: pointer;
    display: block;
    font-size: 17px;
    position: relative;
    padding: 10px 15px 9px 45px;
}

.dropdownlink a, .non-dropdownlink a {
        font-family: pfspekk-var-medium;
        text-decoration: none;
        text-transform: uppercase;
    }

.open > .dropdownlink a, .open > .non-dropdownlink a {
    color: #7C6F27;
}

.open > .dropdownlink a:hover, .open > .non-dropdownlink a:hover {
        color: #7C6F27;
        text-decoration: underline;
    }

.dropdownlink a:hover, .non-dropdownlink a:hover {
    color: #7C6F27;
    text-decoration: underline;
}

.dropdownlink::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 48px;
    height: 48px;
    background: url(/img/icons/menu_plus-icon_22x22.svg) 12px 16px no-repeat;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 22px 22px;
}

.open > .dropdownlink::before {
    background: url(/img/icons/menu_minus-icon_22x22.svg) 13px 13px no-repeat;
    background-size: 22px 22px;
}

.submenuItems {
    display: none;
}

.submenuItems a {
        font-family: pfspekk-var-regular;
        font-size: 16px;
        text-decoration: none;
        color: #7C6F27;
        display: block;
        padding: 4px 12px 4px 45px;
        text-transform: uppercase;
    }

.submenuItems a:hover {
            text-decoration: underline;
        }

.submenuItems li:last-of-type {
        padding-bottom: 16px;
    }

.submenuItems li {
        list-style: none;
        padding-left: 20px;
    }

.rhs-menu {
    height: 100vh;
    position: fixed;
    z-index: 600;
    margin: 0px auto 20px;
    background: #ffffff;
    transition: transform 680ms ease-out;
    overflow-y: auto;
    width: 100%;
    right: -100vw;
    padding-left: 24px;
    padding-right: 24px;
}

.rhs-menu .rhs-menu-content {
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

.rhs-menu h5 {
        font-size: 20px;
        line-height: 140%;
        margin-bottom: 1.5em;
        color: #7C6F27;
        margin-top: 45px;
    }

.rhs-menu h5:first-of-type {
            margin-top: 90px;
        }

.rhs-menu a.primary-cta {
        display: block;
        width: 300px;
        cursor: pointer;
        margin-bottom: 1em;
    }

.rhs-menu a.primary-cta span {
            width: 300px;
            text-align: center;
            padding: 6px 12px 6px 12px;
        }

@media (min-width: 500px) {
  .rhs-menu {
        right: -350px;
        max-width: 350px;
        width: 350px;
    }
}

.rhs-menu.rhs-slide-in {
    transform: translateX(-100vw);
}

@media (min-width: 500px) {
  .rhs-menu.rhs-slide-in {
        transform: translateX(-350px);
    }
}

.rhs-menu .rhs-close-menu {
    position: absolute;
    width: 48px;
    height: 48px;
    background: url(/img/icons/X-close-gold.svg) center center/24px 24px no-repeat;
    background-repeat: no-repeat;
    background-position: center center;
    cursor: pointer;
    top: 6px;
    right: 12px;
}

@media (min-width: 768px) {
  .rhs-menu .rhs-close-menu {
        top: 23px;
        right: 32px;
    }
}

.language-container {
    display: none;
    font-family: pfspekk-var-light;
    text-decoration: none;
    font-size: 23px;
    width: 82px;
    padding-top: 12px;
    padding-bottom: 12px;
    position: relative;
    text-align: center;
    flex-shrink: 0;
    z-index: 1;
}

@media (min-width: 768px) {
  .language-container {
        display: inline-block;
        width: 82px;
    }
}

.language-container .language-dropdown {
    display: none;
    color: white;
    text-align: left;
    background-image: url("/img/icons/chevron-dropdown_white.svg");
    background-repeat: no-repeat;
    background-position: right 11px;
    padding-right: 19px;
    padding-bottom: 0;
    cursor: pointer;
}

.language-container .language-dropdown:hover {
        color: #000000 !important;
    }

@media (min-width: 768px) {
  .language-container .language-dropdown {
        display: inline-block;
    }
}

.language-container .language-options {
    display: none;
}

.language-container.show-languages {
    background-color: white;
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.055);
}

.language-container.show-languages .language-dropdown {
        background-color: white;
        color: #7C6F27;
        background-image: url("/img/icons/chevron_gold_up.svg");
        background-position: right 9px;
    }

.language-container.show-languages .language-options {
        display: flex;
        position: absolute;
        top: 44px;
        left: 0;
        width: 82px;
        flex-direction: column;
        align-items: flex-start;
        padding-left: 17px;
        background-color: white;
        padding-bottom: 10px;
        box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.045);
    }

.language-container.show-languages .language-options a {
            display: inline-block;
            text-align: center;
            text-decoration: none;
            line-height: 38px;
        }

.language-container.show-languages .language-options a:hover {
                color: #000000;
            }

.header-container.gold-header .language-dropdown {
    color: #7C6F27;
    background-image: url("/img/icons/chevron-dropdown_gold.svg");
}

.header-container.gold-header .language-container.show-languages .language-dropdown {
    background-image: url("/img/icons/chevron_gold_up.svg");
}

@media (max-width: 768px) {
  .accordion-menu .language-container {
        display: block;
        position: absolute;
        top: 4px;
        right: 10px;
    }
  .accordion-menu .language-container .language-dropdown {
            display: block;
            padding-left: 16px;
            color: #7C6F27;
            background-image: url("/img/icons/chevron-dropdown_gold.svg");
            background-position: 50px 10px;
        }
  .accordion-menu .language-container.show-languages .language-dropdown {
            background-image: url("/img/icons/chevron_gold_up.svg");
        }
}

@media only screen and (min-width: 1024px) {
  .accordion-menu .language-container {
        display: none;
    }
}
