@charset "utf-8";
/* CSS Document */

 /* RESET
 * Reference: http://meyerweb.com/eric/tools/css/reset/
 */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}

/* ----------------------------------------------------------------------------- *
 *                           Style by www.a-krueger.eu                           *
 * ----------------------------------------------------------------------------- */

*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
	margin: 0;
  	padding: 0;
}

.noSelect {
    -webkit-tap-highlight-color: transparent; /* verhindert auf touch-screen den blauen Hintergrund*/
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.noSelect:focus {
    outline: none !important;
}

* {
    /* outline: 1px solid red;  Markiere alle Elemente für visuelle Debugging-Zwecke */
}

/* ----------------------------------------------------------------------------- *
 *                                 Generalités                                   *
 * ----------------------------------------------------------------------------- */


html {
	margin: 0 auto;
	width: 100%;
	height: auto;
	}
	
body {
	margin: 0 auto;
	background: var(--background);
	width: 100%;
	height: auto;
	-webkit-tap-highlight-color: transparent; /* verhindert auf touch-screen den blauen Hintergrund*/
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
	}

body:focus {
    outline: none !important;
}

section {
	margin: 0 auto;
	width: 100%;
	height: auto;
	}

img {
	width: 100%;
	height: auto;
	padding: 0;
	margin: 0;
}

/* ----------------------------------------------------------------------------- *
 *                             General Flexboxes                                 *
 * ----------------------------------------------------------------------------- */

.flex-container-row {
	margin: 0 auto;
	max-width: 100%;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-around;
	gap: 10px;
	}

.flex-container-column {
	margin: 0 auto;
	max-width: 100%;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-direction: column;
	}

.flex-container-box {
	align-content: space-around;
	margin: 0 auto;
	padding: 10px;
}	

.flex-container-box h2, .flex-container-box h3, .flex-container-box p {
	padding: 10px;
}

.flex-item-box {
	align-content: space-between;
	min-height: 100px;
	padding-bottom: 10px;
	padding-left: 20px;
	padding-right: 20px;
}

.flex-item-1 {
	flex: 1;
}

.flex-item-2 {
	flex: 2;
}

.flex-item-3 {
	margin: 0;
	padding: 0;
	flex: 3;
	}

.order-1 {
	order: 1;
	}

.order-2 {
	order: 2;
	}

.justify-content-center {
	justify-content: center;
}

.justify-content-start {
	justify-content: flex-start;
}

.justify-content-end {
	justify-content:flex-end;
}

.align-content-space-around {
  align-content: space-around;
}

.align-content-start {
	align-content:flex-start;
}

.align-content-end {
	align-content:flex-end;
}

.align-content-center {
	align-content: center;
}

.align-items-stretch {
	align-items: stretch;
}

.align-items-center {
	align-items: center;
}

.flex-container-stretch {
	display: flex;
	flex-direction: column;
	border: 1px solid #d9d9d9;
	min-width: 320px;
	max-width: 380px;
	width: 100%;
	margin: 10px;
}

.last-item {
	margin-top: auto;
}


/* ----------------------------------------------------------------------------- *
 *                              Limiter & Margins                                *
 * ----------------------------------------------------------------------------- */

.limiter_1200 {
	margin: 0 auto;
	max-width: 1200px;
	}

.limiter_1024 {
	margin: 0 auto;
	max-width: 1024px;
	}

.limiter_900 {
	margin: 0 auto;
	max-width: 900px;
	}

.limiter_800 {
	margin: 0 auto;
	max-width: 800px;
	}

.limiter_600 {
	margin: 0 auto;
	max-width: 600px;
	}

.limiter_400 {
	margin: 0 auto;
	max-width: 400px;
	}

.top_25 {
	margin-top: 25px;
	}

.top_50 {
	margin-top: 50px;
	}

.top_80 {
	margin-top: 80px;
	}

.top_100 {
	margin-top: 100px;
	}

.top_150 {
	margin-top: 150px;
	}

.bottom_50 {
	margin-bottom: 50px;
	}

.margin_10 {
	margin: 10px;
}

ul li.spacer {
  margin: 15px 0 15px 0;/* fügt einen Abstand ein */
  list-style: none;
}

/* ----------------------------------------------------------------------------- *
 *                             Positions & Display                               *
 * ----------------------------------------------------------------------------- */

.relative {
	position: relative;
	width: 100%;
	height: 100%;
}
.absolute-center-center {
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.absolute-center-buttom {
	width: 100%;
	position: absolute;
	bottom: 0%;
  	left: 50%;
  	transform: translate(-50%, -0%);
}

.center {text-align: center;}
.justify {text-align: justify;}
.right {text-align: right; padding-right: 10px;}
.left {text-align: left; padding-left: 10px;}


/* ----------------------------------------------------------------------------- *
 *                                Décoration                                     *
 * ----------------------------------------------------------------------------- */

.sign-before::before {
  content:'\00A0→';
}

.sign-after::after {
  content:'\00A0→';
}

.sign-plus:after {
	content: '\2795';
	font-size: 10px;
	float: right;
	margin-left: 5px;
}

.sign-plus.active:after {
	content: "\2796";
}

hr {
 	background: #aaaaaa;
 	border: none;
 	color: #aaaaaa;
 	height: 1px;
 	width: 100%;
}

i {
    font-style: italic;
}

.shadow {box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5), 0 6px 10px 0 rgba(0, 0, 0, 0.5);}
.shadow-light {box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);}

.shadow-line {
  position: relative;
  height: 10px;
  width:100%;
  margin:0 auto;
  display:block;
}
.shadow-line:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  border-radius: 50% / 20px; 
  box-shadow: rgba(0, 0, 0, 0.3) 0 5px 10px;
  clip: rect(20px, auto, 50px, 0);
}

.praise-line {
	border: 1px solid;
	border-image-slice: 1;
	border-image-source: linear-gradient(to right, transparent 0, rgba(0, 0, 0, 0.25) 13%, transparent 100%);
	border-top: 0;
	border-right: 0;
	border-left: 0;
	margin-bottom: 20px;
}

.horizontal-line {
  overflow: hidden;
  text-align: center;
}

.horizontal-line:before,
.horizontal-line:after {
  background-color: #1a1a1a;
  content: "";
  display: inline-block;
  height: 1px;
  position: relative;
  vertical-align: middle;
  width: 50%;
}

.horizontal-line:before {
  right: 0.5em;
  margin-left: -50%;
}

.horizontal-line:after {
  left: 0.5em;
  margin-right: -50%;
}

.headline-hr {
    overflow: hidden;
}

.headline-hr:before, .headline-hr:after {
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    margin: 0 .625em 0 -100%;
}
.headline-hr:before, .headline-hr:after {
    clear: both;
    height: 0;
    overflow: visible;
    margin: 2.25em 0;
    border: 0;
    border-top: 1px solid #b2b9c4;
}
.headline-hr:after {
    content: "";
    margin: 0 -100% 0 .625em;
}

.clear { clear: both;
	height: 1px;}

input {
    font-style: normal;
    text-rendering: auto;
    color: light-dark(rgb(118, 118, 118), rgb(133, 133, 133));
    letter-spacing: normal;
    word-spacing: normal;
    line-height: normal;
    text-transform: none;
    text-indent: 0px;
    text-shadow: none;
    display: inline-block;
    text-align: start;
    appearance: auto;
    -webkit-rtl-ordering: logical;
    cursor: text;
    background-color: field;
    margin: 0em;
    padding: 5px 0px;
	border: none;
    border-width: 0;
    border-style: none;
    border-color: none;
    border-image:  none;
    padding-block: 8px;
    padding-inline: 2px;
}

