@font-face {
	font-family: 'Roboto';
	src: url('fonts/roboto/Roboto-Regular-webfont.woff') format('woff');
	font-style: normal;
	font-weight: 300;
}

@font-face {
	font-family: 'Roboto';
	src: url('fonts/roboto/Roboto-Italic-webfont.woff') format('woff');
	font-style: italic;
	font-weight: 300;
}

@font-face {
	font-family: 'Roboto';
	src: url('fonts/roboto/Roboto-Medium-webfont.woff') format('woff');
	font-style: normal;
	font-weight: 700;
}

@font-face {
	font-family: 'Font Awesome 5 Brands';
	font-style: normal;
	font-weight: normal;
	src: url("fonts/fa-brands-400.eot");
	src: url("fonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("fonts/fa-brands-400.woff2") format("woff2"), url("fonts/fa-brands-400.woff") format("woff"), url("fonts/fa-brands-400.ttf") format("truetype"), url("fonts/fa-brands-400.svg#fontawesome") format("svg")
}

@font-face {
	font-family: 'Font Awesome 5 Free';
	font-style: normal;
	font-weight: 400;
	src: url("fonts/fa-regular-400.eot");
	src: url("fonts/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("fonts/fa-regular-400.woff2") format("woff2"), url("fonts/fa-regular-400.woff") format("woff"), url("fonts/fa-regular-400.ttf") format("truetype"), url("fonts/fa-regular-400.svg#fontawesome") format("svg")
}

@font-face {
	font-family: 'Font Awesome 5 Free';
	font-style: normal;
	font-weight: 900;
	src: url("fonts/fa-solid-900.eot");
	src: url("fonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("fonts/fa-solid-900.woff2") format("woff2"), url("fonts/fa-solid-900.woff") format("woff"), url("fonts/fa-solid-900.ttf") format("truetype"), url("fonts/fa-solid-900.svg#fontawesome") format("svg")
}

/*###################################################################*/

*,
*:after,
*:before {
	/*box-sizing: inherit;*/
	box-sizing: border-box;
}

::-moz-selection {
	background: #eee;
	text-shadow: none;
	color: #444;
}

::selection {
	background: #eee;
	text-shadow: none;
	color: #444;
}

hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #ccc;
	margin: 1em 0;
	padding: 0;
}

audio,
canvas,
iframe,
img,
svg,
video {
	vertical-align: middle;
}

img {
	max-width: 100%;
	height: auto;
	width: auto;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

fieldset {
	border: 0;
	margin: 0;
	padding: 0;
}

textarea {
	resize: vertical;
}

a {
	color: #444;
	text-decoration: none;
}

a:hover,
a:active,
a:focus {
	color: #004799;
	outline: 0;
	text-decoration: none;
}

em {
	font-style: italic;
}

b,
strong {
	font-weight: bold;
	/* Or 700 */
}

p {
	margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 700;
}

h1 {}

h2 {}

h3 {}

h4 {}

li {
	list-style: square;
	margin-left: -10px;
}

/* ==========================================================================
   helper
   ========================================================================== */
.red{
color: #004799;	
}

.float-left {
	float: left;
}

.float-right {
	float: right;
}

.center {
	text-align: center;
}

/*youtube*/

.embed-container {
	position: relative;
	/* ratio 16x9 */
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	width: 100%;
	height: auto;
}

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

/* ratio 4x3 */

.embed-container.ratio4x3 {
	padding-bottom: 75%;
}

/*Processwire Image Class*/

.align_right {
	float: right;
	margin-left: 15px;
	margin-right: 0;
	margin-top: 0;
}

.align_left {
	float: left;
	margin-left: 0;
	margin-right: 15px;
	margin-top: 0;
}

.align_center {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/*animate########################################################*/

.animate {}

.animate.scroll {
	position: relative;
	opacity: 0;
	-moz-transition: all 500ms linear;
	-webkit-transition: all 500ms linear;
	-o-transition: all 500ms linear;
	transition: all 500ms linear;
	-moz-transform: translate(0px, 30px);
	-webkit-transform: translate(0px, 30px);
	-o-transform: translate(0px, 30px);
	-ms-transform: translate(0px, 30px);
	transform: translate(0px, 30px);
}

.animate.in-view {
	opacity: 1;
	-moz-transform: translate(0px, 0px, );
	-webkit-transform: translate(0px, 0px);
	-o-transform: translate(0px, 0px);
	-ms-transform: translate(0px, 0px);
	transform: translate(0px, 0px);
}

/*video bg########################################################*/

.video-container {
	position: relative;
	width: 100%;
	height: 100vh;
	text-align: center;
	overflow: hidden;
}

.video-background {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	z-index: -100;
}

/* ==========================================================================
   flex
   https://www.w3.org/TR/css-flexbox-1/
   ========================================================================== */

.flex {
	display: flex;
}

/*column-count */

.cc p {
	/*fix column text*/
	display: inline-block;
	padding-right: 30px;
}

/*column-count p*/
.cc2 {
	column-count: 2;
}

/* ==========================================================================
   navigation
   ========================================================================== */

/*nav#########################################################################*/
.off-canvas-container {
	display: none;
}
.toggle-nav {
	float: right;
	cursor: pointer;
	display: none;
	max-width: 100px;
}

.off-canvas-toggle {
	position: absolute;
	top: -2px;
	right: 5px;
	display: none;
	color: #0F62B3;
	cursor: pointer;
}

/* navigation level1#########################################################*/
.mobile_menu{
	display: none;
}

.topnav {
	float: left;
	margin-top: 10px;
	margin-bottom: -20px;
	padding: 0 10px;
}

.topnav ul {
	margin-left: -30px;
	margin-top: 10px;
}

.topnav ul li {
	float: left;
	margin-right: 30px;
	padding-bottom: 5px;
	list-style: none;
	margin-left: -5px;
}

.topnav ul li:last-child {
	margin-right: 0;
}

.topnav ul li a {
	display: block;
	color: #444;
}

.topnav ul li a:hover,
.topnav ul li.active a {
	color: #004799;
}

/* navigation level2#######################################################*/

.topnav li ul {
	position: absolute;
	left: -10000px;
	z-index: 9999;
	margin-top: 0px;
	background: #eee;
}

.topnav li:hover ul {
	left: auto;
	left:0;
	top: auto;
	padding-top: 4px;
	padding-bottom: 10px;
	margin-left: 0px;
	margin-top: 2px;
}

.topnav li ul li {
	clear: both;
	margin-left: -30px;
	background: #fff;
	background: #eee;
	min-width: 200px;
	position: relative;
}
.topnav li ul li:nth-child(even) {
}

.topnav li ul li a {
	display: block;
	padding: 5px 10px 7px 10px;
	color: #444 !important;
}

.topnav ul li.active ul li a {
	color: #444;
}

.topnav li ul li a:hover,
.topnav li ul li.active a {
}

.topnav ul li.active ul li.active a {
	color: #004799;
}

.topnav li ul li a .fas{
	color:#ddd;
	position:absolute;
	bottom: 5px;
	right:5px;
}

/* ==========================================================================
   custom styles
   ========================================================================== */

html,
body {
	height: 100%;
}

html {
	box-sizing: border-box;
	overflow-y: scroll;
	overflow-x: hidden;
}

body {
	font-family: 'Roboto', 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
	font-size: 1.2em;
	line-height: 1.5;
	font-weight: 300;
	padding: 0;
	/*ie 11 footer */
	height: auto;
	background: #fff;
	color: #444;
	background: #f7f7f7;
	
}

.preload .top-slider {
	height: 300px;
	overflow: hidden;
}

.top-slider {
	clear: both;
	width: 100%;
}

.preload .top-slider {
	background: url('img/ring.gif') #fff no-repeat center center !important;
}

.preload .top-slider.loading img{
	visibility: hidden;
}

.top-slider .slick-slide {}

.top-slider img {
	width: 100%;
}

.top-slider [data-animation-in] {
	opacity: 0.2;
}

.wrapper {
	flex-direction: column;
	margin: 0;
	padding: 0;
	position: relative;
	width: 100%;
}

.container {
	max-width: 1100px;
	width: 90%;
	margin: 0 auto;
	flex-direction: column;
	height: 100%;
	position: relative;
	-webkit-transform: translateZ(0) translateX(0);
	transform: translateZ(0) translateX(0);
	-webkit-transition: .3s ease all;
	transition: .3s ease all;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	background: #fff;
}

.header {
	margin: auto;
	flex-direction: column;
	background: #fff;
	padding: 0;
	margin: 0;
	display: flex;
	position: relative;
	margin-top: 10px;
	border-bottom: 2px solid #004799;
}
.logo-bg{
	width: 100%;
	background: url(img/glutolin_header.svg) no-repeat #f7f7f7;
	background-size: cover;
	height: 180px;
	position: relative;
}

.logo{
	max-width: 350px;
	margin: 100px 0 0 30px;
}


.logo img{
	width: 350px;

}

.speedy{
	width:200px;
	position: absolute;
	top: -5px;
	right: 30px;
	
}

.lang-suche {
	margin-top: -15px;
	margin-left: auto;
}

.suche {
	float: left;
}

.suche input {
	border: 1px solid #eee;
	padding: 5px;
	height: 30px;
}

.suche #searchstring {
	width: 170px;
	font-size: 0.9em;
}

.suche button {
	border: none;
	background: none;
	padding: 5px;
	color: #ddd;
	font-size: 0.9em;
	cursor: pointer;
	margin-right: 10px;
}

.suche button:hover {
	color: #444;
}

.lang-div {
	float: left;
	float: left;
	letter-spacing: 0.04em;
	margin-right: 10px;
	margin-top: 0;
}

.lang-ul {
	margin-left: 10px;
	margin-top: 0;
	border: 1px solid #eee;
	padding: 1px 5px 2px 5px;
	height: 30px;
	/*width: 110px;*/
}

.lang-ul a {
	color: #777;
	font-size: 0.9em;
}

.lang-div li {
	list-style: none;
	background-size: contain;
	margin-left: 0px;
}

.lang-div img.flag {
	float: right;
	width: 20px;
	height: 15px;
	margin-right: 5px;
	margin-top: 3px;
}

.lang-div a {
	text-decoration: none;
	text-transform: none;
}

.lang-div li ul {
	position: absolute;
	left: -10000px;
	z-index: 999;
	margin-top: -7px;
	font-size: 0.8em;

}

.lang-div li:hover ul {
	left: auto;
	top: auto;
	width: 194px;
	margin-left: -6px;
}

.lang-div li ul li a {
	display: block;
	margin-left: 10px;
	padding: 10px 0;
	color: #444;
}

.lang-div li ul .active a,
.lang-div li ul a:hover {
	color: #004799;
}


.main{
padding: 0 15px;	
}

.contentheader {
	margin-bottom: 20px;
	padding: 0;
}

.row {
	margin-left: -10px;
	width: calc(100% + 20px);
	flex-wrap: wrap;
}

.col {
	/*padding: 0 10px;*/
}

/*order --------------*/

.col.order1 {
	order: 1;
}

.col.order2 {
	order: 2;
}

.col.order3 {
	order: 3;
}

.col.order4 {
	order: 4;
}

.col.order5 {
	order: 5;
}

.shadow {
	box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.19);
}

.my-button {
	background: #eee;
	text-transform: uppercase;
	border: none;
	border: 1px solid #555;
	border-radius: 5px;
	color: #333;
}

.colimg {
	padding: 5px;
}

.image-center {}

.image {}

.rowimg1 {
	justify-content: space-between;
}

.rowimg2 {
	justify-content: space-around;
}

.rowimg1 .col,
.rowimg2 .col {
	max-width: 200px;
}

.logoboxen {
	margin: 60px 0 40px 0;
	text-align: center;
}

.logoboxen a{
width: 100%;

}

.logoboxen img {
	max-height: 100px;
	opacity: 0.6;
	filter: grayscale(100%);
	width: 200px;
}

.logoboxen a:hover img {
	opacity: 1;
	filter: grayscale(0%);
}

.sitefooter {
	border-top: 2px solid #004799;
	padding: 20px 15px;
}

.logoboxen .decotric {
	display: inline-block;
	width: 60%;
	background: #D8000E;
	padding: 10px 5px;
	opacity: 0.6;
	filter: grayscale(100%);
}

.logoboxen .decotric:hover  {
	opacity: 1;
	filter: grayscale(0%);
}

.logoboxen .decotric img {
	opacity: 1;
	filter: grayscale(0);

}

.logoboxen .pufas img {
	width: 45%;
	margin-top:-40px;
}

.logoboxen .glutolin img {
	width: 38%;
}

.logoboxen .optitron img {
	width: 45%;
}

.footernav a {
	color: #444;
}

.footernav a:hover {
	color: #004799;
}
.footer-links a,
.social-links li a {
	color: #eee;
	text-decoration: none;
}

.totop {
	clear: both;
	float: right;
	margin: 0 0 20px 0;
	color:#004799 !important;
}

.totop:hover{
color: #555 !important;
}
.totop .fa-square {}

.totop .fa-angle-double-up {
	margin: 4px 0 0 9px;
}

.footer-links {
	float: left;
}
.socialmediabox {
	clear: both;
	margin-top: -10px;
	float: right;
	margin-right: -5px;
}

.socialmediabox .icon {
	display: inline-block;
	line-height: 1.42857;
	vertical-align: middle;
	width: 40px;
	height: 40px;
	font-size: 30px;
	margin: 0;
	text-align: center;
	cursor: pointer;
	margin-left: auto;
}

.fa-facebook-square {
	color: #3b5998;
}
.fa-youtube{
	color: #ED1C24;
}


.socialmediabox .icon a {
	color: #ddd;
}

.socialmediabox .icon a:hover {
	color: #444;
}
.social-links {
	float: right;
	padding-left: 0;
}

.social-links li {
	list-style: none;
	float: left;
	margin-right: 10px;
	margin-top: -20px;
	text-indent: 0;
}

.coockiehinweis {
	position: relative;
	padding: 0 0 10px 0;
	z-index: 1000;
	width: 100%;
	box-shadow: 0 -5px 5px -5px rgba(1, 1, 1, 0.5);
	background-color: rgba(50, 50, 50, 0.8);
	font-size: 0.8em;
	color: #eee;
	position: fixed;
	bottom: 0;
	max-width: 100%;
	width: 100%;
	margin: 0 auto;
	padding: 10px 20px 10px 20px;
}

.close-coockiehinweis {
	margin-left: 10px;
}

.coockiehinweis a {
	text-decoration: underline;
	color: #fff;
}

.close-coockiehinweis {
	float: right;
}

.close-coockiehinweis button {
	cursor: pointer;
	padding: 5px;
	background: #004799;
	color: #fff;
	border: none;
}

/*content*/
.breadcrumbs{
	margin: 0 0 0 -30px;
	width: 100%;
	display: inline-block;
	font-size: 0.7em;
}

.breadcrumbs li{
	float: left;
	list-style: none;
	margin-left: 0px;
}

.breadcrumbs ul{
	margin-left: 0;
}

.breadcrumbs li a{

}
.breadcrumbs  li a:hover{
	color: #004799;
}

.breadcrumbs .active{
	color:#004799;
}

.content .boxgrau{
margin: 20px 0;
border: 2px solid #eee;
padding: 20px;
background: #f7f7f7;	
}

/*map kontakt*/

#mapid {
	height: 500px;
}

.teaserboxen {
	margin-top: 30px;
}

.list-produkte {
	margin-left: -20px;
}

.list-produkte .col {
	margin-bottom: 20px;
}

.list-produkte .col:hover .box-produkt .text {
	color: #004799;
}

.page-home .list-produkte .col .box-produkt img {
	transition: all 1s ease-in-out;
}
.page-home .list-produkte .col:hover .box-produkt img {
  transform: scale(1.1); 
}

.box-produkt {
	margin-left: 20px;
	position: relative;
	overflow: hidden;
}

/*produktübersicht*/
.box-produkt {
	height: 220px;
	border: 2px solid #eee;
	text-align: center;
}

/*kategorien startseite*/
.box-produkt-kategorie{
height: auto;
}
.page-home .col-list-produkte .text {
	margin-left: 20px;
	text-align: center;
}

.box-produkt-kategorie .img{
	min-height: 150px;
	background: url('img/img_load.gif') #fff no-repeat center center !important;
}

.box-produkt-kategorie img{
width: 100%;
height: auto;
}

.box-produkt .text {
	position: absolute;
	bottom: 0px;
	text-align: center;
	background: rgba(238, 238, 238, 0.9);
	color: #444;
	width: 100%;
	padding: 10px 5px;
	font-size: 0.8em;
}

.box-produkt img {

}

.box-produkt:hover{

}

.page-produkte .box-produkt:hover{

}

.page-produkte .box-produkt .external-link{
    color: #bbb;
    position: absolute;
    bottom: 5px;
    left: 10px;
	z-index: 10;
}

/*alle produkte*/
.kategorie-name{
	border-bottom: 1px solid #004799;
	padding-bottom: 10px;
	margin-bottom: 20px;
	display: inline-block;
	width: 100%;
	cursor:pointer;
	position: relative;
}
.kategorie-name:hover{
	color: #004799;
}
.kategorie-name .fa-angle-double-down {
    display: block;
    position: absolute;
    right: 0;
    top: 6px;
    font-size: 20px;
	color: #004799;
	transform: rotate(0deg);
  transition: transform 0.2s ease-out;
}

.kategorie-name.toggle-angle .fa-angle-double-down {
  transform: rotate(180deg);
  transition: transform 0.2s ease-out;
}


/*produkte*/

.ti-sd-download li {
	list-style: none !important;
	margin-left: -18px;
}

/*zuklappen*/
.alleprodukte .list-produkte{
display:flex;
}

/*erste kategorie auf*/
.alleprodukte .list-produkte.mould-hygiene{
display:flex;
}
/*Wir über uns*/

.vertrieb{
margin-top: 40px;
}
.vertrieb,  .a-technik{
margin-left: -20px;
}
.member-box{
display: block;
border: 2px solid #eee;
margin-bottom: 20px;
margin-left: 20px;
}
.member-box:after{
clear: left;
content: " ";
display: table;
}
.member-box .img-box{
float: left;
width: 50%;
}

.member-box .img-box img{
	max-height: 300px;
}
.member-box .text{
float: left;
width: 50%;
margin-top: 20px;
margin-left: -40px;
}

.h2-vertriebs-organisation,.h2-a-technik, .h2-download{
margin-top: 40px;
padding-top: 20px;
border-top: 2px solid #eee;
}
.a-technik{
margin-top: 40px;
}
.page-wir-ueber-uns .colkarte{
margin: 20px 0 10px 0;
}
.page-wir-ueber-uns .imagemap{
margin-right: 20px;	
}
.page-wir-ueber-uns .imagemap img{
padding-top:1px; 	
padding-bottom:1px;

border: 2px solid #eee;
}

.page-wir-ueber-uns .download{
margin-left: 0;	
}

/*Aktuelles*/
.news{
	margin-left: -10px;
	max-width: calc(100% + 10px);
}

.news .col{
margin-bottom: 10px;
}

.newsbox {
	border: 2px solid #eee;
	padding: 10px;
	height: 100%;
	margin-left: 10px;

}

.newsbox .date {
	font-size: 0.8em;
	margin: 0;
	border-left: 2px solid #004799;
	text-indent: 5px;
	display: block;
}

.newsbox .news-title {
	font-size: 0.8em;
	margin: 0;
	line-height: inherit;
	padding: 0;
	margin-top: -5px;
}

.newsbox .news-image{
text-align: center;
border: 2px solid #eee;
}

.newsbox .news-content {
	margin-top: 20px;
	font-size: 0.8em;
}

.newsbox .news-content ul{
margin-left: -15px;
}

/*Downloads*/
.download {
margin-left: -20px;
}

.col_download {
	margin-bottom: 20px;
	padding-left: 20px;
	flex: 0 0 25%;
	max-width: 25%;
}

.download:last-child {
	border-bottom: none;
}

.download_box {
	border: 2px solid #eee;
	padding: 10px;
	width: auto;
	height: 100%;

}

.download_box:hover{
border: 2px solid #ddd;
}

.download_box h3 {
	font-size: 1em;
	color: #444;
}

.download_box a {

}
.download_box p {
	font-size: 0.8em;
	color: #444;
	margin-top: -10px;
}
.colkataloge{
	max-width: 25%;
}

.colbroschueren, .colprospekte, .colinformation, .colaus-der-praxis{
	max-width: 25%;
}
.colbroschueren h3, .colprospekte h3, .colinformation h3, .colaus-der-praxis h3{
	font-size: 0.7em;
}

/*downloads ti sd*/
.downloadlist{
	margin-left: -10px;
}
.dl_box {
	margin: 0 15px 10px 15px;
}

.dl_box .dl_box_headline {
	width: 100%;
	color: #444;
	cursor: pointer;
	border-bottom: 1px solid #ccc;
	line-height: 30px;
	padding: 0 40px 0 5px;
	position: relative;
}

.dl_box .dl_box_headline:hover {
	color: #004799;
}
.dl_box .dl_box_headline .fa-angle-double-down {
	display: block;
	position: absolute;
	right: 0;
	top: 6px;
	font-size: 20px;
	color: #004799;
}

.dl_box_inner {
	border: 1px solid #ccc;
	border-top: none;
	padding: 10px;
	margin-top: -26px;
	overflow-x: auto;
}

.dl_box_inner tr {
	background: #fcfcfc;
}

.dl_box_inner tr:nth-child(odd) {
	background: #eee;
}

.dl_box table {
	width: 100%;
}

.dl_box table tr {
	height: 40px;
}

.dl_box th {
	border-bottom: 2px solid #ccc;
}

.dl_box th,
.dl_box td {
	padding: 2px 10px;
}

.dl_box th {
	
	text-align: left;
}

.dl_box td {
	border-bottom: 1px solid #ccc;
}

.dl_box tr:last-child td {
	border: none;
}

td.dl_image {
	background: #fff none repeat scroll 0 0;
	text-align: center;
	width: 40px;
}


/*video*/
.row-videos{
	margin-left: -20px;
}

.col-video{
	margin-bottom: 20px;
	
}

.video_box {
	border: 2px solid #eee;
	margin: 0;
	height: 100%;
	margin-left: 20px;
}

.video_box .v-linkbild img {
	width: 100%;
}

.video_box h3 {
	color: #444;
	padding: 0 10px;
	font-size: 0.8em;
}

.video_box .v-link {
	font-size: 0.6em;
	color: #444;
	margin-top: -10px;
	padding: 0 10px;
}
.video_box .p-link{
	margin-left: 10px;	
}

/*stellenangebote*/
.wir-suchen{
background: #f2f2f2;
padding: 10px 20px;
}
.stellenangebote ul .stellenlinks {
	list-style: none;
	margin-left: -40px;
}

.stellenangebote ul .stellenlinks a {
	display: inline-block;
	background: #f7f7f7;
	padding: 10px;
	margin-bottom: 10px;
	border: 1px solid #ddd;
	border-bottom: 2px solid #ddd;
	width: 100%;
}
.stellenangebote ul .stellenlinks a:after {
	font-family: "Font Awesome 5 Free";
	content: '\f101';
	font-style: normal;
	font-weight: 900;
	text-decoration: inherit;
	float: right;
	color: #004799;
}
.stellenangebote hr {
	margin: 30px 0  60px 0;
	border-top-width: 2px;
}
/*product-details*/
.product-details {
	margin-top: 30px;
}
.product-details .product_detail_left{
padding-right: 40px;
margin-top: -10px;

}

.product-details .product_detail_right{
margin-top: -10px;
}

.product-details .product_detail_image {
	max-width: 600px;
	max-height: 600px;
	text-align: center;
	padding: 0 20px;
}

.product-details .product_detail_image img {
	width:  auto;
	max-height: 600px;
}

.product-details .video {
	margin-top: 40px;
	margin-left: 10px;
	background: #eee;

}

.product-details .v-linkbild img{
width: 100%;
}

.product-details .v-linktext{
	display: inline-block;
	margin:  20px;
}

.product-details .fa-youtube{
	color: #004799;
	font-size: 1em;
}

.product_detail_text {
	padding: 20px;
	margin-right: 10px;
	border: 1px solid #eee;	
}

.product_detail_text h2 {
	font-size: 1.2em;
	margin-top: 0;
	color: #0F62B3;
}
.product_detail_text ul {
	margin-left: -10px;
}
.ti-sd-download li{
	margin-left: -10px;
	margin-bottom: 10px;
}
.product_detail_text li {
	list-style: square;
}
.product-details .produkt-icon{
	width: 189px;
	height: 64px;
	margin-top: 10px;
}
.product-details .produkt-icon img{
	width: 189px;
	height: 64px;
}
.produktdetails-info{
	margin-top: 30px;
	border: 2px solid #eee;
	padding: 20px;
	background: #f7f7f7;
}
.package_size_links a {
	display: inline-block;
	border: 2px solid #004799;
	border-bottom: 2px solid #004799;
	background-image: linear-gradient(#fff,#d1e8ff);
	padding: 2px 5px;
	margin-left: 5px;
	margin-top: 20px;
	color: #444;
	min-width: 80px;
	text-align: center;
}
.package_size_links a:hover {
	background-image: linear-gradient(#fff,#d1e8ff,#d1e8ff);
}
.color_selection{
	margin-top:20px;
}
#color_selection_form{
	margin-top:20px;
}
#color_selection_form select{
	border: 2px solid #eee;
	padding: 2px 5px;
}
.package_size_links .active {
	color: #004799;
}
/*rechner*/
.rechner{
	margin-top: 20px;
	border: 1px solid #ddd;
	padding: 10px;
}
.rechner h4{
	margin-top: 0;
	margin-bottom: 10px;
}
.rechner .rechner-hinweistext, .rechner .aufrag{
	font-size: 0.8em;
}

.rechner_selection, .selection_label{
margin-bottom: 10px;	
}
.rechner_select{
	padding: 0;
	width: 13.8em;
	border: 1px solid #ddd;	
}
.rechner .error, .rechner .error-option{
	font-size: 0.8em;
	color: #004799;
	display: block;
}
.rechner .input-qm{
	padding: 4px 2px;
	width: 8em;
	border: 1px solid #ddd;
}
.rechner .submit-button{
	margin-left:10px; 
	padding: 4px ;
	border: 1px solid #ddd;
	cursor: pointer;
}
.rechner .submit-button:hover{
	color:#004799 ;
}
.rechner .verbrauch{
	margin-top: 20px;
	color: #004799;
}
.rechner .ergebnis ul{
margin-top: 0px;
}
.rechner .ergebnis li {
list-style: none;
margin-left: -25px;
}
.rechner .ergebnis li {
list-style: none;
margin-left: -25px;
}
.rechner .ergebnis li .fas{
font-size: 0.7em;
margin-right: 5px;
}
.rechner .ergebnis li {
list-style: none;
}

.zuruek_zur_uebersicht {
	margin-left: 10px;
}
.zuruek_zur_uebersicht a:before {
	font-family: "Font Awesome 5 Free";
	content: "\f053";
	font-style: normal;
	font-weight: 900;
	text-decoration: inherit;
	color: #666;
	margin-right: 15px;
}
.product_nav {
	margin-top: 20px;
	padding: 12px 10px 5px 10px;
}
.prev-next .pev {
	float: left;
	height: 20px;
}
.prev-next .prev .icon {
	float: left;
	height: 20px;
	width: 20px;
	margin-right: 5px;
}
.prev-next .prev .text {
	float: left;
}
.prev-next .next {
	float: right;
	margin-right: 10px;
	height: 20px;
}
.prev-next .next .icon {
	float: left;
	height: 20px;
	width: 20px;
	margin-left: 15px;
}
.prev-next .next .text {
	float: left;
}
.pev-next .next .text:hover {
	text-decoration: underline !important;
}
.prev-next .prev .icon:before {
	font-family: "Font Awesome 5 Free";
	content: "\f053";
	font-style: normal;
	font-weight: 900;
	text-decoration: inherit;
	color: #666;
}
.prev-next .next .icon:before {
	font-family: "Font Awesome 5 Free";
	content: "\f054";
	font-style: normal;
	font-weight: 900;
	text-decoration: inherit;
	color: #666;
}
.hinweistext {
	margin-top: 20px;
	border-top: 2px solid #eee;
	padding: 20px 10px 10px 10px;
}
/*produkttips */
.produkttips {
	margin-bottom: 20px;
}
.produkttips h4 {
	margin-bottom: 40px;
}
.bx-wrapper{
	margin: 0 ;
	padding-bottom: 20px;
	border:2px solid #eee;
}
.produkttips .bxslider-produkte {
	display: block;
}
.bxslider-produkte li a {
	height: 100%;
	height: 200px;
	display: flex; 
    justify-content: center; 
    align-items: center;
}
.bxslider-produkte li img {
	max-height: 200px;
	margin: auto;
	vertical-align: middle;
}
.bx-controls-direction .disabled {
	display: none !important;
}
.produkttips ul li {
	margin-top: -15px;
	min-height: 200px;
	width: 200px;
	text-align: center;
}
/*suche*/
.search-h4 span{
	color: #004799;
}

/* ==========================================================================
   Media Queries
   ========================================================================== */

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

@media (min-width: 1300px) {
	.topnav ul li {
		margin-right: 30px;
	}
	.contentsmall {
		max-width: 80%;
	}
	.produktdetails-infodiv, .rechner{
		display: inline-block;
		width: 50%;
		float: left;
	}
	.rechner{
		margin-top: 0;
	}

}

/*#####################################################################*/

@media (min-width: 1201px) {
	.topnav li ul {
		width: 100%;
		float: left;
		padding: 5px;
	}
	.topnav li ul li {
		float: left;
		clear: inherit;
		width: 19.5%;
		min-width: 19.5%;
		border: 1px solid #fff;
		margin: 1px;
		display: flex;
		/*flex-direction: column;*/
	}
	.topnav li ul li a {
		height: 80px;
		flex: 1;
		display: flex;
		align-items: center;
		justify-content: center;
		text-align: center;
	}
	.topnav li ul li:hover, .topnav li ul li.active{
		background: rgba(255, 255, 255, 0.9);
	}
	.topnav li:hover ul {
		animation: fadeIn ease 0.5s;
	}
	@keyframes fadeIn {
		0% {
			opacity: 0;
		}
		100% {
			opacity: 1;
		}
	}
	.stellenangebote-ul{
		display: flex;
		flex-wrap: wrap;
		width: 100%;
		margin-left: -40px !important;
	}
	.stellenangebote-ul .stellenlinks{
		flex:0 0 50%;
		max-width: 50%;
		margin-left: 0 !important;	
	}
	.stellenangebote ul .stellenlinks a{
		max-width: 95%
	}

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

	.member-box .text{
	margin-left: 0;
	}
}

@media (max-width: 1200px) {
	body {
		overflow-x: hidden;
		background: #fff;
	}
	.wrapper {
		background: #fff;
	}
	.container {
		width: 100%;
		min-height: 1200px;
	}
	.wrapper.show-nav .container {
	-webkit-transform: translateZ(0) translateX(300px);
	transform: translateZ(0) translateX(300px);
	}
	
	.desktop_menu{
	display: none;	
	}
	.mobile_menu{
		display: inline-block;
		width: 100%;
	}
	
	.toggle-nav {
		display: block;
		margin: 20px 0 20px 15px;
	
	}
	.off-canvas-toggle {
		display: block;
	}
	.topnav {
		display: block;
		width: 300px;
		height: 100%;
		position: absolute;
		top: -10px;
		left: -320px;
		background: #eee;
		padding: 15px;
		z-index: 9999;
		margin-top: inherit;
		height: auto;
	}

	.topnav ul {
		margin-left: -5px;
		margin-top: 0;
	}
	.topnav .active {
		border-top: none;
		color: #0F62B3;
	}
	.topnav li {
		clear: both;
		float: inherit;
		margin: 2px 0 2px -20px;
		margin-left: -20px;
		width: 100%;
		border-bottom: 2px solid #e3e3e3;
		font-weight: 700;
	}
	.topnav li:last-child {
		border: none;
	}
	.topnav li a {
		display: block;
		width: 100%;
		padding: 5px;
	}
	.topnav li a:hover {
		background: #e2e2e2;
	}
	.topnav li ul,
	.topnav li:hover ul {
		position: relative;
		left: auto;
		margin: 10px 0 -20px 0;
		border-bottom: none;
		padding-top: 4px;
		padding-bottom: 10px;
	}
	.mobile_menu .havechildren{
	position: relative;
	width: 100%;
	cursor: pointer;
	margin-left: 0;
	}
	.mobile_menu .havechildren:before{
	font-family: "Font Awesome 5 Free";
	content: '\f067';
	position: absolute;
	right:0;
	top:5px;
	font-size: 0.8em;
	color: #aaa;
	transition:transform 0.15s;
	}
	.mobile_menu .havechildren.show{
		color: #0F62B3!important;
	}
	
	.mobile_menu .havechildren.show:before{
		 transform: rotate(45deg);
	}
	
	.mobile_menu .submenu{
		display: none;
	}
	
	.mobile_menu .show{
		display: inline-block;
	}
	.topnav li ul li {
		margin: 0 0 0 -35px;
		border: none;
		border-bottom: 1px solid #e3e3e3;
		font-weight: normal;
		font-size: 0.8em;
		width: calc(100% + 35px);
		background: none;
	}
	.topnav li ul li:last-child {
		border: none;
	}

	.topnav li ul li  {
		padding-top: 5px; 
	}
	.topnav li ul li a:hover{
		background: none;
	}
		.topnav  .active_sub  .active a{
		color: #004799 !important;
	}
	.topnav li ul li a .fas {
		bottom: 15px; 
	}
	.col_download {
		flex: 0 0 25%;
		max-width: 25%;
	}
	
	.lang-suche{
	margin-top: -45px;	
	}
}

@media (max-width: 992px) {
	.container {
		width: 100%;
	}
	.col_download,
	.col-list-produkte {
		flex: 0 0 33.3333%;
		max-width: 33.3333%;
	}
	.stellenangebote ul .stellenlinks a {
		max-width: 80%;
	}
	.member-box .img-box img{
		max-height: 200px;
	}
	.member-box .text{
	font-size: 0.8em;
	}
	.a-member-box .text{
	font-size: 0.8em;
	}
	.product-details{
		display: inline-block;
		padding-left: 10px;
	 }
	.product-details .product_detail_left{
		margin-top: 30px;
		display: block;
		padding-right: 10px;	
		max-width: 100%;
	 }
	 .product_detail_left .product_detail_image{
		border: 1px solid #eee;
		max-width: 100%;
	 }
	 .product-details .product_detail_image img {
	 max-height: 300px;
	 
	 }
	.product-details .video{
	margin-left: 0;	
	}
	 
	.product_detail_right{
		width: 100%;
		max-width: 100%;
		display: block;
	}
	.prev-next a, .zur_uebersicht a{
		display: inline-block;
		width: 100%;
	}
}

/*#####################################################################*/

@media (max-width: 768px) {
	.header {
	margin-top: 0;
}
	.logo {
		max-width: 200px;
		margin-top: 30px;
	}
	.logo-bg{
	background-image: none;
	background-color: #0F62B3;
	height: 100px;
	}
	.speedy{
		width: 100px;
		margin-top: 20px;
	}
	.contentheader h1{
		font-size: 1.6em;
	}
	.preload .top-slider {
	height: 200px;
	}
	
	.topnav{
		top:0;
	}
	
	.col_download,
	.col-list-produkte,
	.list-produkte .col25
	{
		flex: 0 0 50%;
		max-width: 50%;
	}
	.stellenangebote ul .stellenlinks a {
		max-width: 100%;
	}
	.prev-next .prev, .prev-next .next, .zuruek_zur_uebersicht{
		clear: both;
		display: inline-block;
		width: 100%;
		max-width: 100%;
		margin: 5px 0;
		padding: 10px;
		border: 2px solid #eee;
		height: auto;
	}
	.zur_uebersicht{
	width:100%;
	margin-left: 0;
	}
	.video_box{
	margin-bottom: 10px;
	}
	.member-box .text{
	margin-top: 0;
	}
	
	.produkttips{
	padding-left: 10px;
	padding-right: 10px;
	}
	.news .col33{
		flex: 0 0 50%;
		max-width: 50%;
	}
}

@media (max-width: 600px) {
	.vertrieb .col50{
		flex: 0 0 100%;
		max-width: 100%;
	}
	.a-technik .col50{
		flex: 0 0 100%;
		max-width: 100%;
	}
}

/*#####################################################################*/

@media (max-width: 576px) {
	.logo {
		max-width: 150px;
	}
	
	.contentheader h1{
		font-size: 1.4em;
	}
	
	.content h2{
		font-size: 1.2em;
	}
	.row {
		flex-direction: column;
		padding: 0;
		/*ie*/
		display: inline-block;
	}
	.col {
	}
	.col25,
	.col33,
	.col50 {
		max-width: 100% !important;
	}
	.col.col-25,
	.col.col-50 {
		margin-left: 0;
	}
	.rowimg1 {
		flex-direction: row;
		justify-content: space-between;
	}
	.rowimg2 {
		flex-direction: row;
		flex-flow: row wrap;
	}
	.rowimg1 .col,
	.rowimg2 .col {
		max-width: 50%;
	}
	.cc2 {
		column-count: 1;
	}
	.cc p {
		padding-right: 0;
	}

	.preload .top-slider {
	height: 100px;
	}
	
	.slick-arrow {
		display: none;
	}
	.lang-suche {
		margin-top: -10px;
		margin-left: 15px;
		margin-bottom: 10px;
	}
	.lang-ul {
		margin-left: 0;
	}
	.product_detail_text, .product-details .product_detail_image {
		margin-left: 10px;
	}
	
	.product-details .video{
	margin-left: 10px;	
	}
	 
	.download {
		display: flex;
		flex-direction: row;
	}
	.col_download {
		flex: 0 0 100% !important;
		max-width: 100% !important;
	}
	.logoboxen{
		margin-right: 20px;
		width: 100%;
	}
	.logoboxen .col33 {
		margin: 0 auto 40px auto;
	}
	.logoboxen .col33 a {
		max-height: inherit;
		margin-left: auto;
		margin-right: auto;
	}
	.logoboxen .col33 img {}
	
	/*kontakt*/

	.page-contact a[href^="tel:"], .page-contact a[href^="mailto:"]{
		
		margin-top: 15px;
		display: inline-block;
		background:#004799;
		color:#fff;
		padding: 10px;
		min-width: 200px;
		/*text-align: center;*/
		border-radius: 5px;
		box-shadow: 1px 1px 9px 0px rgba(0,0,0,0.26);
		text-decoration: none;
		min-width: 250px;
	}
	.page-contact a[href^="tel:"]{
	margin-bottom: 20px;	
	}
	.hinweistext{
	padding-left: 20px;
	padding-right: 20px;
	}

}
/* ==========================================================================
   Helper classes
   ========================================================================== */

.hidden {
	display: none !important;
}

.visuallyhidden {
	border: 0;
	clip: rect(0 0 0 0);
	-webkit-clip-path: inset(50%);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	white-space: nowrap;
}

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
	clip: auto;
	-webkit-clip-path: none;
	clip-path: none;
	height: auto;
	margin: 0;
	overflow: visible;
	position: static;
	width: auto;
	white-space: inherit;
}

.invisible {
	visibility: hidden;
}

.clearfix:before,
.clearfix:after {
	content: " ";
	display: table;
}

.clearfix:after {
	clear: both;
}

@media print {
	*,
	*:before,
	*:after {
		background: transparent !important;
		color: #000 !important;
		box-shadow: none !important;
		text-shadow: none !important;
	}
	a,
	a:visited {
		text-decoration: underline;
	}
	a[href]:after {
		content: " ("attr(href) ")";
	}
	abbr[title]:after {
		content: " ("attr(title) ")";
	}
	a[href^="#"]:after,
	a[href^="javascript:"]:after {
		content: "";
	}
	pre {
		white-space: pre-wrap !important;
	}
	pre,
	blockquote {
		border: 1px solid #999;
		page-break-inside: avoid;
	}
	thead {
		display: table-header-group;
	}
	tr,
	img {
		page-break-inside: avoid;
	}
	p,
	h2,
	h3 {
		orphans: 3;
		widows: 3;
	}
	h2,
	h3 {
		page-break-after: avoid;
	}
}

.product-pass-languages {
	display: flex;
	flex-wrap: wrap;
	width:102%;
	margin-left:-1%;
	margin-bottom:2em;
}
.product-pass-languages a {
	flex:0 0 48%;
	margin:1%;
	font-size:.85em;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
}
@media(min-width:700px) {
	.product-pass-languages a {
		flex:0 0 48%;
		margin:1%;
	}
}
@media(min-width:1100px) {
	.product-pass-languages a {
		flex:0 0 18%;
		margin:1%;
	}
}
.product-pass-languages a.separator {
	flex:0 0 100%;
	padding:0;
}
.product-pass-languages a {
	background: 		#f7f7f7;
	padding:.5em 1em;
	margin-bottom:1em;
	border: 2px solid #eee;
	border-radius:.2em;
	display: flex;
	color:#666;
	justify-content: space-between;
}
.product-pass-languages a:hover {
	color:#666;
}
.product-pass-languages a[href] {
	font-weight: bold;
	color:#222;
}
.product-pass-languages a[href]:hover {
	color:#E3000F;
}
.product-pass-languages a img {
	width:1em;
	flex:0 0 1em;
	opacity: .7;
}
.product-pass-languages a.separator {
	border:0;
	background: transparent;
}
.productpass-image {
	width:12em;
	margin-bottom:1em;
	display: block;
}



.nav-language-list {
	display: flex;
	flex-wrap:wrap;
	min-width:300px;
	padding-left:0;
}
.lang-div li ul {
    position: absolute;
    left: -10000px;
    z-index: 999;
    margin-top: 0;
    font-size: 0.8em;
}
.lang-div li ul li {
    background: #eee;
    clear: both;
    display: block;
    border-top: 1px solid #ddd;
    border-right: 1px solid #ddd;
    width: 50%;
}
.lang-div li {
    list-style: none;
    background-size: contain;
    margin-left: 0px;
}
.teaserboxen .col-list-produkte .text {
	margin-left:20px;
}
.page-home .contentheader {
	display: none;
}
.page-contact .col100 .image1 {
	margin:1em .5em;
}
.page-contact .col100 .image1 img {
	width:100%;
}