/* Global Standard Styles */
* {
    box-sizing: border-box;
}
html {
    position: relative;
    min-height: 100%;
}
body {
    padding: 0;
    margin: 0;
    font-family: sans-serif;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 400;
    color: #000;
}
a {
    text-decoration: none;
    color: #000;
}
.container {
    position: relative;
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}
.container:after,
.clearfix:after,
nav ul:after,
header:after,
footer:after,
section:after {
    content: " ";
    display: table;
    clear: both;
}
.align-right {
	text-align: right;
}
.align-left {
	text-align: left;
}
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
nav li {
    float: left;
    margin-right: 1px;
}
nav li:last-child {
    margin-right: 0;
}
nav li a {
    text-decoration: none;
    color: #000;
    display: block;
    padding: 5px 10px;
}
.img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
}
.btn {
    padding: 12px 24px;
    border-radius: 4px;
    border: 1px solid #ddd;
    text-decoration: none;
    color: #000;
}
.btn:active {
    box-shadow: inset 2px 2px 4px rgba(0,0,0,.75);
}


/* Image Lightbox */
#bg_modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.85);
	z-index: 50000;
}
#bg_modal .modal {
	background: #fff;
	border-radius: 5px;
	padding: 10px;
	margin: 5% auto;
	max-width: 60%;
	position: absolute;
	left: 10%;
	right: 10%;
	max-height: 80%;
}
#bg_modal .modal .close {
	cursor: pointer;
	float: right;
	border: 1px solid #ddd;
	padding: 2px 8px;
	border-radius: 4px;
	background: #fff;
	z-index: 2000;
}
#bg_modal .modal #myLightbox {
	padding: 10px 0;
}
#bg_modal .modal #myLightbox img {
	margin: 0 auto;
	max-height: 500px;
}



/* Designmode */
.dmbox {
	border: 1px solid #ff0000;
	background: #ddd;
	color: #000;
	padding: 5px;
	z-index: 1000;
	font-size: 11px;
	line-height: 1.2;
	color: #666;
}

.dmbox p {
	font-size: 11px;
	line-height: 1.2;
	margin: 5px 0;
	padding: 0;
	color: #000;
}
footer .dmbox {
	position: relative;
	min-height: 250px;
	left: 0;
	width: 100%;
	padding: 10px;
	z-index: 5001;
}
footer .dmbox p.lead {
	font-weight: 600;
	margin-bottom: 10px;
}
footer .dmbox .col-4 .input-group {
	display: block;
	margin-bottom: 10px;
}
footer .dmbox .col-4 .input-group > div {
	display: inline-block;
}




/* Grid System */
.row {
    position: relative;
}
.row:after {
    content: " ";
    display: table;
    clear: both;
}
[class^=col-] {
    float: left;
    padding: 0 10px;
}
[class^=col-]:first-child {
    padding-left: 0px;
}
[class^=col-]:last-child {
    padding-right: 0px;
}
.hidden-mobile {
    display: block;
}
.visible-mobile {
    display: none;
}
.col-1 {
    width: 8.33333333%;
}
.col-2 {
    width: 16.66666667%;
}
.col-3 {
    width: 25%;
}
.col-4 {
    width: 33.33333333%;
}
.col-5 {
    width: 41.66666667%;
}
.col-6 {
    width: 50%;
}
.col-7 {
    width: 58.33333333%;
}
.col-8 {
    width: 66.66666667%;
}
.col-9 {
    width: 75%;
}
.col-10 {
    width: 83.33333333%;
}
.col-11 {
    width: 91.66666667%;
}
.col-12 {
    width: 100%;
}
.col-offset-1 {
    margin-right: 8.33333333%;
}
.col-offset-2 {
    margin-right: 16.66666667%;
}
.col-offset-3 {
    margin-right: 25%;
}
.col--offset-4 {
    margin-right: 33.33333333%;
}
.col-offset-5 {
    margin-right: 41.66666667%;
}
.col-offset-6 {
    margin-right: 50%;
}
.col-offset-7 {
    margin-right: 58.33333333%;
}
.col-offset-8 {
    margin-right: 66.66666667%;
}
.col-offset-9 {
    margin-right: 75%;
}
.col-offset-10 {
    margin-right: 83.33333333%;
}
.col-offset-11 {
    margin-right: 91.66666667%;
}
.col-offset-12 {
    margin-right: 100%;
}


/* Chevron */
.chevron::before {
	border-style: solid;
	border-width: 0.15em 0.15em 0 0;
	content: '';
	display: inline-block;
	height: 0.45em;
	left: 0.15em;
	position: relative;
	top: 0.15em;
	transform: rotate(-45deg);
	vertical-align: top;
	width: 0.45em;
}

.chevron.right:before {
	left: 3px;
	transform: rotate(45deg);
}

.chevron.bottom:before {
	top: 0;
	transform: rotate(135deg);
}

.chevron.left:before {
	left: 0.25em;
	transform: rotate(-135deg);
}

/* Navbar Styles */
.navbar-main {
    background: #fff;
    box-shadow: 2px 2px 4px rgba(0,0,0,.75);
}
.navbar-main:after {
    content: " ";
    display: table;
    clear: both;
}
.navbar-main.fixed {
    position: fixed;
    z-index: 5000;
    top: 0;
    width: 100%;
}
.navbar-main span.brand {
    float: left;
    display: block;
    padding: 24.5px 0;
    font-size: 16px;
    line-height: 16px;
    font-weight: 600;
    color: #666;
}
.navbar-main a.brand {
    float: left;
    display: block;
    padding: 5px 0;
    margin-right: 10px;
}
.navbar-main .brand > img {
    min-height: 50px;
    min-width: 100px;
}
.navbar-main nav {
    float: right;
}
.navbar-main .nav-toggle {
    display: none;
}
.navbar-main nav li a {
    color: #666;
    padding: 23px 10px;
}
.navbar-main nav li a:focus,
.navbar-main nav li a:hover {
    color: #000;
}
.navbar-main nav li.active a,
.navbar-main nav li.dropdown.active .dropdown-menu li.active a {
    color: #f59b00;
}
.navbar-main nav li.dropdown.active .dropdown-menu li a {
	color: #666;
}
/* More-Level dropdown */
.caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px dashed;
    border-top: 4px solid\9;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent
}
.navbar-main nav li.dropdown {
    position: relative;
}
.navbar-main nav li.dropdown.open {
    background: #ddd;
}
.navbar-main nav li.dropdown.open > a {
    color: #000;
}
.navbar-main nav li.dropdown.open .dropdown-menu {
    display: block;
}
.navbar-main nav li.dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    font-size: 14px;
    text-align: left;
    list-style: none;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, .15);
    border-top: 0;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175)
}
.navbar-main nav li.dropdown .dropdown-menu li {
    margin: 0;
    display: block;
    width: 100%;
}
.navbar-main nav li.dropdown .dropdown-menu li a {
    padding: 8px 10px;
}
/* Breadcrumb Styles */
.breadcrumb {
    margin: .5em 0;
}
.breadcrumb ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.breadcrumb ul:after {
    content: " ";
    display: table;
    clear: both;
}
.breadcrumb li {
    float: left;
    margin-right: 0px;
    display: inline-block;
}
.breadcrumb li span,
.breadcrumb li a {
    padding: 5px;
    display: inline-block;
}
.breadcrumb li span {
    font-weight: 300;
    color: #525354;
}
.breadcrumb li a {
    color: #00c384;
}
.breadcrumb li:after {
    content: " / ";
}
.breadcrumb li:first-child:after,
.breadcrumb li:last-child:after {
    content: " ";
}
.breadcrumb li:first-child span,
.breadcrumb li:first-child a {
    padding-left: 0;
}
.breadcrumb li:last-child a {
    color: #000;
    font-weight: 700;
    cursor: text;
}

/* Pagination inkl. Wordpress Classes */
.pagination,
.wp-paginate {
    list-style: none;
    padding: 0;
    margin: 0;
    float: right;
}
.pagination:after,
.wp-paginate:after {
    content: " ";
    display: table;
    clear: both;
}
.pagination li,
.wp-paginate li {
    float: left;
    margin-right: 5px;
    line-height: 2em;
}
.pagination li a,
.pagination li span,
.wp-paginate li a,
.wp-paginate li span {
    padding: 5px 10px;
}
.pagination li a,
.wp-paginate li a {
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 2px;
    color: #000;
}
.pagination li span.gap,
.wp-paginate li span.gap {
    color: #999;
}
.pagination li span.current,
.wp-paginate li span.current {
    background: #ddd;
    border: 1px solid #ddd;
    border-radius: 2px;
}


/* Notification Bar Footer */
.notificationBarFooter {
    width: 100%;
    max-width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    line-height: 1em;
    display: none;
    background: rgba(186,84,67,.9);
/*    border-top: 2px solid #ba5443;*/
    text-align: center;
    color: #fff;
    font-size: 12px;
    z-index: 10000;
    box-sizing: border-box;
    overflow: hidden;
}
.notificationBarFooter .inner {
    position:relative;
    margin:auto;
    padding:15px 0;
    width:100%;
    display:block;
    box-sizing: border-box;
    overflow:hidden;
    text-align: center;
}
.notificationBarFooter .inner p {
    margin: 0;
    line-height: 12px;
    font-size: 12px;
}
.notificationBarFooter .inner p a {
    font-weight: 600;
    text-decoration: underline;
    color: #fff;
}
.notificationBarFooter .inner p .btn-ok {
    padding: 5px 12px;
    margin-left: 10px;
	margin-bottom: 10px;
    background: #fff;
    color: #ba5443;
    border-color: #fff;
    cursor: pointer;
	display: inline-block;
}



/* Custom Styles */
body {
	padding: 0 0 250px;
}
.left {
	float: left;
}
.right {
	float: right;
}
figcaption {
	font-size: 10px;
	color: #666;
	line-height: 1.2;
	padding: 3px 0;
}
.headline {
	margin-bottom: 25px;
}
h1 {
	margin: 0;
	padding: 0;
	letter-spacing: 1.5px;
	color: #070707;
}
h2 {
	margin: 25px 0 0;
	font-size: 18px;
}
p.subheadline {
	font-size: 12px;
	color: #666;
	line-height: 1.2;
	margin: 0;
	padding: 0;
}
.btn-primary {
	background: #f59b00;
	font-size: 16px;
	line-height: 16px;
	padding: 8px 24px;
	text-transform: uppercase;
	letter-spacing: .5px;
	display: inline-block;
	border-radius: 2px;
}
.btn-primary:hover {
	box-shadow: 0px 2px 4px rgba(0,0,0,.35);
	border: 0;
}
.btn-black {
	background: #1b1b1b;
	color: #fff;
	font-size: 16px;
	line-height: 16px;
	border-radius: 2px;
}
.card {
	border: 1px solid #ddd;
	border-radius: 4px;
	background: #fff;
	padding: 10px;
	box-shadow: 0px 1px 2px rgba(0,0,0,.18);
}



header .top {
	background: #1b1b1b;
	color: #fff;
	font-size: 12px;
	line-height: 12px;
	padding: 5px 0;
}

header .top a {
	cursor: pointer;
}
header .top a:hover {
	text-decoration: underline;
}
header .top .left a {
	color: #fff;
}
header .top .right {
	text-align: right;
}
header .top .right ul {
	float: right;
}
header .top .right .topnav li {
	margin-right: 0;
	margin-left: 5px;
}
header .top .right .topnav li:before {
	content: "|";
	position: relative;
	top: 3px;
}
header .top .right .topnav li.social {
	margin-left: 0;
}
header .top .right .topnav li.social:before {
	content: "";
}
header .top .right .topnav li.social a {
	padding: 5px;
}
header .top .right .topnav li a {
	padding: 5px 7px;
}
header .top .right .topnav li a img {
	margin-right: 0;
}
header .top .right .topnav li:last-child a {
	position: relative;
	/*top: 2px;*/
}
header .top .right a {
	color: #f59b00;
	text-transform: uppercase;
	font-size: 11px;
	line-height: 12px;
	display: inline-block;
}
header .top nav li a > img {
	position: relative;
	top: 1px;
	margin-right: 5px;
	height: 12px;
}

header .navbar-main {
	padding: 0;
	border-top: 5px solid #fff;
}
header .navbar-main.fixed {
	border-top-color: #f59b00;
}
header .navbar-main nav ul.showmobile {
	display: none;
}
header .navbar-main a.brand {
	padding: 17px 0;
}
header .navbar-main nav {
	padding: 13px 0px 0px;
	z-index: 5001;
}
header .navbar-main nav form .input-group {
	width: 100%;
	padding-left: 8px;
}
header .navbar-main nav form .input-group #search {
	width: 85%;
	padding: 10px 8px;
	background: #f5f5f5;
	border-radius: 4px;
	border: 1px solid #ddd;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}
header .navbar-main nav form .input-group #search:focus {
	outline-width: 0;
	outline: none;
	border-color: #f59b00;
}
header .navbar-main nav form .input-group .btn-primary {
	width: 15%;
	border: 1px solid #f59b00;
	float: right;
	padding: 10.5px 24px;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	background: url(../images/ico-search.png) no-repeat center center #f59b00;
	background-size: contain;
}
.navbar-main nav li a {
	padding: 10px;
}
.navbar-main nav li.act a {
	color: #d60000;
}


/* Teaser */
#teaser {
	background: url(../images/rual_teaser-bg_114.jpg) no-repeat bottom center #c5c6c8;
	background-size: cover;
	height: 63px;
}
#teaser.index {
	height: 440px;
}
#teaser.sicherheitsschuhe {
	background: url(../images/teaser_sicherheitsschuhe_bg.jpg) no-repeat bottom right #c5c6c8;
	background-size: cover;
	position: relative;
	height: 375px;
}
#teaser.arbeitshandschuhe {
	background: url(../images/teaser_arbeitshandschuhe_bg.jpg) no-repeat bottom right #c5c6c8;
	background-size: cover;
	position: relative;
	height: 375px;
}
#teaser.trekkingschuhe {
	background: url(../images/teaser_trekkingschuhe_bg.jpg) no-repeat bottom right #c5c6c8;
	background-size: cover;
	position: relative;
	height: 375px;
}
#teaser.zubehoer {
	background: url(../images/teaser_zubehoer_bg.jpg) no-repeat bottom right #c5c6c8;
	background-size: cover;
	position: relative;
	height: 375px;
}
#teaser.strohhuete {
	background: url(../images/teaser_strohhuete_bg.jpg) no-repeat bottom right #c5c6c8;
	background-size: cover;
	position: relative;
	height: 375px;
}
#teaser.socken {
	background: url(../images/teaser_socken_bg.jpg) no-repeat bottom right #c5c6c8;
	background-size: cover;
	position: relative;
	height: 375px;
}
#teaser.neuheiten {
	background: url(../images/teaser_neuheiten_bg.jpg) no-repeat bottom right #c5c6c8;
	background-size: cover;
	position: relative;
	height: 375px;
}
#teaser .container {
	height: 100%;
}
#teaser .image img {
	position: relative;
	bottom: -30px;
}
#teaser .txt {
	padding: 25px 0;
}
#teaser .txt h1 {
	font-size: 60px;
	line-height: 1.1;
	margin: 10px 0 0;
	padding: 0;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
}
#teaser .txt ul {
	list-style-type: none;
	padding: 0;
	margin: 0 0 20px;
}
#teaser .txt li {
	display: inline-block;
	margin-right: 8px;
}
#teaser .txt li:last-child {
	margin-right: 0;
}
#teaser .txt li img {
	max-height: 30px;
}
/* Teaser Subsite */
.sub #teaser {
	height: 40px;
	margin-bottom: 0;
}

/* Teaser Produkte Sicherheitsschuhe */
.product #teaser {
	margin-bottom: 0;
}
.product #teaser .txt {
	padding: 0;
}
.product #teaser .txt {
	position: absolute;
	bottom: 70px;
	color: #fff;
}
.product #teaser .txt img {
	max-width: 130px;
}
#teaser .txt h1 {
	color: #000;
	font-size: 52px;
}
#teaser.sicherheitsschuhe .txt h1,
#teaser.arbeitshandschuhe .txt h1,
#teaser.trekkingschuhe .txt h1,
#teaser.zubehoer .txt h1,
#teaser.socken .txt h1,
#teaser.neuheiten .txt h1,
#teaser.strohhuete .txt h1 {
	color: #fff;
	text-shadow: 0px 0px 8px rgba(0,0,0,.75);
}

/* Breadcrumb Nav */
#main .breadcrumb {
	margin: 0 0 25px;
	padding: .25em 0;
	background: #f8f8f8;
	border-bottom: 1px solid #c5c6c8;
	font-size: 12px;
}
#main .breadcrumb li a {
	color: #f59b00;
}
#main .breadcrumb li:last-child a {
	color: #000;
}


/*** Main ***/
#main .block {
	padding: 2.5em 0;
}
#main .block:after {
	content: " ";
	display: table;
	clear: both;
}
#main .pagination-wrapper {
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	padding: 10px 0;
	margin: 20px 10px 0;
}
#main .pagination-wrapper:after {
	content: " ";
	display: table;
	clear: both;
}
#main .pagination {
	width: 100%;
	text-align: center;
}
#main .pagination li {
	float: none;
	display: inline-block;
	border: 0;
}

/* Imagelist */
.imagelist {
	float: left;
}
.imagelist:after {
	content: " ";
	display: table;
	clear: both;
}
.imagelist h2 {
	margin: 25px 0 10px;
	font-size: 18px;
	line-height: 20px;
	font-weight: 400;
}
.imagelist table {
	width: 100%;
	min-width: 600px;
}
.imagelist table td {
	border-bottom: 1px solid #ddd;
	padding: 25px 5px;
}
.imagelist .img img {
	max-height: 180px;
	margin: 0 auto;
}


/* Login */
#main form.login {
	width: 100%;
	max-width: 600px;
}
#main form.login .notification {
	background: #5b85a6;
	border: 1px solid #5b85a6;
	border-radius: 4px;
	margin-bottom: 2.5em;
	padding: 10px 25px;
	width: 100%;
}
#main form.login .notification.alert {
	background: #a62e2e;
	border-color: #a62e2e;
}
#main form.login .notification.success {
	background: #2ea634;
	border-color: #2ea634;
}
#main form.login .notification p {
	font-size: 14px;
	line-height: 1.4;
	font-weight: 500;
	margin: 5px 0;
	color: #fff;
}
#main form.login .notification p.lead {
	font-size: 18px;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 0;
}
#main form.login .input-group {
	display: block;
	margin-bottom: 5px;
}
#main form.login .input-group:after {
	content: " ";
	display: table;
	clear: both;
}
#main form.login .input-group label {
	width: 30%;
	float: left;
	padding: 12px 0;
	font-size: 14px;
	line-height: 14px;
}
#main form.login .input-group input {
	float: left;
	width: 70%;
}
#main form.login .input-group.actions {
	margin-top: 2.5em;
	text-align: right;
}
#main form.login .input-group.actions .btn-link {
	border: 0;
}
#main form.login .input-group.actions .btn-link:hover {
	text-decoration: underline;
}
#main form.login .input-group.actions .btn-link:active {
	box-shadow: none;
}
#main form.login .input-group.actions .btn-primary {
	min-width: 180px;
}
#main form.login .input-group .form-control {
	padding: 10px 8px;
	background: #f5f5f5;
	border-radius: 4px;
	border: 1px solid #ddd;
}
#main form.login .input-group .form-control:focus {
	outline-width: 0;
	outline: none;
	border-color: #f59b00;
}



/* Category */
#main .category:after {
	content: " ";
	display: table;
	clear: both;
}
#main .category .row.gap {
	margin-bottom: 1.7em;
}
#main .category .handschuhe,
#main .category .outdoorschuhe,
#main .category .zubehoer,
#main .category .strohhuete {
	position: relative;
}
#main .category .handschuhe a:hover,
#main .category .outdoorschuhe a:hover,
#main .category .zubehoer a:hover,
#main .category .strohhuete a:hover {
	box-shadow: 1px 2px 6px rgba(0,0,0,.5);
	border: 0;
}
#main .category a {
	display: block;
}
#main .category .txt {
	position: absolute;
	text-transform: uppercase;
	color: #fff;
	font-weight: 600;
	letter-spacing: .5px;
	line-height: 1.2;
	font-size: 28px;
	z-index: 2001;
}
#main .category .logo {
	position: absolute;
	z-index: 2001;
}
#main .category .handschuhe .txt {
	bottom: 20px;
	left: 20px;
	font-size: 38px;
}
#main .category .handschuhe .logo {
	top: 20px;
	right: 35px;
	max-width: 130px;
}
#main .category .outdoorschuhe .txt {
	top: 20px;
	right: 20px;
	text-align: right;
	letter-spacing: 1px;
}
#main .category .outdoorschuhe .logo {
	bottom: 30px;
	right: 20px;
	max-width: 130px;
}
#main .category .zubehoer .txt {
	bottom: 20px;
	text-align: center;
	width: 100%;
	text-transform: none;
}
#main .category .zubehoer .txt .highlight {
	color: #f59b00;
}
#main .category .strohhuete .txt {
	top: 20px;
	left: 28px;
	letter-spacing: 1.2px;
}

/* Brands */
#main .brands .txt p {
	font-size: 38px;
	line-height: 1.2;
	letter-spacing: .5px;
	margin: 0 0 10px;
}
#main .brands .txt p .grey {
	color: #c5c6c8;
}
#main .brands .txt p .orange {
	color: #f59b00;
	font-size: 50px;
}
#main .brands .txt p .black {
	font-size: 58px;
	color: #000;
	font-weight: 600;
}
#main .brands .hidemobile {
	text-align: center;
}
#main .brands .hidemobile .card {
	background: #f5f5f5;
	padding: 2em 0;
}
#main .brands .hidemobile img {
	margin: 0 auto 38px;
	max-height: 70px;
}
#main .brands .hidemobile p {
	font-size: 18px;
	text-transform: uppercase;
	margin: 23px 0 5px;
}
#main .brands .txt .visual-mobile  {
	display: none;
}

/* Marketing */
#main .marketing .card {
	position: relative;
	padding: 0;
}
#main .marketing .card a {
	display: block;
}
#main .marketing .card a:hover {
	box-shadow: 1px 2px 6px rgba(0,0,0,.5);
	border: 0;
}
#main .marketing .card .txt {
	position: absolute;
	font-size: 18px;
	line-height: 1.1;
}
#main .marketing .card .txt p {
	margin: 0;
	padding: 0;
	font-size: 18px;
	letter-spacing: .5px;
	font-weight: 400;
	color: #3c4852;
}
#main .marketing .card .txt p.lead {
	font-size: 32px;
	letter-spacing: 1px;
	font-weight: 600;
	color: #161d2b;
}
#main .marketing .card.catalogue .txt {
	bottom: 25px;
	left: 25px;
}
#main .marketing .card.catalogue .txt p {
	color: #fff;
}
#main .marketing .card.catalogue .txt p.lead {
	color: #fed900;
	margin-bottom: 5px;

}
#main .marketing .card.presentation .txt {
	bottom: 25px;
	left: 25px;
}
#main .marketing .card.presentation .txt p.lead {
	margin-top: 5px;
	text-transform: uppercase;
	line-height: 1.2;
}


#main .marketing .card.workxtreme .txt {
	bottom: 25px;
	left: 0;
	text-align: center;
	width: 100%;
}

/* Products */
#main .mobile-filter-menu {
	margin: 0;
	display: none;
}
#main .mobile-filter-menu .btn-filter {
	display: block;
	text-align: center;
}
#main .mobile-filter-menu:after {
	content: " ";
	display: table;
	clear: both;
}
#main .sidebar ul.filter {
	list-style-type: none;
	padding: 0;
	margin: 0 0 15px;
	padding: 0 0 15px;
	border-bottom: 1px solid #ddd;
}
#main .sidebar ul.filter:last-child {
	border-bottom: 0;
	padding: 0;
	margin: 0;
}
#main .sidebar ul.filter li {
	line-height: 1.7;
	font-size: 12px;
}
#main .sidebar ul.filter li.headline {
	text-transform: uppercase;
	font-size: 14px;
	line-height: 2;
	margin: 0;
	padding: 0;
}
#main .sidebar ul.filter li.active a {
	font-weight: 600;
}
#main .sidebar ul.filter li .num:before {
	content: "(";
}
#main .sidebar ul.filter li .num:after {
	content: ")";
}
#main .sidebar .btn-black {
	margin-top: 15px;
	display: block;
	text-align: center;
}

/* Products general */
#main .art-sclass {
	font-weight: 400;
}
#main .art-sclass:before {
	content: " - ";
}
#main .content-img {
	margin: 2.5em 0;
}
#main .badge-new {
	position: absolute;
	top: 20px;
	right: 50%;
	z-index: 1500;
}
#main .badge-new img {
	display: inline-block;
	height: 50px;
	max-width: 50px;
}

/* Login */
#main .login .block {
	margin-bottom: 2.5em;
	padding-top: 0;
}
#main .login .block:last-child {
	margin-bottom: 0;
}
#main .login .block p.lead {
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
}
#main .login .block.notes ul {
	list-style-type: none;
	padding: 0;
}
#main .login .block.notes ul li {
	margin-bottom: 10px;
}
#main .login .block.notes ul li:after {
	content: " ";
	display: table;
	clear: both;
}
#main .login .block.notes ul li img {
	float: left;
	max-width: 50px;
	margin-right: 10px;
}
#main .login .block.notes ul li .txt {
	font-weight: 600;
	padding: 10px 0;
}
#main .login .block.notes ul li .txt .date {
	font-weight: 400;
	color: #666;
}
#main .login .block.notes ul li .txt .date:after {
	content: " - ";
}
#main .login .block.downloads table {
	width: 100%;
	text-align: left;
}
#main .login .block.downloads table th {
	color: #c5c6c8;
	font-weight: 400;
	border-bottom: 1px solid #ddd;
}
#main .login .block.downloads table td {
	padding: 5px 0;
}
#main .login .block.downloads table th {
	width: 11%;
}
#main .login .block.downloads table th.title,
#main .login .block.downloads table td.title {
	width: 59%;
}
#main .login .block.downloads table th.symbol,
#main .login .block.downloads table td.symbol {
	width: 8%;
}
#main .login .block.downloads table td.symbol img {
	max-height: 30px;
}
#main .login .block.downloads table td.title {
	font-weight: 600;
}
#main .login .block.downloads table td.title a {
	transition: all .3s;
}
#main .login .block.downloads table td.title a:hover {
	color: #f59b00;
}

#main .login .profile {
	padding: 0 0 0 20px;
}
#main .login .profile .card {
	background: #f5f5f5;
	text-align: center;
	padding: 25px 10px;
}
#main .login .profile .card img {
	margin: 10px auto 45px;
	max-width: 250px;
}


/* Product-List */
#main .productlist ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}
#main .productlist ul:after {
	content: " ";
	display: table;
	clear: both;
}
#main .productlist ul li {
	float: left;
	width: 33.3333%;
	padding: 10px;
}
#main .productlist ul li:nth-child(3n+1) {
	clear: both;
}
#main .productlist ul li a.art {
	border: 1px solid #ddd;
	display: block;
	padding: 10px 20px;
}
#main .productlist ul li a.art .art-image {
	height: 160px;
	position: relative;
}
#main .productlist ul li a.art .art-image .badge-new {
	position: absolute;
	top: 21px;
	right: 0px;
	z-index: 1500;
}
#main .productlist ul li a.art .art-image .badge-new img {
	display: inline-block;
	height: 25px;
	max-width: 25px;
}
#main .productlist ul li a.art .art-image img {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 0);
}
#main .productlist ul li a.art p.title {
	font-weight: 600;
	font-size: 14px;
	line-height: 1.4;
	margin: 15px 0 0;
	padding: 0;
}
#main .productlist ul li a.art p.title .art-sclass {
	font-weight: 400;
}
#main .productlist ul li a.art p.title .art-sclass:before {
	content: " - ";
}
#main .productlist ul li a.art p.art-brand {
	font-size: 12px;
	line-height: 1.1;
	font-weight: 300;
	color: #c5c6c8;
	margin: 0;
	padding: 0;
}
#main .productlist .topnav {
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	margin: 0 10px 20px;
}
#main .productlist .topnav:after {
	content: " ";
	display: table;
	clear: both;
}
#main .productlist .topnav p.lead {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.7;
	margin: 10px 0;
}
#main .productlist .topnav p.description {
	border-bottom: 1px solid #ddd;
	padding-bottom: 20px;
}
#main .productlist .topnav p a {
	float: right;
	color: #666;
	margin-top: 3px;
}
#main .topnav .dropdown,
#main .topnav .art-shown {
	position: relative;
	padding: 10px 0;
	text-align: center;
	cursor: pointer;
	display: block;
}
#main .topnav .art-shown {
	text-align: left;
	cursor: text;
}
#main .topnav .dropdown.active .dropdown-menu {
	display: block;
}
#main .topnav .dropdown.active,
#main .topnav .dropdown:hover,
#main .topnav .dropdown .dropdown-menu li a:hover {
	background: #f5f5f5;
}
#main .topnav .dropdown .dropdown-menu {
	position: absolute;
	right: 0;
	top: 100%;
	width: 100%;
	background: #fff;
	box-shadow: 1px 2px 4px rgba(0,0,0,.18);
	z-index: 2000;
	border: 1px solid #ddd;
	display: none;
}
#main .topnav .dropdown .dropdown-menu li {
	display: block;
	width: 100%;
	padding: 0;
}
#main .topnav .dropdown .dropdown-menu li a {
	display: block;
	padding: 5px 0;
}

/* Additional Products */
#main .add_products ul {
	display: flex;
	flex-wrap: wrap;
	list-style-type: none;
	padding: 0;
	align-content: center;
	align-items: stretch;
	justify-content: flex-start;
}
#main .add_products ul li {
	padding: 10px;
	border: 1px solid #ddd;
	flex-shrink: 1;
	flex-basis: 24%;
	margin: 0 10px 10px 0;
}
#main .add_products ul li .art-image > img {
	margin: 0 auto;
	height: 150px;
}
#main .add_products ul li p.title {
	font-weight: 600;
	font-size: 14px;
	line-height: 1.4;
	margin: 15px 0 0;
	padding: 0;
}
#main .add_products ul li p.art-brand {
	font-size: 12px;
	line-height: 1.1;
	font-weight: 300;
	color: #c5c6c8;
	margin: 0;
	padding: 0;
}

/* Product_detail */
#main .product_detail .image_big .video iframe {
	max-width: 100% !important;
}
#main .product_detail .thumb {
	list-style-type: none;
	padding: 0;
	margin: 30px 0 0;
}
#main .product_detail .thumb:after {
	content: " ";
	display: table;
	clear: both;
}
#main .product_detail .thumb li {
	float: left;
	width: 120px;
	height: auto;
	padding: 5px;
	opacity: .6;
}
#main .product_detail .thumb li.active {
	opacity: 1;
}
#main .product_detail .thumb li img,
#main .product_detail .thumb li a img {
	max-width: 100px;
	margin: 0 auto;
}
#main .product_detail .block {
	padding: 0 0 1em;
	margin: 0 0 1em;
	border-bottom: 1px solid #ddd;
}
#main .product_detail .block:last-child {
	margin: 0;
	border-bottom: 0;
}

#main .product_detail .block.lines img {
	max-height: 70px;
	display: inline-block;
	margin-right: 10px;
	vertical-align: bottom;
}
#main .product_detail .block.properties .title {
	font-size: 14px;
	line-height: 14px;
	color: #666;
	font-weight: 400;
}
#main .product_detail .sidebar-prob .block ul {
	list-style-type: none;
	padding: 0;
	margin: 0 0 15px;
}
#main .product_detail .sidebar-prob .block ul:after {
	content: " ";
	display: table;
	clear: both;
}
#main .product_detail .sidebar-prob .block ul.pictograms:after {
	content: " ";
	display: table;
	clear: both;
}
#main .product_detail .sidebar-prob .block li {
	float: left;
	margin: 0 10px 10px 0;
}
#main .product_detail .sidebar-prob .block li img {
	max-width: 50px;
}
#main .product_detail .sidebar-prob .block ul.pictograms li {
	float: none;
	display: inline-block;
	vertical-align: middle;
	margin: 0 10px 10px 0;
}
#main .product_detail .sidebar-prob .block ul.pictograms li img {
	max-width: none;
	max-height: 50px;
}
#main .product_detail .sidebar-prob .block.lines li img {
	max-width: none;
	max-height: 70px;
}
#main .product_detail .sidebar-prob .block li:last-child {
	margin-right: 0;
}

#main .product_detail .row.detail {
	margin: 3.5em 0 2.5em;
}
#main .product_detail .row.detail .article-tabs:after,
#main .product_detail .row.detail .article-tabs nav-tabs:after,
#main .product_detail .row.detail .article-tabs tab-content:after {
	content: " ";
	display: table;
	clear: both;
}
#main .product_detail .row.detail .article-tabs .nav-tabs {
	list-style-type: none;
	padding: 0;
	border-bottom: 1px solid #ddd;
	padding-bottom: 0;
	margin-bottom: 0;
}
#main .product_detail .row.detail .article-tabs .nav-tabs li {
	display: inline-block;
}
#main .product_detail .row.detail .article-tabs .nav-tabs li a {
	padding: 10px;
	text-transform: uppercase;
	color: #666;
	border: 1px solid transparent;
	border-radius: 4px 4px 0 0;
	background: #fff;
	display: block;
	margin-bottom: -1px;
	border-bottom: 1px solid #ddd;
	cursor: pointer;
}
#main .product_detail .row.detail .article-tabs .nav-tabs li a:hover {
	background: #f5f5f5;
}
#main .product_detail .row.detail .article-tabs .nav-tabs li.active a {
	border: 1px solid #ddd;
	color: #000;
	border-bottom-color: transparent;
}
#main .product_detail .row.detail .article-tabs .nav-tabs li.active a:hover {
	background: #fff;
}
#main .product_detail .row.detail .article-tabs .tab-content {
	background: #fff;
	border-top: 0px;
	padding: 10px 15px;
}
#main .product_detail .row.detail .article-tabs .tab-content .tab-pane {
	display: none;
}
#main .product_detail .row.detail .article-tabs .tab-content .tab-pane.active {
	display: block;
}
#main .product_detail .row.detail .article-tabs .tab-content .tab-pane ul {
	padding-left: 16px;
}
#main .product_detail .row.detail .article-tabs .tab-content .tab-pane ul.feature {
	list-style-type: none;
	padding: 0;
}
#main .product_detail .row.detail .article-tabs .tab-content .tab-pane ul.feature:after  {
	content: " ";
	display: table;
	clear: both;
}
#main .product_detail .row.detail .article-tabs .tab-content .tab-pane ul.feature li {
	float: left;
	margin-right: 10px;
	max-width: 50px;
}
#main .product_detail .row.detail .article-tabs .tab-content .tab-pane ul.feature li:last-child {
	margin-right: 0;
}
#main .product_detail .row.detail .article-tabs .tab-content .tab-pane ul.feature li a {
	display: block;
}
#main .product_detail .row.detail .article-tabs .tab-content .tab-pane ul.feature li a img {
	display: block;
	max-width: 100%;
	height: auto;
}


/* Product Detail Table */
#main .product_detail .row.detail .table {
	border-left: 1px solid #ddd;
	width: 100%;
	max-width: 600px;
	margin: 0 0 15px;
}
#main .product_detail .row.detail .table th {
	background: #f5f5f5;
	border: 1px solid #ddd;
	font-weight: 500;
}

#main .product_detail .row.detail .table td {
	padding: 5px;
	border-bottom: 1px solid #ddd;
	border-right: 1px solid #ddd;
}

/* Product Detail Händlerinfo */
#main .product_detail .row.detail ul.info {
	list-style-type: none;
	padding: 0;
	margin: 0 0 15px;
}
#main .product_detail .row.detail .article-tabs .tab-content .tab-pane ul.info {
	padding-left: 0;
}
#main .product_detail .row.detail ul.info li {
	margin-bottom: 5px;
	border-bottom: 1px solid #ddd;
	padding-bottom: 5px;
}
#main .product_detail .row.detail ul.info li:after {
	content: " ";
	display: table;
	clear: both;
}
#main .product_detail .row.detail ul.info li a.download {
	margin-right: 10px;
	display: inline-block;
	padding: 5px;
	border: 1px solid #ddd;
	border-radius: 4px;
}
#main .product_detail .row.detail ul.info li a.download:after {
	content: " ";
	display: table;
	clear: both;
}
#main .product_detail .row.detail ul.info li a.download > img {
	margin: 0 auto;
	max-height: 70px;
}

/* Kontakt */
#main .contact > img {
	max-height: 370px;
}
#main .contact .txt {
	margin-top: 2em;
}
#main .contact .txt p {
	font-size: 14px;
	line-height: 1.4;
	font-weight: 400;
	letter-spacing: 0px;
}
#main .contact .txt p.lead {
	font-weight: 600;
	letter-spacing: .5px;
	margin: 0 0 15px;
}

/* Marken */
.card:after {
	content: " ";
	display: table;
	clear: both;
}
#main .block.branding {
	padding: 1.5em 0;
	border-bottom: 1px solid #ddd;
	margin: .5em 0;
}
#main .block.branding:last-child {
	border-bottom: 0;
	margin-bottom: 0;
}
#main .block.branding .row {
	margin: 25px 0;
}
#main .block.branding p {
	font-size: 14px;
	line-height: 1.4;
	letter-spacing: 0px;
	padding: 0;
}
#main .block.branding p.highlight {
	text-decoration: underline;
	margin: 45px 0 25px;
}
#main .block.branding p.lead {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.7;
	margin: 10px 0;
}
#main .block.branding .card {
/*	text-align: center;*/
	min-height: 100%;
	padding: 0;
}
#main .block.branding .card .img {
	background: #f5f5f5;
	padding: 10px;
	border-bottom: 1px solid #f0f0f0;
}
#main .block.branding .card .img img {
	margin: 0 auto;
}
#main .block.branding .card p {
	padding: 5px 10px;
	text-align: center;
}
#main .block.branding .flex {
	display: flex;
	align-items: stretch;
	justify-content: center;
}
#main .block.branding .flex + .flex {
	margin-top: 25px;
}


/* Sicherheitsstufen / Piktogramme */
#main .legend p.lead {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.7;
	margin: 0 0 25px;
	padding: 0;
	text-transform: uppercase;
}
#main .legend ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}
#main .legend li:after {
	content: " ";
	display: table;
	clear: both;
}
#main .legend li {
	display: flex;
	align-items: center;
	padding: 10px 0;
	margin-bottom: 10px;
	border-bottom: 1px solid #ddd;
}
#main .legend li:last-child {
	margin-bottom: 0;
	border-bottom: 0;
}
#main .legend li .image,
#main .legend li .text {
	float: left;
}
#main .legend li .image {
	width: 20%;
}
#main .legend li .image img {
	max-width: 60px;
}
#main .legend li .text {
	width: 80%;
}
#main .legend li .text p {
	margin: 0;
	font-size: 14px;
	line-height: 1.4;
}
#main .legend li .text p.title {
	font-weight: 600;
	font-size: 14px;
	line-height: 1.7;
	letter-spacing: .5px;
	margin: 0 0 5px;
}

/* Workpower-Sohle */
#main .workpower .col-5 {
	margin-bottom: 2.5em;
}
#main .workpower p.lead {
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
}
#main .workpower ul.img-legend {
	list-style-type: none;
	padding: 0;
}
#main .workpower ul.img-legend li img {
	float: left;
	margin-right: 8px;
}
#main .workpower ul.img-legend li {
	margin-bottom: 10px;
}
#main .workpower ul.img-legend li:after {
	content: " ";
	display: table;
	clear: both;
}
#main .workpower ul.img-legend li .txt {
	font-weight: 600;
	padding: 8px 0;
	display: block;
}
#main .workpower div.txt {
	margin-top: 2.5em;
}
#main .workpower div.txt p.lead {
	text-transform: none;
	font-size: 14px;
	line-height: 1.7;
}
#main .workpower div.txt li {
	margin-bottom: 5px;
}
#main .samples {
	display: block;
	margin-top: 2.5em;
}
#main .samples:before {
	content: " ";
	display: table;
	clear: block;
}
#main .samples ul {
	list-style-type: none;
	padding: 0;
}
#main .samples ul li {
	width: 25%;
	padding: 10px;
	float: left;
	margin-bottom: 10px;
}
#main .samples ul li:nth-child(4n+1) {
	clear: both;
}
#main .samples ul:after {
	content: " ";
	display: table;
	clear: both;
}
#main .samples ul li img {
	margin: 0 auto;
}

/* Suche */
#main .search form {
	padding: 25px 0;
	border-bottom: 1px solid #c5c6c8;
	margin-bottom: 25px;
}
#main .search form .input-group {
	width: 100%;
	max-width: 450px;
}
#main .search form .input-group #search {
	width: 85%;
	padding: 10px 8px;
	background: #f5f5f5;
	border-radius: 4px;
	border: 1px solid #ddd;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}
#main .search form .input-group #search:focus {
	outline-width: 0;
	outline: none;
	border-color: #f59b00;
}
#main .search form .input-group .btn-primary {
	width: 15%;
	border: 1px solid #f59b00;
	float: right;
	padding: 8.5px 24px;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	background: url(../images/ico-search.png) no-repeat center center #f59b00;
	background-size: contain;
}
#main .search ul {
	list-style-type: none;
	padding: 0;
	margin: 25px 0;
}
#main .search ul li {
	margin: 0 0 10px;
	padding: 0 0 10px;
	border-bottom: 1px solid #ddd;
}
#main .search ul li:last-child {
	border-bottom: 0;
	margin: 0;
}
#main .search ul li a.title {
	font-size: 16px;
	line-height: 1.7;
	margin: 0 0 10px;
	font-weight: 600;
}
#main .search ul li a.title:hover {
	color: #f59b00;
}


/* Aktuelles */
#main .news ul {
	list-style-type: none;
	padding: 0 10px;
	margin: 0;
}
#main .news ul li {
	margin: 0 0 25px;
	padding: 0 0 25px;
	border-bottom: 1px solid #ddd;
}
#main .news ul li .headline {
	margin-bottom: 15px;
}
#main .news ul li .headline a.title {
	font-size: 16px;
	line-height: 1.7;
	margin: 0;
	font-weight: 600;
}
#main .news ul li .headline a.title:hover {
	color: #f59b00;
}
#main .news ul li .headline p.date {
	margin: 0;
	font-size: 12px;
	line-height: 1.4;
	color: #666;
}
#main .news ul li img {
	max-height: 200px;
}
#main .news ul li a.readmore {
	color: #f59b00;
}
#main .news ul li a.readmore:hover {
	text-decoration: underline;
}

/*** Footer ***/
footer {
	margin-top: 2em;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
}
footer .content {
	background: #1b1b1b;
	color: #fff;
	border-top: 10px solid #f59b00;
	padding: 2.5em 0;
}
footer .content a {
	color: #fff;
}
footer .content a:hover {
	color: #f59b00;
}
footer .content .company img {
	margin-bottom: 15px;
}
footer .content p.address {
	font-size: 12px;
	line-height: 1.5;
}
footer .content p.address a {
	color: #f59b00;
}
footer .content p.address a:hover {
	text-decoration: underline;
}
footer .content .menu li {
	margin-bottom: 1em;
}
footer .content .menu li a {
	letter-spacing: .5px;
	font-weight: 400;
	transition: all .3s;
}
footer .content .social li {
	margin-right: 0;
}
footer .content .social li a {
	padding: 5px;
}
footer .content .social li:first-child a {
	padding-left: 0;
}

footer .copyright {
	padding: 1em 0;
	color: #1b1b1b;
	font-size: 12px;
	line-height: 1;
}
footer .copyright .hinweis.right {
	float: right;
	font-size: 12px;
	line-height: 1;
	color: #1b1b1b;
	display: inline-block;
	margin: 0;
}
footer .copyright nav {
	float: left;
}
footer .copyright nav li {
	margin-right: 5px;
}
footer .copyright nav li a {
	padding: 0 5px;
	display: inline-block;
}
footer .copyright nav li a:hover {
	text-decoration: underline;
}
footer .copyright nav li:after {
	content: " / ";
	padding-left: 5px;
}
footer .copyright nav li:last-child {
	margin-right: 0;
}
footer .copyright nav li:last-child:after {
	content: "";
	padding-left: 0;
}

@media screen and (max-width: 992px) and (orientation: portrait) {
/*
     Grid-System
    [class^=col-] {
        float: none;
        display: block;
        padding: 0;
    }
    .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
        width: 100%;
    }
*/
    .hidden-mobile {
        display: block;
    }
    .visible-mobile {
        display: none;
    }
}
@media screen and (max-width: 992px) {
	body {
		padding: 0;
	}

	#teaser .col-6 {
		width: 50%;
		float: left;
	}
	#teaser .txt h1 {
		font-size: 50px;
	}
	#teaser .image img {
		bottom: -85px;
	}


	/* Main */
	#main .category .col-6 {
		float: left;
		width: 50%;
		display: inline-block;
		padding: 0 10px;
	}
	#main .category .handschuhe,
	#main .category .zubehoer {
		padding-left: 0;
	}
	#main .category .rightcol,
	#main .category .strohhuete {
		padding-right: 0;
	}
	#main .category .outdoorshuhe .txt {
		top: 10px;
		right: 10px;
	}
	#main .category .outdoorschuhe .logo {
		bottom: 10px;
		right: 10px;
		max-width: 110px;
	}
	#main .category .zubehoer .txt {
		bottom: 10px;
	}
	#main .category .strohhuete .txt {
		top: 10px;
		left: 20px;
		font-size: 24px;
	}

	#main .brands .col-3 {
		width: 25%;
		float: left;
		padding: 0 10px;
	}
	#main .brands .col-3:first-child {
		padding-left: 0;
	}
	#main .brands .col-3:last-child {
		padding-right: 0;
	}
	#main .brands .txt p {
		font-size: 32px;
	}
	#main .brands .txt p .orange {
		font-size: 44px;
	}
	#main .brands .txt p .black {
		font-size: 52px;
	}
	#main .brands .txt .btn-primary {
		font-size: 14px;
		line-height: 14px;
	}
	#main .brands .hidemobile p {
		font-size: 14px;
	}

	#main .marketing .col-6 {
		width: 50%;
		float: left;
		padding: 0 10px;
	}
	#main .marketing .col-6:first-child {
		padding-left: 0;
	}
	#main .marketing .col-6:last-child {
		padding-right: 0;
	}
	#main .marketing .card .txt p {
		font-size: 14px;
	}
	#main .marketing .card .txt p.lead {
		font-size: 20px;
	}
	#main .marketing .card.presentation .txt {
		bottom: 10px;
		left: 10px;
	}

	figure.right {
		float: none;
		display: block;
		padding: 0;
		margin: 10px 0;
	}

	/* Imagelist */
	.imagelist table {
		width: 100%;
		min-width: 0;
	}

	/* Login */
	#main .login .profile .card img {
		max-width: 100%;
	}

	/* Products */
	#main .mobile-filter-menu {
		display: block;
	}
	#main .sidebar {
		padding: 15px;
		border: 1px solid #ddd;
		border-top: 0;
		background: #f5f5f5;
		text-align: center;
		display: none;
	}
	#main .sidebar.active {
		display: block;
	}
	#main .productlist .topnav {
		border: 1px solid #ddd;
		margin: 10px 0;
	}
	#main .productlist .topnav:after {
		content: " ";
		display: table;
		clear: both;
	}
	#main .productlist .topnav .art-shown {
		text-align: center;
		background: #666;
		color: #fff;
	}
	#main .productlist .topnav .align-right {
		width: 50%;
		float: left;
	}
	#main .productlist .topnav p.lead {
		margin-left: 10px;
	}
	#main .productlist .topnav p {
		padding-left: 10px;
	}

	/* News */
	#main .news {
		padding-left: 0;
	}
	#main .news ul {
		padding: 0;
	}



	footer {
		position: relative;
	}
	footer .company {
		float: left;
		width: 75%;
	}
	footer .menu {
		display: none;
	}
}

@media screen and (max-width: 785px) {
    /* Grid-System */
    [class^=col-] {
        float: none;
        display: block;
        padding: 0;
    }
    .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
        width: 100%;
    }
    .col-offset-1, .col-offset-2, .col-offset-3,
    .col-offset-4, .col-offset-5, .col-offset-6,
    .col-offset-7, .col-offset-8, .col-offset-9,
    .col-offset-10, .col-offset-11, .col-offset-12 {
        margin-right: 0;
    }
    .hidden-mobile {
        display: none;
    }
    .visible-mobile {
        display: block;
    }

	/* Navbar-Styles */
	.navbar-main nav {
        display: none;
        float: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255,255,255,.98);
        box-shadow: 0px 2px 4px rgba(0,0,0,.75);
    }
    .navbar-main nav li {
        float: none;
        display: block;
        margin-right: 0;
        text-align: center;
    }
    .navbar-main nav li.active a {
        background: #000;
        color: #fff;
    }
    .navbar-main .nav-toggle {
        background: transparent;
        border: 1px solid #000;
        border-radius: 4px;
        padding: 12px;
        display: block;
        position: absolute;
        right: 12.5px;
        top: 12.5px;
    }
    .navbar-main .nav-toggle .bar {
        display: block;
        width: 22px;
        height: 2px;
        border-radius: 1px;
        background-color: #000;
    }
    .navbar-main .nav-toggle .bar+.bar {
        margin-top: 4px;
    }
    .navbar-main .nav-toggle.active {
        background: #000;
    }
    .navbar-main .nav-toggle.active:before,
    .navbar-main .nav-toggle.active:after {
        position: absolute;
        left: 22px;
        top: 9px;
        content: ' ';
        height: 20px;
        width: 2px;
        background-color: #fff;
    }
    .navbar-main .nav-toggle.active:before {
        transform: rotate(45deg);
    }
    .navbar-main .nav-toggle.active:after {
        transform: rotate(-45deg);
    }
    .navbar-main .nav-toggle.active .bar {
        background-color: transparent;
    }

    /* More-Level dropdown */
    .navbar-main nav li.dropdown .dropdown-menu {
        float: none;
        position: relative;
        box-shadow: none;
        -webkit-box-shadow: none;
        background: #f5f5f5;
    }

	/*** Custom Styles ***/

	/* Top */
	header .top .right {
		display: none;
	}
	header .top .left {
		text-align: center;
	}
	header .top .left li {
		float: none;
		margin-right: 0;
		display: inline-block;
	}
	header .navbar-main .nav-toggle {
		top: 22.5px;
	}
	header .navbar-main nav li a {
		padding: 15px 0;
	}
	header .navbar-main nav form .input-group {
		padding: 0 10px;
	}
	header .navbar-main nav ul.showmobile {
		display: block;
		border-top: 1px solid #ddd;
		background: #f5f5f5;
		padding-top: 5px;
	}

	/* Teaser */
	#teaser {
		height: 32px;
	}
	#teaser.index {
		height: 260px;
	}
	#teaser .image img {
		bottom: -30px;
	}
	#teaser .txt {
		padding: 15px 0;
	}
	#teaser .txt img {
		max-height: 40px;
	}
	#teaser .txt h1 {
		font-size: 33px;
		margin: 5px 0 0;
	}
	#teaser .txt ul {
		margin: 0 0 8px;
	}
	#teaser .txt li img {
		max-height: 20px;
	}
	#teaser .txt .btn-primary {
		font-size: 14px;
		line-height: 14px;
		padding: 6px 20px;
	}
	.sub #teaser {
		height: 30px;
	}

	/* Main */
	#main .category .col-6 {
		float: left;
		width: 50%;
		display: inline-block;
		padding: 0 10px;
	}
	#main .category .handschuhe,
	#main .category .zubehoer {
		padding-left: 0;
	}
	#main .category .rightcol,
	#main .category .strohhuete {
		padding-right: 0;
	}
	#main .category .row.gap {
		margin-bottom: 1.15em;
	}
	#main .category .handschuhe .logo {
		max-width: 80px;
		right: 15px;
		top: 10px;
	}
	#main .category .handschuhe .txt {
		font-size: 24px;
	}
	#main .category .outdoorschuhe .logo {
		max-width: 60px;
		bottom: 5px;
		right: 10px;
	}
	#main .category .outdoorschuhe .txt {
		font-size: 18px;
		right: 10px;
		top: 10px;
	}
	#main .category .zubehoer .txt {
		font-size: 16px;
		bottom: 5px;
	}
	#main .category .strohhuete .txt {
		font-size: 18px;
		top: 5px;
		left: 15px;
	}

	#main .brands .col-3 {
		width: 100%;
		float: none;
		display: block;
		padding: 0;
	}
	#main .brands .txt:after {
		content: " ";
		display: table;
		clear: both;
	}
	#main .brands .txt p {
		width: 50%;
		float: left;
	}
	#main .brands .txt p > span {
		display: block;
	}
	#main .brands .txt .btn-primary {
		width: 100%;
		text-align: center;
		margin-top: 1.5em;
	}
	#main .brands .txt .visual-mobile {
		display: block;
		float: left;
		width: 50%;
	}
	#main .brands .txt .visual-mobile img {
		max-height: 140px;
		margin: 10px auto 0;
	}
	#main .brands .hidemobile {
		display: none;
	}

	#main .marketing .col-6 {
		width: 100%;
		float: none;
		padding: 0;
		display: block;
	}
	#main .marketing .card.catalogue {
		margin-bottom: 1.5em;
	}
	#main .marketing .card img {
		width: 100%;
	}
	#main .marketing .card .txt p {
		font-size: 20px;
	}
	#main .marketing .card .txt p.lead {
		font-size: 28px;
	}

	/* Login */
	#main .login .profile {
		padding: 0;
	}
	#main .login .block.notes ul li .txt {
		line-height: 1.7;
	}

	/* Products */
	#main .product_detail .thumb {
		margin: 30px 0;
	}

	#main .block.branding .flex {
		display: block;
	}
	#main .block.branding .flex .col-3 {
		width: 50%;
		margin-bottom: 10px;
		padding: 10px;
		float: left;
	}
	#main .block.branding .flex .col-3:nth-child(2n+1) {
		clear: both;
	}
	#main .block.branding .flex .col-6 {
		margin-bottom: 25px;
	}

	#main .legend .col-5 {
		margin-bottom: 20px;
	}

	/* Contact */
	#main .contact {
		text-align: center;
		margin-bottom: 25px;
	}
	#main .contact > img {
		margin: 0 auto;
	}


}

@media screen and (max-width: 580px) {
	/* Products */
	#main .productlist ul li {
		width: 50%;
	}
	#main .productlist ul li:nth-child(2n+1) {
		clear: both;
	}
	#main .productlist ul li:nth-child(3n+1) {
		clear: none;
	}
}


@media screen and (max-width: 480px) {
	#teaser {
		height: 15px;
	}
	#teaser.index {
		height: 200px;
		margin-bottom: 35px;
	}
	#teaser .image img {
		bottom: -60px;
	}
	#teaser .txt img {
		max-height: 30px;
	}
	#teaser .txt h1 {
		font-size: 24px;
	}
	#teaser .txt li img {
		max-height: 15px;
	}
	#teaser .txt .btn-primary {
		font-size: 12px;
		line-height: 12px;
		letter-spacing: 0px;
	}
	.sub #teaser {
		height: 15px;
	}
	.product #teaser.sicherheitsschuhe,
	.product #teaser.arbeitshandschuhe,
	.product #teaser.trekkingschuhe {
		height: 220px;
	}
	.product #teaser .txt {
		bottom: 40px;
	}
	.product #teaser .txt h1 {
		font-size: 28px;
	}

	/* Main */
	#main .block {
		padding: 1.5em 0;
	}
	#main .category .col-6 {
		width: 100%;
		float: none;
		display: block;
		padding: 0;
    }
	#main .category .zubehoer,
	#main .category .strohhuete {
		width: 50%;
		float: left;
		display: inline-block;
		padding: 0 10px;
	}
	#main .category .zubehoer {
		padding-left: 0;
	}
	#main .category .strohhuete {
		padding-right: 0;
	}
	#main .category .handschuhe {
		max-height: 170px;
		overflow: hidden;
		margin-bottom: 1em;
	}
	#main .category .handschuhe .txt {
		font-size: 32px;
		left: 10px;
		bottom: 10px;
		text-shadow: 0px 0px 20px rgba(0,0,0,.75);
	}
	#main .category .outdoorschuhe .txt {
		font-size: 22px;
	}
	#main .category .zubehoer .txt {
		font-size: 20px;
	}

	#main .brands .txt p {
		font-size: 26px;
	}
	#main .brands .txt p .orange {
		font-size: 38px;
	}
	#main .brands .txt p .black {
		font-size: 46px;
	}
	#main .brands .txt .btn-primary {
		margin-top: 0;
	}

	#main .marketing .card .txt p {
		font-size: 14px;
	}
	#main .marketing .card .txt p.lead {
		font-size: 21px;
	}

	/* Login */
	#main .login .block.downloads table {
		font-size: 12px;
	}
	#main .login .block.downloads table th:first-child,
	#main .login .block.downloads table td:first-child {
		display: none;
	}
	#main .login .block.downloads table th {
		width: 13%;
	}
	#main .login .block.downloads table th.title,
	#main .login .block.downloads table td.title {
		width: 55%;
	}


	/* Products */
	#main .productlist ul li {
		width: 100%;
		padding: 10px 0;
	}
	#main .productlist ul li:nth-child(1n+1) {
		clear: both;
	}
	#main .productlist ul li:nth-child(2n+1) {
		clear: none;
	}
	#main .product_detail .thumb li {
		width: 100px;
	}
	#main .product_detail .thumb li a img {
		max-width: 75px;
	}
	#main .product_detail .row.detail .article-tabs .nav-tabs {
		border-bottom: 0;
	}
	#main .product_detail .row.detail .article-tabs .nav-tabs li {
		display: block;
		text-align: center;
		margin-bottom: 5px;
	}
	#main .product_detail .row.detail .article-tabs .nav-tabs li.active {
		border-bottom: 1px solid #ddd;
	}
	#main .product_detail .row.detail .article-tabs .nav-tabs li.active a {
		border-bottom-color: #ddd;
	}
	#main .product_detail .row.detail .article-tabs .nav-tabs li a {
		border-bottom: 0;
	}
	#main .product_detail .row.detail .article-tabs .tab-content {
		border-top: 1px solid #ddd;
		margin-top: 10px;
	}

	#main .block.branding {
		padding: 10px 0;
	}
	#main .block.branding .flex .col-3 {
		width: 100%;
		padding: 0;
		float: none;
	}

	#main .product_detail .image_big {
		height: 340px;
	}
	#main .product_detail .image_big > img {
		max-height: 100%;
		margin: 0 auto;
	}
	#main .product_detail .image_big .video iframe {
		height: auto !important;
		min-height: 185px !important;
	}
	#main .product_detail .thumb li {
		width: 25%;
	}
	#main .product_detail .thumb li img, #main .product_detail .thumb li a img {
		max-width: 100%;
		margin: 0 auto;
}

	footer {
		text-align: center;
	}
	footer .company {
		width: 100%;
	}
	footer .company img {
		margin: 0 auto;
	}
	footer p.headline {
		margin: 15px 0 5px;
	}
	footer nav.social ul {
		display: inline-block;
	}
	footer .copyright nav li {
		display: block;
		width: 100%;
		padding: 5px 0;
	}
	footer .copyright nav li:after {
		content: "";
		margin: 0;
		padding: 0;
	}
}

@media screen and (max-width: 320px) {
	#teaser {
		margin-bottom: 0;
	}
	#teaser .image {
		display: none;
	}
	#teaser .txt {
		width: 100%;
		text-align: center;
	}
	#teaser .txt img {
		margin: 0 auto;
	}
	header .navbar-main nav form .input-group {
		padding: 0 5px;
	}
	header .navbar-main nav form .input-group #search {
		width: 83.5%;
	}
	#main .marketing .card .txt p {
		font-size: 12px;
	}
	#main .marketing .card .txt p.lead {
		font-size: 16px;
	}
	/* Products */
	#main .product_detail .thumb li {
		width: 85px;
	}
	#main .product_detail .thumb li a img {
		max-width: 55px;
	}
	#main .legend li .image {
		width: 30%;
	}
	#main .legend li .text {
		width: 70%;
	}
	#main .login .block.downloads table {
		font-size: 11px;
	}
}
/* New Design - CI 2026 */
/* Color Scheme:
   Primary Yellow: #FFC800 -> #FFCC00
   Black: #000000
   Dark Gray: #808285
   White: #FFFFFF
   Construction Tape: Yellow/Black diagonal stripes
*/

/* Font Faces - Saira Font Family */
@font-face {
    font-family: 'Saira';
    src: url('../fonts/Saira-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Saira';
    src: url('../fonts/Saira-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Saira Expanded';
    src: url('../fonts/Saira_Expanded-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

/* Override base styles with new design */
html {
  height: 100%;
  overflow-x: hidden;
}
body.new-design {
    font-family: 'Saira', sans-serif;
    padding: 0 0 0 !important;
    min-height: 100%;
	display: flex;
	flex-direction: column;
	overflow-x: hidden;
}
main {
  flex: 1;
}

/* Construction Tape Border at Top */
.navbar-main:before {
    content: '';
    display: block;
    height: 20px;
    background: url('../images/Kachel_homeofworkpower.png') repeat-x;
    background-size: auto 20px;
}
header .navbar-main {
	border-top: 0;
}

/* New Hero Banner Section categories*/
.hero-banner-categories {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 0; 
    line-height: 0;
}

.hero-banner-categories.yellow{
	background-color: #FFCC00;
}
.hero-banner-categories.blue{
	background-color: #335C76;
}
.hero-banner-categories.black{
	background-color: #000000;
}

.hero-banner-categories img {
	display: block; 
    margin: 0 auto;
    max-width: 1140px;
    height: auto;
}

.hero-banner-categories::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0px;
    right: 0px;
    height: 18px;
    z-index: 30;
    pointer-events: none;
    background: url(../images/zickzacklinie_header_kachel_breit_grey.png) 0% 0% / auto 18px repeat-x;
}

.yellow-bar-only {
    width: 100%;
    height: 38px; 
    background-color: #FFCC00; 
    display: block;
}

/* New Hero Banner Section */
#main .hero-banner {
	background-color: #FFCC00; 
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
    padding: 0; 
    line-height: 0;
    overflow: hidden;
    animation: bgChange 12s infinite;
    transition: background-color 0.8s ease-in-out;
}

.slider-wrapper {
    position: relative;
    max-width: 1140px;
    margin: 0 auto;
}

.slider-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    opacity: 0;
/*    transition: opacity 1s ease-in-out;	*/
    animation: imageFade 12s infinite;
    animation-timing-function: step-end;
}

.slider-wrapper img.spacer {
    position: relative;
    display: block;
}

.slider-wrapper img:nth-child(1) { animation-delay: 0s; }
.slider-wrapper img:nth-child(2) { animation-delay: 4s; }
.slider-wrapper img:nth-child(3) { animation-delay: 8s; }

@keyframes bgChange {
	0%, 33.33% { background-color: #FFCC00; }
    33.34%, 66.66% { background-color: #335C76; }
    66.67%, 100% { background-color: #335C76; }
}

#main .hero-banner img {
	display: block; 
    margin: 0 auto;
    max-width: 1140px; 
    height: auto;
}

#main .hero-banner .hero-button {
	position: absolute;
	top: 90%;
   	left: 43%;
    transform: translate(-50%, -50%);
    font-size: clamp(8px, 2vw, 16px);
    padding: 1em 1em;
    border-radius: 0.5em;
    background: white;
    color: #000000;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden; 
    z-index: 10;
    pointer-events: none;
    animation: imageFade 12s infinite;
    font-family: 'Saira Expanded', sans-serif !important;
    font-weight: 600 !important;
    font-size: 14pt !important;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

#main .hero-banner .hero-button:nth-of-type(1) { animation-delay: 0s; }
#main .hero-banner .hero-button:nth-of-type(2) { animation-delay: 4s; }
#main .hero-banner .hero-button:nth-of-type(3) { animation-delay: 8s; }

@keyframes imageFade {
	0%, 33.33% { 
        opacity: 1; 
        visibility: visible;
        pointer-events: auto;
        z-index: 20; 
    }
    33.34%, 100% { 
        opacity: 0; 
        visibility: hidden;
        pointer-events: none;
        z-index: 0; 
    }
}

#main .hero-banner .hero-button:hover {
    background: #000000;
    color: #FFCC00;
}

.hero-banner.paused, 
.hero-banner.paused *, 
.hero-banner.paused :after {
    animation-play-state: paused !important;
}

#slider-control {
	position: absolute;
    top: 20px;
    right: 20px;
    z-index: 100;
    width: 44px; 
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    color: #000000; /* Icon-Farbe */
    border: 1px solid #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

#slider-control:hover {
	background: #000000;
    color: #FFCC00;
    border-color: #000000;
}

#main .hero-banner:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 18px;
    background: url('../images/zickzacklinie_header_kachel_breit.png') repeat-x;
    background-size: auto 18px;
    z-index: 30;
    pointer-events: none;
}

/* Section Headers with yellow/black styling */
#main .section {
	position: relative;
	padding: 1px;
	background-color: #F4F5F6;
}

#main .section-header {
    position: relative;
    margin: 40px 0 40px 0;
    padding-bottom: 15px;
    /*border-bottom: 8px solid #FFCC00;*/
}

#main .section-header h2 {
    font-family: 'Saira',
    font-weight: 600;
    font-size: 43px;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.2;
    text-align: left;
    /*padding-left: 5%;*/
}

#main .section-header h2 .yellow {
    color: #FFCC00;
}

#main .section-header h2 .black {
    color: #000000;
}

#main .section-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: calc(-50vw + 50%);
    width: 100vw;
    height: 5px;
    background-size: auto 18px;
    background-image: url("../images/yellow_dot.png");
    background-repeat: repeat-x;
    background-position: left bottom;
}

/* Section Headers with yellow/black styling but grey background*/
#main .section_grey {
	position: relative;
	padding: 1px;
	background-color: #F4F5F6;
	margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
}

#main .section-header_grey {
    position: relative;
    margin: 40px 0 40px 0;
    padding-bottom: 15px;
    /*border-bottom: 8px solid #FFCC00;*/
}

#main .section-header_grey h2 {
    font-family: 'Saira',
    font-weight: 600;
    font-size: 43px;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.2;
    text-align: left;
    /*padding-left: 5%;*/
}

#main .section-header_grey h2 .yellow {
    color: #FFCC00;
}

#main .section-header_grey h2 .black {
    color: #000000;
}

#main .section-header_grey::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: calc(-50vw + 50%);
    width: 100vw;
    height: 5px;
    background-size: auto 18px;
    background-image: url("../images/yellow_dot.png");
    background-repeat: repeat-x;
    background-position: left bottom;
}

/* 8-Tile Grid Layout */
#main .tile-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

#main .tile-grid .tile {
    position: relative;
    overflow: hidden;
    min-height: 200px;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 15px 20px 15px;
    border-radius: 10px;
}

#main .tile-grid .tile:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

#main .tile-grid .tile a {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    gap: 20px;
}

#main .tile-grid .tile .tile-image {
    text-align: center;
}
#main .content-text a {
    text-decoration: underline;
    font-weight: bold;
}
#main .full_description a {
    text-decoration: underline;
    font-weight: bold;
}

/* Brands Section */
#main .brands-new {
    margin-bottom: 60px;
}

#main .brands-new .brands-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 160px;
    padding: 20px 0;
}

#main .brands-new .brand-logo {
    flex: 0 0 auto;
}

#main .brands-new .brand-logo img {
    max-height: 80px;
    width: auto;
}

#main .brands-new .cta-button {
	margin-top: 35px;
    display: inline-block;
    background: #FFCC00;
    color: #000000;
    padding: 12px 25px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0.5em;
    font-family: 'Saira Expanded', sans-serif !important;
    font-weight: 600 !important;
    font-size: 19px !important;
}

#main .brands-new .cta-button:hover {
    background: #000000;
    color: #FFCC00;
}

/* Content Section */
#main .content-section-header {
    position: relative;
    margin: 40px 0 40px 0;
    padding-bottom: 15px;
    /*border-bottom: 8px solid #FFCC00;*/
}
#main .content-section {
    margin: 60px 0;
}
#main .content-section h2 {
    font-family: 'Saira',
    font-weight: 600;
    font-size: 42px;
    text-transform: uppercase;
    margin: 0 0 30px 0;
    text-align: left;
    /*padding-left: 5%;*/
    position: relative;
     width: 100%; 
}

#main .content-section h2 .yellow {
    color: #FFCC00;
}

#main .content-section h2 .black {
    color: #000000;
}

#main .content-section-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: calc(-50vw + 50%);
    width: 100vw;
    height: 5px;
    background-color: #FFCC00;
}

#main .content-section .content-text {
	/*max-width: 1000px;*/
    margin: 0 auto;
    padding: 0 5px;
}

#main .content-section .content-text h3 {
    font-family: 'Saira', sans-serif;
    font-weight: 700;
    font-size: 23px;
    margin: 0 0 15px 0;
    text-transform: uppercase;
}

#main .content-section .content-text p {
    font-family: 'Saira', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

/* Iframe full width/height styling for katalog and similar pages */
body.new-design .headline iframe {
    width: 100% !important;
    height: calc(100vh - 200px) !important;
    min-height: 600px;
    border: none;
    display: block;
}

#main .tile-image .img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Breadcrumb Nav */
#main .breadcrumb {
	margin: 0 0 25px;
	padding: .25em 0;
	background: #F4F5F6;
	border-bottom: 1px solid #B6C0C5;
	font-size: 12px;
}
#main .breadcrumb li a {
	color: #f59b00;
}
#main .breadcrumb li:last-child a {
	color: #000;
}

/* Breadcrumb Styles */
.breadcrumb {
    margin: .5em 0;
}
.breadcrumb ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.breadcrumb ul:after {
    content: " ";
    display: table;
    clear: both;
}
.breadcrumb li {
    float: left;
    margin-right: 0px;
    display: inline-block;
}
.breadcrumb li span,
.breadcrumb li a {
    padding: 5px;
    display: inline-block;
}
.breadcrumb li span {
    font-weight: 300;
    color: #525354;
}
.breadcrumb li a {
    color: #00c384;
}
.breadcrumb li:after {
    content: " / ";
}
.breadcrumb li:first-child:after,
.breadcrumb li:last-child:after {
    content: " ";
}
.breadcrumb li:first-child span,
.breadcrumb li:first-child a {
    padding-left: 0;
}
.breadcrumb li:last-child a {
    color: #000;
    font-weight: 700;
    cursor: text;
}

/* Pagination inkl. Wordpress Classes */
.pagination,
.wp-paginate {
    list-style: none;
    padding: 0;
    margin: 0;
    float: right;
}
.pagination:after,
.wp-paginate:after {
    content: " ";
    display: table;
    clear: both;
}
.pagination li,
.wp-paginate li {
    float: left;
    margin-right: 5px;
    line-height: 2em;
}
.pagination li a,
.pagination li span,
.wp-paginate li a,
.wp-paginate li span {
    padding: 5px 10px;
}
.pagination li a,
.wp-paginate li a {
    border: 1px solid #B6C0C5;
    background: #fff;
    border-radius: 2px;
    color: #000;
}
.pagination li span.gap,
.wp-paginate li span.gap {
    color: #999;
}
.pagination li span.current,
.wp-paginate li span.current {
    background: #B6C0C5;
    border: 1px solid #B6C0C5;
    border-radius: 2px;
}

header .navbar-main nav form .input-group #search {
	width: 85%;
	padding: 10px 8px;
	background: #F4F5F6;
	border-radius: 4px;
	border: 1px solid #B6C0C5;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

/* Footer Construction Tape */
footer::before {
    content: "";
    display: block;
    height: 20px;
    width: 100%;
    background: url('../images/Kachel_homeofworkpower.png') repeat-x;
    background-size: auto 20px;
    margin-top: 20px; 
    margin-bottom: 0; 
}

/*** Footer ***/
footer {
	left: 0;
	width: 100%;
	position: static !important;  /* Holt den Footer zurück in den normalen Fluss */
	bottom: auto !important;      /* Löscht die Bottom-Heftung */
	margin-top: auto;
}
footer .content {
	background: #1b1b1b;
	color: #fff;
	border-top: 10px solid #f59b00;
	padding: 2.5em 0;
}
footer .content a {
	color: #fff;
}
footer .content a:hover {
	color: #f59b00;
}
footer .content .company img {
	margin-bottom: 15px;
}
footer .content p.address {
	font-size: 12px;
	line-height: 1.5;
}
footer .content p.address a {
	color: #f59b00;
}
footer .content p.address a:hover {
	text-decoration: underline;
}
footer .content .menu li {
	margin-bottom: 1em;
}
footer .content .menu li a {
	letter-spacing: .5px;
	font-weight: 400;
	transition: all .3s;
}
footer .content .social li {
	margin-right: 0;
}
footer .content .social li a {
	padding: 5px;
}
footer .content .social li:first-child a {
	padding-left: 0;
}

footer .copyright {
	padding: 1em 0;
	color: #1b1b1b;
	font-size: 12px;
	line-height: 1;
}
footer .copyright .hinweis.right {
	float: right;
	font-size: 12px;
	line-height: 1;
	color: #1b1b1b;
	display: inline-block;
	margin: 0;
}
footer .copyright nav {
	float: left;
}
footer .copyright nav li {
	margin-right: 5px;
}
footer .copyright nav li a {
	padding: 0 5px;
	display: inline-block;
}
footer .copyright nav li a:hover {
	text-decoration: underline;
}
footer .copyright nav li:after {
	content: " / ";
	padding-left: 5px;
}
footer .copyright nav li:last-child {
	margin-right: 0;
}
footer .copyright nav li:last-child:after {
	content: "";
	padding-left: 0;
}

/* Grid System */
.row {
    position: relative;
}
.row:after {
    content: " ";
    display: table;
    clear: both;
}
[class^=col-] {
    float: left;
    padding: 0 10px;
}
[class^=col-]:first-child {
    padding-left: 0px;
}
[class^=col-]:last-child {
    padding-right: 0px;
}
.hidden-mobile {
    display: block;
}
.visible-mobile {
    display: none;
}
.col-1 {
    width: 8.33333333%;
}
.col-2 {
    width: 16.66666667%;
}
.col-3 {
    width: 25%;
}
.col-4 {
    width: 33.33333333%;
}
.col-5 {
    width: 41.66666667%;
}
.col-6 {
    width: 50%;
}
.col-7 {
    width: 58.33333333%;
}
.col-8 {
    width: 66.66666667%;
}
.col-9 {
    width: 75%;
}
.col-10 {
    width: 83.33333333%;
}
.col-11 {
    width: 91.66666667%;
}
.col-12 {
    width: 100%;
}
.col-offset-1 {
    margin-right: 8.33333333%;
}
.col-offset-2 {
    margin-right: 16.66666667%;
}
.col-offset-3 {
    margin-right: 25%;
}
.col--offset-4 {
    margin-right: 33.33333333%;
}
.col-offset-5 {
    margin-right: 41.66666667%;
}
.col-offset-6 {
    margin-right: 50%;
}
.col-offset-7 {
    margin-right: 58.33333333%;
}
.col-offset-8 {
    margin-right: 66.66666667%;
}
.col-offset-9 {
    margin-right: 75%;
}
.col-offset-10 {
    margin-right: 83.33333333%;
}
.col-offset-11 {
    margin-right: 91.66666667%;
}
.col-offset-12 {
    margin-right: 100%;
}


/* Responsive Design */
@media screen and (max-width: 1140px) {
	.hero-banner-categories img {
	    max-width: 100%;
	}
}

@media screen and (max-width: 992px) {
	.hero-banner-categories img {
	    max-width: 100%;
	}

	.hero-banner-categories::after {
        height: 3vw;
        background-size: auto 3vw;
        background-repeat: round no-repeat;
	}

	#main .section-header h2 {
        font-size: 43px;
    }

    /*
    #main .tile-grid .tile h3 {
        font-size: 22px;
    }
    */
    
    #main .section-header_grey h2 {
        font-size: 43px;
    }

    /* Responsive iframe sizing for tablets */
    body.new-design .headline iframe {
        height: calc(100vh - 180px) !important;
        min-height: 500px;
    }

    [class^=col-] {
        float: none;
        display: block;
        padding: 0;
    }
    /*.col-8 {
        display: none;
    }*/

    .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
	.hero-banner-categories img {
	    max-width: 100%;
	}

	.hero-banner-categories::after {
		height: 3vw;
        background-size: auto 3vw;
        background-repeat: round no-repeat;
    }

    #main .hero-banner:after {
   		height: 3vw;
		background-size: auto 3vw;
		background-repeat: round no-repeat;
    }

	#main .hero-banner .hero-button {
		top: 87%;
		left: 43%;
        font-size: 8px !important;
        padding: 1em 1em;
        border-radius: 5px;
    }
    
	#main .brands-new .brands-grid {
		flex-direction: column;
		align-items: center; 
	}

	#main .brands-new div[style*="margin-left: 5%"] {
		margin-left: 0 !important;
		text-align: center;
	}

    #main .tile-grid {
        grid-template-columns: 1fr;
    }
    
    #main .section-header h2 {
        font-size: 28px;
    }
    
    #main .section-header_grey h2 {
        font-size: 28px;
    }
    
    #main .tile-grid .tile {
        padding: 5px 5px;
    }
    
    #main .tile-grid .tile a {
        flex-direction: column;
        text-align: center;
    }

    /*
    #main .tile-grid .tile .subtitle {
        font-size: 14px;
    }
    */
    
    #main .tile-grid .tile .tile-image {
        flex: 0 0 auto;
    }

    /*
    #main .tile-grid .tile h3 {
        font-size: 20px;
    }
    */
    
    #main .content-section h2 {
        font-size: 28px;
        max-width: 100%;    /* Darf nie breiter als das Eltern-Element sein */
		box-sizing: border-box; /* Padding wird in die Breite eingerechnet */
		overflow-wrap: break-word; /* Bricht lange Wörter/URLs um */
		word-wrap: break-word;
    }

    /* Responsive iframe sizing for mobile */
    body.new-design .headline iframe {
        height: calc(100vh - 150px) !important;
        min-height: 400px;
    }

    [class^=col-] {
        float: none;
        display: block;
        padding: 0;
    }
    
    .col-8 {
        display: none;
    }
    
    .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
        width: 100%;
    }
}
