/*http://www.wp-cms2.de/js/plugins/slick/1.6.0/slick.css*/
/********************************************************/
/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}


/*http://www.wp-cms2.de/js/plugins/slick/1.6.0/slick-theme.css*/
/********************************************************/
@charset 'UTF-8';
/* Slider */
.slick-loading .slick-list
{
    background: #fff /*url('js/plugins/slick/1.6.0/./ajax-loader.gif')*/ center center no-repeat;
}

/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url('js/plugins/slick/1.6.0/./fonts/slick.eot');
    src: url('js/plugins/slick/1.6.0/./fonts/slick.eot?#iefix') format('embedded-opentype'), url('js/plugins/slick/1.6.0/./fonts/slick.woff') format('woff'), url('js/plugins/slick/1.6.0/./fonts/slick.ttf') format('truetype'), url('js/plugins/slick/1.6.0/./fonts/slick.svg#slick') format('svg');
}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '←';
}
[dir='rtl'] .slick-prev:before
{
    content: '→';
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '→';
}
[dir='rtl'] .slick-next:before
{
    content: '←';
}

/* Dots */
/*.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}*/

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}


/*https://www.wp-cms2.de/modules/pageFramesAndModules/__frames/team_text/team_text_015/styles.css*/
/********************************************************/
@charset "utf-8";
/* CSS Document */


.team_text_015  #infoBox {
	position:absolute;
	left:0;
	top:0;
}
.team_text_015 #containerHolder{margin:27px 3% 0;}

.team_text_015 .subheadline{width:60%; margin-left:auto; margin-right:auto;}

.team_text_015 #containerListe {
	width: calc(100% + 76px);
	margin-left:-38px;
	margin-bottom:-38px;
}

.team_text_015 .editMode #containerListe  {
	width:100%;
	margin-left:0;
	margin-bottom:0;
}

.team_text_015 #containerListe

.team_text_015 .icon-mail{
	display:none;
}

.team_text_015 .slick-prev, 
.team_text_015 .slick-next {
    height: 60px;
    width: 25px;
}

.team_text_015 .text_filiale.h3 {
    padding-top: 1.3em;
}

.team_text_015 .slick-prev,
.team_text_015 .slick-next {
    margin-top: -45px;
}

.team_text_015 .boxImage.scale.corporateInnerFrame{
	margin-top:0 !important;
	border-bottom:1px solid #b4b8ba;	
}

.team_text_015 .moduleBoxOuter {
    background-color: #ffffff;
}

.team_text_015 .slickHolder {
	opacity: 0;
    margin-left: -2%;
    margin-right: -2%;
}


.team_text_015 .slick-initialized .sliderElementInner {
    padding: 10px 20px 50px;
}

.team_text_015 .teamMemberInfos{
	background-color:#FFFFFF;
	text-align:center;
	min-height:160px;
	padding:0 1.4em 1.5em;
	box-sizing:border-box; 
}

.team_text_015 [class^="icon-"]::before, 
.team_text_015 [class*=" icon-"]::before {
    display: inline-block;
    font-family: "fontello";
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1em;
    margin-left: 0.2em;
    margin-right: 0.2em;
    text-align: center;
    text-decoration: inherit;
    text-transform: none;
    width: 1em;
}

.team_text_015 .nameZusatz {
    margin-bottom: 16px;
}

.team_text_015 .boxImage {
	border-bottom:1px solid #b4b8ba;	
}

.team_text_015 .slick-prev:before {
  font-family: "fontello";
  content: "" !important;
  color: #ffffff;
  font-size: 60px;
  text-shadow: 1px 2px 3px #666;
}
.team_text_015 .slick-next:before {
  font-family: "fontello";
  content: "" !important;
  color: #ffffff;
  font-size: 60px;
  text-shadow: 1px 2px 3px #666;
}

.team_text_015 .email{display:inline-block;}

/*.team_text_015 .email span{
	margin-left: -4px;
}*/

.team_text_015 .container {
	float:left;	
	
	-webkit-box-sizing: border-box; 
	-moz-box-sizing: border-box;    
	-ms-box-sizing: border-box;
	box-sizing: border-box; 
	
	width:25%;
	text-align:center;
}

.team_text_015 .containerInnerNew {
	min-height:100%;		
	margin:38px;
		
	-webkit-box-sizing: border-box; 
	-moz-box-sizing: border-box;    
	-ms-box-sizing: border-box;
	box-sizing: border-box; 
	
	overflow:hidden;
}

.team_text_015 .slick-next{
    right: -60px;
}

.team_text_015 .slick-prev{
	left: -60px;
}

.team_text_015 .moduleBoxInnerImage{
	position:relative;
	border:1px solid #818181;
	overflow:hidden;
	border-radius:8em;
}

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1280px) {
	/*.team_text_015 .container {width:25%}*/
	.team_text_015 #containerListe {
		width: calc(100% + 70px);
		margin-left:-35px;
	}
	
	.team_text_015 .containerInnerNew{margin:35px;}
	.team_text_015 #containerHolder{ margin: 2.5em 9.5% 0;}
	
	.team_text_015 .sliderElementInner {
		padding: 10px 20px 40px;
	}
}
@media only screen and (max-width : 1200px) {
	.team_text_015 #containerListe {
		width: calc(100% + 40px);
		margin-left:-20px;
	}
	.team_text_015 .containerInnerNew{margin:35px 20px;}
	
	.team_text_015 .subheadline{width:70%;}
}
@media only screen and (max-width : 1024px) {
	.team_text_015 #containerListe {
		width: calc(100% + 54px);
		margin-left:-27px;
	}
	.team_text_015 .subheadline{width:80%;}
	.team_text_015 .container{width:50%;}
	.team_text_015 .containerInnerNew {margin:25px 39px;/*27*/}
	.team_text_015 #containerHolder {margin:3em 19% 0;}
	
	/*.team_text_015 .containerInnerNew{margin:9%;}*/
}


/* Medium Devices, Desktops */
@media only screen and (max-width : 960px) {
	/*.team_text_015 .container {
		width:33.3%	
	}*/
	.team_text_015 #containerHolder {
		margin: 3em 11% 0;
	}
	
	.team_text_015 #containerListe {
		width: calc(100% + 40px);
		margin-left:-20px;
	}
	
	.team_text_015 .containerInnerNew {margin:20px;}
	
	.team_text_015 .subheadline{width:80%;}	
}
@media only screen and (max-width : 800px) {
	.team_text_015 #containerHolder {margin:3em 11% 0;}
}
/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
	/*.team_text_015 .container {
		width:50%;	
	}
	*/
	.team_text_015 .subheadline{width:100%;}
	.team_text_015 #containerListe {
		width: calc(100% + 20px);
		margin-left:-10px;
	}

	.team_text_015 .containerInnerNew {margin:10px;}
	
	.team_text_015 #containerHolder {
		margin: 1.2em 11% 0px;
	}
}

/* styles for medium Tablets (Kindle etc)) */
@media all and (max-width: 610px) {
	.team_text_015 #containerListe {margin-bottom:0;}
	.team_text_015 .container {
		width:50%;	
	}
	.team_text_015 #containerHolder {
		margin: 1.5em 4.5% 0;
	}
	.team_text_015 .slick-dots {
	   display:block !important;
	   bottom: -30px !important;
	}
	.team_text_015 .subheadline{width:100%;}
	.team_text_015 .sliderElementInner {
		padding: 10px 20px 2px;
	}

	.team_text_015 .slick-initialized .sliderElementInner {
		padding: 10px 20px 38px;
	}

	.team_text_015 .slick-dots .slick-active {
		background: #fff;
	}

}

@media all and (max-width:601px) {
	.team_text_015 .slick-initialized .slick-slide {
		margin-left:1em;
		margin-right:1em;
	}

	.team_text_015 .slick-track {
		margin-right:-2em;
	}

	.team_text_015 .slick-dots {
		bottom:-6px !important;
	}
    .team_text_015 .slick-prev {
        left: -20px;
    }
    .team_text_015 .slick-next {
        right: -20px;
    }
}

/* Extra Small Devices, Phones */ 
@media only screen and (max-width : 480px) {

	
	/*.team_text_015 .moduleBoxInnerImage{
		min-width:150px;
		max-width:150px;
	}*/
	
	.team_text_015 .moduleBoxInnerImage{border-radius:10em;}
	
	/*.team_text_015 #containerHolder {
		margin: 1em 22% 0;
	}*/
	.team_text_015 #containerListe {
		width: calc(100% + 38px);
		margin-left:-19px;
	}
	.team_text_015 .containerInnerNew{margin:19px;}
	

	
	
	.team_text_015 .teamMemberInfos {
		min-height: 158px;
	}
}

/* styles for iPhone/Android portrait */
@media all and (max-width: 360px) {
	.team_text_015 .textCenter{text-align:left;}
	.team_text_015 .container {width:100%;}
	/*.team_text_015 #containerHolder{margin:1.5em 10% 0;}*/
	.team_text_015 .containerInnerNew {margin: 19px 54px;}
		/*.team_text_015 #containerHolder {
		margin: 1.5em 22% 0;
	}*/
	.team_text_015 .slick-next {
		right: -19px;
	}
	.team_text_015 .slickHolder {
		margin-left: -5%;
		margin-right: -5%;
	}
	.team_text_015 .sliderElementInner {
		padding: 10px 10px 50px;
	}
	.team_text_015 .slick-next {
		right: -40px !important;
	}
	.team_text_015 .slick-prev {
		left: -40px !important;
	}
	.team_text_015 .slick-prev {
		left: -18px;
	}
	
	.team_text_015 .sliderElementInner {
		padding: 10px 10px 0px;
	}
}
/* Custom, iPhone Retina */ 
@media only screen and (max-width : 320px) {
	/*.team_text_015 #containerHolder{margin:1em 3.5% 0;}*/
	
	.team_text_015 .slick-next, .slick-next,
	.team_text_015 .slick-next, .slick-prev{
		display:none !important;	
	}

	
	.team_text_015 .slickHolder {
		margin-left: 0;
		margin-right: 0;
	}
	
	.team_text_015 .sliderElementInner {
		padding: 15px 10px 2px;
	}
	.team_text_015 .containerInnerNew{margin:20px 52px;}
}

