header {
    margin: auto;
    max-width: 87rem;
    width: 100%;
}

header .thyssengas-header{
    flex-direction: row;
    box-sizing: border-box;
    display: flex;
    place-content: center flex-start;
    align-items: center;
    justify-content: space-between;
    padding: 32px;
}
header .thyssengas-header a{
    border: none;
    display: flex;
}
#kc-logo{
    height: 40px;
}
@media only screen and (max-width: 730px) {
    header .thyssengas-header{
        height: 64px;
    }
    #kc-logo {
        height: 25px;
    }
}

main{
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    align-items: center;
}
main .content{
    display: flex;
    flex-direction: column;
    max-width: 87rem;
    width: 100%;
    padding: 32px;
    box-sizing: border-box;
}

.nav-wrapper{
    overflow: visible;
    position: absolute;
    max-width: 87rem;
    width: 100%;
}
.nav-wrapper nav {
    width: 80%;
    background-color: #083e84;
    border-radius: 0px 50px 50px 0px;
    -moz-border-radius: 0px 50px 50px 0px;
    -webkit-border-radius: 0px 50px 50px 0px;
}
.nav-wrapper nav ul {
    display: flex;
    flex-direction: row;
    list-style: none;
    margin: 0;
    padding-left: 40px;
}

.nav-wrapper nav ul a {
    display: block;
    font-weight: bold;
    color: white;
    padding: 10px;
    background-color: #083e84;
    font-size: 15px;
    line-height: 1.15;

}
.nav-wrapper nav ul a.active {background-color: #f6a800;}

footer{
    position: fixed;
    bottom: 0px;
    width: 100%;
    padding: 16px 32px;
    background-color: white;
    border-top: solid 1px black;
    display: flex;
    flex-direction: column;
}
footer > div{
    display: flex;
    flex-direction: row;
    max-width: 87rem;
    width: 100%;
    margin: auto;
    grid-gap: 1em;
    justify-content: space-between;
}
footer a.ep-footer-a{
    color: rgba(0, 0, 0, 0.54);
    text-decoration: none;
    border: none;
    /* font-size: 15px;
    line-height: 1.15; */
}
footer .ep-footer{
    display: flex;
    grid-gap: 1em;
    color:  rgba(0, 0, 0, 0.54);
}


#kc-locale ul{
    border: none;
    border-radius: 4px;
    outline: 0;
    box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
    background: white;
}
#kc-locale ul li a {
    line-height: 48px;
}
#kc-locale ul li a:hover {
    background: rgba(0, 0, 0, 0.04);
}


/* Stage */

.stage-indicator-container{
    position: absolute;
    top: 0;
    left: 50vw;
    z-index: 200000;
}
.stage{
    /*margin: 0;*/
    padding: 0.25em;
    border-radius: 4px;

    background-color: purple;
    font-weight: bold;
    box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}
.stage.LOCAL{
    background-color: lightgray;
}
.stage.QS{
    background-color: magenta;
}
.stage.TEST{
    background-color: lime;
}
.stage.INT{
    background-color: cyan;
}
.stage.PROD{
    display: none;
}
