header {
    background-color: #DCDCDC;
    box-shadow: 0 -60px 100px black;
    z-index: 2;
    position: relative;
}

#MainHeader {
    height: 67px;
}

header #Logo {
    height: 67px;
    overflow-y: visible;
    z-index: 100;
}

header #Logo img {
    height: 80px;
    width: auto;
    margin-left: 0.5rem;
    margin-top: 0.5rem;
}

header a {
    text-decoration: none;
}

li wa-icon {
    margin-right: 1rem;
}

@media(min-width: 800px) {
    #HeaderMobile {
        display: none !important;
    }
}

#HeaderDesktop {
    display: flex;
}


#HeaderDesktop #Header {
    display: flex;
    font-weight: bold;
    gap: 1rem;
}

#HeaderDesktop #HeaderLeft,
#HeaderDesktop #HeaderCenter,
#HeaderDesktop #HeaderRight {
    align-items: center;
}

#HeaderDesktop #HeaderLeft,
#HeaderDesktop #HeaderRight {
    flex-basis: 200px;
    flex-grow: 2;
    /*background-color: red;*/
}

#HeaderDesktop #HeaderLeft {
    min-width: 200px;
}

#HeaderDesktop #HeaderRight {
    justify-content: end;
    padding-right: 1rem;
}

#HeaderDesktop #HeaderCenter {
    flex-basis: 1300px;
    flex-shrink: 2;
    /*background-color: blue;*/
}

#HeaderDesktop #HeaderCenter ul {
    display: flex;
    justify-content: space-around;
    width: 100%;
}

#HeaderDesktop li {
    list-style: none;
    padding: 0;
    margin: 0;
}

#HeaderDesktop > div {
    display: flex;
}

#HeaderDesktop #HeaderCenter a {
    color: black;
    font-weight: 600;
    font-family: var(--serif);
    font-size: 1.1rem;
}

#HeaderDesktop #HeaderCenter a:hover,
#HeaderDesktop #HeaderCenter a:focus {
    border-bottom: 1px solid blue;
}




@media(max-width: 799px) {
    #HeaderDesktop {
        display: none !important;
    }
}

#HeaderMobile {
    display: flex;
    align-items: center;
    justify-content: end;
    height: 67px;
}

#HeaderMobile #Logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

#HeaderMobile #Logo img {
    max-height: 150px;
    width: auto;
}

#HeaderMobile wa-drawer > div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#HeaderMobile wa-drawer .logo img {
    height: 100px;
    width: auto;
    margin-bottom: 3rem;
}

#HeaderMobile wa-drawer ul, 
#HeaderMobile wa-drawer li {
    list-style: none;
    padding: 0;
    margin: 0;
    text-transform: uppercase;
    font-size: 1.75rem;
}

#HeaderMobile wa-drawer li {
    margin-bottom: 0.5rem;
}

#MobileNavigationButton {
    margin-right: 1rem;
}



#SiteNotices wa-callout {
    border-radius: 0;
}