@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;
}

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


html {
	margin: 0 auto;
	width: 100%;
	height: 100%;
	}
	
body {
	margin: 0 auto;
	background: var(--background);
	width: 100%;
	height: 100%;
	-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;
}

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

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

img {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 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 {
	padding: 10px 10px 10px 10px;
}
.flex-container-box h3 {
	padding: 10px 10px 10px 0;
}
.flex-container-box p {
	padding: 10px 10px 10px 0;
}

.flex-container-box img {
	padding: 0 10px 0 10px;
}

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

.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 var(--border);
	min-width: 320px;
	max-width: 380px;
	width: 100%;
	margin: 10px;
}

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



/* ----------------------------------------------------------------------------- *
 *                            Limiter & Positions                                *
 * ----------------------------------------------------------------------------- */

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

.limiter_1000 {
	margin: 0 auto;
	max-width: 1000px;
	}

.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;}
.left {text-align: left;}


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

.sign-before::before {
  content:'\00A0→';
  color: var(--third);
}

.sign-after::after {
  content:'\00A0→';
  color: var(--third);
}

hr {
 	background: var(--container);
 	border: none;
 	color: var(--container);
 	height: 1px;
 	width: 100%;
}

.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);
}

.clear { clear: both;
	height: 120px;}
	
.decoration {
	text-decoration: underline;
}
