@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
	--primary: #d66a5c;
	--primary: #3397C1;
	--primalt: #cd5c4f;
	--primalt: #297B9E;
}

body, p, li, label, h1, h2, h3, #wrapper {
	font-family: 'Inter', sans-serif;
}

body {
	background: #f7f7f7;
}

a {
	text-decoration: none;
}


.btn.btn-primary {
	background: var(--primary);
	border-color: var(--primalt);
}
.btn.btn-primary:hover {
	background: var(--primalt);
}

.form-floating > label {
	color: #919191;
}





body.loginpage {
	background-color: #313131;
}
body.loginpage #wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
}
#login {
	padding: 30px;
}





aside {
	position: fixed;
	top: 0;
	left: 0;
	width: 250px;
	height: 100vh;
	background: #313131;
	text-align: center;
	padding-top: 30px;
}

aside img {
	width: 100%;
	max-width: 120px;
}
aside p.sublogo {
	color: #f7f7f7;
	font-size: 13px;
	font-style: italic;
}


aside ul#menu {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: left;
}
aside ul#menu li {

}
aside ul#menu li a {
	background: #414141;
	display: block;
	padding: 10px 20px;
	border-bottom: solid 1px #313131;
	text-decoration: none;
	color: #f7f7f7;
	font-size: 15px;
	font-weight: 300;
}
aside ul#menu li a svg {
	fill: #f1f1f1;
	height: 20px;
	width: 20px;
	margin-right: 10px;
}
aside ul#menu li a:hover {
	background: #313131;
	transition: all 300ms ease;
}

aside ul#menu li.menuitem-admin a {
	background: var(--primary);
}
aside ul#menu li.menuitem-admin a:hover {
	background: var(--primalt);
}

aside .userinfo {
	position: absolute;
	bottom: 0;
	left: 0;
	background: #212121;
	width: 100%;
	padding: 12px;
	text-align: left;
}
aside .userinfo img {
	float: left;
	width: 42px;
	height: auto;
}
aside .userinfo p {
	color: #fff;
	margin-bottom: 0;
	margin-left: 54px;
	font-size: 15px;
	line-height: 1;
}
aside .userinfo p.name {
	padding-top: 6px;
	text-transform: uppercase;
}
aside .userinfo p.mail {
	color: #cdcdcd;
	font-size: 13px;
}


.partnername a {
	display: block;
	text-align: center;
	color: #fff;
	font-size: 13px;
	padding: 10px;
	color: #999;
}






main {
	margin-left: 250px;
}

main #topline {
	background: var(--primary);
	height: 5px;
}

#header {
	display: flex;
	justify-content: space-between;
	padding: 12px 20px;
	background: #fff;
	border-bottom: solid 1px var(--primary);
	border-bottom: solid 1px #eaeaea;
}
#header .heading h1 {
	margin: 0;
	padding: 0;
	font-size: 32px;
}


#content {
	padding: 20px;
}


#content .boxline {
	display: flex;
	justify-content: space-between;
	margin: -10px;
	margin-bottom: 30px;
}
#content .boxline .box {
	background: var(--primary);
	width: 100%;
	margin: 10px;
	color: #fff;
	padding: 10px;
}
#content .boxline .box .inner {
	border: dashed 1px rgba(255,255,255,0.35);
	padding: 10px 20px;
}
#content .boxline .box h2 {
	text-align: right;
	font-size: 42px;
}
#content .boxline .box p.label {
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 300;
}

#content .graph {
	margin-bottom: 30px;
}




#content .textblock {
	background: #FBD156;
	color: #212529;
	padding: 30px;
	padding-bottom: 20px;
	margin-bottom: 20px;
}



.box {
	background: #fff;
	border: solid 1px #ddd;
	margin-bottom: 30px;
}
.box .box-intro {
	font-size: 13px;
	padding: 14px;
	background: #f7f7f7;
	border-bottom: solid 1px #ddd;
}
.box .box-title {
	background: var(--primary);
	color: #fff;
	padding: 10px 14px;
}
.box .box-content table {
	margin: 0;
}
.box .box-content form {

}
.box .box-youtube iframe {
	width: 100%;
	height: 100%;
	aspect-ratio: 16 / 9;
}

.box .logo-grid {
	margin: -1%;
}
.box .logo-grid .logo {
	float: left;
	width: calc(88% / 6);
	margin: 1%;
}
.box .logo-grid .logo img {
	width: 100%;
	height: 150px;
	object-fit: contain;
	padding: 30px;
}

.box .image-grid {
	padding: 10px;
}
.box .image-grid .image {
	float: left;
	width: calc(100% / 4);
	padding: 10px;
}
.box .image-grid .image img {
	width: 100%;
	height: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}