html {
    background-color: var(--loginBackgroundColorFallback);
    background: var(--loginBackground);
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

body {
    width: 70%;
    margin-left: 15%;
    background-color: transparent;
    display: flex;
    flex-direction: column;
}

@media screen and (max-width: 1200px) {
    body {
        width: 90vw;
        margin-left: 5vw;
    }
}

@media screen and (max-width: 800px) {
    body {
        width: 99%;
        margin-left: .5%;
    }
}

.top {
    background-color: var(--loginTopBannerBackgroundColor);
    border-radius: var(--loginTopBannerBorderRadius);
    padding: 1em;
}

.upperLeft {
    width: 65%;
    float: left;
    display: flex;
}

.upperRight {
    width: 35%;
    float: right;
}

.logoBox {
    width: 170px;
    height: 95px;
    background-size: 100%;
    background-repeat: no-repeat;
    background-image: url("../images/logo-malighting.png");
}

.signBox {
    display: flex;
    flex-direction: column;
    align-self: flex-end;
    margin-left: 1%;
}

.signBox .title {
    font-size: 50px;
    color:var(--loginTopBannerSignColor);
}

.headline {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    border-radius: 0px 5px;
}

.loginBox {
    width: 100%;
    display: flex;
    flex-direction: row;
    border-radius: 0px 5px;
}

#versionSwitch {
    margin-right: 1em;
    display: flex;
    align-items: center;
}

/*#versionSwitch>div {
    padding: .5em 1em;
    height: 2.5em;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}*/

#versionSwitch>div {
    padding: .5em 1em;
    height: 2.5em;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

#versionSwitch .gma1 {
    background: linear-gradient(to bottom right, #7a817c, #b9c1bd);
    border: 1px inset #686860;
    color: black;
}

@font-face {
    font-family: "maFont";
    src: url("/fonts/maFont.woff") format('woff');
}

#versionSwitch .gma1>span {
    font-family: 'maFont';
    font-weight: normal;
    font-style: normal;
    font-size: .7em;
}

#versionSwitch .gma2 {
    background: black;
    border: 2px solid #E8A901;
    color: white;
    border-radius: 6px;
}

#versionSwitch .gma3 {
    background: #585858;
    border: none;
    border-top: 2px solid lightgray;
    color: white;
    border-radius: 0px 10px 10px 0px;
}

#versionSwitch .gma2:hover,
#versionSwitch .gma3:hover {
    background: #989898;
}

#versionSwitch .gma1.selected {
    background: linear-gradient(to bottom right, #282c28, #787c78);
    color: white;
}

#versionSwitch .gma2.selected,
#versionSwitch .gma3.selected {
    background: #363636;
    color: #FFD700;
}

#versionSwitch>div * {
    font-size: 1.5em;
}

@media screen and (max-width: 1000px) {
    #versionSwitch span {
        display: none;
    }

    #versionSwitch>div {
        padding: 5px 1em;
    }
}

.inlineLogo {
    width: 1em;
    height: 1em;
    background-position: 50%;
    background-size: 100%;
    background-repeat: no-repeat;
}

#gma1InlineLogo {
    background-image: url("/images/logo_gma1.png");
}

#gma2InlineLogo {
    background-image: url("/images/logo_gma2.png");
}

#gma3InlineLogo {
    background-image: url("/images/icon_gma3.png");
}

.headline .headlineLeftMenu {
    min-height: var(--headlineIconSize);
    min-width: var(--headlineIconSize);
}

.headline .headlineLeftMenu.help {
    filter: var(--loginHelpButtonFilter);
}

.content {
    display: flex;
    flex-direction: row;
    margin-top: var(--loginContentMarginTop);
    background-color: var(--loginContentBackgroundColor);
    transition: background-color,margin-top 1s;
    border-top: var(--loginContentBorderTop);
}

.contentLeft {
    width: 63%;
    margin: 0% 1%;
}

#videoContainer {
    background-color: var(--loginVideoBackgroundColor);
    border-radius: var(--loginVideoBorderRadius);
    padding: 5px;
}

#videoContainer video {
    width: 98%;
    margin: 1%;
}

.contentRight {
    width: 33%;
    margin: 0% 1%;
    border-left: var(--loginContentRightBorderLeft);
    padding: var(--loginContentRightPadding);
}

#submitLogin {
    float: right;
    margin-right: 6px;
    margin-top: var(--loginSubmitButtonMarginTop);
    border-radius: var(--borderRoundingBottom);
}

#register {
    width: 100%;
    height: 50px;
    font-size: 20px;
    border-radius: var(--generalBorderRadius);
}

#description {
    background-color: var(--loginDescriptionBackgroundColor);
    border-radius: var(--loginDescriptionBorderRadius);
    padding: var(--loginDescriptionPadding);
    margin-top: 1em;
}

#description p,
#description a {
    font-size: 20px;
    text-align: justify;
    margin: 0;
}