/* 
BLUE #245fa1
GREY #333333
LIGHT-GREY #f1f1f1
 */
/* open-sans-condensed-300 - latin */
@font-face {
  font-family: 'Open Sans Condensed';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/open-sans-condensed-v12-latin-300.eot'); /* IE9 Compat Modes */
  src: local('Open Sans Condensed Light'), local('OpenSansCondensed-Light'),
       url('../fonts/open-sans-condensed-v12-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/open-sans-condensed-v12-latin-300.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/open-sans-condensed-v12-latin-300.woff') format('woff'), /* Modern Browsers */
       url('../fonts/open-sans-condensed-v12-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/open-sans-condensed-v12-latin-300.svg#OpenSansCondensed') format('svg'); /* Legacy iOS */
}

/* open-sans-condensed-700 - latin */
@font-face {
  font-family: 'Open Sans Condensed';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/open-sans-condensed-v12-latin-700.eot'); /* IE9 Compat Modes */
  src: local('Open Sans Condensed Bold'), local('OpenSansCondensed-Bold'),
       url('../fonts/open-sans-condensed-v12-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/open-sans-condensed-v12-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/open-sans-condensed-v12-latin-700.woff') format('woff'), /* Modern Browsers */
       url('../fonts/open-sans-condensed-v12-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/open-sans-condensed-v12-latin-700.svg#OpenSansCondensed') format('svg'); /* Legacy iOS */
}
/* open-sans-300 - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/open-sans-v15-latin-300.eot'); /* IE9 Compat Modes */
  src: local('Open Sans Light'), local('OpenSans-Light'),
       url('../fonts/open-sans-v15-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/open-sans-v15-latin-300.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/open-sans-v15-latin-300.woff') format('woff'), /* Modern Browsers */
       url('../fonts/open-sans-v15-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/open-sans-v15-latin-300.svg#OpenSans') format('svg'); /* Legacy iOS */
}

/* open-sans-regular - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/open-sans-v15-latin-regular.eot'); /* IE9 Compat Modes */
  src: local('Open Sans Regular'), local('OpenSans-Regular'),
       url('../fonts/open-sans-v15-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/open-sans-v15-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/open-sans-v15-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/open-sans-v15-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/open-sans-v15-latin-regular.svg#OpenSans') format('svg'); /* Legacy iOS */
}

/* open-sans-700 - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/open-sans-v15-latin-700.eot'); /* IE9 Compat Modes */
  src: local('Open Sans Bold'), local('OpenSans-Bold'),
       url('../fonts/open-sans-v15-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/open-sans-v15-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/open-sans-v15-latin-700.woff') format('woff'), /* Modern Browsers */
       url('../fonts/open-sans-v15-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/open-sans-v15-latin-700.svg#OpenSans') format('svg'); /* Legacy iOS */
}



* {
	margin: 0;
	padding: 0;	
}

body{
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;	
	font-size: 16px;
	font-weight: 400;
	color: #333;
	line-height: 1.6em;
}

.container{
	width: 1200px;
	margin: 0 auto;	
}

.col3 {
	width: 32%;
	margin-right: 1%;
	float: left;	
}
.col66 {
	width: 60%;
	margin-left: 1%;
	float: left;	
}

.col5{
	width: 50%;
	float: left;
}
.col55{
	width: 45%;
	float: left;
	margin-right: 2%;
}

p {
	margin: 0 0 1em 0;	
}

strong {
	font-weight: 700;	
}
.white {
	color: #fff;	
}
.blue{
	color: #245fa1;
}
.grey {
	color: #333;	
}
.center {
	text-align: center;		
}
.left {
	text-align: left;	
}
.right{
	text-align: right;	
}

.bottom{
	margin-bottom: 45px;	
}
a{
	color: #245fa1;
	text-decoration: none;	
	font-weight: 400;
}
a:hover{
	text-decoration: underline;
}

hr {
	border: 0; 
	height: 1px;
	background-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1), rgba(0, 0, 0, 0));	
	margin: 55px 0; 
	clear: both;
}

.btn {
	cursor: pointer;
	padding: 20px 30px;
	background: #333;
	color: #fff;
	text-transform: uppercase;	
	font-family: 'Open Sans Condensed', Arial, Helvetica, sans-serif;	
	font-weight: 700;	
	font-size: 23px;
	display: inline-block;
	border: 1px solid #333;
	-webkit-transition: all 200ms ease-in;
	-moz-transition: all 200ms ease-in;
	-ms-transition: all 200ms ease-in;
	-o-transition: all 200ms ease-in;
	transition: all 200ms ease-in;		
}

.btn2,
.btn-freigabe{
	cursor: pointer;
	padding: 10px 30px;
	background: #333;
	color: #fff;
	text-transform: uppercase;	
	font-family: 'Open Sans Condensed', Arial, Helvetica, sans-serif;	
	font-weight: 700;	
	font-size: 21px;
	display: inline-block;
	border: 1px solid #333;
	-webkit-transition: all 200ms ease-in;
	-moz-transition: all 200ms ease-in;
	-ms-transition: all 200ms ease-in;
	-o-transition: all 200ms ease-in;
	transition: all 200ms ease-in;		
}

.btn3 {
	cursor: pointer;
	padding: 10px 10px;
	background: #245fa1;
	color: #fff;
	text-transform: uppercase;	
	font-family: 'Open Sans Condensed', Arial, Helvetica, sans-serif;	
	font-weight: 700;	
	font-size: 20px;
	display: inline-block;
	border: 1px solid #245fa1;
	-webkit-transition: all 200ms ease-in;
	-moz-transition: all 200ms ease-in;
	-ms-transition: all 200ms ease-in;
	-o-transition: all 200ms ease-in;
	transition: all 200ms ease-in;		
}

.btn:hover,
.btn2:hover,
.btn3:hover,
.btn-freigabe:hover{
	text-decoration: none;
	background: #fff;
	color: #245fa1;	
	border: 1px solid #245fa1;
}
/* ----------------- STICKY ---------------- */
.sticky {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 100;
    border-top: 0;
}
.sticky2 {
    position: fixed;
    width: 100%;
    left: 0;
    top: 66px;
    z-index: 100;
    border-top: 0;
}


/* ----------------- Schriften ---------------- */
h1, h2{
	font-family: 'Open Sans Condensed', Arial, Helvetica, sans-serif;	
	font-weight: 700;
	font-size: 33px;
	color: #333;
	text-transform: uppercase;
	text-align: center;	
	padding: 5px 0 10px;
}

section#freigabe h1{
	text-align: left;
	padding: 20px 0 15px;		
}
h3{
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;	
	font-weight: 700;
	font-size: 19px;
	color: #245fa1;	
	letter-spacing: 0.025em;
	text-align: center;	
	padding: 5px 0 5px;	
	margin: 0 0 35px 0;
}
#impressum h3{
	margin: 0 0 10px 0;
}
#impressum h4{
	margin: 20px 0;	
	font-size: 22px;	
}
section.content #produkte h3{
	margin: 0 0 10px 0;
}
section.content #produkte h4{
	margin: 0 0 35px 0;
	color: #245fa1;		
	text-transform: none;
	text-align: center;
}

h4 {
	font-family: 'Open Sans Condensed', Arial, Helvetica, sans-serif;	
	font-weight: 700;
	text-transform: uppercase;
	font-size: 26px;	
	letter-spacing: 0.025em;
}

h5{
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;	
	font-weight: 700;
	font-size: 19px;
	text-align: center;	
	margin: 0 0 30px 0;	
	color: #245fa1;	
}

h6{
	font-family: 'Open Sans Condensed', Arial, Helvetica, sans-serif;	
	font-weight: 700;
	font-size: 20px;
	text-align: center;	
	color: #245fa1;	
}

/* ----------------- Kopf ---------------- */
header {
	background: #f1f1f1;
	float: left;	
	width: 100%;
}

header .ssl{
	background: rgba(0,0,0,0.1);
	font-size: 14px;
	font-weight: 400;	
	text-align: center;
}

header .ssl span{
	background: url(../images/icon_ssl.png) no-repeat left center;
	padding-left: 25px;	
}


header div.logo{
	padding: 70px 0 50px;	
	width: 50%;
	float: left;
}
header div.topmenu{
	width: 23%;
	float: right;
	margin-top: 70px;
}
header div.topmenu ul li{
	margin-bottom: 10px;	
}
header div.topmenu ul li,
header div.topmenu ul li a {
	font-size: 18px;
	color: #333;
	font-family: 'Open Sans Condensed', Arial, Helvetica, sans-serif;	
	font-weight: 700;	
	list-style: none;
	text-decoration: none;
}

header div.topmenu ul li i{
	color: #fff;
	background: #245fa1;
	padding: 4px 6px;
	border-radius: 14px;
	font-size: 14px;
}

header div.topmenu ul li i.fa-envelope{
	font-size: 13px;	
}
/* ----------------- Navigation ---------------- */
nav {
	background: #245fa1;
	width: 100%;
	height: auto;	
	float: left;
}

nav ul li {
	border-right: 1px solid rgba(0,0,0,0.1);
	list-style: none;	
	float: left;	
	display: block;	
}

nav ul li a {
	font-weight: 700;
	color: #fff;
	font-size: 19px;
	font-family: 'Open Sans Condensed', Arial, Helvetica, sans-serif;	
	text-transform: uppercase;
	text-decoration: none;
	padding: 20px 25px;
	display: block;	
	-webkit-transition: background 300ms ease-in;
	-moz-transition: background 300ms ease-in;
	-ms-transition: background 300ms ease-in;
	-o-transition: background 300ms ease-in;
	transition: background 300ms ease-in;		
}

nav ul li a:hover,
nav ul li a.active {
	background: #333;
	text-decoration: none;	
}

/* ----------------- Bild / Slider ---------------- */
section.image {
	width: 100%;
	display: block;
	float: left;
}

body#kundenportal section.image,
body#unternehmen section.image,
body#produkte section.image,
body#ansprechpartner section.image,
body#kontakt section.image,
body#impressum section.image,
body#agb section.image{
	width: 100%;
	display: block;
	float: left;	
	height: 35px;
	background: url(../images/background_schraffiert_grey.png) repeat #797979;
	padding: 30px 0;
}
body#kundenportal section.image h1,
body#unternehmen section.image h1,
body#produkte section.image h1,
body#ansprechpartner section.image h1,
body#kontakt section.image h1,
body#impressum section.image h1,
body#agb section.image h1{
	padding-left: 30px;	
}
/* ----------------- Inhaltsbereich ---------------- */
div.area{
	padding: 60px 0 75px;
	float: left;
	width: 100%;
}
div#firmeninfo {
	background: url(../images/background_schraffiert.png) repeat;	
}
div#firmeninfo div.col55{
	width: 42%;
	margin-right: 8%;	
}
/*div#produkte{
	background: #f1f1f1;
}*/
div#ansprechpartner{
	background: #f1f1f1;
}
div#produkte ul {
	margin-bottom: 15px;	
}
div#produkte ul li{
	list-style: none; 	
}
div#produkte ul li i{
	color: #245fa1;	
}
div#kundenportal{
	background: #245fa1;
}
/* ---- Bereich Stellenanzeige ----- */
div#stellen {
	background: rgba(0,0,0,0.1);	
}
div#stellen ul{
	padding-left: 50px;	
}
div#stellen h4{
	padding-bottom: 10px;	
}

div.jobs{
	width: 100px;
	height: 80px;
	border-radius: 100px;	
	background: #245fa1;
	border: 6px solid #fff;
	text-align: center;
	padding: 40px 25px 25px;
	box-shadow: 1px 0 4px 2px rgba(0,0,0,0.23);
}
div.jobs a{
	color: #fff	;
	font-size: 28px;
	font-weight: 700;
}
/* ----------------- Fußbereich ---------------- */
footer {
	background: #333333;
	background: -moz-linear-gradient(top,  #333333 0%, #232323 100%);
	background: -webkit-linear-gradient(top,  #333333 0%,#232323 100%);
	background: linear-gradient(to bottom,  #333333 0%,#232323 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#333333', endColorstr='#232323',GradientType=0 );
	float: left;
	width: 100%;
	padding: 50px 0 90px; 
	border-top: 1px solid #fff;
	color: #fff;
}

footer h3 {
	color: #fff;	
}
footer ul{
	margin-top: 15px;	
}
footer ul li {
	list-style: none;	
}

footer ul li a {
	color: rgba(255,255,255,0.7);	
	text-decoration: none;
	font-weight: 300;
}

footer p{
	color: rgba(255,255,255,0.7);
	font-size: 15px;
}
footer p strong{
	color: 	rgba(255,255,255,0.99);
}

div#impressum_daten,
div#agb_daten{
	font-size: 13px;	
	line-height: 1.4em;
}

/* ----- FÜR FORMULAR ----------------------------------------*/

input,
select,
textarea {
	background: #fff;
	border: 1px solid #999;
	color: #333;
	display: inline-block;
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;
	font-size: 14px;
	margin: 0 0 10px;
	padding: 10px;
	transition: all 0.2s ease-in-out 0s;
	width: 98%;	
}

input:hover,
select:hover,
textarea:hover,
input:focus,
select:focus,
textarea:focus{
	border: 1px solid #245fa1;
}

input[type=submit]{
	width: 100%;
	padding: 15px 30px;	
}
input[type=submit].btn2{
	padding: 5px 30px;
	margin: 5px 0;	
}
input[type=submit].btn3{
	padding: 5px 30px;
	margin: 5px 0;
	float: right;
	width: 280px;	
}
input[type=submit].btn-freigabe{
	float: left;
	margin: 0 1% 0 0;
	padding: 15px 30px;
	width: 49%;
}
input[type=checkbox]{
	width: 10%;
	padding: 15px 30px;	
}
select{
	width: 100%;	
}
table.kundenubersicht tr:hover{
	background: rgba(0,0,0,0.1);	
}

table.kundenubersicht tr.kundenubersicht_head:hover {
	background: none;	
}
/* ---------- Für Kundenportal  ---------- */

section#freigabe {
    padding: 15px 0 50px;
	float: left; 
	width: 100%;	
}
section#freigabe ul {
    padding: 15px 0 25px;
}
section#freigabe ul li {
    font-size: 14px;
    margin: 3px 0;
    padding: 2px 0 1px 3px;
	list-style: none;
}
section#freigabe ul li.greyRow {
    background: rgba(0, 0, 0, 0.075) none repeat scroll 0 0;
}
section#freigabe ul li span {
    display: inline-block;
    font-weight: 700;
    width: 250px;
}
section#freigabe ul li span.info{
    font-weight: 400;
    width: 400px;	
}
.switchLanguage a{
	cursor: pointer;	
}

section#freigabe .meldung_weitere{
	border: 2px solid #245fa1; 
	padding: 5px; 
	margin: 10px 0; 
	float: left;	
}

section#freigabe div.breite15{
	width: 15%; 
	float: left;
}
section#freigabe div.breite12{
	width: 15%; 
	float: left;
}
section#freigabe div.breite50{
	width: 35%; 
	float: left;
	font-size: 14px;
}

section#freigabe div.b19{
	width: 19%; 
	float: left;
}section#freigabe div.b10{
	width: 10%; 
	float: left;
}section#freigabe div.b50{
	width: 50%; 
	float: left;
}section#freigabe div.b12{
	width: 12%; 
	float: left;
}section#freigabe div.brow{
	width: 100%; 
	float: left; 
	border-top: 1px solid rgb(204, 204, 204); 
	padding: 5px 0px;
}
/*@media (max-width: 912px){
	section#freigabe div.b19, section#freigabe div.b10, section#freigabe div.b50, section#freigabe div.b12, section#freigabe div.brow{
		width: 100%; 
		float: left; 
	}
}*/

section#freigabe a.bestat{
	display: inline-block;
	font-weight: 700;
	border: 1px solid #245fa1;	
	padding: 8px;
}

section#freigabe a.bestat:hover{
	display: inline-block;
	font-weight: 700;
	border: 1px solid #245fa1;	
	background: #245fa1;
	color: #fff;
	text-decoration: none;
	padding: 8px;
}

/* ----- FÜR POPUP ------------------------*/

.white-popup {
  position: relative;
  background: #FFF;
  padding: 20px;
  width: auto;
  max-width: 1000px;
  margin: 50px auto;
}
/* ----- FÜR BACK TO TOP ------------------------*/
.cd-top {
  color: #fff;
  display: inline-block;
  height: 100px;
  width: 100px;
  border-radius: 100px;
  position: fixed;
  bottom: 40px;
  right: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  /* image replacement properties */
  overflow: hidden;
  /*text-indent: 100%;*/
  /*white-space: nowrap;*/
  font-size: 50px;
  text-align: center;
  line-height: 94px;
  background: rgba(36, 95, 161, 0.8);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity .3s 0s, visibility 0s .3s;
  -moz-transition: opacity .3s 0s, visibility 0s .3s;
  transition: opacity .3s 0s, visibility 0s .3s;
}
.cd-top.cd-is-visible, .cd-top.cd-fade-out, .no-touch .cd-top:hover {
  -webkit-transition: opacity .3s 0s, visibility 0s 0s;
  -moz-transition: opacity .3s 0s, visibility 0s 0s;
  transition: opacity .3s 0s, visibility 0s 0s;
}
.cd-top.cd-is-visible {
  /* the button becomes visible */
  visibility: visible;
  opacity: 1;
}
.cd-top.cd-fade-out {
  /* if the user keeps scrolling down, the button is out of focus and becomes less visible */
  opacity: .5;
}
.no-touch .cd-top:hover {
  background-color: #245fa1;
  opacity: 1;
}
@media only screen and (min-width: 768px) {
  .cd-top {
    right: 20px;
    bottom: 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .cd-top {
    height: 100px;
    width: 100px;
    right: 30px;
    bottom: 30px;
	
  }
}
/* ----------------- COOKIE HINWEIS  ----------------- */
#cookiehinweis a {
	color: #fff; 
	text-decoration: underline;
}
#cookiehinweis a:hover {
	text-decoration: underline;
}
#cookiehinweis div {
	padding: 10px; 
	padding-right: 40px;
}
#cookiehinweis { 
   text-align: center; 
   background: #245fa1;
   position: fixed;
   bottom: 5px; 
   right: 5px;
   z-index: 10000; 
   width: 375px; 
   font-size: 14px; 
   line-height: 26px;
   padding: 20px 0;
   color: #fff;
}
#cookiehinweisCloser {
	text-decoration: none;
	cursor: pointer;
	background: #fff;
	color: #245fa1;
	font-size: 18px;
	font-weight: bold;
	padding: 10px 40px 10px 40px;
}
#cookiehinweisCloser:hover {
	background: #fff;
	color: #333333;
	text-decoration: none;	
}
