#desktopNavigation {
    position: fixed;
    width: 100%;
    padding-top: 0.75rem;
    z-index: 600;
    backdrop-filter: blur(5px);
    padding-bottom: 0.75rem;
    background: rgba(1, 1, 1, 0.75);
}

#mobileNavigation {
    display: none;
}


#navItems {
    display: flex;
    position: relative;
    z-index: 2000;
}

#navContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.navLink {
    font-family: 'Univia';
    color: var(--redcolor) !important;
    text-decoration: none;
    font-size: 1.4rem;
    margin-left: 0.75rem;
    border-right: 2px solid var(--redcolor);
    padding-right: 0.75rem;
}

#lastNavItem {
    border-right: none !important;
}

.hiddenLink {
    margin-left: 0.75rem;
    margin-right: 0.75rem;
    color: #f84f25 !important;
    border-bottom: solid 2px rgba(10, 10, 10, 0);
}

.navLink:hover {
    color: white !important
}

.hiddenLink:hover {
    color: white;
}

#mobileMenu {
    position: fixed;
    z-index: 2100;
    top: 1.8%;
    right: 3%;
    cursor: pointer;
    display: none;

}

.devMenu {
    position: absolute;
    padding-top: 0.1rem;
    margin-left: 7.3rem;
    padding-left: 0.3rem;
    transition: ease 0.5s;
    display: flex;
    margin-top: -35.5px;
    overflow: hidden;
    z-index: 150;
}

#hoverLink {
    position: relative;
    z-index: 200;
}


.nav-logo img {
    width: 80%;
}

.swapDown {
    transform: translateX(0) !important;
}

.topSwap {
    transform: translateX(-224px)rotateY(180deg);
    filter: opacity(0);
    pointer-events: none;
    cursor: default;
}


#desktopOptions {
    position: fixed;
    width: max-content;
    right: 0%;
    border-radius: 4px;
    top: 0%;
    height: 100vh;
    z-index: 1000;
    background-color: rgba(1, 1, 1, 0.75);
    backdrop-filter: grayscale(100%)blur(4px);
    padding: 16px;
    color: white;
    font-size: 1.25rem;
    font-family: 'Univia';
    background-size: 100%;
    display: flex;
    justify-content: center;
    box-shadow: 2px 2px 256px 4px var(--redcolor);
    width: 33%;
}


#desktopOptions label {
    color: var(--redcolor);
    font-size: 1.25rem;
}

.hideMenu {
    transform: translateX(50vw);
}

.swapLeft {
    transform: translateX(-100vw);
}

#optionsWrapper {
    width: 600;
    /* background-color: black; */
    height: max-content;
    padding: 1rem;
}


.cookieButton {
    margin-top: 1rem;
    border: none !important;
    box-shadow: none !important;
    background-color: var(--redcolor);
    color: white;
    font-size: 16px;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: 4px;
    font-family: "Univia";
    position: relative;
    z-index: 50;
}


#lang {
    padding-top: 2rem;
    filter: brightness(100%)hue-rotate(var(--hueneg));
}

#lang svg {
    margin-right: 1rem;
    cursor: pointer;
}


#headerIcon {
    position: fixed;
    z-index: 50000;
    display: flex;
    top: 0.75rem;
    right: 0%;
    cursor: pointer;
}

#headerIcon img {
    width: 45%;
    transform: translateX(0.75rem);
}

.formButtonWrap {
    display: flex;
    justify-content: center;
}


footer {
    color: white;
    position: relative;
    font-size: 1.25rem;
    border-top: solid 1px rgb(100, 100, 100);
    background-color: rgba(1, 1, 1, 0.75) !important;
    font-family: 'UniviaRegular';
    padding-top: 4rem;
    z-index: 400;
}

footer img {
    width: 110%;
    opacity: 50%;
    filter: grayscale(100%)
}

.footerElement {
    align-self: center;
}

.footerLinks {
    cursor: pointer;
}

.footerLinks:hover {
    color: var(--redcolor);
}

.footerLinks a {
    text-decoration: none;
    color: unset;
}

.footerLinks a:hover {
    text-decoration: none;
    color: var(--redcolor);
}

#footerRow {
    display: flex;
    justify-content: center;
}

.cookie-box {
    display: unset!important;
}


@media screen and (max-width: 991px) {

    .form-check-input:checked {
        background-color: rgba(248, 79, 37) !important;
        cursor: pointer;
        margin-top: 2px;
    }

    .form-check-input {
        background-color: rgb(255, 255, 255) !important;
        cursor: pointer;
        margin-top: 2px !important;
    }

    #desktopNavigation {
        display: none;
    }

    #mobileNavigation {
        display: initial;
        min-height: 48px;
        position: fixed;
        z-index: 2100;
        width: 100%;
        max-height: 64px;
    }

    #mobileNavContainer {
        padding-top: 64px;
        height: 100vh;
        transform: translateX(100vw);

    }

    #mobileMenu {
        display: initial;
    }

    .navLink {
        line-height: 16px;
        font-size: 1.2rem;
        border-right: none;

    }

    #desktopOptions,
    #desktopMenu {
        display: none;
    }

    #headerIcon {
        display: none;
    }

    #footerRow {
        display: flex;
        justify-content: left;
    }

    .formButtonWrap {
        display: flex;
        justify-content: left;
    }


}



@keyframes menuTrigger {
    0% {
        transform: translateX(50vh);
    }

    100% {
        transform: translateX(0);
    }
}