:root {
	--text-color: #636363;
	--bold-color: #B69DC4;
	--kursiv-color: #89AADD;
	--strike-color: #F4ABCE;
	--underline-color: #A0AD8F;
	--titel-color: #9580BA;
	--line-color: #BFB1D3;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	background: url('../Image/Layout_V1/hg.png');
	background-attachment: fixed;
}

hr {
  border: 1px solid var(--line-color);
  border-radius: 0 5px 0 5px;
}

/*----------> TEXT <----------*/

p, td, .textPlace, .tablePlace, .textLine {
	color: var(--text-color);
	font-family: Verdana;
	font-size: 12px;
	padding: 2px;
}

b { color: var(--bold-color); }
i { color: var(--kursiv-color); }
u { color: var(--underline-color); }
s { color: var(--strike-color); }

/*----------> HEADING <----------*/

h1 {
	margin: 0px;
	padding: 0px;
	line-height: 0.75;
	color: var(--titel-color);
	font-size: 24px;
	font-family: "Akaya Kanadaka", system-ui;
	border-bottom: 2px solid var(--line-color);
}

h2 {
	margin: 0px;
	padding: 0px;
	color: var(--bold-color);
	font-size: 18px;
	font-family: "Akaya Kanadaka", system-ui;
}

.side h1 {
	font-weight: 300;
	line-height: 0.75;
	text-align: center;
	margin-bottom: 5px;
	border-bottom: 2px solid var(--line-color);
}

/*----------> LINKS <----------*/

.textPlace a, p a {
	color: #F79588;
	text-decoration: none;
	text-transform: uppercase;
}

.textPlace a:hover, p a:hover {
	color: #66CCA1;
	font-weight: bold;
}

a.blockLink {
	display: inline-block;
	min-width: 115px;
	color: white;
	font-family: Verdana;
	font-size: 11px;
	padding: 7px 25px;
	margin: 2px;
	text-decoration: none;
	text-align: center;
	background-color: #BFB1D3;
	border-radius: 5px;
	text-transform: initial;
}

a.blockLink:hover {
	background-color: #F0EEEE;
	color: var(--text-color);
}

.side a {
	display: block;
	color: white;
	font-family: Verdana;
	font-size: 11px;
	padding: 5px 10px;
	margin: 0px;
	text-decoration: none;
	text-align: center;
	background-color: #BFB1D3;
	border-radius: 5px;
}

.side a:hover {
	background-color: #F0EEEE;
	color: var(--text-color);
}

a.tab {
	border: 2px solid white;
	width: 25px;
	height: 25px;
	border-radius: 25px;
	padding: 5px 10px;
	margin: 0px;
	text-decoration: none;
}

a.tab:hover {
	border-color: #E0E0E0;
}

/*----------> CLASSES <----------*/

.bigimg {
	background-color: #aaa;
	width: 100%;
	padding: 20px;
}

.isMobile {
	display: block;
}

.showIcon {
	display: none !important;
}

/*----------> TABLE <----------*/

.main td {
	padding: 5px 10px;
}

.headLine {
	color: white;
	font-family: Verdana;
	font-size: 11px;
	background: var(--kursiv-color);
	text-transform: uppercase;
	border-radius: 5px;
	text-align: center;
	font-weight: bold;
	padding: 3px;
}

.titleLine {
	color: white;
	font-family: Verdana;
	font-size: 11px;
	background: var(--strike-color);
	text-transform: uppercase;
	border-radius: 5px;
	text-align: center;
	font-weight: bold;
	padding: 3px;
}

.textLine {
	font-family: Verdana;
	font-size: 11px;
	background: white;
	border-radius: 5px;
	padding: 3px;
}

/*----------> FLEX <----------*/

.flex {
	display: flex;
	justify-content: center;
	align-self: auto;
	gap: 10px;
	margin: 10px 0 10px 0;
	flex-wrap: wrap;
}

.leftFlex {
	justify-content: left;
}

.vertiFlex {
	justify-content: center;
	align-self: auto;
	flex-direction: column;
	gap: 5px;
}

.schuelerPreview {
	width: 200px;
	height: 200px;
	background-color: white;
	background-position-x: center;
	border: 3px solid white;
	border-radius: 15px;
}

.shopItem {
	width: 95px;
	height: 95px;
	background-color: white;
	background-repeat: no-repeat;
	background-position-x: center;
	background-position-y: center;
	border-radius: 5px;
	margin: 5px 0;
}

.textPlace {
	width: calc(100% - 210px);
	align-content: center;
}

.tablePlace {
	width: calc(100% - 263px);
	align-content: center;
	background: green;
}

.profilPicFix {
	display: flex;
	justify-content: center;
	align-items: end;
}

/*----------> LAYOUT <----------*/

.wrapper {
	position: relative;
	margin: 0 auto;
	margin-top: 35px;
	margin-bottom: 35px;
	width: 1250px;
}

.header {
	padding: 125px;
	text-align: center;
	background: url('../Image/Layout_V1/header.png');
	background-size: cover;
	background-position-y: center;
	background-position-x: center;
	color: white;
	border-radius: 30px 30px 0px 0px;
}

.bar {
	display: flex;
	background-color: #333333;
	height: 5px;
}

.row {  
	display: flex;
	flex-wrap: wrap;
}

.side {
	display: block;
	float: left;
	width: 275px;
	background: #E0E0E0;
	padding: 20px;
}

.main {
	display: block;
	float: right;
	width: calc(100% - 275px);
	background: #F0EEEE;
	padding: 20px;
}

.footer {
	padding: 10px;
	text-align: center;
	background: #D1CDE5;
	border-radius: 0px 0px 30px 30px;
}

/*----------> RESPONSIV <----------*/

@media (max-width: 1350px) {
	.wrapper {
		width: 100%;
		margin: 0px;
	}
	
	.header, .footer {
		border-radius: 0px;
	}
}

@media (max-width: 1200px) {
	a.blockLink{
		margin: 2px;
	}
}

@media (max-width: 925px) {
	.row, .bar {   
		flex-direction: column;
	}
	
	.side, .main {
		display: block;
		width: 100%;
	}
	
	.isMobile {
		display: none;
		margin-top: 15px;
	}
	
	.showIcon {
		display: block !important;
	}
}

@media (max-width: 805px) {
	.profilWidthFix {
		width: 100%;
	}
}

@media (max-width: 539px) {	
	.leftFlex {
		align-items: center;
		flex-direction: column;
	}
	
	.profilFlex {
		justify-content: left;
		flex-direction: unset !important;
	}
	
	.textPlace {
		width: 100%;
	}
	
	.profilHalfWidth {
		width: 48% !important;
	}
	
	.profilSmallestFix {
		width: 98% !important;
	}
}

/*----------> EFFECT SETTINGS <----------*/
.side a:hover, a.blockLink:hover {
	-webkit-transition: all 0.6s ease-in; /* Firefox */
	-moz-transition: all 0.6s ease-in; /* WebKit */
	-o-transition: all 0.6s ease-in; /* Opera */
	-ms-transition: all 0.6s ease-in; /* IE */
	transition: all 0.6s ease-in; /* Standard */
}