/**
 * Name: layout.css
 *	
 *	SYSCOM-IT || Aday Onar - www.syscom-it.de
 *
 *	=Wrap
 *	=Header
 *	=Logo
 *	=Menu
 *	=Mobile Menu
 * 	=Mobile menu trigger
 * 	=Buy Button
 * 	=Sticky Header
 * 	=Content
 * 	=Page Header
 * 	=Footer
 * 	=Footer Bottom
 *	=Back to top 
 *
 */

@font-face {
    font-family: 'diavlolight';
    src: url('../fonts/diavlo_light_ii_37-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'diavlobook';
    src: url('../fonts/diavlo_book_ii_37-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'diavloblack';
    src: url('../fonts/diavlo_black_ii_37-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'diavlomedium';
    src: url('../fonts/diavlo_medium_ii_37-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'diavlobold';
    src: url('../fonts/diavlo_bold_ii_37-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'diavlolight';
    src: url('../fonts/diavlo_light_ii_37-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'diavlobook';
    src: url('../fonts/diavlo_book_ii_37-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'diavloblack';
    src: url('../fonts/diavlo_black_ii_37-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'diavlomedium';
    src: url('../fonts/diavlo_medium_ii_37-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'diavlobold';
    src: url('../fonts/diavlo_bold_ii_37-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'merriweather_sansbold';
    src: url('../fonts/merriweathersans-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'merriweather_sansbold_italic';
    src: url('../fonts/merriweathersans-bolditalic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'merriweather_sansextrabold';
    src: url('../fonts/merriweathersans-extrabold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'merriweather_sansitalic';
    src: url('../fonts/merriweathersans-italic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'merriweather_sansregular';
    src: url('../fonts/merriweathersans-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


/* ==========================================================================
   =Wrap
   ========================================================================== */

	#wrap {
		position: relative;
		background-color: #fff;
	}
	
	@media (max-width: 767px) {

		#wrap {}

	}
   
/* ==========================================================================
   =Header 
   ========================================================================== */
   	
	#header {
		margin: 0 auto; 
	}
	
/* ==========================================================================
   =Logo
   ========================================================================== */
   
	#logo {  
		padding: 15px 0px 23px 0px;
	}
	
	/**
	 * 1. displaying the <a> inline-block makes it depends on the size of it's children
	 *    we add max-width:100% to tell it not that it shouldn't extend beyond the size of it's
	 *    parent if it's child is very large eg a 1000x1000 logo img
	 */
	
	#logo a {
		display: inline-block;
		max-width: 120%; /* 1 */
	}
	
	#logo img { display: block; width: 155px;float: right;}	
	.dhb-logo {margin-top: -10px}
	.dhb-logo img { display: block; width: 70px;float: left;}	

	@media (min-width: 768px) and (max-width: 991px) {
		
		#logo { padding-top: 30px; }
		
	}
	
	@media (max-width: 767px) {

		/**
		 * 1. on mobile devices logo padding right needs to be the width of the
		 *	  mobile menu trigger + some spacing so as to not let the logo <a>
		 *    overlap the mobile menu trigger
		 */
	
		#logo {
			padding-top: 30px;  
			padding-right: 50px; /* 1 */
			max-width: 130px;
		}
		
	}
	
/* ==========================================================================
   =Menu 
   ========================================================================== */

/* =Menu Basics
   ========================================================================== */
   
	.sf-menu,
	.sf-menu ul {
		padding: 0;
		margin: 0;
		list-style: none;
	}
	
	.sf-menu > li { float: left; }

	.sf-menu > li > a {
		position: relative;
		display: block;
	}
	
	/**
 	 * 1. z-index is 1025 because the sticky menu is 1020
 	 */
	
	.sf-menu .sf-mega,
	.sf-menu li.dropdown ul {
		position: absolute;
		z-index: 1025; /* 1 */
		top: 100%;
		left: 0;
		display: none;
	}
	
	.sf-menu li.dropdown { position: relative; }
	
	.sf-menu li.dropdown ul ul {
		top: -16px;
		left: 100%;
	}
	
	.sf-menu li:hover > .sf-mega,
	.sf-menu li.sfHover > .sf-mega,
	.sf-menu li.dropdown:hover > ul,
	.sf-menu li.dropdown.sfHover > ul { display: block; }

/* =Menu Skin
   ========================================================================== */
	
	.sf-menu {
		position: relative;
		float: right;
		padding-right: 70px;
		margin-top: 22px;
	} 
	
	.sf-menu a {
		display: block;
		padding: 10px 0;
		color: #8a8a8a; 
		font: 14px 'Open Sans', Arial, sans-serif;
		font-weight: 700;	
		text-decoration: none;
	}
	
	.sf-menu li.dropdown a { padding: 8px 20px; }
	
	.sf-menu > li > a,
	.sf-menu > li.dropdown > a {
		padding: 10px 10px 24px;
		border: none;
		color: #8a8a8a;
		font-size: 12px;
	}
	
	.sf-menu > li a i { margin-right: 5px; }
	
	.sf-menu > li.current > a { position: relative;color: #52D388; }
	
	.sf-menu > li > a:before { 
		position: absolute;
		top: 50%;
		right: 0;
		left: 0;
		display: block;
		width: 25px;
		border-top: 1px solid transparent;
		margin: 3px auto 0 auto;
		content: "";
		-webkit-transition: border-top-color 0.3s;
				transition: border-top-color 0.3s;
	}
	
	.sf-menu > li > a:hover:before,
	.sf-menu > li.current > a:before,
	.sf-menu li.sfHover > a:before { border-top-color: #98d4ec; }

/* =DropDown
   ========================================================================== */
	
	/**
 	 * 1. allow long menu items to determine submenu width
 	 */
	
	.sf-menu li.dropdown ul {
		min-width: 190px; /* 1 */
		padding: 15px 0;
		border: 1px solid rgba(0, 0, 0, 0.1);	
		background-color: #fff;			
	}
	
	.sf-menu li.dropdown ul:before {
		position: absolute;
		top: 0;
		left: 0;
		display: block;
		width: 75px;
		border-top: 2px solid #98d4ec;
		content: "";
	}
	
	.sf-menu li.dropdown ul a:hover,
	.sf-menu li.dropdown ul li.dropdown.sfHover > a { color: #98d4ec; }
		
/* =Mega Menu Section
   ========================================================================== */
	
	.sf-mega {
		width: 100%;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
		padding: 20px 0;
		border: 1px solid rgba(0, 0, 0, 0.1);
		background-color: #fff;
	}

	.sf-mega-section {
		float: left;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
		padding: 0 20px;
	}

	/**
 	 * 1. set mega menu section size, as a percentage of the mega menu width
 	 */
	
	.sf-mega.sf-mega-1-col .sf-mega-section{ width: 100%; } /* 1 */
	
	.sf-mega.sf-mega-2-col .sf-mega-section{ width: 50%; }
	
	.sf-mega.sf-mega-3-col .sf-mega-section{ width: 33.3333333333%; }
	
	.sf-mega.sf-mega-4-col .sf-mega-section{ width: 25%; }
	
	.sf-menu .sf-mega:before {
		position: absolute;
		top: 0;
		left: 0;
		display: block;
		width: 75px;
		border-top: 2px solid #98d4ec;
		content: "";
	}
	
	.sf-mega ul li a:hover { color: #98d4ec; }
	
/* =Menu Arrows
   ========================================================================== */
	
	.sf-arrows .sf-with-ul:after {
		position: absolute;
		top: 16px;		
		right: 0;
		display: none;
		width: 0;
		height: 0;
		border: 5px solid transparent;
		border-top-color: #d7d7d7;
		content: "";
	}
		
	.sf-arrows > li > .sf-with-ul:focus:after,
	.sf-arrows > li:hover > .sf-with-ul:after,
	.sf-arrows > .sfHover > .sf-with-ul:after { border-top-color: rgba(0, 0, 0, 0.7); }
		
	.sf-arrows ul .sf-with-ul:after {
		top: 50%;
		display: block;
		border-color: transparent;
		border-left-color: #d7d7d7;
		margin-top: -5px;
		margin-right: 10px;
	}
	
	.sf-arrows ul li > .sf-with-ul:focus:after,
	.sf-arrows ul li:hover > .sf-with-ul:after,
	.sf-arrows ul .sfHover > .sf-with-ul:after { border-left-color: rgba(0, 0, 0, 0.7); }
	
	@media (min-width: 768px) and (max-width: 991px) {

		#menu { display: none; }

	}
	
	@media (max-width: 767px) {

		#menu { display: none; }
	
	}
	
	@media (max-width: 487px) {

		.tr-header{
			display: none;
		}

	}

	
/* ==========================================================================
   =Mobile Menu 
   ========================================================================== */
			
	#mobile-menu {
		border-bottom: 1px solid #d7d7d7;
		margin-bottom: 0;
	}
	
	#mobile-menu li {	
		display: block;
		margin: 0;
	}
		
	#mobile-menu > li > ul, 
	#mobile-menu > li > ul > li > ul {
		display: none;
		margin-left: 0;
	}
	
	#mobile-menu .sf-mega {
		display: none;
		padding: 0;
		border: none;
		margin: 0;
		background: #fff;
	}
	
	#mobile-menu .sf-mega-section {
		float: none;
		width: 100%;
		padding: 0;
		border: none;
	}
	
	#mobile-menu .sf-mega-section ul { margin-left: 0; }

	#mobile-menu li a {
		position: relative;
		display: block;
		padding: 15px 25px;
		border-top: 1px solid #d7d7d7;
		color: #28353e;
		font-size: 13px;
		text-align: left;
		text-decoration: none;
	}
	
	#mobile-menu ul a { padding-left: 45px; }
	
	#mobile-menu ul li ul a  { padding-left: 65px; }
	
	#mobile-menu .mobile-menu-submenu-arrow {
		position: absolute;
		top: 0;
		right: 0;
		width: 70px;
		height: 100%;
		border-left: 1px solid #d7d7d7;
		color: #28353e;
		font-size: 20px;
		line-height: 50px;
		text-align: center;
		cursor: pointer;
	}
	
	#mobile-menu .mobile-menu-submenu-arrow:hover { background-color: #f3f3f3; }
	
	#mobile-menu li a:hover {}
	
	#mobile-menu { display: none; }

/* ==========================================================================
   =Mobile menu trigger
   ========================================================================== */
				
	#mobile-menu-trigger { 
		float: right;
		display: none;
		font-size: 32px;
		color: #ffffff;
	}

	@media (min-width: 768px) and (max-width: 991px) {

		#mobile-menu-trigger { 
			display: block;
			margin-top: 28px;
			margin-right: 0;
		}	

	}

	@media (max-width: 767px) {

		#mobile-menu-trigger { 
			position: absolute;
			top: 23px;
			right: 15px;
			display: block;
			padding: 10px;
			margin-top: 0;
		}

	}

	@media only screen and (min-width: 480px) and (max-width: 767px) {

		#mobile-menu-trigger {  }
	
	}		
		
/* ==========================================================================
   =Buy Button 
   ========================================================================== */
	
	#buy-button { 
		position: absolute;
		z-index: 1;
		top: 22px;
		right: 0px;
		margin-right: 0;
		font-size: 13px;
	}
	
	@media (min-width: 768px) and (max-width: 991px) {
		
		#buy-button {
			top: 25px;
			right: 75px; 
		}
		
	}
	
	@media (max-width: 767px) {
		#buy-button {
			top: 30px;
			right: 75px; 
		}
	}

/* ==========================================================================
   =Sticky Header
   ========================================================================== */

	@media (min-width: 1025px) {
		
		/**
		 * 1. The height of the #header-wrap can be increased or decreased to accommodate the logo
		 */
		 
		#header-wrap {
			position: relative;
			height: 180px; /* 1 */
		}
		
		#header {
			position: absolute;
			top: 0; 					
			right: 0;
			left: 0;
			margin: 0 auto; 
			
		}
		
		/**
		 * 1. The z-index has to be 1020 so it is bigger than the back to top buttons z-index that is 1010
		 */
		
		#header.stuck {
			position: fixed;
			z-index: 1020; /* 1 */
			top: 0;
			width: 100%;
			height: 70px;
			padding: 5px 0px;
			/*box-shadow: 0px 1px 5px #3d3d3d !important;*/
			margin: 0 auto;
			background-color: rgba(255, 255, 255, 0.95);
			/*background-color: #4bd485 !important;*/
			
			-webkit-transition: padding 0.3s;
					transition: padding 0.3s;
		}
		
		#header.stuck #logo { padding: 15px 0 23px 0; }
		
		#header.stuck .sf-menu { margin-top: 17px; }
		
		#header.stuck .sf-menu > li > a,
		#header.stuck .sf-menu > li.dropdown > a { padding: 10px 10px 32px 10px;/*color: #fff;*/ }
		
		#header.stuck .sf-menu > li > a:hover:before,
		#header.stuck .sf-menu > li.current > a:before,
		#header.stuck .sf-menu li.sfHover > a:before { border-top-color: #4bd485; }
		
		#header.stuck #buy-button { top: 17px; }		
	
	}
	
/* ==========================================================================
   =Content
   ========================================================================== */
   	
	#content { padding-bottom: 40px; /*fbackground: #444444*/}

/* ==========================================================================
   =Page Header
   ========================================================================== */
   	
	#page-header {
		padding: 35px 0;
		border-top: 1px solid #d7d7d7;
		border-bottom: 1px solid #d7d7d7;
		margin-bottom: 100px;
		background: no-repeat center center;
	}
	
	#page-header p {
		margin-bottom: 0;
		text-align: right;
	}
	
	
	@media (max-width: 767px) {
		
		#page-header p { text-align: left; }
	}
   
/* ==========================================================================
   =Footer
   ========================================================================== */		
	
	#footer { padding-top: 30px; }
	
	#footer-widget-area-1 {}
	#footer-widget-area-2 {}
	#footer-widget-area-3 {}
	#footer-widget-area-4 {}
	
/* ==========================================================================
   =Footer Bottom
   ========================================================================== */	
  
	#footer-bottom { padding-bottom: 60px;}
	
	#footer-bottom-widget-area-1 {}
	#footer-bottom-widget-area-2 {}
	
	.footer-partner img{
		max-height: 70px;
	}
	
/* ==========================================================================
   =Back to top
   ========================================================================== */

	#back-to-top {
		position: fixed;
		z-index: 1010;
		right: -48px;
		bottom: 20px;
		width: 48px;
		height: 48px;
		border-radius: 50%;
		background-color: #28353e;
		color: #fafafa;
		font-size: 30px;
		text-align: center;
		text-decoration: none;					
		opacity: 0.5;
		cursor: pointer;
		-webkit-transition: all 0.4s ease 0s;
				transition: all 0.4s ease 0s;
	}
	
	#back-to-top i {
		font-size: 28px;
		line-height: 48px;
		font-weight: normal;
		vertical-align: top;
		-webkit-transition: all 0.4s ease 0s;
				transition: all 0.4s ease 0s;
	}
	
	#back-to-top:hover { background-color: rgba(0, 0, 0, 0.7); }
	#back-to-top:hover i { color: #fff; }
	#back-to-top.visible { right: 40px; }
	#back-to-top.gone { right: -48px; }	
	
		

@media only screen and (max-width: 767px) {
  #services_module .blossomic_hline .blossomic_arrow_down,
  #services_module .blossomic_arrow_line {
    display: none;
  }
}

/*#### additional responsive customization ####*/
@media (min-width: 680px) and (max-width: 991px) {
	.systemHeadline{
		font-size: 15px !important;
		line-height: 22px; 		
	}
	
	.service_left{
		margin-left: 20px !important;
	}
	
	.service_left_center, .service_right_center, .service_right{
		margin-left: 55px !important;
	}
	
  div#floorplans { width: 650px ! important; }
  .marker9 { top: 33% ! important; }
  .marker8 { top: 37% ! important; }
  .marker7 { top: 57% ! important; }
  .marker6 { top: 50% ! important; }
  .marker5 { top: 60% ! important; }
  .marker4 { left: 49% ! important; top: 71% ! important; }
  .marker3 { left: 47% ! important; top: 76% ! important; }
  .marker2 { left: 37% ! important; top: 73% ! important; }
  .marker1 { left: 25% ! important; top: 74% ! important; }
  .marker0 { left: 45% ! important; top: 85% ! important; }
  .tooltipMarker { top: 84% ! important; }
	
}


@media (min-width: 550px) and (max-width: 679px) {
	.systemHeadline{
		font-size: 15px !important;
		line-height: 22px;
	}
	
	.service_left{
		margin-left: 30px !important;
		width: 22% !important;	
	}
	
	.service_left_center{
		margin-left: 300px !important;
		width: 22% !important;	
	}
	.service_right_center{
		margin-left: 30px !important;
		width: 22% !important;	
	} 
	
	.service_right{
		margin-left: 300px !important;
		width: 22% !important;	
	}
	
  div#floorplans { width: 520px ! important; }
  .marker9 { top: 26% ! important; }
  .marker8 { top: 26% ! important; }
  .marker7 { top: 46% ! important; }
  .marker6 { top: 38% ! important; }
  .marker5 { top: 48% ! important; }
  .marker4 { left: 49% ! important; top: 56% ! important; }
  .marker3 { left: 49% ! important; top: 60% ! important; }
  .marker2 { left: 37% ! important; top: 59% ! important; }
  .marker1 { left: 25% ! important; top: 59% ! important; }
  .marker0 { top: 68% ! important; left: 46% ! important; }
  .tooltipMarker { top: 67% ! important; }
	
}

@media (min-width: 405px) and (max-width: 549px) {
	.systemHeadline{
		font-size: 15px !important;
		line-height: 22px;
	}
	
	.service_left{
		margin-left: 30px !important;
		width: 22% !important;	
	}
	
	.service_left_center{
		margin-left: 150px !important;
		width: 22% !important;	
	}
	.service_right_center{
		margin-left: 30px !important;
		width: 22% !important;	
	} 
	
	.service_right{
		margin-left: 150px !important;
		width: 22% !important;	
	}
	
  div#floorplans { width: 405px ! important; }
  .marker9 { top: 20% ! important; }
  .marker8 { top: 23% ! important; }
  .marker7 { top: 35% ! important; }
  .marker6 { top: 30% ! important; }
  .marker5 { top: 37% ! important; }
  .marker4 { left: 49% ! important; top: 43% ! important; }
  .marker3 { left: 49% ! important; top: 47% ! important; }
  .marker2 { top: 46% ! important; left: 35% ! important; }
  .marker1 { left: 22% ! important; top: 44% ! important; }
  .marker0 { top: 53% ! important; }
  .panel1, .panel2, .panel3, .panel5, .panel6, .panel7, .panel8, .panel9{left: 10% !important; top: 8% !important;}
  .tooltipMarker { top: 52% ! important; }

}

@media (max-width: 404px) {
	.systemHeadline{
		font-size: 15px !important;
		line-height: 22px;
	}
	
	.service_left{
		margin-left: 62px !important;
		width: 70% !important;	
	}
	
	.service_left_center{
		margin-left: 62px !important;
		width: 70% !important;	
	}
	.service_right_center{
		margin-left: 62px !important;
		width: 70% !important;	
	} 
	
	.service_right{
		margin-left: 62px !important;
		width: 70% !important;	
	}
	
	
  div#floorplans { width: 280px !important; margin-top: 5px; height:  }
  .marker9 { top: 14% !important; }
  .marker8 { top: 13% !important; }
  .marker7 { top: 25% !important; }
  .marker6 { top: 20% !important; }
  .marker5 { top: 25% !important; }
  .marker4 { top: 29% !important; left: 47% !important; }
  .marker3 { left: 49% !important; top: 33% !important; }
  .marker2 { left: 36% !important; top: 32% !important; }
  .marker1 { top: 30% !important; left: 21% !important; }
  .marker0 { top: 38% !important; }
   .panel1, .panel2, .panel3, .panel5, .panel6, .panel7, .panel8, .panel9{left: -8% !important; top: -1% !important;}

  .tooltipMarker { top: 37% !important; left: 26% !important; }
	
}


.systemHeadlineContainer .systemHeadline{
	text-align: center;
	font-size: 20px;
}

#services_module .row{
}

.service_left{
	float: left;
	margin-left: 40px;
	width: 18%;
}
.service_left_center, .service_right_center, .service_right{
	float: left;
	margin-left: 75px;width: 18%;
}
 
.service_left h3 a, .service_left_center h3 a, .service_right_center h3 a, .service_right h3 a{
	color: #c3c3c3;
	font-weight: bold;
}
.hoverLink:hover{
	background-image: url(../../_content/services/hoverLink.png);
	background-repeat: no-repeat;
	background-size: 20px;
	background-position: right bottom;
}

/*############ All Systems END #################################*/

.appIMG{
	width: 150px;
	margin-left: 44%;
}

.thermostatIMG{
	width: 200px;
	margin-left: 24%;
}

.heatSystems1{
	width: auto;
	float: left;
}

.heatSystems2{
	width: auto;
	float: left;	
}

.heatSystems3{
	width: auto;
	float: left;
}

.heatSystems4{
	width: auto;
}
.vertical-tabs-container{
	margin-top: 29px;
}
.tab-content-inner{
	max-height: 224px;
	overflow-y: scroll;
	color: #5f5f5f;
}

.tab-content-inner p{
	text-align: justify;
}

.tab-content{
/* 	background-color: #f3f3f3 !important; */
}

.tab-id-holder{
	font-size: 15pt;
}

.tab-id-holder:hover{
	color: #4bd485;
}

.tab-id-holder img{
	margin-bottom: 40px;
}

.secondAhover{
	text-decoration: none !important;
	font-weight: normal !important;
	color: #656e73 !important;
}

.secondAhover:hover{
	color: #4bd485 !important;
	text-decoration: underline !important;
	font-weight: bold !important;
}

.secondAhover:before{
	content: url("../../_content/icons/vidtut.png") !important;
    position: relative;
    top: 7px;
    left: -10px;
    padding-left: 7px;
}


.listLine{
	list-style-position: outside;
	margin-left: 10px;
}

.fill-circle{
	list-style-position: outside !important;
}

.blossomic_x{
	color: black !important;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	padding-left: 7px;
	padding-top: 38px;
}

.productHeadline{
	font-weight: bold;
	color: #4bd485;
}

.anleitungenHeadline{
	font-weight: 100;
	padding-bottom: 30px;
}


.hrLineMargin{
	margin-top: 910px;
}
.hrLineMargin1{
	margin-top: 420px;
}
.hrLineMargin2{
	margin-top: 440px;
}
.hrLineMargin3{
	margin-top: 550px;
}
.hrLineMargin4{
	margin-top: 50px;
}


.setItem{
	margin-top: 20px;
}

.setItem img{
	width: 90% !important;
}

.setItem .icon-box-1 img{
	width: 25px !important;
}

.sliderLink{
	color: #fff;
}

.sliderLink:hover{
	color: #fff;
}

.sliderList{
	color: #fff;
}

.sliderList li{
	font-size: 12pt;
}

.slide5Text, .slide2Text{
	font-size: 78%;
}
.etagenIMG{
	width: 1040px !important;
	margin-left: auto;
	margin-right: auto;
}

.sliderContentBackground{
	/*text-shadow: 3px 2px 2px black;*/
}
.sliderContentBackground2{
	color: #000000 !important;
	text-shadow: 3px 2px 2px black;
}

.centerHeadline{
	text-align: center;
}

.text-2{
	color: black !important;
}

.text-3{
	font-size: 16pt !important;
}

.textIndivid li{
		font-size: 16pt !important;
		text-align: center;
}

p.slide1Text{
	color: #ffffff;
	text-shadow: 3px 2px 2px black;
}

/*@media (max-width: 380px) {
	.slide1Text{
		display: none !important;
	}

}*/


p.slide2Text{
	color: #ffffff;
}

p.slide4Text{
	color: #ffffff;
	text-align: center;
	font-size: 80%;
}


.lessMarginTop{
	margin-top: -10px !important;
	padding-top: -10px !important;
}

.moreSpace{
	margin-top: 40px;
}

.icon-box-content h4{
	font-size: 15px;
}

.icon-box-content h5{
	text-align: center;
}

.syscom{
/* 	color: #868686 !important; */
}

.syscom:hover{
	color: #70C0F2 !important;
	text-decoration: none;
}

.syscomimg{
	height: 11px; 
	margin-top: 7px; 
	margin-left: 3px;
}

.info-box h2{
	font-size: 33px
}

.service_left h3{
	text-align: center !important;
}

.commentlist{
	margin-top: 0px !important;
}

.responsive-video iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}

.responsive-video {
position: relative;
padding-bottom: 56.25%; /* Default for 1600x900 videos 16:9 ratio*/
padding-top: 0px;
height: 0;
overflow: hidden;
}

/*#########
	##################
	###########################
		 Download Section ##########*/

h3.download-title {
    font-size: 1.4666666667rem;
    text-align: left;
    margin-top: 0;
    margin-bottom: 1.3333333333rem
}

.download-title + .download-files {
    margin-top: -1.3333333333rem
}

.download-actions + .download-files {
    margin-top: 20px;
    border-top: 1px solid #dadfe1
}

.download-title + .download-files {
    margin-top: -1.3333333333rem
}

.download-files [class * =column] + [class * =column]:last-child {
    float: left
}



.download-cont {
    margin-top: 1.0666666667rem
}

.box.download {
    margin: 30px 0px 60px 0px;
    padding: 1.5333333333rem;
    background: #f2f4f4
}

h3.download-title {
    font-size: 1.4666666667rem;
    text-align: left;
    margin-top: 0;
    margin-bottom: 1.3333333333rem
}

.download-beschreibung img {
    float: right;
    margin-left: .6666666667rem
}

.download-actions {
    margin-top: .9333333333rem
}

.download-actions + .download-files {
    margin-top: 20px;
    border-top: 1px solid #dadfe1
}

.download-title + .download-files {
    margin-top: -1.3333333333rem
}

.download-files [class * =column] + [class * =column]:last-child {
    float: left
}

.download-file {
    margin-top: 1.3333333333rem
}

.download-file-description {
    padding-left: 2.6666666667rem
}

.download-file-description.dvl {
    padding-left: 0
}

.download-file-description p {
    margin: 0;
    text-align: right;
}

.small-boldline, h5 {
    text-align: left;
    font-size: 1.0666666667rem;
    line-height: 1.6rem;
    font-weight: 600;
	/*padding-left: 10px;*/
}

.download-beschreibung:before {
	content: ""
    background-image: url(../../images/appletest.png)
}


.download-file-description.pdf {
    position: relative
}

.download-file-description.pdf:after, .download-file-description.pdf:before {
    content: "";
    display: inline-block;
    position: absolute;
    left: 0;
    background-repeat: no-repeat;
    top: 5px
}

.download-file-description.pdf:after {
    display: none
}


/*#########
	##################
	###########################
		ENDE Download Section ##########*/

.reply a{
	padding-bottom: 10px;
}

.pdfBTN:before{
	content: url("../../_content/icons/pdf_green.png") !important;
    position: relative;
    top: 4px;
    left: -10px;
    padding-left: 7px;
}
.videoBTN:before{
	content: url("../../_content/icons/video_green.png") !important;
    position: relative;
    top: 5px;
    left: -10px;
    padding-left: 7px;
}

a.btn.facebook{
	background-color: #3b5998;
	border: none;
}

a.btn.facebook:hover{
	background-color: #426ecc;
}

.syscomLink{
	color: #009fe3;
}
.syscomLink:hover{
	color: #009fe3;
	text-decoration: underline;
}

.sidebarIMG{
	background-image: url("../../_content/thumbAnleitungen/blossomicAppThumb.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position-x: center;
	min-height: 350px;
}

.sidebarIMG:hover{
	background-image: url("../../_content/thumbAnleitungen/blossomicAppThumbHover.png");
	-o-transition:.2s;
  	-ms-transition:.2s;
  	-moz-transition:.2s;
  	-webkit-transition:.2s;
}

.headlineCon{
	margin-bottom: 20px;
}

.last{
	font-size: 14px;
	float: left;
	text-align: right;
}

.information{
	font-size: 10px;
}

/*#### Language Selector ####*/

.lang-xs{background-position:0 -473px;min-width:14px;height:11px;min-height:11px;max-height:11px;background-repeat:no-repeat;display:inline-block;background-image:url(languages.png)}.lang-sm{background-position:0 -1172px;min-width:22px;height:16px;min-height:16px;max-height:16px;background-repeat:no-repeat;display:inline-block;background-image:url(languages.png)}.lang-lg{background-position:0 -2134px;min-width:30px;height:22px;min-height:22px;max-height:22px;background-repeat:no-repeat;display:inline-block;background-image:url(languages.png)}.lang-xs[lang=ar]{background-position:0 0}.lang-xs[lang=be]{background-position:0 -11px}.lang-xs[lang=bg]{background-position:0 -22px}.lang-xs[lang=cs]{background-position:0 -33px}.lang-xs[lang=da]{background-position:0 -44px}.lang-xs[lang=de]{background-position:0 -55px}.lang-xs[lang=el]{background-position:0 -66px}.lang-xs[lang=en]{background-position:0 -77px}.lang-xs[lang=es]{background-position:0 -88px}.lang-xs[lang=et]{background-position:0 -99px}.lang-xs[lang=fi]{background-position:0 -110px}.lang-xs[lang=fr]{background-position:0 -121px}.lang-xs[lang=ga]{background-position:0 -132px}.lang-xs[lang=hi]{background-position:0 -143px}.lang-xs[lang=hr]{background-position:0 -154px}.lang-xs[lang=hu]{background-position:0 -165px}.lang-xs[lang=in]{background-position:0 -176px}.lang-xs[lang=is]{background-position:0 -187px}.lang-xs[lang=it]{background-position:0 -198px}.lang-xs[lang=iw]{background-position:0 -209px}.lang-xs[lang=ja]{background-position:0 -220px}.lang-xs[lang=ko]{background-position:0 -231px}.lang-xs[lang=lt]{background-position:0 -242px}.lang-xs[lang=lv]{background-position:0 -253px}.lang-xs[lang=mk]{background-position:0 -264px}.lang-xs[lang=ms]{background-position:0 -275px}.lang-xs[lang=mt]{background-position:0 -286px}.lang-xs[lang=nl]{background-position:0 -297px}.lang-xs[lang=no]{background-position:0 -308px}.lang-xs[lang=pl]{background-position:0 -319px}.lang-xs[lang=pt]{background-position:0 -330px}.lang-xs[lang=ro]{background-position:0 -341px}.lang-xs[lang=ru]{background-position:0 -352px}.lang-xs[lang=sk]{background-position:0 -363px}.lang-xs[lang=sl]{background-position:0 -374px}.lang-xs[lang=sq]{background-position:0 -385px}.lang-xs[lang=sr]{background-position:0 -396px}.lang-xs[lang=sv]{background-position:0 -407px}.lang-xs[lang=th]{background-position:0 -418px}.lang-xs[lang=tr]{background-position:0 -429px}.lang-xs[lang=uk]{background-position:0 -440px}.lang-xs[lang=vi]{background-position:0 -451px}.lang-xs[lang=zh]{background-position:0 -462px}.lang-sm[lang=ar]{background-position:0 -484px}.lang-sm[lang=be]{background-position:0 -500px}.lang-sm[lang=bg]{background-position:0 -516px}.lang-sm[lang=cs]{background-position:0 -532px}.lang-sm[lang=da]{background-position:0 -548px}.lang-sm[lang=de]{background-position:0 -564px}.lang-sm[lang=el]{background-position:0 -580px}.lang-sm[lang=en]{background-position:0 -596px}.lang-sm[lang=es]{background-position:0 -612px}.lang-sm[lang=et]{background-position:0 -628px}.lang-sm[lang=fi]{background-position:0 -644px}.lang-sm[lang=fr]{background-position:0 -660px}.lang-sm[lang=ga]{background-position:0 -676px}.lang-sm[lang=hi]{background-position:0 -692px}.lang-sm[lang=hr]{background-position:0 -708px}.lang-sm[lang=hu]{background-position:0 -724px}.lang-sm[lang=in]{background-position:0 -740px}.lang-sm[lang=is]{background-position:0 -756px}.lang-sm[lang=it]{background-position:0 -772px}.lang-sm[lang=iw]{background-position:0 -788px}.lang-sm[lang=ja]{background-position:0 -804px}.lang-sm[lang=ko]{background-position:0 -820px}.lang-sm[lang=lt]{background-position:0 -836px}.lang-sm[lang=lv]{background-position:0 -852px}.lang-sm[lang=mk]{background-position:0 -868px}.lang-sm[lang=ms]{background-position:0 -884px}.lang-sm[lang=mt]{background-position:0 -900px}.lang-sm[lang=nl]{background-position:0 -916px}.lang-sm[lang=no]{background-position:0 -932px}.lang-sm[lang=pl]{background-position:0 -948px}.lang-sm[lang=pt]{background-position:0 -964px}.lang-sm[lang=ro]{background-position:0 -980px}.lang-sm[lang=ru]{background-position:0 -996px}.lang-sm[lang=sk]{background-position:0 -1012px}.lang-sm[lang=sl]{background-position:0 -1028px}.lang-sm[lang=sq]{background-position:0 -1044px}.lang-sm[lang=sr]{background-position:0 -1060px}.lang-sm[lang=sv]{background-position:0 -1076px}.lang-sm[lang=th]{background-position:0 -1092px}.lang-sm[lang=tr]{background-position:0 -1108px}.lang-sm[lang=uk]{background-position:0 -1124px}.lang-sm[lang=vi]{background-position:0 -1140px}.lang-sm[lang=zh]{background-position:0 -1156px}.lang-lg[lang=ar]{background-position:0 -1188px}.lang-lg[lang=be]{background-position:0 -1210px}.lang-lg[lang=bg]{background-position:0 -1232px}.lang-lg[lang=cs]{background-position:0 -1254px}.lang-lg[lang=da]{background-position:0 -1276px}.lang-lg[lang=de]{background-position:0 -1298px}.lang-lg[lang=el]{background-position:0 -1320px}.lang-lg[lang=en]{background-position:0 -1342px}.lang-lg[lang=es]{background-position:0 -1364px}.lang-lg[lang=et]{background-position:0 -1386px}.lang-lg[lang=fi]{background-position:0 -1408px}.lang-lg[lang=fr]{background-position:0 -1430px}.lang-lg[lang=ga]{background-position:0 -1452px}.lang-lg[lang=hi]{background-position:0 -1474px}.lang-lg[lang=hr]{background-position:0 -1496px}.lang-lg[lang=hu]{background-position:0 -1518px}.lang-lg[lang=in]{background-position:0 -1540px}.lang-lg[lang=is]{background-position:0 -1562px}.lang-lg[lang=it]{background-position:0 -1584px}.lang-lg[lang=iw]{background-position:0 -1606px}.lang-lg[lang=ja]{background-position:0 -1628px}.lang-lg[lang=ko]{background-position:0 -1650px}.lang-lg[lang=lt]{background-position:0 -1672px}.lang-lg[lang=lv]{background-position:0 -1694px}.lang-lg[lang=mk]{background-position:0 -1716px}.lang-lg[lang=ms]{background-position:0 -1738px}.lang-lg[lang=mt]{background-position:0 -1760px}.lang-lg[lang=nl]{background-position:0 -1782px}.lang-lg[lang=no]{background-position:0 -1804px}.lang-lg[lang=pl]{background-position:0 -1826px}.lang-lg[lang=pt]{background-position:0 -1848px}.lang-lg[lang=ro]{background-position:0 -1870px}.lang-lg[lang=ru]{background-position:0 -1892px}.lang-lg[lang=sk]{background-position:0 -1914px}.lang-lg[lang=sl]{background-position:0 -1936px}.lang-lg[lang=sq]{background-position:0 -1958px}.lang-lg[lang=sr]{background-position:0 -1980px}.lang-lg[lang=sv]{background-position:0 -2002px}.lang-lg[lang=th]{background-position:0 -2024px}.lang-lg[lang=tr]{background-position:0 -2046px}.lang-lg[lang=uk]{background-position:0 -2068px}.lang-lg[lang=vi]{background-position:0 -2090px}.lang-lg[lang=zh]{background-position:0 -2112px}.lang-lbl-en:after,.lang-lbl-full:after,.lang-lbl:after{content:"Unknown language"}.lang-lbl[lang=ar]:after{content:"\000627\000644\000639\000631\000628\00064A\000629"}.lang-lbl[lang=be]:after{content:"\000411\000435\00043B\000430\000440\000443\000441\00043A\000456"}.lang-lbl[lang=bg]:after{content:"\000411\00044A\00043B\000433\000430\000440\000441\00043A\000438"}.lang-lbl[lang=cs]:after{content:"\00010Ce\000161tina"}.lang-lbl[lang=da]:after{content:"Dansk"}.lang-lbl[lang=de]:after{content:""}.lang-lbl[lang=el]:after{content:"\000395\0003BB\0003BB\0003B7\0003BD\0003B9\0003BA\0003AC"}.lang-lbl[lang=en]:after{content:"English"}.lang-lbl[lang=es]:after{content:"Espa\0000F1ol"}.lang-lbl[lang=et]:after{content:"Eesti"}.lang-lbl[lang=fi]:after{content:"Suomi"}.lang-lbl[lang=fr]:after{content:"Fran\0000E7ais"}.lang-lbl[lang=ga]:after{content:"Gaeilge"}.lang-lbl[lang=hi]:after{content:"\000939\00093F\000902\000926\000940"}.lang-lbl[lang=hr]:after{content:"Hrvatski"}.lang-lbl[lang=hu]:after{content:"Magyar"}.lang-lbl[lang=in]:after{content:"Bahasa\000020indonesia"}.lang-lbl[lang=is]:after{content:"\0000CDslenska"}.lang-lbl[lang=it]:after{content:"Italiano"}.lang-lbl[lang=iw]:after{content:"\0005E2\0005D1\0005E8\0005D9\0005EA"}.lang-lbl[lang=ja]:after{content:"\0065E5\00672C\008A9E"}.lang-lbl[lang=ko]:after{content:"\00D55C\00AD6D\00C5B4"}.lang-lbl[lang=lt]:after{content:"Lietuvi\000173"}.lang-lbl[lang=lv]:after{content:"Latvie\000161u"}.lang-lbl[lang=mk]:after{content:"\00041C\000430\00043A\000435\000434\00043E\00043D\000441\00043A\000438"}.lang-lbl[lang=ms]:after{content:"Bahasa\000020melayu"}.lang-lbl[lang=mt]:after{content:"Malti"}.lang-lbl[lang=nl]:after{content:"Nederlands"}.lang-lbl[lang=no]:after{content:"Norsk"}.lang-lbl[lang=pl]:after{content:"Polski"}.lang-lbl[lang=pt]:after{content:"Portugu\0000EAs"}.lang-lbl[lang=ro]:after{content:"Rom\0000E2n\000103"}.lang-lbl[lang=ru]:after{content:"\000420\000443\000441\000441\00043A\000438\000439"}.lang-lbl[lang=sk]:after{content:"Sloven\00010Dina"}.lang-lbl[lang=sl]:after{content:"Sloven\000161\00010Dina"}.lang-lbl[lang=sq]:after{content:"Shqipe"}.lang-lbl[lang=sr]:after{content:"\000421\000440\00043F\000441\00043A\000438"}.lang-lbl[lang=sv]:after{content:"Svenska"}.lang-lbl[lang=th]:after{content:"\000E44\000E17\000E22"}.lang-lbl[lang=tr]:after{content:"T\0000FCrk\0000E7e"}.lang-lbl[lang=uk]:after{content:"\000423\00043A\000440\000430\000457\00043D\000441\00044C\00043A\000430"}.lang-lbl[lang=vi]:after{content:"Ti\001EBFng\000020vi\001EC7t"}.lang-lbl[lang=zh]:after{content:"\004E2D\006587"}.lang-lbl-en[lang=ar]:after{content:"Arabic"}.lang-lbl-en[lang=be]:after{content:"Belarusian"}.lang-lbl-en[lang=bg]:after{content:"Bulgarian"}.lang-lbl-en[lang=cs]:after{content:"Czech"}.lang-lbl-en[lang=da]:after{content:"Danish"}.lang-lbl-en[lang=de]:after{content:"German"}.lang-lbl-en[lang=el]:after{content:"Greek"}.lang-lbl-en[lang=en]:after{content:"English"}.lang-lbl-en[lang=es]:after{content:"Spanish"}.lang-lbl-en[lang=et]:after{content:"Estonian"}.lang-lbl-en[lang=fi]:after{content:"Finnish"}.lang-lbl-en[lang=fr]:after{content:"French"}.lang-lbl-en[lang=ga]:after{content:"Irish"}.lang-lbl-en[lang=hi]:after{content:"Hindi"}.lang-lbl-en[lang=hr]:after{content:"Croatian"}.lang-lbl-en[lang=hu]:after{content:"Hungarian"}.lang-lbl-en[lang=in]:after{content:"Indonesian"}.lang-lbl-en[lang=is]:after{content:"Icelandic"}.lang-lbl-en[lang=it]:after{content:"Italian"}.lang-lbl-en[lang=iw]:after{content:"Hebrew"}.lang-lbl-en[lang=ja]:after{content:"Japanese"}.lang-lbl-en[lang=ko]:after{content:"Korean"}.lang-lbl-en[lang=lt]:after{content:"Lithuanian"}.lang-lbl-en[lang=lv]:after{content:"Latvian"}.lang-lbl-en[lang=mk]:after{content:"Macedonian"}.lang-lbl-en[lang=ms]:after{content:"Malay"}.lang-lbl-en[lang=mt]:after{content:"Maltese"}.lang-lbl-en[lang=nl]:after{content:"Dutch"}.lang-lbl-en[lang=no]:after{content:"Norwegian"}.lang-lbl-en[lang=pl]:after{content:"Polish"}.lang-lbl-en[lang=pt]:after{content:"Portuguese"}.lang-lbl-en[lang=ro]:after{content:"Romanian"}.lang-lbl-en[lang=ru]:after{content:"Russian"}.lang-lbl-en[lang=sk]:after{content:"Slovak"}.lang-lbl-en[lang=sl]:after{content:"Slovenian"}.lang-lbl-en[lang=sq]:after{content:"Albanian"}.lang-lbl-en[lang=sr]:after{content:"Serbian"}.lang-lbl-en[lang=sv]:after{content:"Swedish"}.lang-lbl-en[lang=th]:after{content:"Thai"}.lang-lbl-en[lang=tr]:after{content:"Turkish"}.lang-lbl-en[lang=uk]:after{content:"Ukrainian"}.lang-lbl-en[lang=vi]:after{content:"Vietnamese"}.lang-lbl-en[lang=zh]:after{content:"Chinese"}.lang-lbl-full[lang=ar]:after{content:"\000627\000644\000639\000631\000628\00064A\000629\0000A0/\0000A0Arabic"}.lang-lbl-full[lang=be]:after{content:"\000411\000435\00043B\000430\000440\000443\000441\00043A\000456\0000A0/\0000A0Belarusian"}.lang-lbl-full[lang=bg]:after{content:"\000411\00044A\00043B\000433\000430\000440\000441\00043A\000438\0000A0/\0000A0Bulgarian"}.lang-lbl-full[lang=cs]:after{content:"\00010Ce\000161tina\0000A0/\0000A0Czech"}.lang-lbl-full[lang=da]:after{content:"Dansk\0000A0/\0000A0Danish"}.lang-lbl-full[lang=de]:after{content:"DE"}.lang-lbl-full[lang=el]:after{content:"\000395\0003BB\0003BB\0003B7\0003BD\0003B9\0003BA\0003AC\0000A0/\0000A0Greek"}.lang-lbl-full[lang=en]:after{content:"EN"}.lang-lbl-full[lang=es]:after{content:"Espa\0000F1ol\0000A0/\0000A0Spanish"}.lang-lbl-full[lang=et]:after{content:"Eesti\0000A0/\0000A0Estonian"}.lang-lbl-full[lang=fi]:after{content:"Suomi\0000A0/\0000A0Finnish"}.lang-lbl-full[lang=fr]:after{content:"Fran\0000E7ais\0000A0/\0000A0French"}.lang-lbl-full[lang=ga]:after{content:"Gaeilge\0000A0/\0000A0Irish"}.lang-lbl-full[lang=hi]:after{content:"\000939\00093F\000902\000926\000940\0000A0/\0000A0Hindi"}.lang-lbl-full[lang=hr]:after{content:"Hrvatski\0000A0/\0000A0Croatian"}.lang-lbl-full[lang=hu]:after{content:"Magyar\0000A0/\0000A0Hungarian"}.lang-lbl-full[lang=in]:after{content:"Bahasa\000020indonesia\0000A0/\0000A0Indonesian"}.lang-lbl-full[lang=is]:after{content:"\0000CDslenska\0000A0/\0000A0Icelandic"}.lang-lbl-full[lang=it]:after{content:"Italiano\0000A0/\0000A0Italian"}.lang-lbl-full[lang=iw]:after{content:"\0005E2\0005D1\0005E8\0005D9\0005EA\0000A0/\0000A0Hebrew"}.lang-lbl-full[lang=ja]:after{content:"\0065E5\00672C\008A9E\0000A0/\0000A0Japanese"}.lang-lbl-full[lang=ko]:after{content:"\00D55C\00AD6D\00C5B4\0000A0/\0000A0Korean"}.lang-lbl-full[lang=lt]:after{content:"Lietuvi\000173\0000A0/\0000A0Lithuanian"}.lang-lbl-full[lang=lv]:after{content:"Latvie\000161u\0000A0/\0000A0Latvian"}.lang-lbl-full[lang=mk]:after{content:"\00041C\000430\00043A\000435\000434\00043E\00043D\000441\00043A\000438\0000A0/\0000A0Macedonian"}.lang-lbl-full[lang=ms]:after{content:"Bahasa\000020melayu\0000A0/\0000A0Malay"}.lang-lbl-full[lang=mt]:after{content:"Malti\0000A0/\0000A0Maltese"}.lang-lbl-full[lang=nl]:after{content:"Nederlands\0000A0/\0000A0Dutch"}.lang-lbl-full[lang=no]:after{content:"Norsk\0000A0/\0000A0Norwegian"}.lang-lbl-full[lang=pl]:after{content:"Polski\0000A0/\0000A0Polish"}.lang-lbl-full[lang=pt]:after{content:"Portugu\0000EAs\0000A0/\0000A0Portuguese"}.lang-lbl-full[lang=ro]:after{content:"Rom\0000E2n\000103\0000A0/\0000A0Romanian"}.lang-lbl-full[lang=ru]:after{content:"\000420\000443\000441\000441\00043A\000438\000439\0000A0/\0000A0Russian"}.lang-lbl-full[lang=sk]:after{content:"Sloven\00010Dina\0000A0/\0000A0Slovak"}.lang-lbl-full[lang=sl]:after{content:"Sloven\000161\00010Dina\0000A0/\0000A0Slovenian"}.lang-lbl-full[lang=sq]:after{content:"Shqipe\0000A0/\0000A0Albanian"}.lang-lbl-full[lang=sr]:after{content:"\000421\000440\00043F\000441\00043A\000438\0000A0/\0000A0Serbian"}.lang-lbl-full[lang=sv]:after{content:"Svenska\0000A0/\0000A0Swedish"}.lang-lbl-full[lang=th]:after{content:"\000E44\000E17\000E22\0000A0/\0000A0Thai"}.lang-lbl-full[lang=tr]:after{content:"TR"}.lang-lbl-full[lang=uk]:after{content:"\000423\00043A\000440\000430\000457\00043D\000441\00044C\00043A\000430\0000A0/\0000A0Ukrainian"}.lang-lbl-full[lang=vi]:after{content:"Ti\001EBFng\000020vi\001EC7t\0000A0/\0000A0Vietnamese"}.lang-lbl-full[lang=zh]:after{content:"\004E2D\006587\0000A0/\0000A0Chinese"}.lang-lg:before,.lang-sm:before,.lang-xs:before{content:'\0000A0'}.lang-xs.lang-lbl,.lang-xs.lang-lbl-en,.lang-xs.lang-lbl-full{padding-left:16px}.lang-sm.lang-lbl,.lang-sm.lang-lbl-en,.lang-sm.lang-lbl-full{padding-left:24px}.lang-lg.lang-lbl,.lang-lg.lang-lbl-en,.lang-lg.lang-lbl-full{padding-left:32px}.lang-lg.lang-lbl-en:before,.lang-lg.lang-lbl-full:before,.lang-lg.lang-lbl:before,.lang-sm.lang-lbl-en:before,.lang-sm.lang-lbl-full:before,.lang-sm.lang-lbl:before,.lang-xs.lang-lbl-en:before,.lang-xs.lang-lbl-full:before,.lang-xs.lang-lbl:before{content:''}.lang-lg,.lang-lg:after{top:0;position:relative}.lang-sm{top:1px;position:relative}.lang-sm:after{top:-1px;position:relative}.lang-xs{top:4px;position:relative}.lang-xs:after{top:-4px;position:relative}.lead>.lang-lg{top:2px}.lead>.lang-lg:after{top:-2px}.lead>.lang-sm{top:6px}.lead>.lang-sm:after{top:-6px}.lead>.lang-xs{top:8px}.lead>.lang-xs:after{top:-8px}small>.lang-sm{top:-1px}small>.lang-sm:after{top:1px}small>.lang-xs{top:2px}small>.lang-xs:after{top:-2px}h1>.lang-lg{top:9px}h1>.lang-lg:after{top:-9px}h1>.lang-sm{top:12px}h1>.lang-sm:after{top:-12px}h1>.lang-xs{top:14px}h1>.lang-xs:after{top:-14px}h2>.lang-lg{top:5px}h2>.lang-lg:after{top:-5px}h2>.lang-sm{top:8px}h2>.lang-sm:after{top:-8px}h2>.lang-xs{top:10px}h2>.lang-xs:after{top:-10px}h3>.lang-lg{top:1px}h3>.lang-lg:after{top:-1px}h3>.lang-sm{top:5px}h3>.lang-sm:after{top:-5px}h3>.lang-xs{top:8px}h3>.lang-xs:after{top:-8px}h4>.lang-lg{top:-1px}h4>.lang-lg:after,h4>.lang-sm{top:1px}h4>.lang-sm:after{top:-1px}h4>.lang-xs{top:4px}h4>.lang-xs:after{top:-4px}h5>.lang-sm,h5>.lang-sm:after{top:0}h5>.lang-xs{top:2px}h5>.lang-xs:after{top:-2px}h6>.lang-sm,h6>.lang-sm:after{top:0}h6>.lang-xs{top:1px}h6>.lang-xs:after{top:-1px}.btn>.lang-sm{top:2px}.btn>.lang-sm:after{top:-2px}.btn>.lang-xs{top:4px}.btn>.lang-xs:after{top:-4px}.btn.btn-xs>.lang-sm,.btn.btn-xs>.lang-sm:after{top:0}.btn.btn-xs>.lang-xs{top:3px}.btn.btn-xs>.lang-xs:after{top:-3px}.btn.btn-sm>.lang-sm,.btn.btn-sm>.lang-sm:after{top:0}.btn.btn-sm>.lang-xs{top:3px}.btn.btn-sm>.lang-xs:after{top:-3px}.btn.btn-lg>.lang-lg{top:1px}.btn.btn-lg>.lang-lg:after{top:-1px}.btn.btn-lg>.lang-sm{top:3px}.btn.btn-lg>.lang-sm:after{top:-3px}.btn.btn-lg>.lang-xs{top:6px}.btn.btn-lg>.lang-xs:after{top:-6px}



.active-lang{
	color: #4bd485 !important;
	font-weight: bold;
}

.small-lang{
	margin-top: -8px;
}

.small-lang span{
	font-size: 5pt;
}

.margin-top{
	margin-top: 20px;
}

/*###################
	 
	NEW FOOTER 
	
#####################*/

footer {
    padding: 90px 0 50px;
/*     background: #333333; */
	background-image: linear-gradient(to top, #262626 0%, #242424 100%);
}
footer .footer-logo {
    width: 80%;
    max-width: 132px;
}
footer h6 {
    letter-spacing: .1em;
    font-size: .9em;
}
.form-wrap .social-login p,
footer .footer-bottom p,
footer a {
    font-size: 90%;
/*     color: #787878; */
}
footer .footer-bottom {
    border-top: 1px dashed #5e5e5e;
    padding: 20px 0;
}
footer .footer-bottom p {
    margin-bottom: 0;
}
footer .footer-bottom h6 {
    display: inline-block;
    padding: 0 10px;
    margin: 0;
    color: #787878;
}

.mtn{
	margin-top: 15px;
    color: #ffffff;
}
.light-footer ul{
	list-style: none;
}
.light-footer p{
	color: #787878;
}
/*### END FOOTER ###*/

.span2 li i.fa.fa-youtube{
	margin-left: 20px;
}

div.span6.last{
	text-align: right;
}

@media (max-width: 767px) {

	.footerBadge {max-width: 250px;}

}

.dark{
	background-color: #333333;
}
	
.light-dark{
	background-color: #444444;
}

.language-box {
    float: left;
    background: #333333;
    margin-left: 15px;
    margin-right: 15px;
    position: relative;
    width: 110px;
    height: 32px;
    /*box-shadow: 0 1px 2px 2px rgba(0, 0, 0, 0.2);*/
}

.language-box ul {
    position: absolute;
	top: 0;
	right: 0;
	background: #333333;
	height: 30px;
	width: 110px;
	z-index: 999;
	padding: 0;
	-webkit-transition: all .4s;
	-moz-transition: all .4s;
	transition: all .4s;
	overflow: hidden;
	/*border-left: 1px solid #000000;
	border-right: 1px solid #000000;*/
	list-style: none;
}

.language-box ul:hover {
/*     height: 130px; */
	height: 100px;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    transition: all .4s;
    border-bottom: 1px solid #505050;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.20);
    text-decoration: none;
}

.language-box:hover.language-box {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    text-decoration: none;
}

.language-box ul li {
    width: 100%;
    float: none;
    margin: 0;
    padding: 0;
    font-size: 12px;
    border-bottom: 1px solid #444444
}

.language-box i {
    font-size: 15px;
    position: relative;
    top: 5px;
    right: -90px;
    z-index: 9999;
    color: #f5f5f5
}

.language-box ul li:last-child {
    border-bottom: 0
}

.language-box ul li a {
    display: inline-block;
    width: 100%;
    height: 100%;
    padding: 3px 10px
}

.language-box ul li img {
    margin-right: 8px;
    margin-top: 3px;
}

.language-title{
	color: #f5f5f5;
}

.language-title:hover{
	color: #4bd485;
	text-decoration: none !important;
}

.tl-header{
	background: #444444;
}
.tr-header{
	padding-top: 25px;
	background: #444444;
	height: 93px;
}

.cmpgn-btn{
	padding: 14px 25px !important;
	color: #ffffff !important;
	top: -4px;
	margin-left: 20px !important;
	font-size: 18px;
}

ul.header-social-media{
	margin: 0px;
	float: left;
}

ul.header-social-media li {
    float: left;
    margin: 0 2px;
    list-style: none;
}

ul.header-social-media li:first-child {
    margin-left: 0
}

ul.header-social-media li:last-child {
    margin-right: 0
}

ul.header-social-media li i {
    background: #333333;
    padding: 9px 11px;
    color: #ffffff;
}

ul.header-social-media li i:hover {
    background: #151515;
        -webkit-transition: all .4s;
    -moz-transition: all .4s;
    transition: all .4s;

}


ul.header-information {
    margin-left: 10px;
    padding: 4px 0;
    float: left;
}

ul.header-information li {
    float: left;
    margin: 0 10px;
	list-style: none;
}

ul.header-information li a{
	color: #f5f5f5;
}

ul.header-information li a:hover{
	color: #4bd485;
}

ul.header-information li i {
    padding-right: 7px
}

/* ==========================================================================
   =Prduct Navigation
   ========================================================================== */


ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.nav {
  will-change: transform;
  /*position: fixed;
  top: 0;*/
  left: 0;
  width: 100%;
  z-index: 1;
  background: #d3d3d3;
  /* Old browsers */
/*   background: -moz-linear-gradient(-45deg, #707070 8%, #333333 83%); */
  /* FF3.6-15 */
/*   background: -webkit-linear-gradient(-45deg, #707070 8%, #333333 83%); */
  /* Chrome10-25,Safari5.1-6 */
/*   background: linear-gradient(135deg, #707070 8%, #333333 83%); */
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
/*   filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#707070', endColorstr='#333333', GradientType=1); */

  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 20px;
  box-shadow: 0 6px 30px rgba(0,0,0,.14);
}
.productnav-active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.productnav_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.productnav_item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  -webkit-transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
}
.productnav_item:hover {
  opacity: 0.75;
}
.productnav_thumb {
  display: block;
  height: 150px;
  /*background: #f5f5f5;*/
  -webkit-transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
}
.productnav_thumb:before {
  content: attr(data-letter);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 11pt;
  opacity: 0.15;
}
.productnav_thumb img{
	margin-top: 15px;
}
.productnav_title {
  position: absolute;
  top: 140%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #525252;
  margin: 0;
  line-height: 14px;
}
@media (max-width: 850px) {
  .productnav_title {
    font-size: 14px;
  }
}
@media (max-width: 720px) {
  .productnav_title {
    display: none;
  }
  .productnav_thumb {
    height: 90px;
  }
  .productnav_thumb:before {
    font-size: 32px;
    opacity: 0.7;
  }
}
.page {
  height: 140vh;
  will-change: transform;
  -webkit-perspective: 400px;
          perspective: 400px;
  overflow: hidden;
  -webkit-transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
}
.section {
  will-change: transform;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 130vh;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
/*-webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;*/
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  background: #fff;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

@media (max-width: 320px) {
	.page, .section {
		height: 500vh;
	}
}

@media (max-width: 375px) {
	.page, .section {
		height: 440vh;
	}
}

@mediaV1 (max-width: 414px) {
	.page, .section {
		height: 390vh;
	}
}


@media (max-width: 767px) {
	.page, .section {
		  height: 100vh; /* Ekran yüksekliği kadar */
    min-height: 390vh;
	}
}

.section--hidden {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
.section--active {
  -webkit-transform: translateX(0) rotateY(0);
          transform: translateX(0) rotateY(0);
  z-index: 2;
}
.section:before {
  content: attr(data-letter);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 10vh;
  text-transform: uppercase;
  opacity: 0.1;
  z-index: -1;
  min-width: 610px;
}
.section__wrapper {
  width: 100%;
  /*padding: 0 8vw;*/
  padding: 0px;
  /*background: #444444;*/
}
.section__title {
  margin: 0 0 25px 0;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 4px;
}
.section p {
  margin: 0 0 25px 0;
/*   font-family: 'merriweather_sansregular', arial, sans-serif; */
  font-size: 20px;
}
.section p:last-child {
  margin-bottom: 0;
}
.color1 {
  background: #1abc9c;
}
.color2 {
  background: #e74c3c;
}
.color3 {
  background: #3498db;
}
.color4 {
  background: #f4d03f;
}
.color5 {
  background: #9b59b6;
}
.color6 {
  background: #bdc3c7;
}
.logo {
  position: fixed;
  top: 195px;
  right: 7px;
  z-index: 2;
}
@media (max-width: 720px) {
  .logo {
    top: 160px;
  }
}
.logo img {
  width: 45px;
  -webkit-transform: rotate(0);
          transform: rotate(0);
  -webkit-transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
}
.logo img:hover {
  -webkit-transform: rotate(180deg) scale(1.1);
          transform: rotate(180deg) scale(1.1);
}


#hk .rows{
	position: relative;
	margin-right: -15px;
	margin-left: -15px;
}

/* ==========================================================================
   = Product Detail Page
   ========================================================================== */

/* Product Description */
.product-description {
  text-align: left;
}
.product-description span {
/*
  font-size: 12px;
  color: #8a8a8a;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  float: left;
*/
}

.product-description h1 {
  font-weight: 300;
  font-size: 52px;
  color: #8a8a8a;
  letter-spacing: -2px;
  float: left;
  width: 100%;

}
.product-description p {
  font-size: 16px;
  font-weight: 300;
  color: #8a8a8a;
  line-height: 24px;
    float: left;
}

.product-description hr {
	border: 1px solid #e3e3e3;
	margin: 18px 0;
}

.product-description-button-wrapper{
	margin-top: 20px;
}
/* Prduct Image Slider */
.cd-single-item {
  position: relative;
  background: #ffffff; }

.cd-slider-wrapper {
  position: relative;
  z-index: 1;
  -webkit-transition: width 0.4s;
  -moz-transition: width 0.4s;
  transition: width 0.4s;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: width; }
  @media only screen and (min-width: 1024px) {
    .cd-slider-wrapper {
      width: 50%; }
      .cd-slider-active .cd-slider-wrapper {
        width: 100%; } }

.cd-slider {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 20px; }
  .cd-slider::before {
    /* never visible - this is used in jQuery to check the current MQ */
    content: 'mobile';
    display: none; }
  .cd-slider li {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    height: 100%;
    width: 100%;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.3s;
    -moz-transition: -moz-transform 0.3s;
    transition: transform 0.3s;
  background: #d3d3d3;
  /* Old browsers */
/*   background: -moz-linear-gradient(-45deg, #707070 8%, #333333 83%); */
  /* FF3.6-15 */
/*   background: -webkit-linear-gradient(-45deg, #707070 8%, #333333 83%); */
  /* Chrome10-25,Safari5.1-6 */
/*   background: linear-gradient(135deg, #707070 8%, #333333 83%); */
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
/*   filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#707070', endColorstr='#333333', GradientType=1); */
  }
    .cd-slider li img {
      display: block;
      width: 100%; }
    .cd-slider li.selected {
      position: relative;
      z-index: 2;
      -webkit-transform: translateX(0);
      -moz-transform: translateX(0);
      -ms-transform: translateX(0);
      -o-transform: translateX(0);
      transform: translateX(0); }
    .cd-slider li.move-left {
      -webkit-transform: translateX(-100%);
      -moz-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
      -o-transform: translateX(-100%);
      transform: translateX(-100%); }
  @media only screen and (min-width: 1024px) {
    .cd-slider {
  position: relative; /* wichtig, damit wir absolut positionieren können */
}

.cd-link {
  position: absolute;
  top: 10px;   /* Abstand von oben */
  right: 10px; /* Abstand von rechts */
  z-index: 5;  /* über dem Overlay */
  background: #52d388; 
  color: #fff;
  padding: 6px 12px;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
}

.cd-link:hover {
  background: #3cab6c;
}

      .cd-slider::before {
        /* never visible - this is used in jQuery to check the current MQ */
        content: 'desktop'; }
      .cd-slider::after {
        /* slider cover layer - to indicate the image is clickable */
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background: rgba(82, 211, 136, 0.4) url("../../_layout/images/cd-icon-zoom.svg") no-repeat center center;
        /* size of the icon */
        background-size: 48px;
        opacity: 0;
        z-index: 4;
        -webkit-transition: opacity 0.2s;
        -moz-transition: opacity 0.2s;
        transition: opacity 0.2s; }
      .no-touch .cd-slider:hover::after {
        opacity: 1; }
      .cd-slider-active .cd-slider {
        cursor: auto; }
        .cd-slider-active .cd-slider::after {
          display: none; } }

@media only screen and (min-width: 1024px) {
  .cd-slider-navigation li, .cd-slider-pagination {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.4s 0s, visibility 0s 0.4s;
    -moz-transition: opacity 0.4s 0s, visibility 0s 0.4s;
    transition: opacity 0.4s 0s, visibility 0s 0.4s; }
    .cd-slider-active .cd-slider-navigation li, .cd-slider-active .cd-slider-pagination {
      opacity: 1;
      visibility: visible;
      -webkit-transition: opacity 0.4s 0.4s, visibility 0s 0.4s;
      -moz-transition: opacity 0.4s 0.4s, visibility 0s 0.4s;
      transition: opacity 0.4s 0.4s, visibility 0s 0.4s; } }
.cd-slider-navigation li {
  position: absolute;
  z-index: 2;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%); }
  .cd-slider-navigation li:first-of-type {
    left: 10px; }
  .cd-slider-navigation li:last-of-type {
    right: 10px; }
  .cd-slider-navigation li a {
    display: none;
    width: 48px;
    height: 48px;
    background: url("../../_layout/images/cd-icon-arrow.svg") no-repeat center center;
    -webkit-transition: opacity 0.2s 0s, visibility 0s 0s;
    -moz-transition: opacity 0.2s 0s, visibility 0s 0s;
    transition: opacity 0.2s 0s, visibility 0s 0s;
    /* image replacement */
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap; }
    .cd-slider-navigation li a.inactive {
      opacity: 0;
      visibility: hidden;
      -webkit-transition: opacity 0.2s 0s, visibility 0s 0.2s;
      -moz-transition: opacity 0.2s 0s, visibility 0s 0.2s;
      transition: opacity 0.2s 0s, visibility 0s 0.2s; }
    .no-touch .cd-slider-navigation li a:hover {
      opacity: .7; }
  .cd-slider-navigation li:first-of-type a {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg); }
  @media only screen and (min-width: 1024px) {
    .cd-slider-navigation li:first-child {
      left: 30px; }
    .cd-slider-navigation li:last-child {
      right: 30px; } }

.cd-slider-pagination {
  /* you won't see this element in the html but it will be created using jQuery */
  position: absolute;
  z-index: 2;
  bottom: 30px;
  left: 50%;
  right: auto;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  visibility: hidden; }
  .cd-slider-pagination:after {
    content: "";
    display: table;
    clear: both; }
  .touch .cd-slider-pagination {
    visibility: hidden; }
  .cd-slider-pagination li {
    display: inline-block;
    float: left;
    margin: 0 5px; }
    .cd-slider-pagination li.selected a {
      background: #f5f4f3; }
  .cd-slider-pagination a {
    display: block;
    height: 12px;
    width: 12px;
    border-radius: 50%;
    border: 1px solid #f5f4f3;
    /* fix a bug in IE9/10 - transparent anchor not clickable */
    background-color: rgba(255, 255, 255, 0);
    /* image replacement */
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap; }

.cd-slider-wrapper .cd-close {
  display: none;
  position: absolute;
  z-index: 2;
  top: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: url("../../_layout/images/cd-icon-close.svg") no-repeat center center;
  /* image replacement */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: -webkit-transform 0.3s 0s, visibility 0s 0.4s;
  -moz-transition: -moz-transform 0.3s 0s, visibility 0s 0.4s;
  transition: transform 0.3s 0s, visibility 0s 0.4s; }
  .cd-slider-active .cd-slider-wrapper .cd-close {
    visibility: visible;
    opacity: 1;
    -webkit-transition: -webkit-transform 0.3s 0s, visibility 0s 0s, opacity 0.4s 0.4s;
    -moz-transition: -moz-transform 0.3s 0s, visibility 0s 0s, opacity 0.4s 0.4s;
    transition: transform 0.3s 0s, visibility 0s 0s, opacity 0.4s 0.4s; }
  .no-touch .cd-slider-active .cd-slider-wrapper .cd-close:hover {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2); }
  @media only screen and (min-width: 1024px) {
    .cd-slider-wrapper .cd-close {
      display: block; } }

.cd-item-info {
  padding: 50px 5%; }
  .cd-item-info h2, .cd-item-info p {
    max-width: 480px; }
  .cd-item-info h2 {
    font-size: 2.4rem;
    font-weight: bold; }
  .cd-item-info p {
    line-height: 1.6;
    margin: 1em 0;
    color: #666666; }
  .cd-item-info .add-to-cart {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    border: none;
    padding: .8em 1.6em;
    background-color: #f42e4e;
    color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 1.6rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px; }
  @media only screen and (min-width: 1024px) {
    .cd-item-info {
      position: absolute;
      width: 50%;
      top: 0;
      right: 0;
      padding: 0px 60px;
      margin: 0; } }

.cd-content p {
  width: 90%;
  max-width: 768px;
  padding: 4em 0;
  margin: 0 auto;
  color: #afa8a0;
  line-height: 1.8; }

/* ==========================================================================
   =Related Products 
   ========================================================================== */

.relatedProductsCnt{
	width: 100%; 
	margin: 50px;
	margin-left: 15px;
	padding-left: 0px;
}

.relatedProductsCnt h3{
	float: left;
	width: 100%;
	text-align: left;
	font-size: 30px;
}

.relatedProductsCnt .span3:nth-child(2){
	margin-left: -15px;
}

.relatedProductsCnt .span2:nth-child(2){
	margin-left: -15px;
}

.relatedProductBox{
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 1px 1px 15px 5px rgba(0, 0, 0, 0.1);
}

.relatedProductBox img{
}

.relatedProductBox p{
	font-size: 12pt;
	padding: 15px;  
}

.relatedProductBox a:hover{
	color: inherit;
	text-decoration: none;	
}

.prod-detail-btn{
	margin-left: -10px;
}
.prod-detail-btn-vid.btn-inside-out>.before, .prod-detail-btn-vid.btn-inside-out-invert>.after{
	background: #333333;
	color: #ffffff;
}

.product-description .btn.prod-detail-btn-vid [class*=fa-]{
	color: rgba(255, 255, 255, 0.35);
	opacity: 1;
}

.product-btn {
	border: none;
	font-family: 'merriweather_sansregular', arial, sans-serif;
	font-size: inherit;
	color: inherit;
	background: none;
	cursor: pointer;
	padding: 0px 30px 10px 30px;
	display: inline-block;
	margin: 31px 20px 15px 30px;
	margin-left: 0px;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 700;
	outline: none;
	position: relative;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.product-btn:after {
	content: '';
	position: absolute;
	z-index: -1;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.product-link-btn{
	margin-bottom: 0px;
	margin-top: 20px;
	display: none;
}

/* Buttons */
.download-btn {
	background: #d3d3d3;
	color: #fff;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden;
}

.download-btn:active {
	background: #52D388;
	top: 2px;
}

.download-btn span {
	display: inline-block;
	width: 100%;
	height: 100%;
	-webkit-transition: all 0.3s;
	-webkit-backface-visibility: hidden;
	-moz-transition: all 0.3s;
	-moz-backface-visibility: hidden;
	transition: all 0.3s;
	backface-visibility: hidden;
}

.download-btn:before {
	position: absolute;
	height: 100%;
	width: 100%;
	line-height: 2.5;
	font-size: 180%;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.download-btn:active:before {
	color: #703b87;
}

.download-btn-animation:hover span {
	-webkit-transform: translateY(300%);
	-moz-transform: translateY(300%);
	-ms-transform: translateY(300%);
	transform: translateY(300%);
}

.download-btn-animation:before {
	left: 0;
	top: -100%;
}

.download-btn-animation:hover:before {
	top: 0;
}

.download-btn-label:before {
	content: "Download";
	font-size: 9pt;
	text-align: center;
	padding-top: 10px;
	color: #ffffff;
}

.preview-btn-label:before {
	content: "Vorschau";
	font-size: 9pt;
	text-align: center;
	padding-top: 10px;
	color: #ffffff;
}

.video-btn-label:before {
	content: "Video";
	font-size: 9pt;
	text-align: center;
	padding-top: 10px;
	color: #ffffff;
}

.btn-icon{
	height: 30px;
	margin-top: 10px;
}

.product-link-btn {
	background: #333333;
	color: #fff;
}

.product-link-btn:hover {
	background: #52D388;	
	color: #ffffff;
	text-decoration: none;

}

.product-link-btn:active {
	background: #f58500;
	top: 2px;
}

.product-link-btn:before {
	position: absolute;
	height: 100%;
	left: 0;
	top: 0;
	line-height: 3;
	font-size: 140%;
	width: 60px;
}

.product-btn-icon:before {
	content: url('../../_content/icons/arrow-right.svg');
	width: 20px;
}

.product-btn-animation {
	padding: 15px 0px;
	width: 100%;
	overflow: hidden;
}

.product-btn-animation:before {
	left: auto;
	right: 10px;
	z-index: 2;
}

.product-btn-animation:after {
	width: 30%;
	height: 200%;
	background: rgba(255,255,255,0.1);
	z-index: 1;
	right: 0;
	top: 0;
	margin: -5px 0 0 -5px;
	-webkit-transform-origin: 0 0;
	-webkit-transform: rotate(-20deg);
	-moz-transform-origin: 0 0;
	-moz-transform: rotate(-20deg);
	-ms-transform-origin: 0 0;
	-ms-transform: rotate(-20deg);
	transform-origin: 0 0;
	transform: rotate(-20deg);
}

.product-btn-animation:hover:after {
	width: 40%;
}


div.card.span3{
	padding: 0px;
	margin-right: 30px
}
.card {
  border-radius: 20px !important;
  box-shadow: 0px 0px 20px 3px rgba(0, 0, 0, 0.1);
  margin: 20px 0px;
}

.card-head-dark {
  position: relative;
  background: #d3d3d3;
  /* Old browsers */
/*   background: -moz-linear-gradient(-45deg, #707070 8%, #333333 83%); */
  /* FF3.6-15 */
/*   background: -webkit-linear-gradient(-45deg, #707070 8%, #333333 83%); */
  /* Chrome10-25,Safari5.1-6 */
/*   background: linear-gradient(135deg, #707070 8%, #333333 83%); */
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
/*   filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#707070', endColorstr='#333333', GradientType=1); */
  /* IE6-9 fallback on horizontal gradient */
  border-radius: 20px 20px 0px 0px;
  min-height: 212px;
}

.card-head-light {
  position: relative;
  background: #fa782e;
  /* Old browsers */
  background: -moz-linear-gradient(-45deg, #f5f5f5 8%, #dddddd 83%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(-45deg, #f5f5f5 8%, #dddddd 83%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(135deg, #f5f5f5 8%, #dddddd 83%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#f5f5f5', endColorstr='#dddddd', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
  border-radius: 0;
}

.card-logo {
  width: 55px;
  margin: 20px;
}
.card-logo2 {
   position: absolute;
  top: 10px;
  right: 10px;
  background: white;
  border-radius: 50%;
  padding: 5px;
  cursor: pointer;
}

.product-img {
  position: relative;
}

.product-detail {
  padding: 0 20px;
  font-size: 11px;
  color: #fff;
}

.product-detail h2 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 2px;
  padding-bottom: 10px;
  text-transform: uppercase;
}

.back-text {
  display: inline-block;
  font-size: 55px;
  font-weight: 900;
  margin-left: -7px;
  margin-top: -12px;
  opacity: 0.05;
}

.card-body {
  background: #fff;
  border-radius: 0 0 25px 25px;
  padding: 0px !important;
}

.product-title {
  	padding: 20px 20px 5px 20px;
	display: block;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0px;
	text-transform: uppercase;
	line-height: 20px;
}

.product-title b {
  font-weight: 900;
  letter-spacing: 0px;
}

.badge {
  position: relative;
  font-size: 10px;
  font-weight: 300;
  color: #fff;
  background: #52D388;
  padding: 2px 5px;
  border-radius: 4px;
  top: -2px;
  margin-left: 5px;
}

.product-caption {
	display: block;
	padding: 0 20px 20px 20px;
	font-size: 9px;
	line-height: 11px;
	font-weight: 400;
	text-transform: uppercase;
}

.product-rating {
  padding: 0 20px;
  font-size: 11px;
  display: none;
}

.product-rating i.grey {
  color: #acacab;
}

.product-link {
  background: #333333;
  margin-top: 10px;
  padding: 15px 20px;
  text-align: center;
  display: block;
  font-size: 14pt;
  font-weight: 200;
  color: #fff;
}

.product-link b {
  margin-left: 5px;
}

/*-- Product Details --*/
.product-details {}
.product-details .title {
  display: block;
  font-size: 30px;
/*   margin-bottom: 30px; */
  margin-top: 7px;
  text-transform: none;
}
/*-- Share Icons --*/
.product-details .share-icons {}
.product-details .share-icons a {
  display: inline-block;
  font-size: 16px;
  margin-right: 20px;
  text-transform: capitalize;
}
.product-details .share-icons a:hover {
	text-decoration: none;
}

.product-details .share-icons a i {
  display: block;
  float: left;
  line-height: 26px;
  margin-right: 10px;
}
/*-- Info Tab List --*/
.pro-info-tab-list {
  border-bottom: 1px solid #ddd;
}
.pro-info-tab-list li {
  bottom: -1px;
  display: block;
  float: left;
  margin-right: 30px;
  position: relative;
  z-index: 2;
}
.pro-info-tab-list li a {
  border-bottom: 2px solid transparent;
  color: #282828;
  display: block;
  font-size: 18px;
  font-weight: 500;
  line-height: 14px;
  padding-bottom: 15px;
  text-transform: uppercase;
}
.pro-info-tab-list li.active a {
  border-bottom: 2px solid #000000;
}
/*-- Info Tab Content --*/
.pro-info-tab {
  padding-top: 20px;
}
.pro-info-tab a {
  background-color: #282828;
  border: 0 none;
  color: #fff;
  display: inline-block;
  font-size: 13px;
  font-weight: 400;
  margin: 0;
  padding: 10px 15px;
  text-shadow: none;
  text-transform: uppercase;
}
.table-data-sheet {
  background: #fff none repeat scroll 0 0;
  border-bottom: 1px solid #ebebeb;
  margin: 0 0 20px;
  width: 100%;
}
.table-data-sheet tr {
  border-top: 1px solid #ebebeb;
}
.table-data-sheet tr td {
  padding: 10px 20px 11px;
}
.table-data-sheet tr td:first-child {
  border-right: 1px solid #ebebeb;
  color: #333;
  font-weight: 700;
  width: 30%;
}
.table-data-sheet tr.even {
  background-color: #fdfdfd;
}

.justify{
	text-align: justify;
}

.companyView{
	padding: 100px 0 80px 0 !important;
}

.highlight{
	color: #52D388;
	font-weight: bold;
}

.inlineLogo{
	height: 32px;
	margin: 7.5px 0px 0px 0px;
}

.screen{
	background-image: #000000 !important;
}

.mobileIconBox{
	background: #ffffff;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	padding: 20px 20px 10px 20px;
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
	margin-bottom: 25px;
	min-height: 150px;
}

.mobileIconBox:hover{
	background: #4bd485;
	-webkit-transition: background 800ms linear;
    -ms-transition: background 800ms linear;
    transition: background 800ms linear;
    text-decoration: none;
}

.mobileIconBox:hover p{
	color: #ffffff;
	text-decoration: none !important;
	font-weight: bold;
	text-align: center;
}

div.serviceIconBox{
	height: 75px;
	margin-left: auto;
	margin-right: auto;
	display: block;
	padding-bottom: 10px;
	background-position: center center;
	background-size: contain;
	background-repeat: no-repeat;
}

.mobileIconBox .hk{
	background-image: url("../../_content/services/heizkoerpersteuerung.svg");
}

.mobileIconBox:hover .hk{
	background-image: url("../../_content/services/heizkoerpersteuerung-light.svg");
}

.mobileIconBox .fb{
	background-image: url("../../_content/services/fussbodenheizungssteuerung.svg");
}

.mobileIconBox:hover .fb{
	background-image: url("../../_content/services/fussbodenheizungssteuerung-light.svg");
}

.mobileIconBox .ks{
	background-image: url("../../_content/services/kesselsteuerung.svg");
}

.mobileIconBox:hover .ks{
	background-image: url("../../_content/services/kesselsteuerung-light.svg");
}

.mobileIconBox .eth{
	background-image: url("../../_content/services/etagenheizungssteuerung.svg");
}

.mobileIconBox:hover .eth{
	background-image: url("../../_content/services/etagenheizungssteuerung-light.svg");
}

.mobileIconBox .ss{
	background-image: url("../../_content/services/sicherheitssystem.svg");
}

.mobileIconBox:hover .ss{
	background-image: url("../../_content/services/sicherheitssystem-light.svg");
}

.mobileIconBox .ls{
	background-image: url("../../_content/services/leckage-system.svg");
}

.mobileIconBox:hover .ls{
	background-image: url("../../_content/services/leckage-system-light.svg");
}

.mobileIconBox .jal{
	background-image: url("../../_content/services/jalousien-steuerung.svg");
}

.mobileIconBox:hover .jal{
	background-image: url("../../_content/services/jalousien-steuerung-light.svg");
}

.mobileIconBox .sd{
	background-image: url("../../_content/services/app-steckdose.svg");
}

.mobileIconBox:hover .sd{
	background-image: url("../../_content/services/app-steckdose-light.svg");
}

.mobileIconBox .pi{
	background-image: url("../../_content/services/pi-sensor.svg");
}

.mobileIconBox:hover .pi{
	background-image: url("../../_content/services/pi-sensor-light.svg");
}

.mobileIconBox .zs{
	background-image: url("../../_content/services/zirkulationssystem.svg");
}

.mobileIconBox:hover .zs{
	background-image: url("../../_content/services/zirkulationssystem-light.svg");
}

.mobileIconBox .fc{
	background-image: url("../../_content/services/fan-coil.svg");
}

.mobileIconBox:hover .fc{
	background-image: url("../../_content/services/fan-coil-light.svg");
}

.mobileIconBoxLink{
	text-decoration: none !important;
}

.serviceIconTitle{
	text-align: center;
	font-weight: normal;
	padding-top: 15px;
	font-family: "OpenSans", arial, sans-serif;
	font-size: 9pt;
	line-height: 13px;
	color: #28353e;
}

.serviceIconTitleBreak{
	display: none;
	text-align: center;
	font-weight: normal;
	padding-top: 15px;
	text-decoration: none;
	font-family: "OpenSans", arial, sans-serif;
}


@media (max-width: 580px) {
	.serviceIconTitle{
		display: none;
	}
	.serviceIconTitleBreak{
		display: block;
	}
	
	.appIcons > div{
		padding: 0px 5px !important;
	}
	
	.mobileIconBox{
		min-height: 189px;
	}
}

@media (max-width: 440px) {
	.mobileIconBox{
		padding: 10px 20px 1px 20px;
	}
	
	.serviceIconTitleBreak{
		padding-bottom: 0px
	}
	
	.mobileIconBox{
		min-height: 169px;
	}
}

@media (max-width: 400px) {
	.serviceIconTitleBreak{
		font-size: 8pt;
		line-height: 15px;
	}
	.mobileIconBox{
		min-height: 151px;
	}
	#cookieModal.modal{
		top: 120px;
	}
}

@media (max-width: 325px) {
	.serviceIconTitleBreak{
		font-size: 8pt;
		line-height: 15px;
		padding: 0px;
		padding-top: 8px;
	}
	.mobileIconBox{
		min-height: 125px;
		padding: 10px 10px 1px 10px;
	}
	
	div.serviceIconBox{
		height: 55px;
	}
}

/*Wiggel Animation for Service Boxes*/
@-ms-keyframes wiggle{0%{-ms-transform:rotate(3deg);}50%{-ms-transform:rotate(-3deg);}100%{-ms-transform:rotate(3deg);}}
@-moz-keyframes wiggle{0%{-moz-transform:rotate(3deg);}50%{-moz-transform:rotate(-3deg);}100%{-moz-transform:rotate(3deg);}}
@-webkit-keyframes wiggle{0%{-webkit-transform:rotate(3deg);}50%{-webkit-transform:rotate(-3deg);}100%{-webkit-transform:rotate(3deg);}}
@keyframes wiggle{0%{transform:rotate(3deg);}50%{transform:rotate(-3deg);}100%{transform:rotate(3deg);}}
.swing:hover{-ms-animation:wiggle .3s 2;-moz-animation:wiggle .3s 2;-webkit-animation:wiggle .3s 2;animation:wiggle .3s 2;}


/*### WIFI Symbol ###*/
.inner {
  max-width: 1024px;
  margin: 0px auto;
  text-align: center;
  z-index: -1;
  position: relative;
  top: 120px;
  left: 15px;
}

/*main element*/
.pulse-icon{
  position: relative;
  display: inline-block;
}
/*icon styling here*/
.pulse-icon .icon-wrap{
  position: relative;
width: 60px;
height: 60px;
box-shadow: 0px 12px 12px 0px rgba(0,0,0,0.1);
text-align: center;
display: inline-block;
border-radius: 50%;
color: #4bd485;
background: #FFFFFF;
position: relative;
z-index: -1;
}
.pulse-icon .icon{
  line-height: 60px;
  font-size: 1.75em;
  animation: grow-shrink 4s ease-out infinite;
}

/*container of all circles and pulses*/
.pulse-icon .elements{
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
}
.pulse-icon .circle{
  border-radius: 50%;
  position: absolute;
}
.pulse-icon .circle-inner{
  width: 80px;
  height: 80px;
  top: -10px;
  left: -10px;
  background: linear-gradient(-180deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.1) 100%);
  animation: grow-circles 4s linear infinite both;
}
.pulse-icon .circle-outer{
  width: 100px;
  height: 100px;
  background: linear-gradient(-180deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.1) 100%);
  top: -20px;
  left: -20px;
  animation: grow-circles 4s linear infinite both;
}

/*series of x pulses of differing sizes*/
.pulse-icon .pulse{
  position: absolute;
  animation: pulse-wave 4s linear infinite both;
  border-radius: 50%;
}
.pulse-icon .pulse-1{
  border: solid 1px rgba(0,0,0,0.25);
  width: 200px;
  height: 200px;
  top: -70px;
  left: -70px;
}
.pulse-icon .pulse-2{
  border: solid 1px rgba(0,0,0,0.35);
  width: 300px;
  height: 300px;
  top: -120px;
  left: -120px;
}
.pulse-icon .pulse-3{
  border: solid 1px rgba(0,0,0,0.45);
  width: 400px;
  height: 400px;
  top: -170px;
  left: -170px;
}

/*Animation for the outewards pulsating waves*/
@keyframes pulse-wave{
  0%{
    opacity: 0;
    transform: scale(0.1);
  }
  50%{
    opacity: 1;
    transform: scale(0.5);
  }
  100%{
    opacity: 0;
    transform: scale(1.0);
  }
}

/*animation for the inner and outer wave items to grow*/
@keyframes grow-circles{
  0%{
    opacity: 0.85;
    transform: scale(1.0);
  }
  15%{
    opacity: 1;
    transform: scale(1.05);
  }
  30%{
    opacity: 0.85;
    transform: scale(1.0);
  }
  
}

/*animation for the icon to slightly grow and shrink*/
@keyframes grow-shrink{
  0%{
    transform: scale(1);
  }
  15%{
    transform: scale(1.1);
  }
  30%{
    transform: scale(1);
  }
}


.dropShadow{
	filter: drop-shadow(0px 0px 100px rgba(0, 0, 0, 0.2));
}

.boxShadow{
	box-shadow: 0px 0px 10px -4px rgba(0, 0, 0, 0.2);
}

.boxShadow-2{
	box-shadow: 0 6px 30px rgba(0,0,0,.14);
}


/*Vertically centered*/
.vCenter{
	display: flex;
	align-items: center;
}

.floatL{
	float: left;
}


/*Caption for Anleitungen*/
.grid {
	/*padding: 20px 20px 100px 20px;*/
	/*max-width: 1300px;*/
	margin: 0 auto;
	list-style: none;
	text-align: center;
}

/*.grid li {
	display: inline-block;
	width: 440px;
	margin: 0;
	padding: 20px;
	text-align: left;
	position: relative;
}
*/
.grid figure {
	margin: 0;
	position: relative;
}

.grid figure img {
	max-width: 100%;
	display: block;
	position: relative;
}

.grid figcaption {
	position: absolute;
	top: 0;
	left: 0;
	/*padding: 20px;*/
	background: #333333;
	color: #4bd485;
}

.grid figcaption h3 {
	margin: 0;
	padding: 0;
	color: #fff;
	padding-top: 20px;
	font-size: 16pt;
}

.grid figcaption span:before {
	content: '';
}

.grid figcaption .itemActionBtns {
	text-align: center;
	padding: 5px 10px;
	border-radius: 2px;
	display: block;
	background: #4bd485;
	color: #fff;
}

.grid figcaption a {
	text-decoration: none;
	color: #fff;
	float: left;
	margin: 105px 0px 10px 15px;
	display: inline-block;
	font-size: 25px;
}

.grid figcaption a.more-info {
	text-decoration: none;
	color: #fff;
	padding: 5px 2px;
	float: right;
	/*margin-top: 100px;*/
	margin-right: 15px;
	background-color: #4bd485;
	cursor: pointer;
	font-size: 10pt;
}

.grid figcaption a:hover {
	text-decoration: none;
	color: #4bd485;
	-o-transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
}

.grid figcaption a.more-info:hover {
	background-color: #47bd78;
	color: #fff
}

.bottom-mobile{
	display: none;
}

@media (min-width: 768px) {
	.bottom-mobile{
		display: none !important;
	}
}

@media (max-width: 767px) {
	.bottom-mobile{
		display: block;
		background: #cecece;
		padding: 10px 5px;
		font-size: 20px;
	}
	.bottom-mobile a{
		padding: 10px 5px;
	}
}

@media screen and (max-width: 1187px) {
	.grid figcaption a {
		text-decoration: none;
		color: #fff;
		float: left;
		margin: 15px 0px 10px 15px;
		display: inline-block;
		font-size: 25px;
	}
}

.cs-style-4 item {
	-webkit-perspective: 1700px;
	-moz-perspective: 1700px;
	perspective: 1700px;
	-webkit-perspective-origin: 0 50%;
	-moz-perspective-origin: 0 50%;
	perspective-origin: 0 50%;
}

.cs-style-4 figure {
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

.cs-style-4 figure > div {
	overflow: hidden;
	background: #f5f5f5;
}

.cs-style-4 figure img {
	-webkit-transition: -webkit-transform 0.4s;
	-moz-transition: -moz-transform 0.4s;
	transition: transform 0.4s;
}

.no-touch .cs-style-4 figure:hover img,
.cs-style-4 figure.cs-hover img {
	-webkit-transform: translateX(25%);
	-moz-transform: translateX(25%);
	-ms-transform: translateX(25%);
	transform: translateX(25%);
}

.cs-style-4 figcaption {
	height: 100%;
	width: 50%;
	opacity: 0;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transform-origin: 0 0;
	-moz-transform-origin: 0 0;
	transform-origin: 0 0;
	-webkit-transform: rotateY(-90deg);
	-moz-transform: rotateY(-90deg);
	transform: rotateY(-90deg);
	-webkit-transition: -webkit-transform 0.4s, opacity 0.1s 0.3s;
	-moz-transition: -moz-transform 0.4s, opacity 0.1s 0.3s;
	transition: transform 0.4s, opacity 0.1s 0.3s;
}

.no-touch .cs-style-4 figure:hover figcaption,
.cs-style-4 figure.cs-hover figcaption {
	opacity: 1;
	-webkit-transform: rotateY(0deg);
	-moz-transform: rotateY(0deg);
	transform: rotateY(0deg);
	-webkit-transition: -webkit-transform 0.4s, opacity 0.1s;
	-moz-transition: -moz-transform 0.4s, opacity 0.1s;
	transition: transform 0.4s, opacity 0.1s;
}

.itemTitle{
	float: left;
	font-size: 12pt;
	font-weight: bold;
	margin: 20px 0px -50px 20px;
}

.no-touch .cs-style-4 figure:hover .itemTitle{
	display: none;
}

.tcwhite{
	color: #ffffff !important;
}

.tcwhite .icon-box-1{
	margin-bottom: 50px;
}

.dhb-benefits .icon-box-1{
	margin-bottom: 30px;
}

a.toggle-item{
	box-shadow: 0 0 14px 0 rgba(0,0,0,.1);
	border: 0;
	background: #fff;
	min-height: 60px;
	padding: 22px 30px 22px 40px !important;
	border-radius: 0px;
}

.toggle-item:after{
	top: 22px !important;
	right: 42px !important;
}

/*Table for BalFit*/
.balfFitTable {
  width: 100%;
  display: table;
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 60px;
}

.rowLine {
  display: table-row;
  background: #fff;
}

.rowLine.headerRow {
  color: #ffffff;
  background: #52D388;
}

@media screen and (max-width: 768px) {
  .balfFitTable {
    display: block;
  }
  .rowLine {
    display: block;
  }

  .rowLine.headerRow {
    padding: 0;
    height: 0px;
  }

  .rowLine.headerRow .cell {
    display: none;
  }

  .rowLine .cell:before {
    font-family: 'merriweather_sansregular', arial, sans-serif;
    font-size: 12px;
    color: #808080;
    line-height: 1.2;
    text-transform: uppercase;
    font-weight: unset !important;

    margin-bottom: 13px;
    content: attr(data-title);
    min-width: 98px;
    display: block;
  }
  
  .cell {
    display: block;
  }
}

.cell {
  display: table-cell;
}

.rowLine .cell {
    font-family: 'merriweather_sansregular', arial, sans-serif;
  font-size: 15px;
  color: #666666;
  line-height: 1.2;
  font-weight: unset !important;

  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f2f2f2;
}

.rowLine.headerRow .cell {
    font-family: 'merriweather_sansregular', arial, sans-serif;
  font-size: 18px;
  color: #fff;
  line-height: 1.2;
  font-weight: unset !important;

  padding-top: 19px;
  padding-bottom: 19px;
}

.rowLine .cell:nth-child(1) {
  width: 160px;
  padding-left: 40px;
}

.rowLine .cell:nth-child(2) {
  width: 380px;
  padding-left: 20px;
}

.rowLine .cell:nth-child(3) {
  width: 250px;
  padding-left: 20px;
  padding-right: 20px
}

.rowLine .cell:nth-child(4) {
  width: 190px;
}


.balfFitTable, .rowLine {
  width: 100% !important;
}

.rowLine:hover {
  background-color: #e3fbed;
  cursor: pointer;
}

@media (max-width: 768px) {
  .rowLine {
    border-bottom: 1px solid #f2f2f2;
    padding-bottom: 18px;
    padding-top: 30px;
    padding-right: 15px;
    margin: 0;
  }
  
  .rowLine .cell {
    border: none;
    padding-left: 30px;
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .rowLine .cell:nth-child(1) {
    padding-left: 30px;
  }
  
  .rowLine .cell {
    font-family: 'merriweather_sansregular', arial, sans-serif;
    font-size: 18px;
    color: #555555;
    line-height: 1.2;
    font-weight: unset !important;
  }

  .balfFitTable, .rowLine, .cell {
    width: 100% !important;
  }
}

.explanation{
	margin-top: 30px;
}

.mt-30{
	margin-top: 30px;
}

.pl-15{
	padding-left: 15px;
}

.pr-15{
	padding-right: 15px;	
}

.headlineOne{
	font-size: 30px;
	font-weight: bold;
	margin: 30px 0px;
}
.headlineTwo{
	font-size: 25px;
	font-weight: bold;
	margin: 30px 0px;
	line-height: 35px;
}
.headlineThree{
	font-size: 20px;
	font-weight: bold;
	margin: 30px 0px;
	line-height: 26px;
}

.shortLink{
	position: absolute;
	top: -5px;
	left: 190px;
	width: 30px;
}

.shortLink:hover{
	width: 35px;
}

.notify-badge{
    position: absolute;
	right: 20px;
	top: -15px;
	background: #52D388;
	text-align: center;
	border-radius: 30px;
	color: white;
	padding: 8px 10px;
	font-size: 10pt;
	line-height: 10pt;
}
.bsm-konfigurator{
	background: #333333;
	color: #ffffff;
	padding: 2.5px 15px;
}
.bsm-konfigurator:hover{
	background: #151515;
	-webkit-transition: all .4s;
	-moz-transition: all .4s;
	transition: all .4s;
}
.bsm-konfigurator img{
	height: 14px;
	margin-top: 6px;
}
/*
.dhb-logo{
	height: 40px;
}
*/
.dhb-button {
	backface-visibility: hidden;
	position: relative;
	cursor: pointer;
	display: inline-block;
	white-space: nowrap;
	background: #52D388;
	border-radius: 10px;
	border: 0px solid #444;
	border-width: 0px 0px 0px 0px;
/* 	padding: 15px 20px 15px 50px; */
	padding: 0 15px;
	color: #fff;
/*
	font-size: 12px;
	font-family: Arial;
	font-weight: 900;
	font-style: normal;
*/
	margin-left: 20px;
	margin-top: -13px;
}
.dhb-button:hover{
	  background: #00c781;
}
.dhb-button > div {
    color: #999;
  font-size: 10px;
  font-family: Helvetica Neue;
  font-weight: initial;
  font-style: normal;
  text-align: center;
  margin: 0px 0px 0px 0px
}
.dhb-button > img {
/*
	color: #4bd485;
	font-size: 1em;
	background: #fff;
	border-radius: 10px;
	border: none;
	border-width: 0px;
	padding: 4px;
	margin: 0px;
	position: absolute;
	top: 0px;
	left: -7px;
	bottom: 0px;
*/
	height: 43px;
}
.dhb-button > .ld {
    font-size: initial
}

.gutachten:hover img{
	opacity: .7;
}

.checkbox-icon{
	max-width: 20px;
	margin-left: 30px;
}

.inlineDHB:before {
	content: "";
	position: absolute;
	background: url("../../_content/icons/dhb-inlinelogo-light.svg");
	background-repeat: no-repeat;
	top: 65px;
	left: 80px;
	width: 50px;
	height: 30px;
}

/*Förderung*/
.foerder:hover img{
	opacity: 0.5;
}
.foederLinks{
	height: 200px;
	width: 100%;
	font-weight: bold;
	box-shadow: 0px 0px 38px 0px rgba(0, 0, 0, 0.25);
}
.foederLinks i{
	color: #ffffff !important;
}

.foederLinks p{
	text-align: left;
/* 	padding-top: 115px; */
}

.foederLinks:hover i{
	color: #52D388 !important;
}
.foederLinks:hover{
	color: #52D388 !important;
	background: transparent !important;
}


.btn.foederLinks .ifc-external_link{
/*
	font-size: 70px;
	position: relative;
	top: -30px;
	right: -145px;
	padding-right: 100px;
	line-height: 140px;
*/
	text-align: right;
	padding-top: 0px;
	line-height: 60px;
	margin-top: -7px;
	margin-bottom: 40px;
}

/*---------------- Font-Sizes ----------------*/
.iii-fs-10{
	font-size: 10px;
}
.iii-fs-12{
	font-size: 12px;
}
.iii-fs-14{
	font-size: 14px;
}
.iii-fs-16{
	font-size: 16px;
}
.iii-fs-18{
	font-size: 18px;
}
.iii-fs-20{
	font-size: 20px;
}
.iii-fs-22{
	font-size: 22px;
}
.iii-fs-24{
	font-size: 24px;
}
.iii-fs-26{
	font-size: 26px;
}
.iii-fs-28{
	font-size: 28px;
}
.iii-fs-30{
	font-size: 30px;
}
.iii-fs-32{
	font-size: 32px;
}
.iii-fs-34{
	font-size: 34px;
}
.iii-fs-36{
	font-size: 36px;
}
.iii-fs-38{
	font-size: 38px;
}

/*---------------- Padding All ----------------*/
 .iii-pall {
     padding: 0px;
}
 .iii-pall-10 {
     padding: 10px;
}
 .iii-pall-15 {
     padding: 15px;
}
 .iii-pall-20 {
     padding: 20px;
}
 .iii-pall-25 {
     padding: 25px;
}
 .iii-pall-30 {
     padding: 30px;
}
 .iii-pall-40 {
     padding: 40px;
}
 .iii-pall-50 {
     padding: 50px;
}
 .iii-pall-60 {
     padding: 60px;
}
 .iii-pall-70 {
     padding: 70px;
}
 .iii-pall-80 {
     padding: 80px;
}
 .iii-pall-90 {
     padding: 90px;
}
 .iii-pall-100 {
     padding: 100px;
}
/*---------------- Padding Top and Bottom ----------------*/
 .iii-ptb-0 {
     padding: 0;
}
 .iii-ptb-10 {
     padding: 10px 0;
}
 .iii-ptb-15 {
     padding: 15px 0;
}
 .iii-ptb-20 {
     padding: 20px 0;
}
 .iii-ptb-25 {
     padding: 25px 0;
}
 .iii-ptb-30 {
     padding: 30px 0;
}
 .iii-ptb-40 {
     padding: 40px 0;
}
 .iii-ptb-50 {
     padding: 50px 0;
}
 .iii-ptb-60 {
     padding: 60px 0;
}
 .iii-ptb-70 {
     padding: 70px 0;
}
 .iii-ptb-80 {
     padding: 80px 0;
}
 .iii-ptb-90 {
     padding: 90px 0;
}
 .iii-ptb-100 {
     padding: 100px 0;
}
/*---------------- Padding Left and right ----------------*/
 .iii-plr-0 {
     padding: 0;
}
 .iii-plr-10 {
     padding: 0 10px;
}
 .iii-plr-15 {
     padding: 0 15px;
}
 .iii-plr-20 {
     padding: 0 20px;
}
 .iii-plr-25 {
     padding: 0 25px;
}
 .iii-plr-30 {
     padding: 0 30px;
}
 .iii-plr-40 {
     padding: 0 40px;
}
 .iii-plr-50 {
     padding: 0 50px;
}
 .iii-plr-60 {
     padding: 0 60px;
}
 .iii-plr-70 {
     padding: 0 70px;
}
 .iii-plr-80 {
     padding: 0 80px;
}
 .iii-plr-90 {
     padding: 0 90px;
}
 .iii-plr-100 {
     padding: 0 100px;
}
/*---------------- Padding top ----------------*/
 .iii-pt-0 {
     padding-top: 0px;
}
 .iii-pt-10 {
     padding-top: 10px;
}
 .iii-pt-15 {
     padding-top: 15px;
}
 .iii-pt-20 {
     padding-top: 20px;
}
 .iii-pt-25 {
     padding-top: 25px;
}
 .iii-pt-30 {
     padding-top: 30px;
}
 .iii-pt-40 {
     padding-top: 40px;
}
 .iii-pt-50 {
     padding-top: 50px;
}
 .iii-pt-60 {
     padding-top: 60px;
}
 .iii-pt-70 {
     padding-top: 70px;
}
 .iii-pt-80 {
     padding-top: 80px;
}
 .iii-pt-90 {
     padding-top: 90px;
}
 .iii-pt-100 {
     padding-top: 100px;
}
/*---------------- Padding Bottom ----------------*/
 .iii-pb-0 {
     padding-bottom: 0px;
}
 .iii-pb-10 {
     padding-bottom: 10px;
}
 .iii-pb-15 {
     padding-bottom: 15px;
}
 .iii-pb-20 {
     padding-bottom: 20px;
}
 .iii-pb-25 {
     padding-bottom: 25px;
}
 .iii-pb-30 {
     padding-bottom: 30px;
}
 .iii-pb-40 {
     padding-bottom: 40px;
}
 .iii-pb-50 {
     padding-bottom: 50px;
}
 .iii-pb-60 {
     padding-bottom: 60px;
}
 .iii-pb-70 {
     padding-bottom: 70px;
}
 .iii-pb-80 {
     padding-bottom: 80px;
}
 .iii-pb-90 {
     padding-bottom: 90px;
}
 .iii-pb-100 {
     padding-bottom: 100px;
}
/*---------------- Padding Left ----------------*/
 .iii-pl-0 {
     padding-left: 0;
}
 .iii-pl-10 {
     padding-left: 10px;
}
 .iii-pl-15 {
     padding-left: 15px;
}
 .iii-pl-20 {
     padding-left: 20px;
}
 .iii-pl-25 {
     padding-left: 25px;
}
 .iii-pl-30 {
     padding-left: 30px;
}
 .iii-pl-40 {
     padding-left: 40px;
}
 .iii-pl-50 {
     padding-left: 50px;
}
 .iii-pl-60 {
     padding-left: 60px;
}
 .iii-pl-70 {
     padding-left: 70px;
}
 .iii-pl-80 {
     padding-left: 80px;
}
 .iii-pl-90 {
     padding-left: 90px;
}
 .iii-pl-100 {
     padding-left: 100px;
}
/*---------------- Padding Right ----------------*/
 .iii-pr-0 {
     padding-right: 0px;
}
 .iii-pr-10 {
     padding-right: 10px;
}
 .iii-pr-15 {
     padding-right: 15px;
}
 .iii-pr-20 {
     padding-right: 20px;
}
 .iii-pr-25 {
     padding-right: 25px;
}
 .iii-pr-30 {
     padding-right: 30px;
}
 .iii-pr-40 {
     padding-right: 40px;
}
 .iii-pr-50 {
     padding-right: 50px;
}
 .iii-pr-60 {
     padding-right: 60px;
}
 .iii-pr-70 {
     padding-right: 70px;
}
 .iii-pr-80 {
     padding-right: 80px;
}
 .iii-pr-90 {
     padding-right: 90px;
}
 .iii-pr-100 {
     padding-right: 100px;
}
/*---------------- Margin All ----------------*/
 .iii-mall-0 {
     margin: 0;
}
 .iii-mall-10 {
     margin: 10px;
}
 .iii-mall-15 {
     margin: 15px;
}
 .iii-mall-20 {
     margin: 20px;
}
 .iii-mall-25 {
     margin: 25px;
}
 .iii-mall-30 {
     margin: 30px;
}
 .iii-mall-40 {
     margin: 40px;
}
 .iii-mall-50 {
     margin: 50px;
}
 .iii-mall-60 {
     margin: 60px;
}
 .iii-mall-70 {
     margin: 70px;
}
 .iii-mall-80 {
     margin: 80px;
}
 .iii-mall-90 {
     margin: 90px;
}
 .iii-mall-100 {
     margin: 100px;
}
/*---------------- Margin Top and Bottom ----------------*/
 .iii-mtb-0 {
     margin: 0;
}
 .iii-mtb-10 {
     margin: 10px 0;
}
 .iii-mtb-15 {
     margin: 15px 0;
}
 .iii-mtb-20 {
     margin: 20px 0;
}
 .iii-mtb-25 {
     margin: 25px 0;
}
 .iii-mtb-30 {
     margin: 30px 0;
}
 .iii-mtb-40 {
     margin: 40px 0;
}
 .iii-mtb-50 {
     margin: 50px 0;
}
 .iii-mtb-60 {
     margin: 60px 0;
}
 .iii-mtb-70 {
     margin: 70px 0;
}
 .iii-mtb-80 {
     margin: 80px 0;
}
 .iii-mtb-90 {
     margin: 90px 0;
}
 .iii-mtb-100 {
     margin: 100px 0;
}
/*---------------- Margin Left and Right ----------------*/
 .iii-mlr-0 {
     margin: 0;
}
 .iii-mlr-10 {
     margin: 0 10px;
}
 .iii-mlr-15 {
     margin: 0 15px;
}
 .iii-mlr-20 {
     margin: 0 20px;
}
 .iii-mlr-25 {
     margin: 0 25px;
}
 .iii-mlr-30 {
     margin: 0 30px;
}
 .iii-mlr-40 {
     margin: 0 40px;
}
 .iii-mlr-50 {
     margin: 0 50px;
}
 .iii-mlr-60 {
     margin: 0 60px;
}
 .iii-mlr-70 {
     margin: 0 60px;
}
 .iii-mlr-80 {
     margin: 0 80px;
}
 .iii-mlr-90 {
     margin: 0 80px;
}
 .iii-mlr-100 {
     margin: 0 100px;
}
/*---------------- Margin Top ----------------*/
 .iii-mt-0 {
     margin-top: 0px;
}
 .iii-mt-10 {
     margin-top: 10px;
}
 .iii-mt-15 {
     margin-top: 15px;
}
 .iii-mt-20 {
     margin-top: 20px;
}
 .iii-mt-25 {
     margin-top: 25px;
}
 .iii-mt-30 {
     margin-top: 30px;
}
 .iii-mt-40 {
     margin-top: 40px;
}
 .iii-mt-50 {
     margin-top: 50px;
}
 .iii-mt-60 {
     margin-top: 60px;
}
 .iii-mt-70 {
     margin-top: 70px;
}
 .iii-mt-80 {
     margin-top: 80px;
}
 .iii-mt-90 {
     margin-top: 90px;
}
 .iii-mt-100 {
     margin-top: 100px;
}
/*---------------- Margin Bottom ----------------*/
 .iii-mb-0 {
     margin-bottom: 0px;
}
 .iii-mb-10 {
     margin-bottom: 10px;
}
 .iii-mb-15 {
     margin-bottom: 15px;
}
 .iii-mb-20 {
     margin-bottom: 20px;
}
 .iii-mb-25 {
     margin-bottom: 25px;
}
 .iii-mb-30 {
     margin-bottom: 30px;
}
 .iii-mb-40 {
     margin-bottom: 40px;
}
 .iii-mb-50 {
     margin-bottom: 50px;
}
 .iii-mb-60 {
     margin-bottom: 60px;
}
 .iii-mb-70 {
     margin-bottom: 70px;
}
 .iii-mb-80 {
     margin-bottom: 80px;
}
 .iii-mb-90 {
     margin-bottom: 90px;
}
 .iii-mb-100 {
     margin-bottom: 100px;
}
/*---------------- Margin Left ----------------*/
.iii-ml-0 {
     margin-left: 0px;
}
.iii-ml-10 {
     margin-left: 10px;
}
.iii-ml-15 {
     margin-left: 15px;
}
.iii-ml-20 {
     margin-left: 20px;
}
.iii-ml-25 {
     margin-left: 25px;
}
.iii-ml-30 {
     margin-left: 30px;
}
.iii-ml-40 {
     margin-left: 40px;
}
.iii-ml-50 {
     margin-left: 50px;
}
.iii-ml-60 {
     margin-left: 60px;
}
.iii-ml-70 {
     margin-left: 70px;
}
.iii-ml-80 {
     margin-left: 80px;
}
.iii-ml-90 {
     margin-left: 90px;
}
.iii-ml-100 {
     margin-left: 100px;
}
/*---------------- Margin Right ----------------*/
.iii-mr-0 {
     margin-right: 0px;
}
.iii-mr-10 {
     margin-right: 10px;
}
.iii-mr-15 {
     margin-right: 15px;
}
.iii-mr-20 {
     margin-right: 20px;
}
.iii-mr-25 {
     margin-right: 25px;
}
.iii-mr-30 {
     margin-right: 30px;
}
.iii-mr-40 {
     margin-right: 40px;
}
.iii-mr-50 {
     margin-right: 50px;
}
.iii-mr-60 {
     margin-right: 60px;
}
.iii-mr-70 {
     margin-right: 70px;
}
.iii-mr-80 {
     margin-right: 80px;
}
.iii-mr-90 {
     margin-right: 90px;
}
.iii-mr-100 {
     margin-right: 100px;
}
/*--------------------------------------------------------------------- Text Weight -----------------------------------------------------------------------*/
.iii-tw-1 {
     font-weight: 100;
}
.iii-tw-2 {
     font-weight: 200;
}
.iii-tw-3 {
     font-weight: 300;
}
.iii-tw-4 {
     font-weight: 400;
}
.iii-tw-5 {
     font-weight: 500;
}
.iii-tw-6 {
     font-weight: 600;
}
.iii-tw-7 {
     font-weight: 700;
}
.iii-tw-8 {
     font-weight: 800;
}
.iii-tw-9 {
     font-weight: 900;
}

/*News*/
.panel-wrapper {
  position: relative;
}

.btndd {
  color: #52D388;
  border: 2px solid #52D388;
  background: transparent;
  border-radius: 20px;
  left: 30%;
  padding: 7px 25px;
  text-decoration: none;
  width: 40%;
}

.show, .hide {
  position: absolute;
/*   bottom: -1em; */
  bottom: 2em;
  z-index: 100;
  text-align: center;
}

.hide {
  display: none;
}

.show:target {
  display: none;
}

.show:target ~ .hide {
  display: block;
}

.show:target ~ .panel {
  max-height: 5000px;
}

.show:target ~ .news-fade {
  margin-top: 0;
}

.panel {
  position: relative;
  margin: 2em auto;
  width: 100%;
  padding: 0px 20px;
  max-height: 100px;
  overflow: hidden;
  -webkit-transition: max-height .5s ease;
  transition: max-height .5s ease;
}

.news-fade {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.2)), color-stop(56.72%, #f5f5f5));
  background: linear-gradient(rgba(255, 255, 255, 0.2), #f5f5f5 56.72%);
  height: 100px;
  margin-top: -100px;
  position: relative;
}

.note{
	background: #52D388;
	padding: 10px 15px 10px 15px;
	border-radius: 5px;
	border: 2px solid #1a7d43;
	color: #035526;
}


/*Störung Notification*/
.notification {
/*   height: 90px; */
  width: 400px;
  background: #f87c80;
  font-size: 14px;
  margin: 10px;
  padding: 20px;
  position: absolute;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  transition: all 500ms cubic-bezier(0.85, 0.38, 0.11, 0.66);
  -webkit-animation: show 500ms;
          animation: show 500ms;
   top: 220px;
   right: 50px;
   z-index: 100;
   border-radius: 20px;
   background: rgba(0, 0, 0, 0.4);
   backdrop-filter: blur(3px) saturate(160%) contrast(45%) brightness(140%);
   -webkit-backdrop-filter: blur(3px) saturate(160%) contrast(45%) brightness(140%);
}
.notification:target {
  transform: translateY(-150%);
  opacity: 0;
}
.notification .malfunction .icon {
  background: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 30px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.notification .malfunction .icon:after {
  content: "!";
/*   transform: rotate(-90deg); */
  color: #f61c4c;
  font-weight: bold;
}
.notification .message span {
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
}
.notification .message p {
  color: #ffffff;
  font-size: 14px;
  margin-top: 5px;
}
.notification .message i {
  position: absolute;
  top: 20px;
  right: 25px;
  color: #f61c4c;
  cursor: pointer;
  font-size: 30px;
}

@-webkit-keyframes show {
  0% {
    transform: translateY(-150%);
  }
  100% {
    transform: translateY(0%);
  }
}

@keyframes show {
  0% {
    transform: translateY(-150%);
  }
  100% {
    transform: translateY(0%);
  }
}

@media screen and (max-width: 420px) {
	.notification {
		top: 130px;
		right: -2px;
	}
	.notification .malfunction .icon{
		display: none;
	}
}

img.th-fam-icons{
	height: 74px;
}

.targetgroup{
	background-image: url("../../_content/index/h1-layer1.png");
	background-repeat: no-repeat;
	background-size: cover;
}

.icon-box-4 > img{
	margin-bottom: 0px !important;
}

.icon-box-4 {
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}
.icon-box-4:hover {
	box-shadow: 0 0 77px rgba(0, 0, 0, 0.3);
	margin-top: -20px;
	-o-transition:.5s;
  	-ms-transition:.5s;
  	-moz-transition:.5s;
  	-webkit-transition:.5s;
}


a.preselection{
	text-decoration: none !important;
	color: #000;
}

a.preselection:hover p{
	text-decoration: none !important;
	color: #000;
}


.icon-box-4 .icon-box-content{
	background: #ffffff;
	padding: 25px;
	margin-top: -7px;
}

.brk-header__logo img, .brk-header-mobile__logo img, .brk-header-mobile-wrap__logo img{
	height: 60px;
}

footer .brk-social-links__item{
	margin-right: 73px;
}

.link-angle i{
	margin-top: 6px;
	margin-right: 10px;
}

.vc_custom_1449075805622{
	margin-top: 0px !important;
}

.svg-pattern-hero{
	width: 100%;
	overflow: hidden;
	min-height: 777px;
	background-image: url(../../_content/index/profisite-hero.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
}

.svg-pattern-hero-endverbraucher{
	width: 100%;
	overflow: hidden;
/* 	min-height: 777px; */
	min-height: 677px;
	background-image: url(../../_content/index/endverbraucher-bg.jpg);
/* 	background-image: url(../../_content/index/AdobeStock_300279800.jpeg); */
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
}

.svg-pattern-hero .extra__heading-1, .svg-pattern-hero-endverbraucher .extra__heading-1{
	max-width: 880px;
}

.brk-mini-cart__product{
	justify-content: left !important;
}

.brk-mini-cart__product--title-price{
	width: auto !important;
}

.btn-shdw{
	box-shadow: 0 5px 16px rgba(0,0,0,.15);
}

.btn-pos, .btn-posi{
	background: #333333 !important;
	color: #ffffff !important;
}

.bsm-dhb-wrapper .brk-base-gradient-33{
	opacity: 85%;
}

.bsm-dhb-counter .counter__wrapper-filled.blue .counter-wrap svg circle{
	stroke: rgba(0, 0, 0, 0.2);
}

.bsm-dhb-counter .counter__wrapper-filled .counter-wrap{
	background: rgba(255, 255, 255, 0.4);
}

.fullwidth-section .bsm-dhb-counter .counter__wrapper-filled .counter-wrap{
	background: rgba(126, 233, 168, 0.4);
}


.info-box .extra__heading-2, .info-box .extra__heading-3{
	border-color: rgba(0, 0, 0, 0.1);
}

.info-box .extra__heading-2:after, .info-box .extra__heading-2:before{
	background: rgba(0, 0, 0, 0.1);
}

.brk-tiles-simple__content p{
	line-height: 20px !important;
}
/*
.btn-posi{position:absolute;transform:translate(-50%,-50%)}
.btn-posi:hover{color:#fff}
.btn-posi span{left:0;display:block;width:0;height:0;border-radius:50%;background-color:var(--brand-primary);transition:width .4s ease-in-out,height .4s ease-in-out;z-index:-1}
.btn-posi:hover span{width:250%;height:250%}
.btn-posi{overflow:hidden;position:relative}
.btn-posi span{position:absolute;transform:translate(-50%,-50%)}
*/

.sys-tabs_rounded {
    position:relative
}

.sys-tabs_rounded .sys-tabs-nav {
    min-height: 58px;
    margin-top: -58px;
    box-shadow: 0 5px 16px rgba(0, 0, 0, .2);
    background-color: #fff;
    border: 4px solid #fff;
    border-radius: 30px;
    transform: translateY(50%);
    z-index:1
}

.sys-tabs_rounded .sys-tab:before, .sys-tabs_rounded .sys-tabs-content__overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index:-1
}

.sys-tabs_rounded .sys-tab {
    height: 50px;
    opacity: .7;
    position: relative;
    color: var(--brand-primary);
    transition: .3s ease color, .3s ease opacity, .3s ease box-shadow;
    cursor: pointer;
    z-index: 1;
    border-radius:25px
}

@media screen and (max-width: 992px) {
    .sys-tabs_rounded .sys-tab {
        width: 100%;
        justify-content:center
    }
}

.sys-tabs_rounded .sys-tab i {
    margin-right: 10px;
    margin-top:-4px
}

.sys-tabs_rounded .sys-tab:before {
    content: "";
    background-color: #fff;
    border-radius: 25px;
    transition:.3s ease background-color
}

.sys-tabs_rounded .sys-tab:hover {
    opacity:1
}

.sys-tabs_rounded .sys-tab.active {
    opacity: 1;
    color: #fff;
    box-shadow: 0 5px 16px rgba(var(--brand-primary-rgb), .5);
    z-index:2
}

.brk-safari .sys-tabs_rounded .sys-tab.active {
    box-shadow:none
}

.sys-tabs_rounded .sys-tab.active:before {
    background-color:var(--brand-primary)
}

.sys-tabs_rounded .sys-tab-item, .btn {
    z-index:1
}

.brk-ic-left-slide__img{
	transform: translateX(-20px);
}

.brk-ic-left-slide:hover .brk-ic-left-slide__img{
	transform: translateX(0px);
}

.brk-slid{
	background: transparent;
	margin: 0px 15px;
	min-height: 250px;
	border-radius: 0px 5px 5px 0px;
}

.brk-slid a:hover{
  color: #292b2c;
}
.bsm-product-carousel .prod-item .prod-img {
  margin-bottom: 25px;
  position: relative;
  border-radius: 10px;
  overflow: visible;
}

.bsm-product-carousel .prod-item .prod-img .product-meta {
  width: 110px;
  margin: -20px auto;
  padding: 10px;
  z-index: 99;
  background: #ffffff;
  border-radius: 5px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.07);
  text-align: center;
  transition: all .5s ease;
}
.bsm-product-carousel .prod-item .prod-img .product-meta .prod-category .author {
	color: #bbbbbb;
	display: block;
	font-size: 11px;
	margin: 0 auto;
	line-height: 10px;
	margin-top: 5px;
}
.bsm-product-carousel .prod-item .prod-img .product-meta .prod-category .seperator {
  padding-right: 7px;
  width: 8px;
  height: 8px;
  background: #52D388;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
}
.bsm-product-carousel .prod-item .prod-img .product-meta .prod-category .category {
  display: block;
  position: relative;
  font-size: 12px;
  text-transform: capitalize;
  margin-top: 5px;
  line-height: 10px;
}
.bsm-product-carousel .prod-item .prod-img .product-meta .prod-title {
  margin: 0px;
  line-height: 18px;
  text-transform: capitalize;
  font-size: 14px;
}
.bsm-product-carousel .prod-item:hover .product-meta {
  margin: -30px auto;
}

.brk-promo-crcl__circle{
	border: 1px dashed rgba(var(--brk-base-1-rgb),.8);
}

.promo-icons{
	max-width: 50px;
	margin: 0 auto;
}

.brk-alt-gradient--30deg-96{
	background-image: none !important;
	background: rgb(244, 244, 244);
}

.brk-promo-crcl__cards-container_animated .brk-promo-hover-card:nth-child(1){
	top: 28%;
	left: 20px;	
}

.brk-promo-crcl__cards-container_animated .brk-promo-hover-card:nth-child(2){
	top: 60%;
	left: -25px;
}

.brk-promo-crcl__cards-container_animated .brk-promo-hover-card:nth-child(3){
	top: 74%;
	left: 54%;
}

.brk-promo-crcl__cards-container_animated .brk-promo-hover-card:nth-child(4){
	top: 26%;
	left: 94%;
}

.brk-promo-crcl__cards-container_animated .brk-promo-hover-card:nth-child(5){
    top: 67%;
    left: calc(100% + 110px);
}

.wing__wrap a{
	color: #ffffff;
}

.cfa__trend .bg-after:before{
	background: rgba(255,255,255,.2) !important;
}

.brk-form-strict [type=email]+.input-label, .brk-form-strict [type=password]+.input-label, .brk-form-strict [type=search]+.input-label, .brk-form-strict [type=tel]+.input-label, .brk-form-strict [type=text]+.input-label, .brk-form-strict textarea+.input-label, .brk-form-strict .brk-form-checkbox-label{
	color: #767a81 !important; 
}

.brk-form .info-box__wrapper-image img{
	height: 100px;
	margin-bottom: 30px;
}

.stylelistingX span{
	padding-right: 10px;
	font-size: 10px;
}

.bsm-ref-slider .slick-slide, .bsm-ref-slider .slick-list{
	height: 400px !important;
}

.brk-base-bg-gradient-brown {
	background-image: linear-gradient(to top, rgba(46, 46, 46, 1) 0%, rgba(86, 86, 86, 0.94) 100%) !important; 
}

.brk-pricing-horizontal:hover .brk-pricing-horizontal__viewed{
	background-color: rgb(8, 215, 95) !important;
}

.brk-pricing-horizontal:hover .brk-pricing-horizontal__viewed h3{
	color: #ffffff !important;
}

.bsm-manual.cfa__minimal{
	display: block;	
}

.bsm-manual.cfa__minimal:before{
	background: var(--brand-primary);
}
.bsm-manual.cfa__minimal>*{
	margin: 0px;
}

.bsm-manual.cfa__minimal h4{
	margin-top: 10px;
	margin-left: 10px;
}
.bsm-manual.cfa__minimal p{
	margin-left: 10px;
	margin-bottom: 20px;
}

.bsm-manual.cfa__minimal a{
	margin-left: 10px;
	margin-bottom: 20px;
}


/*Textumbrüche*/
.hyphenate {
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;
}

@media (max-width: 414px) {
	.hyphenate-xs {
	    overflow-wrap: break-word;
	    word-wrap: break-word;
	    -webkit-hyphens: auto;
	    -ms-hyphens: auto;
	    -moz-hyphens: auto;
	    hyphens: auto;
	}
}
.force-bold { font-weight: 700; }
