.headerSpacer {
    width: 100%;
    height: 50px;
    background: radial-gradient(circle, rgba(242, 255, 253, 1) 9%, rgba(241, 254, 255, 1) 49%, rgba(243, 243, 243, 1) 98%);
}

.headerContainer {
    position: fixed;
    width: 100%;
    top: 0px;
    left: 50%;
    -ms-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
    z-index: 100;
    border-bottom: 3px solid rgb(200, 200, 200);
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}

.headerContainer::before {
    content: '';
    position: fixed;
    width: 100%;
    height: 60px;
    top: 0px;
    left: 50%;
    -ms-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
    z-index: -1;
    backdrop-filter: blur(105px);
}

.headerParts {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.headerParts .header {
    background-color: rgb(255, 255, 255, 0.4);
    height: 60px;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header.desktop {}

.header.mobile {
    display: none;
}

.header .name {
    flex: 1;
}

.header .name .container {
    font-size: 24px;
    flex: 1;
    padding: 0px 5px;
    text-wrap-mode: nowrap;
    color: rgba(40, 40, 40);
    text-decoration: none;
    transition: all ease 0.2s;
}

.header .name .container:hover {
    color: rgb(120, 120, 120);
}

.header .spacer {
    flex: 1;
}

.headerButton {
    color: rgba(40, 40, 40);
    z-index: 4;
    position: relative;
    border: none;
    padding: 6px 10px;
    min-width: 150px;
    font-size: 20px;
    background-color: rgba(0, 0, 0, 0);

    font-family: "Fredoka", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
    transition: all ease 0.2s;
}

.headerButton:hover {
    z-index: 5;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    -webkit-backdrop-filter: saturate(2) blur(15px) brightness(0.95);
    backdrop-filter: saturate(2) blur(100px) brightness(0.95);
}


.headerBurgerButton {
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    padding: 0;
    height: 40px;
    width: 40px;
    position: absolute;
    z-index: 1000;
    right: 20px;
}

.headerBurgerline {
    fill: none;
    stroke: rgb(40, 40, 40);
    stroke-width: 6;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
        stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.headerBurgerline1 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
}

.headerBurgerline2 {
    stroke-dasharray: 60 60;
    stroke-width: 6;
}

.headerBurgerline3 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
}

.burgeropened .headerBurgerline1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
}

.burgeropened .headerBurgerline2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
    stroke-width: 6;
}

.burgeropened .headerBurgerline3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
}

.burgeropened+.mobileNavMenuContainer .mobileNavMenu {
    right: 0px;
}

.burgeropened+.mobileNavMenuContainer {
    opacity: 1;
    pointer-events: auto;
}

.mobileNavMenuContainer {
    transition: all ease 0.2s;
    position: absolute;
    top: 0px;
    width: 100vw;
    height: 100vh;
    right: 0px;
    z-index: -999;
    background-color: rgba(0, 0, 0, .2);
    box-shadow: 0px 0px 50px rgba(0, 0, 0, .5);
    opacity: 0;
    pointer-events: none;
}

.mobileNavMenu {
    position: absolute;
    right: -200%;
    padding-top: 50px;
    width: 100%;
    height: 100%;
    z-index: -1;
    max-width: 450px;
    display: flex;
}

.mobileNavSelContent::before {
    content: '';
    width: 100%;
    height: 100vh;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(15px);
}

.mobileNavSelContent {
    position: relative;
    flex: 1;
    padding: 0px;
    width: 100%;
    background: rgba(255, 255, 255, .5);
}

.mobileNavSelContentContainer {
    position: absolute;
    top: 0px;
    padding: 20px 10px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mobileNavSelContentContainer a {
    width: 100%;
    height: 50px;
    max-width: 350px;
    padding: 10px 0px;
    position: relative;
}

.mobileNavSelContentButton {
    position: absolute;
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 2px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.8);
    background-color: rgba(255, 255, 255, .6);
    color: rgba(80, 80, 80, 1);
    backdrop-filter: blur(15px) saturate(200%);
    transition: all ease 0.4s;
    cursor: pointer;
    font-size: 18px;
}

.mobileNavSelContentButton.account {
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.mobileNavSelContentButton.account .icon {
    aspect-ratio: 1/1;
    height: 80%;
    background-image: url('/assets/img/Profile.png');
    background-size: cover;
    border-radius: 5px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, .5);
}

.mobileNavSelContentButton.account .iconSpacer {
    aspect-ratio: 1/1;
    height: 80%;
}


.mobileNavSelContentButton.account .name {
    margin-left: 10px;
    flex: 1;
}

.mobileNavSelContentButton:hover {
    box-shadow: 0px 0px 8px rgba(255, 255, 255, 0.8);
    background-color: rgba(0, 0, 0, .5);
    transform: scale(1.1);
}

@supports (-webkit-touch-callout: none) {
    .mobileNavSelContentButton:hover {
        box-shadow: 0px 0px 3px rgb(0, 0, 0);
        background-color: rgb(230, 230, 230);
        transform: scale(1);
    }

    .mobileNavSelContentButton {
        border: 1px solid rgb(150, 150, 150);
        border-radius: 0px;
        background-color: rgb(240, 240, 240);
        box-shadow: 0px 0px 1px rgb(0, 0, 0);
        color: 000;
    }

    .mobileNavSelContent {
        background: rgba(235, 235, 235, 1);
    }
}

@media screen and (max-width: 850px) {
    .header.desktop {
        display: none;
    }

    .header.mobile {
        display: flex;
    }
}

@media screen and (max-width: 550px) {
    .mobileNavMenu {
        max-width: 100%;
    }
}