html, body{
    height:100%;
    margin:0;
}
body{
	display:flex;
    flex-direction:column;
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Ubuntu', sans-serif;
}

*,
*::before,
*::after{
    box-sizing:border-box;
}

main h1,main h2,main h3,main h4,main h5,main h6{
	padding-top:30px;
	clear: both;
}

main h2{
  font-size:26px;
  margin-top:30px;
  margin-bottom:50px;
}

.mobile {
	display:none !important;
}
/* header Bereich */

.top-bar{
    width:100%;
    background:#000;
    display:flex;
    align-items:center;
    justify-content:center;
}

.top-bar-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    width:100%;
    padding:0 0px;
}

.top-bar-right{
    display:flex;
    align-items:center;
	border:0px solid #ffffff;
    
}

.search-box{
    display:flex;
    align-items:center;
	margin-right:5px;
}

.search-input{
    width:110px;
    height:34px;
    padding:0 6px;
    border:none;
    outline:none;
    border-radius:4px;
    background:#efefef;
    color:orange;
    font-size:22px;
    transition:width 0.35s ease, box-shadow 0.25s ease;
}

.search-input:focus,
.search-input:hover{
    width:320px;
    box-shadow:0 0 0 2px rgba(43,132,173,0.35);
}

.headernavi-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:100px;
    height:50px;
    padding:0 18px;
    color:#ffffff;
    text-decoration:none;
    font-size:18px;
    font-weight:700;
}

.headernavi-button:hover{
    background:orange;
}


.logo-box{
    display:flex;
    align-items:center;
}

.logo-left{
    display:flex;
    align-items:center;
}

.logo-left img{
    max-height:50px;
    width:auto;
    display:block;
}

.logo-right{
    margin-left:25px;
    font-size:70px;
    font-weight:800;
    display:flex;
    align-items:center;
}

.home-button{
    display:flex;
    align-items:center;
    height:50px;
    text-decoration:none;
    padding-left:15px;
}

.home-button .logo-box{
    display:flex;
    align-items:center;
}

.home-button .logo-left img{
    height:32px;
    width:auto;
}

.home-button .logo-right{
    font-size:24px;
    margin-left:10px;
    display:flex;
    align-items:center;
}

.text-white{
    color:#ffffff;
}

.text-blue{
    color:#2b84ad;
}

.text-de{
    color:#ffffff;
    font-weight:300;
    letter-spacing:-1px;
}
/* titlebild */

.title-image{
    width:100%;
    position:relative;
    overflow:hidden;
    line-height:0;
}

.title-image img{
    width:100%;
    height:auto;
    display:block;
}

.title-image::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    box-shadow:
        inset 0 40px 40px rgba(0,0,0,0.6),
        inset 0 -40px 40px rgba(0,0,0,0.6);
    pointer-events:none;
}

/* main content / aufteilung der startseite */

.site{
    max-width:1000px;
	height:100%;
    width:100%;
    margin:20px auto 0 auto;
    display:flex;
    box-sizing:border-box;
}

.main-content{
    flex:1;
    padding:20px;
    box-sizing:border-box;
	border:0px solid;
	display:flex;
    justify-content:center;   /* horizontal */
    align-items:center;       /* vertikal */
}

.special-content{
    width:350px;
    padding:0px;
    box-sizing:border-box;
}

/* special content */

.side-box{
    width:100%;
    margin-bottom:20px;
    box-sizing:border-box;
}

.side-box-title{
    display:block;
    background:#3a3a3a;
    color:#ffffff;
    padding:10px;
    font-weight:bold;
    text-decoration:none;
    box-sizing:border-box;
}

.side-box-title-link{
    background:#3a3a3a;
}

.side-box-title-link:hover{
    background:#d97706;
    color:#ffffff;
}

.side-box-links{
    background:#e5e5e5;
    box-sizing:border-box;
}

.side-box-links a{
    display:block;
    padding:10px;
    text-decoration:none;
    color:#333333;
    border-bottom:1px solid #d0d0d0;
    box-sizing:border-box;
}

.side-box-links a:hover{
    background:orange;
    color:#ffffff;
}

/* login startseite */

.side-box-login{
    background:#e5e5e5;
    padding:15px;
    box-sizing:border-box;
}

.side-box-login label{
    display:block;
    font-size:14px;
    margin-bottom:5px;
}

.side-box-login input{
    width:100%;
    padding:6px;
    margin-bottom:12px;
    border:1px solid #bbb;
    box-sizing:border-box;
    background:#ffffff !important;
    color:#00388a !important;
    -webkit-appearance:none;
    appearance:none;
}

.side-box-login input:focus{
    background:#ffffff;
    border:1px solid orange;
    outline:none;
}

.side-box-login input:-webkit-autofill,
.side-box-login input:-webkit-autofill:hover,
.side-box-login input:-webkit-autofill:focus,
.side-box-login input:-webkit-autofill:active{
    -webkit-box-shadow:0 0 0 1000px #ffffff inset !important;
    -webkit-text-fill-color:#00388a !important;
    border:1px solid #bbb !important;
}

.login-button{
    text-align:right;
}

.login-button button{
    background:#3a3a3a;
    color:white;
    border:none;
    padding:6px 14px;
    cursor:pointer;
}

.login-button button:hover{
    background:orange;
}

/* formular style */

.form-table{
	box-sizing:border-box;
	margin-bottom:150px;
}

.form-row{
	width:100%;
	display:flex;
	align-items:center;
	margin-bottom:12px;
	box-sizing:border-box;
	background:#f5f5f5;
	border:1px solid #c0c0c0;
}

.form-row-button{
	background:#ffffff;
	border:0px;
}

.form-row-top{
	align-items:flex-start;
}

.form-label-top{
	padding-top:8px;
}

.form-col-left{
	width:280px;
	min-width:280px;
	box-sizing:border-box;
	padding-right:15px;
	padding-left:15px;
	text-align:left;
}

.form-col-right{
	flex:1;
	min-width:0;
	box-sizing:border-box;
	padding:3px;
}

.form-col-right input,
.form-col-right textarea{
	display:block;
	width:100%;
	box-sizing:border-box;
	padding:6px;
	margin:0;
	border:0;
	font-size:20px;
	font-family:inherit;
	background:#ffffff;
	resize:none;
}

.form-col-right textarea{
	min-height:180px;
	resize:none;
}

.form-col-right select{
	display:block;
	width:100%;
	box-sizing:border-box;
	padding:6px;
	margin:0;
	border:0px solid #999;
	font-size:20px;
	font-family:inherit;
	background:#ffffff;
	cursor:pointer;
}

.form-col-right input:focus,
.form-col-right textarea:focus,
.form-col-right select:focus{
	outline:none;
	border:0px solid orange;
	background:#fff;
	color:orange;
}

.form-col-full{
	width:100%;
	box-sizing:border-box;
	display:flex;
	justify-content:space-between;
}

.right-aligned{
	display:flex;
	justify-content:right;
}

.form-checkbox{
	display:block;
	line-height:1.6;
}

.form-checkbox input{
	margin-right:8px;
}

.form-buttons{
	margin-top:20px;
}

.form-btn{
	width:48%;
	padding:10px;
	border:1px solid #999;
	background:#eee;
	cursor:pointer;
	font-size:16px;
}

.form-btn:hover{
	background:#e5e5e5;
}

/* image box */
.image-box{
	border:1px solid #bfbfbf;
	padding:6px;
	box-shadow:0 3px 8px rgba(0,0,0,0.2);
	box-sizing:border-box;
	margin:5px 0;
}

.image-box img{
	width:100%;
	height:auto;
	display:block;
}
.login-error{
    color: #b30000;
    background:#ffe5e5;
    border:1px solid #ffb3b3;
    padding:10px;
    margin-bottom:10px;
}
