﻿/**************************************************************************************/
/*
/*		Designed by 'AS Designing'
/*		Web: http://www.asdesigning.com
/*		Web: http://www.astemplates.com
/*		License: GNU/GPL
/*
/**************************************************************************************/

.body-terms #component .page_header h2,
.body-terms #component .category_title h2,
.body-terms #component h2.profile_item_title
{
	text-align: left;
}

/**************************************************************************************/
/*
/*		Eigene css-Optimierungen by Thorsten Schippmann
/*
/**************************************************************************************/
/* ---- Erweiterung: Orange Schaltfläche/Button ------------------------------------- */

.eedButton {
	-moz-box-shadow:inset 0px 1px 1px 0px #fff6af;
	-webkit-box-shadow:inset 0px 1px 1px 0px #fff6af;
	box-shadow:inset 0px 1px 1px 0px #fff6af;
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #ffba66), color-stop(1, #fd6400));
	background:-moz-linear-gradient(top, #ffba66 5%, #fd6400 100%);
	background:-webkit-linear-gradient(top, #ffba66 5%, #fd6400 100%);
	background:-o-linear-gradient(top, #ffba66 5%, #fd6400 100%);
	background:-ms-linear-gradient(top, #ffba66 5%, #fd6400 100%);
	background:linear-gradient(to bottom, #ffba66 5%, #fd6400 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffba66', endColorstr='#fd6400',GradientType=0);
	background-color:#ffba66;
	border:1px solid #ffaa22;
	display:inline-block;
	cursor:pointer;
	color:#333333;
	font-family:Tahoma, Geneva, sans-serif, Arial;
	font-size:1em;
	padding:4px 24px;
	text-transform:uppercase;
	text-decoration:none;
	text-shadow:0px 1px 0px #ffee66;
}
.eedButton:hover {
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #fd6400), color-stop(1, #ffba66));
	background:-moz-linear-gradient(top, #fd6400 5%, #ffba66 100%);
	background:-webkit-linear-gradient(top, #fd6400 5%, #ffba66 100%);
	background:-o-linear-gradient(top, #fd6400 5%, #ffba66 100%);
	background:-ms-linear-gradient(top, #fd6400 5%, #ffba66 100%);
	background:linear-gradient(to bottom, #fd6400 5%, #ffba66 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fd6400', endColorstr='#ffba66',GradientType=0);
	background-color:#fd6400;
}
.eedButton:active {
	position:relative;
	top:1px;
}
/* ---- Button Erweiterung mit innenliegender Grafik -------------------------------- */
.eedBtnPDF {
	background-size: 18px 18px;
	background-position: 3px center;
	background-image: url('/images/dingbats/480-file-pdf.png');
	background-repeat: no-repeat;
}
.eedBtnPDF:hover {
	background-size: 18px 18px;
	background-position: 3px center;
	background-image: url('/images/dingbats/480-file-pdf.png');
	background-repeat: no-repeat;
}

/* ---- Erweiterung: Tabellenlayout ------------------------------------------------- */
/* ---- im Beitrag "Energieberatung im Gemeinwesen" --------------------------------- */

.eedTable {
	margin: 20px auto 50px auto;
	width: 90%;
}
.eedTd {
	font: 100% Verdana, Geneva, Tahoma, sans-serif;
	padding: 5px 10px 5px 10px;
	text-align: center;
	vertical-align: middle;
}
.eedTable,
.eedTh,
.eedTd {
	background: #c8c8c8;
	border: 1px solid;
	border-collapse: collapse;
}

/* ---- Erweiterung: Schriftgrößeneinstellungen ------------------------------------- */
/* ---- alle Beiträge --------------------------------------------------------------- */

.txtshadow {
	color: #fd6400;
	text-shadow: 2px 2px 2px #c8c8c8;
}
.txtgr1 {
	font-size: 1.5em;
	line-height: 1.5em;
	text-align: justify;
}
.txtgr2 {
	font-size: 1.25em;
	line-height: 1.25em;
	text-align: justify;
}
.txtgr3 {
	font-size: 1.1em;
	line-height: 1.2em;
	text-align: justify;
}

/* ---- Erweiterung: Bildunterschriften einblenden ---------------------------------- */
/* ---- alle Beiträge --------------------------------------------------------------- */
/* ---- Quellcode: https://wiki.selfhtml.org/wiki/Beispiel:Bilder_pr%C3%A4sentieren-5.html?action=render */

figure.pic_blend, figcaption.pic_blend {
	margin: 0;
	padding: 0;
}
figure.pic_blend {
	overflow: hidden;
	position: relative;
	float: right;
	display: inline-block;
	width: 33%;
}
figure.pic_blend img {
	width: 33%;
	display: block;
}
figcaption.pic_blend {
	position: absolute;
	bottom: -3em;
	width: 33%;
	text-align: center;
	line-height: 3em;
	white-space: nowrap;
	color: white;
	background: rgba(0,0,0,0.5);
	-webkit-transition: all 1s ease;
	transition: all 1s ease;
}
figure.pic_blend:focus figcaption, 
figure.pic_blend:hover figcaption {	
	bottom: 0;
	left: 0;
	width: 100%;
	background: rgba(0,0,0,0.5);
}
/* das Fragezeichen als Pseudo-Element */
figure.pic_blend:before {
	content: "?"; 
	position: absolute; 
	bottom: 1em;
	left: 1em;
	background: rgba(255,255,255,0.5);
	color: #fd6400;
	width: 1.25em;
	height: 1.25em;
	border-radius: 1em;
	text-align: center;
	font-size: 1.5em;
	line-height: 1.5em;
	-webkit-transition: all 1s ease;
	transition: all 1s ease;
}
figure.pic_blend:focus:before,
figure.pic_blend:hover:before {
	background: rgba(255,255,255,0);
	color: rgba(0,0,0,0);
}
			
/* --- Bildtransformation: Bild vergrößern und Untertitel einblenden ----------------------------- */
/* --- Quellcode: https://wiki.selfhtml.org/wiki/Beispiel:CSS3_transform-scale1.html?action=render */

figure.pic_turn {
	background: #FFF;
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
	height: 337px;
	float: right;
	margin: 0px 0px 0px 20px;
	overflow: hidden;
	-webkit-transition: all 0.25s ease-in; /* für Safari 5.1, Android 2.3 bis 4.3 */;
	transition: all 0.25s ease-in;
}
figure.pic_turn:hover { 
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8);
	height: 370px;
	margin: 0 15px 5px 10px; 
	padding: 5px 5px 15px 5px; 
	z-index: 1.25; 
	-webkit-transform: scale(1.25);  /* für Safari, Android */
	-ms-transform: scale(1.25); /* für IE9 */
	transform: scale(1.25);	
}
figcaption.pic_turn {
	color: #333;
	position: relative;
	text-align: center;
}

/* --- Zeitleiste im Kompetenzprofil ------------------------------------------------------------- */
/* --- Quellcode: https://codepen.io/nomisoft/pen/Lbmvxp/ ---------------------------------------- */

.profile_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 100%;
  margin: 0 auto;
}
.profile_item .image {
  padding: 1em 2em;
}
.profile_item .image > div {
  position: relative;
  text-align: center;
  font-size: 0.8em;
}
.profile_item .image > div::after {
  content: '';
  width: 100%;
  height: 0;
  border-bottom: 1px solid #c8c8c8;
  position: absolute;
  top: 2.75em;
  left: 2.5em;
  z-index: -1;
}
.profile_item .image img {
  border-radius: 50%;
  height: 5em;
  border: 0.35em solid #fd6400;
}
.profile_item .image span {
  display: block;
  clear: both;
  padding: 0.25em 0;
  margin: 0.5em 0;
  background: #c8c8c8;
}
.profile_item .details {
  position: relative;
  flex: 1 1 90%;
}
.profile_item .details > div {
  border: 1px solid #121212;
  border-radius: 0.5em;
  padding: 1.5em;
  margin: 1em 0;
}
.profile_item .details > div h1 {
  color: #5ed3bf;
  font-size: 1.4em;
  margin: 0;
  padding: 0 0 0.5em 0;
  letter-spacing: 0.1em;
}
.profile_item .details > div p {
  margin: 0;
  padding: 0;
  line-height: 150%;
}
.profile_item .details::before {
  content: '';
  width: 0;
  height: 100%;
  border-left: 1px solid #c8c8c8;
  position: absolute;
  top: 0;
  left: -4.35em;
  z-index: -1;
}