@charset "UTF-8";
:root {
	/* --show-pos-borders: 1px solid !important; */
}

html {
	height: 100%;
	font-family: var(--crpp-font-family-body, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
	font-weight: 500;
	color: var(--color-main-text);
	min-width: var(--min-site-width);
	width: 100%;
}

.site {
	background-color: var(--color-main-background);
	height: 100%;
	width: 100%;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	font-size: 1em;
}
@media (min-width: 1850px) {
	.site {
		font-size: calc(1em + var(--w-dependent-h));
	}
}

.mainpage {
	position: relative; 
	min-width: var(--min-site-width);
	display: flex;
	/* height: 100%; */
	width: 100%;
	flex-direction: column;
	/* justify-content: space-between; */
	/* 
	align-items: center;
	*/
}

.container-header {
	position: relative;
	flex: 0 0 auto;
	width: 100%;
	height: var(--header-height);
	border: none;
	background-color: var(--color-primary);
	min-width: var(--min-site-width);
	margin: 0;
}

.container-main {
	flex: 1 0 auto;
	border: var(--show-pos-borders);
	border-color: green;
	/* display: block; */
	/* flex-direction: column;
	justify-content : center;
	align-items : stretch; */
	/* border: 2px solid blue; */
	/* height: calc(100% - var(--header-height)); */
	height: auto;
	/* height: calc(100% - 130px); */
	/* min-height: 500px; */
	position: relative;
	margin: 0;
	padding: 0;
	/* margin-top: auto; */
}

.container-footer {
	flex: 0 0 auto;
	/* border: 2px solid red; */
	width: 100%;
	height: 0px;
	margin: 0;
	position: relative;
	/* margin-top: auto; */
}

.navbar-brand {
	position: absolute;
	height: 33px;
	width: 318px;
	top: 57px;
	left: var(--pos-content-left);
	padding: 0;
	margin: 0;
}
/* Hauptbereich Inhalte (Beiträge) */
.crpp-content-book {
	background-color: var(--color-article-background) ;
	position: relative;
	height: 100%;
	width: 100%;
	/* min-height: 520px; */
	padding:0;
	margin: 0;
}

.crpp-content-article,	
.crpp-content-module,
.crpp-content-module > div {
	position: relative;
	height: 100%;
	width: 100%;
	padding:0;
	margin: 0;
}
