/*--------------------------------------*/
/*--------------------------------------*/
/*--------------------------------------*/
:root {
    --MENU-HEIGHT: 50px;
}

@media(max-width:1023px) {
    :root {
        --MENU-HEIGHT: 50px;
    }
}

.custom-LP-anchor {
    position: relative;
    z-index: 1;
    height: calc(var(--HEADER-HEIGHT));
    margin-top: calc(-1 * var(--HEADER-HEIGHT));
    pointer-events: none;
}

@media(max-width:761px) {
    .custom-LP-anchor#whats-new {
        margin-top: 0;
    }
}


/*------------------------------------------------*/
/*------------------------------------------------*/
@media(min-width:1024px) {
    .custom-LP-navigation {
        position: fixed;
        width: 100%;
        color: #fff;
        left: 0;
        z-index: 40;
        top: var(--HEADER-HEIGHT);
        overflow: hidden;
        height: var(--MENU-HEIGHT);
    }

    .custom-LP-navigation__wrapper {
        width: 100%;
        height: var(--MENU-HEIGHT);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        /* transform: translateY(-100%);*/
        transition: transform ease-in-out 0.5s;
        background-color: #d3b78a !important;
    }

    .custom-LP-navigation:hover .custom-LP-navigation__wrapper,
    .custom-LP-navigation[data-scrollback="1"] .custom-LP-navigation__wrapper {
        transform: translateY(-0%)
    }

    .custom-LP-navigation button {
        display: none !important
    }

    .custom-LP-navigation__menu {
        position: relative;
        height: var(--MENU-HEIGHT);
    }

    .custom-LP-navigation__current {
        display: none;
    }

    .custom-LP-navigation__selector {
        display: flex;
        justify-content: center;
        width: 100%;
        overflow: hidden;
        height: var(--MENU-HEIGHT);
        box-sizing: border-box;
    }

    .custom-LP-navigation__link {
        font-size: 11px;
        height: var(--MENU-HEIGHT);
        line-height: 11px;
        font-family: var(--GOTHAM-MEDIUM);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 0 10px;
        box-sizing: border-box;
        text-decoration: none;
        text-transform: uppercase;
        position: relative;
    }

    .custom-LP-navigation__cta {
        background-color: #fff;
        font-size: 12px;
        color: #000 !important;
        border-radius: 4px;
        line-height: 32px;
        padding: 0 20px;
        text-transform: unset;
        font-family: var(--GOTHAM-MEDIUM);
        margin: 9px 10px;
        text-align: center;
        text-decoration: none;
    }

    .custom-LP-navigation__cta:hover {
        color: #be0f34;
    }

    .custom-LP-navigation__link::before {
        content: " ";
        display: block;
        width: 100%;
        background-color: #9c6033;
        height: 4px;
        bottom: 0;
        position: absolute;
        left: 50%;
        transform: translateX(-50%) scaleX(0);
        opacity: 0;
    }

    .custom-LP-navigation__link[data-active="1"] {
        color: #9c6033;
    }

    .custom-LP-navigation__link[data-active="1"]::before {
        opacity: 1;
        transform: translateX(-50%) scaleX(1);
        transition: transform ease-in-out 0.5s;
    }

    .custom-LP-navigation__link:hover {
        color: #9c6033;
    }

    .custom-LP-navigation .precious-lp-cta {
        display: none;
    }
}

@media(max-width:1023px) {
    .custom-LP-navigation {
        background-color: #d3b78a !important;
        position: fixed;
        width: 100%;
        color: #fff;
        left: 0;
        z-index: 40;
        transition: top ease-in-out 0.5s;
        top: 0;
        padding-top: 48px;
        font-size: 14px;
    }

    .custom-LP-navigation button {
        display: block !important;
        opacity: 1;
        position: absolute;
        width: 100%;
        height: 100%;
        cursor: pointer;
        font-size: 0;
        background-color: transparent;
        box-sizing: border-box;
        border: 0px solid #d3b78a !important;
        outline: 0 !important;
    }

    .custom-LP-navigation button:focus {
        background-color: rgba(255, 255, 255, 0.1);
    }

    .custom-LP-navigation__wrapper {
        max-width: 1250px;
        width: 100%;
        height: var(--MENU-HEIGHT);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .custom-LP-navigation__menu {
        flex: 1;
        position: relative;
        height: var(--MENU-HEIGHT);
        cursor: pointer;
    }

    .custom-LP-navigation__menu .custom-LP-navigation__current:after {
        content: " ";
        width: 10px;
        height: 10px;
        border-left: 2px solid #813507;
        border-top: 2px solid #813507;
        /* position: absolute;
        right: 10px;
        top: 15px;*/
        margin-top: -8px;
        margin-left: 10px;
        transform: rotate(225deg);
        z-index: 2;
        transform-origin: center center;
        pointer-events: none;
    }

    .custom-LP-navigation__menu[data-active="1"] .custom-LP-navigation__current:after {
        transform: rotate(45deg);
        margin-top: 7px;
    }

    .custom-LP-navigation__current {
        text-transform: uppercase;
        color: #813507;
        line-height: 1.4em;
        height: var(--MENU-HEIGHT);
        display: flex;
        align-items: center;
        text-align: left;
        padding: 0 20px;
        text-decoration: none;
        box-sizing: border-box;
        width: 100%;
        position: relative;
    }

    .custom-LP-navigation__selector {
        position: absolute;
        top: var(--MENU-HEIGHT);
        left: -1px;
        width: 100vw;
        background-color: #d3b78a !important;
        overflow: hidden;
        max-height: 0px;
        opacity: 0;
        transition: max-height ease-in-out 0.5s;
        box-sizing: border-box;
        padding-bottom: 8px;
    }

    .custom-LP-navigation__menu[data-active="1"] .custom-LP-navigation__selector {
        max-height: calc(var(--MENU-HEIGHT) * 7 * 0.75);
        opacity: 1;
    }

    .custom-LP-navigation__selector a {
        font-family: var(--GOTHAM-MEDIUM);
        font-size: 14px;
        line-height: 1.4em;
        color: #fff;
        display: block;
        height: calc(var(--MENU-HEIGHT)*0.75);
        display: flex;
        align-items: center;
        text-align: left;
        padding: 0 20px;
        box-sizing: border-box;
        text-decoration: none;
        text-transform: uppercase;
        outline: 0 !important;
    }


    .custom-LP-navigation__selector a:focus {
        background-color: rgba(255, 255, 255, 0.1);
    }

    .custom-LP-navigation__selector a[data-active="1"] {
        display: none;
    }

    .custom-LP-navigation__selector a:hover {
        color: var(--COLOR-GOLD);
    }

    .custom-LP-navigation__cta {
        background-color: #fff;
        font-size: 12px;
        color: #333 !important;
        border-radius: 4px;
        line-height: 32px;
        padding: 0 20px;
        text-transform: unset;
        font-family: var(--GOTHAM-MEDIUM);
        margin: 9px 10px;
        text-align: center;
        text-decoration: none;
    }
}