html {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    line-height: 1.5;
}
body {
    margin: 0px;
}
.loading {
    display: none;
}
header {
    height: 100px;
    width: 100%;
    background-color: white;
    border-top: 3px solid rgb(144, 81, 141);
    position: sticky;
    top: 0px;
    z-index: 1;
    transition-duration: 0.1s;
}
.KopfKlein {
    height: 50px;
    box-shadow: 0px 0px 3px grey;
    transition-duration: 0.3s;
}
.LogoBild {
    height: 50px;
    margin-top: 25px;
    transition-duration: 0.1s;
}
.LogoKlein {
    height: 25px;
    margin-top: 10px;
    transition-duration: 0.3s;
}
header .login {
    position: absolute;
    right: 0px;
    bottom: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
}
header .login:after {
    content: '';
    width: 0px;
    height: 1px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    background: #e5007d;
    transition: 300ms;
}
header .login:hover:after {
    width: 100%;
}
header .login:hover {
    color: #e5007d;
}
header .sprachwahl {
    position: absolute;
    right: 7em;
    bottom: 4px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
	border: 1px solid black;
    border-radius: 50%;
    padding: 4px;
}
header .sprachwahl:hover {
	background-color: #e5007d;
	color: white;
	border-color: white;
}
main {
    position: relative;
    margin-top: 0px;
    margin-bottom: 70px;
    min-height: calc(100vh - 100px - 120px - 73px); /* Bildschirmhöhe - Kopfzeile - Fußzeile - Margins des MainBereichs*/
    z-index: 0;
}
.TextUnsichtbar {
    opacity: 0;
    transition-delay: 0s;
    transition-duration: 0.5s;
}
.TextSichtbar {
    opacity: 1;
    transition-delay: 0s;
    transition-duration: 0.8s;
}
footer {
    background-color: rgb(144, 81, 141);
    position: relative;
    width: 100%;
    height: 120px;
    color: white;
    z-index: 0;
}
.ContentWrapper {
    position: relative;
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
footer .ContentWrapper div {
    display: inline-block;
    margin-right: 50px;
    margin-top: 40px;
    cursor: pointer;
}
footer .ContentWrapper div:last-of-type {
    position: absolute;
    right: 0px;
    margin-top: 40px;
    cursor: default;
}
.ausgegraut {
	color: #d9d9d9 !important;
	background-color: #efefef !important;
	border-color: #d9d9d9 !important;
	cursor: default;
}
.ausgegraut:hover {
	color: #d9d9d9 !important;
	background-color: #efefef !important;
	border-color: #d9d9d9 !important;
	cursor: default;
}
