header {
    padding-top: 8px;
    position: fixed;
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #ffffff;
    z-index: 1;
    box-shadow: 0px 0px 15px #000000;
}

div#header-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: left;
    padding-left: 15px;
    padding-right: 15px;
}

div#header-logo-container>a>img {
    height: 50px;
    margin: 10px;
    width: auto;
    min-width: unset;
}

#hamburger {
    display: none;
}

.hamburger-menu-shown {
    display: block;
}

.hamburger-menu-not-shown {
    display: none;
}

#hamburger-column>*>hr {

    color:white;
    background-color:white;
    height: 2px;
    border-radius: 1px;
    border:none;
}

#hamburger-column>*>a {
    color: white;
    font-size: 20px;
    margin-top: 10px;
}

#hamburger-column>*.current-nav-hamburger>a {

    font-weight: bold;
    color: #99CCCC;
}

#hamburger-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

#hamburger-menu {
    position: fixed;
    height: 100vh;
    width: 100vw;
    background-color: #006666;
    color: white;
    top: 0;
    z-index: 10000;
}

#hamburger>img, #hamburger-close>img {
    max-width: 46px;
    max-height: 46px;
    min-width: 46px;
    min-height: 46px;
    margin-right: 24px;
}

#hamburger-close>img {
    position: absolute;
    right: 0;
    margin-top: 24px;

}

#hamburger-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
}



div#header-title-block {
    margin: 10px;
}

div#header-title {
    font-size: 24px;
    color: #006666;
}

div#header-subtitle {
    font-size: 13px;
    ;
    color: #999999;
}

@media only screen and (max-width: 500px) {
    div#header-logo-container>a>img {
        display: none;
    }
}

@media only screen and (max-width: 330px) {
    div#header-subtitle {
        display: none;
    }
}

@media only screen and (max-width: 600px) {
    #hamburger {
        display: block;
    }
}

@media only screen and (min-width: 600px) {
    #hamburger-menu {
        display: none;
    }
}