
#profile {
	background: #cdcdcd;
	width: 890px;
	height: 980px;
	padding-top: 20px;
	border: 8px solid #bdbdbd;
}

.profilehead {
	background: #b2b2b2;
	width: 780px;
	height: 320px;
	margin-left: auto;
	margin-right: auto;
}

.profileavatar {
	background: transparent;
	width: 250px;
	max-height: 300px;
	float: left;
	margin-top: 7px;
	margin-left: 8px;
}

.profileavatar img {
	width: 250px;
	height: 300px;
	border-radius: 15%;
	box-shadow: 0px 6px 5px #1b2029;
}

.profilestats {
	background: #b2b2b2;
	width: 480px;
	float: left;
	height: 175px;
	margin-top: 30px;
	margin-left: 15px;
	vertical-align: middle;
	border-top: 2px dotted #77acb9;
}

.profilename {
	background: #b2b2b2;
	width: 380px;
	height: 55px;
	margin-left: auto;
	margin-right: auto;
	line-height: 55px;
	text-align: center;
	margin-top: 12px;
	vertical-align: middle;
	text-shadow: 3px 3px 4px #1b2029;
	
	font-family: 'Anton', sans-serif;
	font-size: 40px;
}

.profileauthor {
	background: #b2b2b2;
	width: 430px;
	height: 40px;
	margin-left: auto;
	margin-right: auto;
	line-height: 35px;
	text-align: center;
	margin-top: 10px;
	vertical-align: middle;
	text-transform: uppercase;
	
	font-size: 11px;
	font-style: italic;
}

.profilestatssmall {
	background: #b2b2b2;
	width: 430px;
	height: 40px;
	margin-left: auto;
	margin-right: auto;
	line-height: 35px;
	text-align: center;
	margin-top: 10px;
	vertical-align: middle;
	
	font-size: 20px;
}

.profileinfos {
	width: 130px;
	color: #f7f7f7;
	height: 20px;
	margin-top: 10px;
	float: left;
	background-color: rgba(73, 78, 87, 0.6);
	text-align: center;
	margin-left: 10px;
	line-height: 20px;
	text-transform: uppercase;
	box-shadow: 0px 2px 3px #1b2029;
	border-radius: 5px;
	
	font-family: 'Open Sans', sans-serif;
	font-size: 10px;
}

.statusbox {
	background: #b2b2b2;
	width: 480px;
	float: left;
	height: 60px;
	margin-top: 5px;
	margin-left: 15px;
	vertical-align: middle;
	border-bottom: 2px dotted #77acb9;
}

.statustext {
	background: #b2b2b2;
	width: 350px;
	height: 40px;
	margin-left: auto;
	margin-right: auto;
	line-height: 35px;
	text-align: center;
	vertical-align: middle;
	
	font-family: 'Amatic SC', cursive;
	font-size: 25px;
}

.profilecontent {
	width: 780px;
	height: 620px;
	background-color: #ffffff;
	margin-left: auto;
	margin-right: auto;
	margin-top: -15px;
}

.infoszwei {
    width: 220px;
    height: 300px;
    float:left;
    background-color: pink;
    margin-left: 10px;
}

.infoszweitext {
    width: 200px;
    height: 80px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5px;
    background-color:powderblue;
    text-align: center;
    vertical-align: middle;
}

.infoszweiicon {
    width: 220px;
    height: 120px;
    background-color: rebeccapurple;
    margin-top: 5px;
}

.profiletabs {
	background: #ffffff;
	width: 730px;
	height: 100px;
}

.tabs input[type=radio] {
         position: absolute;
          display: none; /* blendet die Radio-Punkte aus, die wir nicht brauchen */
}

.tabs {
	width: 700px;
	float: none;
	list-style: none;
	position: relative;
	padding: 0;
	margin-left: 5px;
	height: 600px;
}

.tabs li{
       float: left; /* entweder rechts oder links */
}

.tabs label {
	width: 100px;
	color: #77acb9;
	display: block;
	background-color: #ebebeb;
	cursor: pointer;
	position: relative;
	top: 0;
	margin-top: 10px;
	margin-right: 10px;
	height: 25px;
	line-height: 25px;
	text-align: center;
	vertical-align: middle;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	border-radius: 5px;
	box-shadow: 0px 2px 3px #adadad;
	
	font-family: 'Amatic SC', cursive;
	font-size: 20px;
	font-weight: bold;
}

.tabs label:hover {
	background: #f5f5f5;
	color: #77acb9;
	top: 0;
	
	text-decoration: underline;
	font-style: italic;
}

[type=radio]:checked ~ label {
	background: #ebebeb;
	color: #77acb9;
	top: 0;
	border-radius: 5px;
	box-shadow: 0px 2px 3px #adadad;
	
	text-decoration: underline;
}

[type=radio]:checked ~ label ~ .tab-content {
         display: block;
}

.tab-content{
 /* Hier wird des ganz normale Inhalt des Tabs definiert wie Schrift, Farbe, Zeilenhöhe etc */
    z-index: 2;
    display: none;
    text-align: left;
    width: 100%;
    height: 500px;
    overflow: auto; /*Höhe (muss ca 50px kleiner sein als bei .tabs vorgegeben und Overflow sollten definiert werden, da ansonsten überschüssiger Text verschluckt wird */
    font-size: 12px;
    padding: 0px;
    color: #000;
    background: #ffffff;
    position: absolute;
    top: 80px;
    left: 0;
    box-sizing: border-box;
    -webkit-animation-duration: 0.5s;
    -o-animation-duration: 0.5s;
    -moz-animation-duration: 0.5s;
    animation-duration: 0.5s;
}

.charazitat {
	width: 680px;
	color: #4b4043;
	height: 60px;
	margin-left: 0px;
	padding-top: 20px;
	text-align: center;
	margin-bottom: 10px;
	border: 2px dotted #77acb9;
	box-sizing: border-box;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-top: 20px;
	
	font-family: 'Open Sans', sans-serif;
	font-size: 10px;
	font-style: italic;
	font-weight: bold;
}

.charainfosbox {
	background: #cdcdcd;
	width: 280px;
	height: 360px;
	vertical-align: middle;
	float: left;
	border-radius: 10px;
	box-shadow: 0px 3px 5px #1b2029;
	
	font-family: 'Open Sans', sans-serif;
	font-size: 11px;
}

.charainfos {
	background: #cdcdcd;
	width: 210px;
	color: #6e6e6e;
	height: 130px;
	margin-left: 25px;
	margin-top: px;
	padding: 10px;
	padding-top: 50px;
	text-align: center;
	float: left;
	line-height: 25px;
	
	font-family: 'Open Sans', sans-serif;
	font-size: 12px;
}

.charaktertext {
	background: #ebebeb;
	width: 370px;
	color: #4b4043;
	float: left;
	height: 110px;
	margin-left: 10px;
	margin-top: 5px;
	overflow: auto;
	border-radius: 5px;
	box-shadow: 0px 2px 3px #adadad;
	padding: 10px;
	text-align: justify;
	
	font-family: 'Open Sans', sans-serif;
	font-size: 11px;
}

.wusstestdudass {
	background: #ebebeb;
	width: 370px;
	color: #4b4043;
	float: left;
	height: 140px;
	margin-left: 10px;
	margin-top: 5px;
	overflow: auto;
	border-radius: 5px;
	box-shadow: 0px 2px 3px #adadad;
	padding: 10px;
	text-align: justify;
	
	font-family: 'Open Sans', sans-serif;
	font-size: 11px;
}

.wusstestdudasshead {
	background: #ffffff;
	width: 380px;
	color: #77acb9;
	float: left;
	height: 40px;
	margin-left: 10px;
	margin-top: 10px;
	overflow: auto;
	padding: 5px;
	
	font-family: 'Amatic SC', cursive;
	font-size: 28px;
	font-style: bold;
}

.relas {
    height: 125px;
    background-color: violet;
    margin-bottom: 7px;
}

.ipszenen {
    height: 180px;
    background-color: violet;
    margin-bottom:15px;
}

.charaktertext::-webkit-scrollbar {
	background: #f5f5f5;
	width: 8px;
}

.charaktertext::-webkit-scrollbar-thumb {
	background: #b1b1b1;
	height: 10px;
}

.charaktertext::-webkit-scrollbar-track {
	background-color: #ebebeb;
	opacity: 0.8;
}

.wusstestdudass::-webkit-scrollbar {
	background: #f5f5f5;
	width: 8px;
}

.wusstestdudass::-webkit-scrollbar-thumb {
	background: #b1b1b1;
	height: 10px;
}

.wusstestdudass::-webkit-scrollbar-track {
	background-color: #ebebeb;
	opacity: 0.8;
}

.ipt_bottom {
	border-bottom: 1px dotted #4b4043;
	width: 60%;
	margin-top: 10px;
}

.ipt_date {
	font-family: 'Open Sans', sans-serif;
    font-size: 11px;
	color: #4b4043;
}

.ipt_players {
	font-family: 'Open Sans', sans-serif;
    font-size: 11px;
	color: #4b4043;
}

.ipt_subject {
	font-family: 'Open Sans', sans-serif;
    font-size: 11px;
	color: #4b4043;
	margin-left: -15px;
}

