#header {
    background: #1A4869;
}

#header .container {
    display: grid;
    grid-row-gap: 18px;
    grid-template-columns: fit-content(100%) 1fr;
    grid-template-rows: 1fr 1fr;
    place-items: end;
}

#login-form {
    align-self: start;
    display: flex;
    flex-direction: row-reverse;
    gap: 6px;
    grid-column: 2;
    grid-row: 2;
}

#login-form > form {
    display: grid;
    grid-template-columns: 2fr 2fr auto;
    grid-template-rows: auto 1fr;
    grid-gap: 6px 8px;
}

#login-form form button[type="submit"] {
    margin: 0;
}

#login-form > form .form-group {
    margin: 0;
}

#login-form label {
    margin: 0 2px 0 0;
    text-align: center;
    vertical-align: middle;
    width: initial;
    font-weight: 300;
    color: #FFFFFF;
}

#login-form div.loggedin-controls
{
    display: inline-block;
}

#header form {
    font-size: 12px;
    float: left;
    max-width: unset !important;
    width: auto !important;
}
#header form > label {
    text-align: center;
    line-height: 24px;
    color: rgb(254, 254, 254);
}
#header form > input[type="text"] {
    background-color: rgb(254, 254, 254);
}

#menu {
    background: linear-gradient(180deg, rgba(234, 234, 234, 0.20) 0%, rgba(217, 217, 217, 0.06) 100%, rgba(217, 217, 217, 0.06) 100%);
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    display: flex;
    flex-wrap: wrap;
    font-size: 15px;
    font-weight: bold;
    grid-column: 2; /* align within the header */
    grid-row: 1; /* align within the header */
    max-width: 780px;
    width: 100%;
}

#menu a {
    align-items: center;
    border-right: 1px solid #292441;
    color: #FFF;
    display: flex;
    height: 64px !important;
    flex: 1;
    font-family: Inter;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    justify-content: center;
    letter-spacing: -0.15px;
    text-align: center;
    transition: background 0.5s;
}
#menu a.current-page {
    background: rgba(217, 217, 217, 0.10);
}

#menu a:first-child {
    border-bottom-left-radius: 6px;
}
#menu a:last-child {
    border-bottom-right-radius: 6px;
    border-right: none;
}

#menu a:link,
#menu a:visited,
#menu a:active {
    text-decoration: none;
}
#menu a:hover {
    background: rgba(217, 217, 217, 0.10);
    text-decoration: none;
}

#menu a#search-page-menu-item {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 80px;
}
#menu a#search-page-menu-item div.svg-container {
    display: grid;
    height: 100%;
    place-items: center;
}

/*#menu > ul > li > a {*/
/*    color: #0287B9;*/
/*    background-color: rgb(233, 241, 250);*/
/*    text-decoration: none;*/
/*    display: block;*/
/*    margin: 0;*/
/*}*/

/*#menu > ul > li:first-child > a:hover,*/
/*#menu > ul > li > a:hover,*/
/*#menu > ul > li > a:focus {*/
/*    color: #004F6D;*/
/*    background-color: rgb(222, 230, 239);*/
/*    text-decoration: underline;*/
/*}*/
/*#menu > ul > li > a:focus {*/
/*    outline: thin dotted;*/
/*    outline: 5px auto -webkit-focus-ring-color;*/
/*    outline-offset: -2px;*/
/*}*/
/*#menu > ul {*/
/*    list-style-type: none;*/
/*    padding: 0;*/
/*    vertical-align: bottom;*/
/*}*/
/*#menu > ul > li {*/
/*    float: left;*/
/*    border-left: 2px solid rgb(255, 255, 255);*/
/*    border-bottom: 2px solid rgb(255, 255, 255);*/
/*    border-top: 2px solid rgb(255, 255, 255);*/
/*    background-color: white;*/
/*    width: 20.0%;*/
/*}*/
/*#menu > ul > li:last-child {*/
/*    border-right: 2px solid rgb(255, 255, 255);*/
/*}*/
/*#menu > ul > li:first-child {*/
/*    float: left;*/
/*    border-left: 2px solid rgb(255, 255, 255);*/
/*    border-bottom: 2px solid rgb(255, 255, 255);*/
/*    border-top: 2px solid rgb(255, 255, 255);*/
/*    background-color: white;*/
/*    width: 20.0%;*/
/*}*/

/*#menu > ul > li:first-child > a {*/
/*    background-color: rgb(233, 241, 250);*/
/*}*/
/*#menu > ul > li > a {*/
/*    text-decoration: none;*/
/*    display: block;*/
/*    color: #337AB7;*/
/*    margin: 0;*/
/*}*/
/*#menu > ul > li.li-no-hover:hover {*/
/*    background-color: transparent;*/
/*}*/
/*#menu > ul > li:hover {*/
/*    background-color: rgb(222, 230, 239);*/
/*}*/
#menu-item {
    width:20%;
}

#logo {
    grid-row: 1 / span 2;
}

#logo img {
    height: 70px;
    margin: 25px 0 20px 10px;
    vertical-align: middle;
    border: 0 none;
}

#forgot-password-link {
    text-decoration: underline;
    color: #FFF
}