/* b-flipbox */

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.flipbox-bglayer {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:2;
}

.gradient-black-transparent {
	background-image:-o-linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 100%);
	background-image:-moz-linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 100%);
	background-image:-webkit-linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 100%);
	background-image:-ms-linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 100%);
	background-image:linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 100%);
}

.gradient-white-transparent {
	background-image:-o-linear-gradient(to top, rgba(255,255,255,0.8) 0%, transparent 100%);
	background-image:-moz-linear-gradient(to top, rgba(255,255,255,0.8) 0%, transparent 100%);
	background-image:-webkit-linear-gradient(to top, rgba(255,255,255,0.8) 0%, transparent 100%);
	background-image:-ms-linear-gradient(to top, rgba(255,255,255,0.8) 0%, transparent 100%);
	background-image:linear-gradient(to top, rgba(255,255,255,0.8) 0%, transparent 100%);
}

.border-radius-s {
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	border-radius:5px;
}

.border-radius-m {
	-moz-border-radius:15px;
	-webkit-border-radius:15px;
	border-radius:15px;
}

.border-radius-l {
	-moz-border-radius:25px;
	-webkit-border-radius:25px;
	border-radius:25px;
}

.flipbox-default-noimage {
	aspect-ratio:2/3;
}

.list-box-item.front .title {
	position:absolute;
	z-index:3;
	left:0;
	bottom:clamp(20px, 12vw, 40px);
	padding-left:clamp(10px, 3vw, 40px);
	padding-right:clamp(10px, 3vw, 40px);
	margin:0;
	width:100%;
}

.list-box-item.front .title.title-align-top {
	bottom:auto;
	top:clamp(10px, 3vw, 40px);
}

.list-box-item.front .title.title-align-center {
	bottom:50%;
	-webkit-transform:translateY(50%);
	-ms-transform:translateY(50%);
	transform:translateY(50%);
}

.list-box-item.front .title .icon {
	margin-right:7px;
	font-size:clamp(45px, 15vw, 60px);
	position:relative;
	top:5px;
}

.list-box-item.front > a {
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
}

.list-box-item.front .title-bg {
	padding-left:10px;
	padding-right:10px;
}

.list-box-item.front .title-bg span {
	display:inline;
	padding-top:0.5rem;
	padding-right:0.5rem;
	padding-bottom:0.2rem;
	padding-left:0.5rem;
	line-height:1.6;
	-webkit-box-decoration-break:clone;
	box-decoration-break:clone;
}

.list-box-item.front .title-bg.title-bg-beige span {
	background-color:#F8F5F4;
}

.list-box-item.front .title-bg.title-bg-grey span {
	background-color:#848EA2;
}

.list-box-item.front .title-bg.title-bg-orange span {
	background-color:#DB9B41;
}

.list-box-item.front .title-bg.title-bg-cyan span {
	background-color:#CFDBDA;
}

.list-box-item.front .title-bg.title-bg-anthrazit span {
	background-color:#363636;
}

.list-box-item.front .title-bg.title-bg-lightbrown span {
	background-color:#C7B197;
}

.list-box-item.front .title-bg.title-bg-brown span {
	background-color:#AF9683;
}

.flipbox-default-withimage a.target-link {
	position:static;
}

.list-box-item.back {
	position:relative;
}

.list-box-item.back > .section {
	min-height:100%;
}

.list-box-container {
	cursor:pointer;
	display:block;
	height:100%;
	position:relative;
	width:100%;
}

.list-box-container.cover {
	overflow:hidden;
	position:relative;
}

.list-box-container.flip {
	position:relative;
	-o-transition:filter 0ms ease;
	-webkit-transition:filter 0ms ease;
	transition:filter 0ms ease;
}

.list-box-container.fold {
	-webkit-perspective:1700px;
	perspective:1700px;
	-webkit-perspective-origin:0 50%;
	perspective-origin:0 50%;
	-webkit-transform-style:preserve-3d;
	-ms-transform-style:preserve-3d;
	transform-style:preserve-3d;
}

.list-box-container.fold.right {
	-webkit-perspective-origin:100% 50%;
	perspective-origin:100% 50%;
}

.list-box-container.no-overflow .back {
	overflow-x:hidden;
	overflow-y:auto;
}

.list-box-container.push {
	overflow:hidden;
	position:relative;
}

.list-box-container.shift {
	overflow:visible;
	position:relative;
}

.list-box-item {
	-webkit-backface-visibility:hidden;
	backface-visibility:hidden;
	cursor:pointer;
	outline-color:transparent;
	outline-style:solid;
	outline-width:1px;
}

.list-box-item img {
	display:block;
	margin:auto;
}

.list-box-item.auto-size {
	height:100%;
}

.list-box-item.back.cover.bottom {
	bottom:0;
	left:0;
	position:absolute;
	-webkit-transform:translateY(100%);
	-ms-transform:translateY(100%);
	transform:translateY(100%);
	width:100%;
}

.list-box-item.back.cover.left {
	height:100%;
	left:0;
	position:absolute;
	top:0;
	-webkit-transform:translateX(-100%);
	-ms-transform:translateX(-100%);
	transform:translateX(-100%);
}

.list-box-item.back.cover.right {
	height:100%;
	position:absolute;
	right:0;
	top:0;
	-webkit-transform:translateX(100%);
	-ms-transform:translateX(100%);
	transform:translateX(100%);
}

.list-box-item.back.cover.top {
	left:0;
	position:absolute;
	top:0;
	-webkit-transform:translateY(-100%);
	-ms-transform:translateY(-100%);
	transform:translateY(-100%);
	width:100%;
}

.list-box-item.back.flip.bottom {
	-webkit-transform:rotateX(180deg);
	-ms-transform:rotateX(180deg);
	transform:rotateX(180deg);
}

.list-box-item.back.flip.left {
	-webkit-transform:rotateX(180deg);
	-ms-transform:rotateX(180deg);
	transform:rotateX(180deg);
	-o-transition:filter 0ms ease;
	-webkit-transition:filter 0ms ease;
	transition:filter 0ms ease;
}

.list-box-item.back.flip.right {
	-webkit-transform:rotateX(-180deg);
	-ms-transform:rotateX(-180deg);
	transform:rotateX(-180deg);
	-o-transition:filter 0ms ease;
	-webkit-transition:filter 0ms ease;
	transition:filter 0ms ease;
}

.list-box-item.back.float {
	height:100%;
	-ms-filter:Alpha(opacity=0);
	filter:Alpha(opacity=0);
	opacity:0;
	position:absolute;
	top:0;
	width:100%;
	z-index:5;
}

.list-box-item.back.fold {
	-webkit-backface-visibility:hidden;
	backface-visibility:hidden;
	background-color:brick-FlipBox/blue;
	height:100%;
	-ms-filter:Alpha(opacity=0);
	filter:Alpha(opacity=0);
	opacity:0;
	position:absolute;
	top:0;
	-o-transition:-o-transform 0.4s ease 0s, opacity 0.1s ease 0.1s;
	-webkit-transition:-webkit-transform 0.4s ease 0s, opacity 0.1s ease 0.1s;
	transition:transform 0.4s ease 0s, opacity 0.1s ease 0.1s;
	width:50%;
}

.list-box-item.back.fold.left {
	left:0;
	-webkit-transform:rotateY(-90deg);
	-ms-transform:rotateY(-90deg);
	transform:rotateY(-90deg);
	-webkit-transform-origin:0 0;
	-ms-transform-origin:0 0;
	transform-origin:0 0;
}

.list-box-item.back.fold.right {
	right:0;
	-webkit-transform:rotateY(90deg);
	-ms-transform:rotateY(90deg);
	transform:rotateY(90deg);
	-webkit-transform-origin:right 0;
	-ms-transform-origin:right 0;
	transform-origin:right 0;
}

.list-box-item.back.push {
	line-height:40px;
	position:absolute;
	height:100%;
	z-index:0;
	overflow-x:hidden;
	overflow-y:auto;
}

.list-box-item.back.push.bottom {
	bottom:auto;
	top:0;
	-webkit-transform:translateY(-100%);
	-ms-transform:translateY(-100%);
	transform:translateY(-100%);
	width:100%;
}

.list-box-item.back.push.left {
	right:0;
	top:0;
	-webkit-transform:translateX(100%);
	-ms-transform:translateX(100%);
	transform:translateX(100%);
}

.list-box-item.back.push.right {
	left:0;
	top:0;
	-webkit-transform:translateX(-100%);
	-ms-transform:translateX(-100%);
	transform:translateX(-100%);
	width:auto;
}

.list-box-item.back.push.top {
	bottom:0;
	top:auto;
	-webkit-transform:translateY(100%);
	-ms-transform:translateY(100%);
	transform:translateY(100%);
	width:100%;
}

.list-box-item.back.shift {
	position:absolute;
}

.list-box-item.back.shift.bottom {
	bottom:0;
	width:100%;
	z-index:0;
}

.list-box-item.back.shift.left {
	height:100%;
	left:0;
	top:0;
	z-index:0;
}

.list-box-item.back.shift.right {
	height:100%;
	right:0;
	top:0;
	z-index:0;
}

.list-box-item.back.shift.top {
	top:0;
	width:100%;
	z-index:0;
}

.list-box-item.bottom.auto-size {
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	height:100%;
	width:100%;
}

.list-box-item.bottom.auto-size .box-body {
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	height:100%;
}

.list-box-item.bottom.auto-size .box1 {
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	height:100%;
}

.list-box-item.bottom.auto-size .box2 {
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	height:100%;
}

.list-box-item.bottom.auto-size .box3 {
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	height:100%;
}

.list-box-item.bottom.auto-size .box4 {
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	height:100%;
}

.list-box-item.flip.back {
	position:absolute;
	top:0;
}

.list-box-item.flip.back .bricks {
	overflow:hidden;
}

.list-box-item.front.push {
	width:100%;
	z-index:1;
}

.layout-default .list-box-item.front.push {
	height:100%;
}

.list-box-item.front.shift {
	position:relative;
	z-index:10;
}

.list-box-item.left.auto-size {
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	height:100%;
}

.list-box-item.left.auto-size .box-body {
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	height:100%;
}

.list-box-item.left.auto-size .box1 {
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	height:100%;
}

.list-box-item.left.auto-size .box2 {
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	height:100%;
}

.list-box-item.left.auto-size .box3 {
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	height:100%;
}

.list-box-item.left.auto-size .box4 {
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	height:100%;
}

.list-box-item.right.auto-size {
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	height:100%;
}

.list-box-item.right.auto-size .box-body {
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	height:100%;
}

.list-box-item.right.auto-size .box1 {
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	height:100%;
}

.list-box-item.right.auto-size .box2 {
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	height:100%;
}

.list-box-item.right.auto-size .box3 {
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	height:100%;
}

.list-box-item.right.auto-size .box4 {
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	height:100%;
}

.list-box-item.top.auto-size {
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	height:100%;
	width:100%;
}

.list-box-item.top.auto-size .box-body {
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	height:100%;
}

.list-box-item.top.auto-size .box1 {
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	height:100%;
}

.list-box-item.top.auto-size .box2 {
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	height:100%;
}

.list-box-item.top.auto-size .box3 {
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	height:100%;
}

.list-box-item.top.auto-size .box4 {
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	height:100%;
}

.mod-display-close {
	position:relative;
}

.mod-display-close:before {
	font-family:Touchway;
	font-weight:normal;
	font-style:normal;
	content:'X';
	position:absolute;
	right:21px;
	top:-5px;
	font-size:clamp(30px, 6vw, 40px);
}

.bo-sl-option-box-background-rd23grey6 {
	background-color:#F8F5F4;
}

.bo-sl-option-box-background-rd23deco1 {
	background-color:#848EA2;
}

.bo-sl-option-box-background-rd23deco2 {
	background-color:#DB9B41;
}

.bo-sl-option-box-background-rd23deco4 {
	background-color:#CFDBDA;
}

.bo-sl-option-box-background-rd23deco5 {
	background-color:#363636;
}

.bo-sl-option-box-background-rd23deco7 {
	background-color:#C7B197;
}

.bo-sl-option-box-background-rd23deco8 {
	background-color:#AF9683;
}

.bo-sl-option-title-bg.title-bg-beige {
	background-color:#F8F5F4;
}

.bo-sl-option-title-bg.title-bg-grey {
	background-color:#848EA2;
}

.bo-sl-option-title-bg.title-bg-orange {
	background-color:#DB9B41;
}

.bo-sl-option-title-bg.title-bg-cyan {
	background-color:#CFDBDA;
}

.bo-sl-option-title-bg.title-bg-anthrazit {
	background-color:#363636;
}

.bo-sl-option-title-bg.title-bg-lightbrown {
	background-color:#C7B197;
}

.bo-sl-option-title-bg.title-bg-brown {
	background-color:#AF9683;
}

/* b-mediaplayer */

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.content .mediaplayer-wrapper {
	position:relative;
}

.content .mediaplayer-wrapper .mp-player {
	width:100%;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
}

.content .mediaplayer-wrapper .mp-player .mp-stage {
	position:relative;
	width:100%;
}

.content .mediaplayer-wrapper .mp-player .mp-stage .mp-placeholder {
	position:relative;
	width:100%;
}

.content .mediaplayer-wrapper .mp-player .mp-stage .mp-scroller-wrapper {
	position:absolute;
	overflow:hidden;
	overflow-x:hidden;
	width:100%;
	top:0px;
	right:0px;
	bottom:0px;
	left:0px;
	margin-top:0px;
	margin-bottom:auto;
	margin-left:auto;
}

.content .mediaplayer-wrapper .mp-player .mp-stage ul.mp-scroller {
	position:relative;
	display:table;
	height:100%;
	top:0px;
	left:0%;
	table-layout:fixed;
}

.content .mediaplayer-wrapper .mp-player .mp-stage ul.mp-scroller li {
	vertical-align:top;
	display:table-cell;
	height:100%;
}

.content .mediaplayer-wrapper .mp-player .mp-stage li.mp-item {
	position:relative;
	overflow:hidden;
}

.content .mediaplayer-wrapper .mp-player .mp-stage li.mp-item .mp-right {
	width:25%;
	height:100%;
	max-height:100%;
	top:0px;
	right:0px;
	left:auto;
}

.content .mediaplayer-wrapper .mp-player .mp-stage li.mp-item .mp-left {
	width:25%;
}

.content .mediaplayer-wrapper .mp-player .mp-stage .mp-caption {
	position:absolute;
	overflow:auto;
	width:100%;
	max-height:50%;
	bottom:0px;
	left:0px;
	z-index:3;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
}

.content .mediaplayer-wrapper .mp-player .mp-stage .mp-caption.mp-closed {
	bottom:-50%;
}

.content .mediaplayer-wrapper .mp-player .mp-stage .mp-caption.mp-left.mp-closed {
	left:-50%;
}

.content .mediaplayer-wrapper .mp-player .mp-stage .mp-caption.mp-right.mp-closed {
	right:-50%;
}

.content .mediaplayer-wrapper .mp-player .mp-stage .mp-left {
	width:50%;
	height:100%;
	max-height:100%;
	top:0px;
	left:0px;
}

.content .mediaplayer-wrapper .mp-player .mp-stage .mp-media {
	position:relative;
	display:table;
	width:100%;
	height:100%;
}

.content .mediaplayer-wrapper .mp-player .mp-stage .mp-media > div {
	vertical-align:middle;
	position:relative;
	display:table-cell;
	width:100%;
	height:100%;
}

.content .mediaplayer-wrapper .mp-player .mp-stage .mp-media > div .video-js {
	width:100%;
	height:100%;
}

.content .mediaplayer-wrapper .mp-player .mp-stage .mp-media > div img {
	position:absolute;
	overflow:hidden;
	width:auto;
	height:100%;
	top:0px;
	right:0px;
	bottom:0px;
	left:0px;
	margin-top:0px;
	margin-right:auto;
	margin-bottom:auto;
	margin-left:auto;
}

.content .mediaplayer-wrapper .mp-player .mp-stage .mp-media > div .mp-landscape {
	width:100%;
	height:auto;
	position:relative;
}

.content .mediaplayer-wrapper .mp-player .mp-stage .mp-btn-gallery {
	position:absolute;
	overflow:hidden;
	margin:0;
}

.content .mediaplayer-wrapper .mp-player .mp-stage .mp-btn-gallery > div {
	width:100%;
	height:100%;
	background-repeat:no-repeat;
}

.content .mediaplayer-wrapper .mp-player .mp-stage .mp-btn-caption {
	position:absolute;
	overflow:hidden;
	margin:0;
}

.content .mediaplayer-wrapper .mp-player .mp-stage .mp-btn-caption > div {
	width:100%;
	height:100%;
	background-repeat:no-repeat;
}

.content .mediaplayer-wrapper .mp-player nav.mp-navigation {
	position:relative;
	width:100%;
}

.content .mediaplayer-wrapper .mp-player nav.mp-navigation .mp-progressbar-wrapper {
	position:relative;
	width:100%;
}

.content .mediaplayer-wrapper .mp-player nav.mp-navigation .mp-progressbar-wrapper .mp-hover {
	position:absolute;
	width:121px;
	height:100%;
	top:0px;
	left:0px;
	visibility:hidden;
	-o-transition:left 0.3s ease 0s, width 0.3s ease 0s;
	-webkit-transition:left 0.3s ease 0s, width 0.3s ease 0s;
	transition:left 0.3s ease 0s, width 0.3s ease 0s;
}

.content .mediaplayer-wrapper .mp-player nav.mp-navigation .mp-progressbar {
	position:absolute;
	width:120px;
	height:100%;
	left:0px;
	-o-transition:left 0.3s ease 0s, width 0.8s ease 0s;
	-webkit-transition:left 0.3s ease 0s, width 0.8s ease 0s;
	transition:left 0.3s ease 0s, width 0.8s ease 0s;
}

.content .mediaplayer-wrapper .mp-player nav.mp-navigation .mp-indicator {
	position:absolute;
	right:50%;
	-o-transition:right 0.5s ease 0s;
	-webkit-transition:right 0.5s ease 0s;
	transition:right 0.5s ease 0s;
}

.content .mediaplayer-wrapper .mp-player nav.mp-navigation .mp-visible {
	display:block;
}

.content .mediaplayer-wrapper .mp-player nav.mp-navigation .mp-scroller-wrapper {
	position:relative;
	overflow:hidden;
	width:100%;
}

.content .mediaplayer-wrapper .mp-player nav.mp-navigation > div.mp-scroller {
	position:relative;
	min-width:100%;
}

.content .mediaplayer-wrapper .mp-player nav.mp-navigation ul {
	display:table;
	table-layout:fixed;
}

.content .mediaplayer-wrapper .mp-player nav.mp-navigation ul li {
	display:table-cell;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	cursor:pointer;
}

.content .mediaplayer-wrapper .mp-player nav.mp-navigation ul li a {
	margin:0;
}

.content .mediaplayer-wrapper .mp-player nav.mp-navigation ul li a > span {
	display:block;
}

.content .mediaplayer-wrapper .mp-player nav.mp-navigation.mp-image ul li a {
	overflow:hidden;
	height:auto;
	padding:0px;
}

.content .mediaplayer-wrapper .mp-player nav.mp-navigation.mp-image ul li a div {
	background-repeat:no-repeat;
	background-position:center center;
	background-size:cover;
	-o-transition:all 0.3s ease-out 0s;
	-webkit-transition:all 0.3s ease-out 0s;
	transition:all 0.3s ease-out 0s;
}

.content .mediaplayer-wrapper .mp-player nav.mp-navigation.mp-image.mp-bottom {
	margin-bottom:0px;
}

.content .mediaplayer-wrapper .mp-player nav.mp-navigation.mp-image.mp-bottom .mp-progressbar-wrapper {
	margin-top:0px;
	margin-bottom:3px;
}

.content .mediaplayer-wrapper .mp-player nav.mp-navigation.mp-image.mp-bottom a.mp-controls {
	top:40px;
}

.content .mediaplayer-wrapper .mp-player ul {
	margin-top:0px;
	margin-bottom:0px;
}

.content .mediaplayer-wrapper .mp-player nav.mp-navigation.mp-no-progressbar ul {
	margin-bottom:10px;
}

.content .mediaplayer-wrapper .mp-player nav.mp-navigation.mp-no-progressbar.mp-bottom ul {
	margin-top:10px;
	margin-bottom:0px;
}

.content .mediaplayer-wrapper .mp-player nav.mp-navigation.mp-image.mp-text ul li {
	vertical-align:top;
	white-space:normal;
	width:180px;
}

.content .mediaplayer-wrapper .mp-disabled {
	-ms-filter:Alpha(opacity=1);
	filter:Alpha(opacity=1);
	opacity:0.01;
}

.content .mediaplayer-wrapper a.mp-controls {
	position:absolute;
}

.content .mediaplayer-wrapper .mp-gallery-wrapper {
	position:absolute;
	overflow:hidden;
	width:100%;
	height:100%;
	top:0;
	left:0;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	-o-transition:height 0.3s ease 0s;
	-webkit-transition:height 0.3s ease 0s;
	transition:height 0.3s ease 0s;
}

.content .mediaplayer-wrapper .mp-gallery-wrapper .mp-gallery-list {
	position:relative;
	overflow:hidden;
	width:100%;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	background-color:#464A52;
}

.content .mediaplayer-wrapper .mp-gallery-wrapper .mp-gallery-list li {
	position:relative;
	float:left;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
}

.content .mediaplayer-wrapper .mp-gallery-wrapper .mp-gallery-list li > div {
	position:absolute;
	width:100%;
	height:100%;
	top:0px;
	left:0px;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
}

.content .mediaplayer-wrapper .mp-gallery-wrapper .mp-gallery-list li > div > div {
	width:100%;
	height:100%;
	background-repeat:no-repeat;
	background-position:center center;
	background-size:cover;
}

.content .mediaplayer-wrapper .mp-gallery-wrapper a {
	position:relative;
	display:block;
	width:100%;
	margin:0;
}

.content .mediaplayer-wrapper .mp-gallery-wrapper .mp-btn-gallery-close {
	position:absolute;
	overflow:hidden;
	z-index:2;
	cursor:pointer;
}

.content .mediaplayer-wrapper .mp-gallery-wrapper .mp-btn-gallery-close > div {
	width:100%;
	height:100%;
	background-repeat:no-repeat;
}

.content .mediaplayer-wrapper .mp-gallery-wrapper.mp-hidden {
	overflow:hidden;
	height:0;
}

.content .mediaplayer-wrapper a.mp-controls.mp-hide {
	display:none;
}

.content .mediaplayer-wrapper.mp-contentplayer .mp-player .mp-stage .mp-scroller-wrapper {
	position:relative;
}

.content .mediaplayer-wrapper.mp-contentplayer .mp-player .mp-stage li.mp-item {
	height:auto;
}

.content .mediaplayer-wrapper.mp-skin .mp-background-dark {
	background-color:#464A52;
}

.content .mediaplayer-wrapper.mp-skin .mp-background-dark nav.mp-navigation ul li {
	background-color:#FFFFFF;
}

.content .mediaplayer-wrapper.mp-skin .mp-background-dark nav.mp-navigation ul li.mp-selected {
	background-color:#FFFFFF;
}

.content .mediaplayer-wrapper.mp-skin .mp-background-light {
	background-color:#FFFFFF;
}

.content .mediaplayer-wrapper.mp-skin .mp-gallery-wrapper {
	background-color:transparent;
}

.content .mediaplayer-wrapper.mp-skin .mp-gallery-wrapper .mp-gallery-list {
	padding:5px;
}

.content .mediaplayer-wrapper.mp-skin .mp-gallery-wrapper .mp-gallery-list li {
	width:33.3333333%;
}

.content .mediaplayer-wrapper.mp-skin .mp-gallery-wrapper .mp-gallery-list li > div {
	padding:20px;
}

.content .mediaplayer-wrapper.mp-skin .mp-gallery-wrapper .mp-gallery-list li.mp-selected {
	background-color:#89574E;
}

.content .mediaplayer-wrapper.mp-skin .mp-gallery-wrapper .mp-btn-gallery-close {
	width:25px;
	height:19px;
	top:10px;
	right:14px;
	-moz-border-radius:2px;
	-webkit-border-radius:2px;
	border-radius:2px;
	margin:0;
	-ms-filter:Alpha(opacity=50);
	filter:Alpha(opacity=50);
	opacity:0.5;
	-o-transition:opacity 0.2s ease 0s;
	-webkit-transition:opacity 0.2s ease 0s;
	transition:opacity 0.2s ease 0s;
}

.content .mediaplayer-wrapper.mp-skin .mp-gallery-wrapper .mp-btn-gallery-close > div {
	background-image:url(../../../../docs/de/50224/DEFAULT-mediaplayer-sprite.png.png?v=1.0);
	background-position:left -600px;
}

.content .mediaplayer-wrapper.mp-skin .mp-player nav.mp-navigation.mp-bottom {
	margin-top:15px;
	margin-bottom:0px;
}

.content .mediaplayer-wrapper.mp-skin .mp-player nav.mp-navigation.mp-bottom .mp-progressbar-wrapper {
	margin-top:0px;
	margin-bottom:0px;
}

.content .mediaplayer-wrapper.mp-skin .mp-player nav.mp-navigation.mp-bottom .mp-indicator {
	top:3px;
	border-width:3px;
	border-top-color:#89574E;
	border-bottom-color:transparent;
	margin-right:-3px;
}

.content .mediaplayer-wrapper.mp-skin .mp-player nav.mp-navigation.mp-bottom a.mp-controls {
	top:41px;
}

.content .mediaplayer-wrapper.mp-skin .mp-player .mp-stage a.mp-controls.mp-back {
	left:0px;
}

.content .mediaplayer-wrapper.mp-skin .mp-player .mp-stage a.mp-controls.mp-back > div {
	left:50%;
	-webkit-transform:translateX(-50%);
	-ms-transform:translateX(-50%);
	transform:translateX(-50%);
	border-left-width:0px;
	border-left-color:transparent;
}

.content .mediaplayer-wrapper.mp-skin .mp-player .mp-stage a.mp-controls.mp-forward {
	right:0px;
}

.content .mediaplayer-wrapper.mp-skin .mp-player .mp-stage a.mp-controls.mp-forward > div {
	right:50%;
	-webkit-transform:translateX(50%);
	-ms-transform:translateX(50%);
	transform:translateX(50%);
	border-right-width:0px;
	border-right-color:transparent;
}

.content .mediaplayer-wrapper.mp-skin .mp-player .mp-stage li.mp-spacer {
	width:5px;
	background-color:transparent;
}

.content .mediaplayer-wrapper.mp-skin .mp-player .mp-stage .mp-media > div.mp-video button.vjs-big-play-button {
	font-size:50px;
	line-height:90px;
	width:90px;
	height:90px;
	border-width:0px;
	border-color:#89574E;
	-moz-border-radius:45px;
	-webkit-border-radius:45px;
	border-radius:45px;
	-moz-box-shadow:0px 0px 10px 0px rgba(255,255,255,1.0);
	-webkit-box-shadow:0px 0px 10px 0px rgba(255,255,255,1.0);
	box-shadow:0px 0px 10px 0px rgba(255,255,255,1.0);
	margin-top:-45px;
	margin-left:-45px;
	background-color:#89574E;
	-ms-filter:Alpha(opacity=70);
	filter:Alpha(opacity=70);
	opacity:0.7;
	-o-transition-delay:0s;
	-webkit-transition-delay:0s;
	transition-delay:0s;
	-o-transition-duration:0.4s;
	-webkit-transition-duration:0.4s;
	transition-duration:0.4s;
	-o-transition-property:box-shadow;
	-webkit-transition-property:box-shadow;
	transition-property:box-shadow;
	-o-transition-timing-function:ease;
	-webkit-transition-timing-function:ease;
	transition-timing-function:ease;
}

.content .mediaplayer-wrapper.mp-skin .mp-player .mp-stage .mp-caption {
	border-width:20px;
	border-color:transparent;
	border-style:solid;
	overflow:hidden;
	-o-transition:all 0.3s ease 0s;
	-webkit-transition:all 0.3s ease 0s;
	transition:all 0.3s ease 0s;
}

.content .mediaplayer-wrapper.mp-skin .mp-player .mp-stage .mp-caption h3 {
	color:#FFFFFF;
}

.content .mediaplayer-wrapper.mp-skin .mp-player .mp-stage .mp-caption p {
	color:#FFFFFF;
}

.content .mediaplayer-wrapper.mp-skin .mp-player .mp-stage .mp-caption-dark {
	background-color:#464A52;
	background-color:rgba(70,74,82,0.7);
}

.content .mediaplayer-wrapper.mp-skin .mp-player .mp-stage .mp-caption-dark .link {
	color:#EDEDED;
	text-decoration:underline;
}

.content .mediaplayer-wrapper.mp-skin .mp-player .mp-stage .mp-caption-light {
	background-color:#FFFFFF;
	background-color:rgba(255,255,255,0.7);
}

.content .mediaplayer-wrapper.mp-skin .mp-player .mp-stage .mp-caption-light h3 {
	color:#464A52;
}

.content .mediaplayer-wrapper.mp-skin .mp-player .mp-stage .mp-caption-light p {
	color:#464A52;
}

.content .mediaplayer-wrapper.mp-skin .mp-player .mp-stage .mp-caption-light .link {
	color:#89574E;
}

.content .mediaplayer-wrapper.mp-skin .mp-player .mp-stage .mp-btn-gallery {
	width:25px;
	height:19px;
	top:10px;
	right:10px;
	-moz-border-radius:2px;
	-webkit-border-radius:2px;
	border-radius:2px;
	-ms-filter:Alpha(opacity=50);
	filter:Alpha(opacity=50);
	opacity:0.5;
	-o-transition:opacity 0.2s ease 0s;
	-webkit-transition:opacity 0.2s ease 0s;
	transition:opacity 0.2s ease 0s;
}

.content .mediaplayer-wrapper.mp-skin .mp-player .mp-stage .mp-btn-gallery > div {
	background-image:url(../../../../docs/de/50224/DEFAULT-mediaplayer-sprite.png.png?v=1.0);
	background-position:left -400px;
}

.content .mediaplayer-wrapper.mp-skin .mp-player .mp-stage .mp-btn-caption {
	width:25px;
	height:19px;
	top:10px;
	right:10px;
	-moz-border-radius:2px;
	-webkit-border-radius:2px;
	border-radius:2px;
	-o-transition:opacity 0.2s ease 0s;
	-webkit-transition:opacity 0.2s ease 0s;
	transition:opacity 0.2s ease 0s;
}

.content .mediaplayer-wrapper.mp-skin .mp-player .mp-stage .mp-btn-caption > div {
	background-image:url(../../../../docs/de/50224/DEFAULT-mediaplayer-sprite.png.png?v=1.0);
	background-position:left -500px;
}

.content .mediaplayer-wrapper.mp-skin .mp-player .mp-stage .mp-btn-caption.mp-bleed {
	right:55px;
}

.content .mediaplayer-wrapper.mp-skin .mp-player .mp-stage .mp-btn-caption.mp-closed {
	-ms-filter:Alpha(opacity=50);
	filter:Alpha(opacity=50);
	opacity:0.5;
}

.content .mediaplayer-wrapper.mp-skin .mp-player .mp-stage a.mp-controls {
	position:absolute;
	width:25px;
	height:50px;
	top:50%;
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
	border-radius:0px;
	margin:-20px;
	margin-top:-25px;
	padding:5px;
	background-color:#89574E;
	background-image:none;
}

.content .mediaplayer-wrapper.mp-skin .mp-player .mp-stage a.mp-controls > div {
	position:absolute;
	top:50%;
	border-width:7px;
	border-top-color:transparent;
	border-right-color:#FFFFFF;
	border-bottom-color:transparent;
	border-left-color:#FFFFFF;
	border-style:solid;
	margin-top:-7px;
}

.content .mediaplayer-wrapper.mp-skin .mp-player nav.mp-navigation {
	width:100%;
}

.content .mediaplayer-wrapper.mp-skin .mp-player nav.mp-navigation .mp-progressbar-wrapper {
	height:5px;
	background-color:#464A52;
}

.content .mediaplayer-wrapper.mp-skin .mp-player nav.mp-navigation .mp-progressbar-wrapper .mp-hover {
	background-color:#89574E;
}

.content .mediaplayer-wrapper.mp-skin .mp-player nav.mp-navigation .mp-progressbar {
	background-color:#89574E;
}

.content .mediaplayer-wrapper.mp-skin .mp-player nav.mp-navigation .mp-indicator {
	top:-14px;
	border-width:7px;
	border-top-color:transparent;
	border-right-color:transparent;
	border-bottom-color:#89574E;
	border-left-color:transparent;
	border-style:solid;
	margin-right:-7px;
}

.content .mediaplayer-wrapper.mp-skin .mp-player nav.mp-navigation a.mp-controls {
	height:42px;
}

.content .mediaplayer-wrapper.mp-skin .mp-player nav.mp-navigation ul {
	min-height:53px;
}

.content .mediaplayer-wrapper.mp-skin .mp-player nav.mp-navigation ul li.mp-selected a > span {
	color:#89574E;
}

.content .mediaplayer-wrapper.mp-skin .mp-player nav.mp-navigation ul li {
	text-align:center;
	vertical-align:middle;
	white-space:nowrap;
	border-right-width:1px;
	border-right-color:#888888;
	border-right-style:solid;
	padding-left:2px;
}

.content .mediaplayer-wrapper.mp-skin .mp-player nav.mp-navigation ul li a > span {
	font-family:Calibri,Arial,sans-serif;
	font-weight:normal;
	font-style:normal;
	color:#464A52;
	font-size:15px;
	line-height:16px;
	margin:0px;
	padding-top:5px;
	padding-right:20px;
	padding-bottom:5px;
	padding-left:20px;
}

.content .mediaplayer-wrapper.mp-skin .mp-player nav.mp-navigation ul li a div {
	width:100%;
	height:53px;
	-o-transition:all 0.3s ease-out 0s;
	-webkit-transition:all 0.3s ease-out 0s;
	transition:all 0.3s ease-out 0s;
}

.content .mediaplayer-wrapper.mp-skin .mp-player nav.mp-navigation ul li a.mp-background-dark span {
	color:#EDEDED;
}

.content .mediaplayer-wrapper.mp-skin .mp-player nav.mp-navigation ul li.mp-isFirst {
	border-left-width:1px;
	border-left-color:#888888;
	border-left-style:solid;
	padding-left:0px;
}

.content .mediaplayer-wrapper.mp-skin .mp-player nav.mp-navigation ul li.mp-hover div {
	-webkit-transform:scale(1.1);
	-ms-transform:scale(1.1);
	transform:scale(1.1);
}

.content .mediaplayer-wrapper.mp-skin .mp-player nav.mp-navigation ul li.mp-hover span {
	color:#89574E;
}

.content .mediaplayer-wrapper.mp-skin .mp-player nav.mp-navigation.mp-image a.mp-controls {
	height:43px;
	top:10px;
}

.content .mediaplayer-wrapper.mp-skin .mp-player nav.mp-navigation.mp-image ul li {
	white-space:normal;
}

.content .mediaplayer-wrapper.mp-skin .mp-player nav.mp-navigation.mp-image ul li a {
	border-color:transparent;
	padding:0px;
}

.content .mediaplayer-wrapper.mp-skin .mp-player nav.mp-navigation.mp-image ul li a div {
	width:121px;
	height:53px;
}

.content .mediaplayer-wrapper.mp-skin .mp-player nav.mp-navigation.mp-image .mp-progressbar-wrapper {
	margin-top:10px;
}

.content .mediaplayer-wrapper.mp-skin.mp-skin1 .mp-player nav.mp-navigation .mp-progressbar-wrapper {
	height:5px;
	background-color:#DFB07C;
}

.content .mediaplayer-wrapper.mp-skin.mp-skin1 .mp-player nav.mp-navigation .mp-progressbar-wrapper .mp-hover {
	background-color:#89574E;
}

.content .mediaplayer-wrapper.mp-skin.mp-skin1 .mp-player nav.mp-navigation .mp-progressbar {
	background-color:#89574E;
}

.content .mediaplayer-wrapper.mp-skin.mp-skin1 .mp-player nav.mp-navigation .mp-indicator {
	top:-14px;
	border-width:7px;
	border-top-color:transparent;
	border-right-color:transparent;
	border-bottom-color:#89574E;
	border-left-color:transparent;
	border-style:solid;
	margin-right:-7px;
}

.content .mediaplayer-wrapper.mp-skin.mp-skin1 .mp-player nav.mp-navigation a.mp-controls {
	height:42px;
}

.content .mediaplayer-wrapper.mp-skin.mp-skin1 .mp-player nav.mp-navigation ul {
	min-height:53px;
}

.content .mediaplayer-wrapper.mp-skin.mp-skin1 .mp-player nav.mp-navigation ul li.mp-selected a > span {
	color:#89574E;
}

.content .mediaplayer-wrapper.mp-skin.mp-skin1 .mp-player nav.mp-navigation ul li {
	text-align:center;
	vertical-align:middle;
	white-space:nowrap;
	width:120px;
	padding-left:0px;
}

.content .mediaplayer-wrapper.mp-skin.mp-skin1 .mp-player nav.mp-navigation ul li a > span {
	font-family:Calibri,Arial,sans-serif;
	font-weight:normal;
	font-style:normal;
	color:#464A52;
	font-size:15px;
	line-height:16px;
	margin:0px;
	padding-top:5px;
	padding-right:20px;
	padding-bottom:5px;
	padding-left:20px;
}

.content .mediaplayer-wrapper.mp-skin.mp-skin1 .mp-player nav.mp-navigation ul li a.mp-background-dark span {
	color:#EDEDED;
}

.content .mediaplayer-wrapper.mp-skin.mp-skin1 .mp-player nav.mp-navigation ul li a.mp-image {
	width:100%;
	height:90px;
}

.content .mediaplayer-wrapper.mp-skin.mp-skin1 .mp-player nav.mp-navigation ul li a.mp-image div {
	width:80px;
	height:80px;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	border-radius:50%;
	margin-top:5px;
	margin-right:auto;
	margin-left:auto;
	background-size:200% 200%;
}

.content .mediaplayer-wrapper.mp-skin.mp-skin1 .mp-player nav.mp-navigation ul li.mp-isFirst {
	padding-left:0px;
}

.content .mediaplayer-wrapper.mp-skin.mp-skin1 .mp-player nav.mp-navigation ul li.mp-hover span {
	color:#89574E;
}

.content .mediaplayer-wrapper.mp-skin.mp-skin1 .mp-player nav.mp-navigation ul li.mp-hover a.mp-image div {
	background-size:100% 100%;
	-webkit-transform:none;
	-ms-transform:none;
	transform:none;
}

.content .mediaplayer-wrapper.mp-skin.mp-skin1 .mp-player nav.mp-navigation div.mp-scroller-wrapper {
	width:auto;
}

.content .mediaplayer-wrapper.mp-skin.mp-skin1 .mp-player nav.mp-navigation > div.mp-helper {
	text-align:center;
}

.content .mediaplayer-wrapper.mp-skin.mp-skin1 .mp-player nav.mp-navigation.mp-narrow-scroller div.mp-scroller-wrapper {
	display:inline-block;
}
/* style: Hauptstil language: default / engineId: default / pseudo: hover */
.content .mediaplayer-wrapper.mp-skin .mp-gallery-wrapper .mp-gallery-list li:hover {
	background-color:#89574E;
}

.content .mediaplayer-wrapper.mp-skin .mp-gallery-wrapper .mp-btn-gallery-close:hover {
	-ms-filter:Alpha(opacity=100);
	filter:Alpha(opacity=100);
	opacity:1;
}

.content .mediaplayer-wrapper.mp-skin .mp-player .mp-stage .mp-media > div.mp-video button.vjs-big-play-button:hover {
	-moz-box-shadow:0px 0px 50px 5px rgba(255,255,255,1.0);
	-webkit-box-shadow:0px 0px 50px 5px rgba(255,255,255,1.0);
	box-shadow:0px 0px 50px 5px rgba(255,255,255,1.0);
	background-color:#464A52;
}

.content .mediaplayer-wrapper.mp-skin .mp-player .mp-stage .mp-btn-gallery:hover {
	-ms-filter:Alpha(opacity=100);
	filter:Alpha(opacity=100);
	opacity:1;
}

/* b-panorama */

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.b-panorama {
	width:100%;
}

/* b-quote */

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.b-quote .quote-text {
	max-width:600px;
	position:relative;
	margin-top:30px;
	margin-right:0;
	margin-bottom:30px;
	margin-left:40px;
}

.b-quote .source-text {
	font-family:Calibri,Arial,sans-serif;
	font-weight:normal;
	font-style:normal;
	position:absolute;
	bottom:-50px;
	right:60px;
}

.b-quote .b-image {
	width:auto;
	height:auto;
}

.b-quote .col-1 .multicolumn {
	flex:0 0 auto;
}

.b-quote .b-quote-fontsize-medium {
	font-size:26px;
}

.b-quote .b-quote-fontsize-small {
	font-size:22px;
}

/* b-scrollingvideo */

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.b-vs-wrapper {
	width:100%;
	display:flex;
	justify-content:center;
	align-items:center;
	position:relative;
}

.b-vs-wrapper .canvas {
	width:auto;
	height:100%;
	max-height:100vh;
}

.b-vs-loader {
	position:fixed;
	left:0;
	top:120px;
	z-index:10;
	width:100%;
	height:100%;
	background-color:#000000;
	background-color:rgba(0,0,0,0.5);
}

.b-vs-loader .bar {
	width:0%;
	height:5px;
	background-color:#FFFFFF;
	background-color:rgba(255,255,255,0.6);
}

.b-vs-loader p {
	text-align:center;
	padding-top:15px;
	color:inherit;
}

.multicolumn .b-vs-wrapper .canvas {
	width:100%;
	height:auto;
}

#b-vs-overlay-loading {
	position:fixed;
	bottom:0;
	left:0;
	width:100%;
	height:calc(100% - 120px);
	pointer-events:none;
	background-repeat:no-repeat;
	background-size:100% 100%;
	background-position:center bottom;
	-ms-filter:Alpha(opacity=0);
	filter:Alpha(opacity=0);
	opacity:0;
	z-index:0;
	visibility:hidden;
	-webkit-transform:translate3d(0, 100%, 0);
	-ms-transform:translate3d(0, 100%, 0);
	transform:translate3d(0, 100%, 0);
}

#b-vs-overlay-loading.active {
	-ms-filter:Alpha(opacity=100);
	filter:Alpha(opacity=100);
	opacity:1;
	z-index:999;
	visibility:visible;
	-webkit-transform:translate3d(0, 0, 0);
	-ms-transform:translate3d(0, 0, 0);
	transform:translate3d(0, 0, 0);
}

#b-vs-overlay-loading.active-hidden {
	-ms-filter:Alpha(opacity=0);
	filter:Alpha(opacity=0);
	opacity:0;
	z-index:0;
	visibility:hidden;
	-webkit-transform:translate3d(0, 100%, 0);
	-ms-transform:translate3d(0, 100%, 0);
	transform:translate3d(0, 100%, 0);
	-o-transition:all 0.5s ease-in;
	-webkit-transition:all 0.5s ease-in;
	transition:all 0.5s ease-in;
}

#b-vs-overlay-loading .b-vs-logo-wrapper {
	width:100%;
	height:100%;
	position:relative;
}

#b-vs-overlay-loading .b-vs-logo {
	position:absolute;
	top:calc(50% - 60px);
	left:calc(50% - 48px);
}

.b-sv-placeholder {
	width:100%;
	height:auto;
	-ms-filter:Alpha(opacity=0);
	filter:Alpha(opacity=0);
	opacity:0;
	visibility:hidden;
}

.bo-sv-placeholder {
	width:100%;
	height:auto;
	max-width:630px;
	margin-top:0;
	margin-right:auto;
	margin-bottom:0;
	margin-left:auto;
	display:block;
}

/* b-visual */

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.visual-wrapper {
	position:relative;
	-webkit-user-select:none;
	-ms-user-select:none;
	-moz-user-select:none;
	user-select:none;
	overflow:hidden;
}

.visual-wrapper.default-wrapper {
	max-height:calc(100vh - 120px);
}

.visual-wrapper .default-visual-elements {
	position:absolute;
	left:0;
	bottom:0;
	width:100%;
	padding-top:clamp(30px, 10.5vw, 135px);
	padding-left:8vw;
	padding-bottom:5vw;
}

.visual-wrapper .text-wrapper {
	position:relative;
	z-index:2;
}

.visual-wrapper .layer-between-image-text {
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	z-index:1;
}

.visual-wrapper > .b-image {
	margin:0;
}

.visual-wrapper .visual-element {
	position:absolute;
	top:0;
	left:0;
	min-width:40px;
	min-height:30px;
	-webkit-user-select:none;
	-ms-user-select:none;
	-moz-user-select:none;
	user-select:none;
}

.visual-wrapper .visual-element.preview.inBo {
	position:static;
	border-style:none;
	background-color:transparent;
}

.visual-wrapper .visual-element > .wrp > .wrp > .brick {
	margin:0 !important;
}

.visual-wrapper .visual-element.inBo {
	border-style:solid;
	border-width:1px;
	border-color:#00FF80;
	background-color:#00FF80;
	background-color:rgba(0,255,128,0.1);
	overflow:hidden;
}

.visual-wrapper .visual-element:after {
	-ms-filter:Alpha(opacity=0);
	filter:Alpha(opacity=0);
	opacity:0;
	-o-transition:opacity 0.2s ease 0s;
	-webkit-transition:opacity 0.2s ease 0s;
	transition:opacity 0.2s ease 0s;
}

.visual-wrapper .visual-element.hovered:after {
	content:'';
	width:100%;
	height:100%;
	position:absolute;
	top:0;
	-ms-filter:Alpha(opacity=50);
	filter:Alpha(opacity=50);
	opacity:0.5;
	left:0;
	background-color:#00FF80;
}

.visual-wrapper .toolbar {
	padding-top:3px;
	padding-right:1.5px;
	padding-bottom:3px;
	padding-left:1.5px;
	background-color:transparent;
	position:absolute;
}

.visual-wrapper .button {
	background-color:#333;
	font-family:font/regular;
	font-size:12px;
	padding-top:1px;
	padding-right:5px;
	padding-bottom:2px;
	padding-left:5px;
	border-style:none;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	border-radius:3px;
	margin-top:0;
	margin-right:2px;
	margin-bottom:4px;
	margin-left:2px;
	color:#fff;
	outline-style:none;
	cursor:pointer;
	-ms-filter:Alpha(opacity=0);
	filter:Alpha(opacity=0);
	opacity:0;
	visibility:hidden;
}

.visual-wrapper .button.visible {
	-ms-filter:Alpha(opacity=60);
	filter:Alpha(opacity=60);
	opacity:0.6;
	visibility:visible;
}

.visual-wrapper .button.skew {
	-moz-border-radius:100%;
	-webkit-border-radius:100%;
	border-radius:100%;
	width:10px;
	height:10px;
	margin:0;
	-webkit-transform:translateX(-50%) translateY(-50%);
	-ms-transform:translateX(-50%) translateY(-50%);
	transform:translateX(-50%) translateY(-50%);
	background-color:#00FF80;
}
/* style: Hauptstil language: default / engineId: default / pseudo: hover */
.visual-wrapper .button:hover {
	-ms-filter:Alpha(opacity=100);
	filter:Alpha(opacity=100);
	opacity:1;
}

/* h-styles */

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.h-style-gradient-black-transparent {
	background-image:-o-linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
	background-image:-moz-linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
	background-image:-webkit-linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
	background-image:-ms-linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
	background-image:linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
}

.h-style-gradient-white-transparent {
	background-image:-o-linear-gradient(to top, rgba(255,255,255,0.8) 0%, transparent 100%);
	background-image:-moz-linear-gradient(to top, rgba(255,255,255,0.8) 0%, transparent 100%);
	background-image:-webkit-linear-gradient(to top, rgba(255,255,255,0.8) 0%, transparent 100%);
	background-image:-ms-linear-gradient(to top, rgba(255,255,255,0.8) 0%, transparent 100%);
	background-image:linear-gradient(to top, rgba(255,255,255,0.8) 0%, transparent 100%);
}

/* b-anchor-trigger */

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.waypoint-trigger {
	width:1px;
	height:1px;
}

.notification-trigger {
	position:fixed;
	right:clamp(22px, 5vw,50px);
	bottom:clamp(22px, 5vw,50px);
	width:clamp(100px, 8vw, 200px);
	height:clamp(100px, 8vw, 200px);
	-ms-filter:Alpha(opacity=100);
	filter:Alpha(opacity=100);
	opacity:1;
	visibility:visible;
	-webkit-transform:translate3d(0, 0, 0);
	-ms-transform:translate3d(0, 0, 0);
	transform:translate3d(0, 0, 0);
	-o-transition:all 0.3s ease-in 0s;
	-webkit-transition:all 0.3s ease-in 0s;
	transition:all 0.3s ease-in 0s;
	z-index:14;
	color:#FFFFFF;
	background-color:#C7B197;
	font-family:Calibri,Arial,sans-serif;
	font-weight:bold;
	font-style:normal;
	padding:clamp(10px,2vw,20px);
	-moz-border-radius:100%;
	-webkit-border-radius:100%;
	border-radius:100%;
	display:flex;
	align-items:center;
	justify-content:center;
	-moz-box-shadow:3px 3px 3px 0px rgba(0,0,0,0.15);
	-webkit-box-shadow:3px 3px 3px 0px rgba(0,0,0,0.15);
	box-shadow:3px 3px 3px 0px rgba(0,0,0,0.15);
}

.notification-trigger p {
	font-family:Calibri,Arial,sans-serif;
	font-weight:bold;
	font-style:normal;
	text-align:center;
	line-height:1.4vw;
	font-size:14px;
}

.notification-trigger.image-trigger {
	width:100%;
	height:auto;
	padding:0;
	max-width:clamp(70px, 8vw, 80px);
}

.notification-trigger.hidden {
	-webkit-transform:translate3d(100%, 0, 0);
	-ms-transform:translate3d(100%, 0, 0);
	transform:translate3d(100%, 0, 0);
	-ms-filter:Alpha(opacity=0);
	filter:Alpha(opacity=0);
	opacity:0;
	visibility:hidden;
}

/* b-link */

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.link-wrap {
	display:inline-block;
	margin-top:10px;
	margin-bottom:10px;
}

.link-wrap:first-child {
	margin-top:0;
}

.link {
	margin-top:10px;
	margin-bottom:10px;
	font-size:16px;
	outline-style:none;
	color:#DFB07C;
	display:inline-block;
	line-height:1.25;
}

.link:first-child {
	margin-top:0;
}

.link > .icon {
	margin-right:7px;
}

.link > .icon.icon-arrow-triangle-right {
	position:relative;
	top:1px;
}

.b-link-more {
	margin-left:25px;
}

.b-link-more .icon {
	margin-right:5px;
}

.m-newsletter .link {
	margin-top:20px;
	margin-bottom:0;
}

.m-newsletter .link:first-child {
	margin-top:0;
}

.m-newsletter .d-button-solid {
	color:#FFFFFF;
}

.m-newsletter .d-button-solid .link {
	color:#FFFFFF;
}

.m-newsletter .link-wrap .link {
	display:inline-block;
	margin-bottom:-4px;
}

.m-newsletter .link-wrap .link.mod-display-block {
	display:block;
}

.m-newsletter .d-button-solid.button-style-light .link {
	color:#FFFFFF;
}

.multicolumn.link {
	color:#464A52;
}

.content .d-button-solid:before {
	content:"";
}

.d-button-solid.button-style-light {
	color:#FFFFFF !important;
}

.d-button-solid.button-style-dark {
	background-color:#464A52;
	border-color:#464A52;
	color:#FFFFFF;
}

.d-button-solid.button-style-color {
	background-color:#89574E;
	border-color:#89574E;
	color:#FFFFFF;
}

.d-button-solid.text-align-left {
	text-align:left;
}

.d-button-solid.text-align-center {
	text-align:center;
}

.d-button-solid.text-align-right {
	text-align:right;
}

.d-underlined {
	color:#89574E;
	padding-bottom:5px;
	border-bottom-width:4px;
	border-bottom-style:solid;
	border-bottom-color:transparent;
	-o-transition:border 0.3s ease 0s;
	-webkit-transition:border 0.3s ease 0s;
	transition:border 0.3s ease 0s;
	font-family:Calibri,Arial,sans-serif;
	font-weight:bold;
	font-style:normal;
}

.d-underlined.active {
	border-bottom-color:#89574E;
	border-bottom-width:4px;
	border-bottom-style:solid;
}

.page-back-link {
	position:absolute;
	left:2vw;
	top:-10px;
	white-space:nowrap;
}

.section-backlink-dark .page-back-link {
	top:2vw;
	-ms-filter:Alpha(opacity=80);
	filter:Alpha(opacity=80);
	opacity:0.8;
}
/* style: Hauptstil language: default / engineId: default / pseudo: visited */
.m-newsletter:visited {
	color:#DFB07C;
}
/* style: Hauptstil language: default / engineId: default / pseudo: hover */
.link:hover {
	text-decoration:underline;
}

.multicolumn.link:hover {
	color:#89574E;
	text-decoration:none;
}

.link.link-Content:hover {
	text-decoration:none;
}

.d-button-solid.button-style-light:hover {
	color:#FFFFFF;
}

.d-button-solid.button-style-dark:hover {
	background-color:#89574E;
	border-color:#89574E;
}

.d-underlined:hover {
	border-bottom-color:#89574E;
}
/* style: Hauptstil language: default / engineId: default / pseudo: last-child */
.link-wrap:last-child {
	margin-bottom:0;
}

.link-wrap.fe:last-child {
	margin-bottom:10px;
}

.link:last-child {
	margin-bottom:0;
}

/* design */

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.page-body {
	font-family:Calibri,Arial,sans-serif;
	font-weight:normal;
	font-style:normal;
	font-size:15px;
	color:#464A52;
	-webkit-font-smoothing:antialiased;
	font-smooth:always;
	top:0;
	-o-transition:top 0.3s ease 0s;
	-webkit-transition:top 0.3s ease 0s;
	transition:top 0.3s ease 0s;
}

.page-body.noscroll {
	line-height:1;
}

.m-newsletter.page-body {
	line-height:null;
}

.page {
	height:100%;
	width:100%;
	position:relative;
	min-width:320px;
	-ms-filter:Alpha(opacity=100);
	filter:Alpha(opacity=100);
	opacity:1;
	-o-transition:opacity 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
	-webkit-transition:opacity 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
	transition:opacity 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
	overflow:hidden;
}

.page.loading {
	-ms-filter:Alpha(opacity=0);
	filter:Alpha(opacity=0);
	opacity:0;
}

.header {
	background-color:#FFFFFF;
	height:120px;
	z-index:11;
	width:100%;
	position:fixed;
	-o-transition:-o-transform 0.2s ease-out 0s;
	-webkit-transition:-webkit-transform 0.2s ease-out 0s;
	transition:transform 0.2s ease-out 0s;
}

.header.small-header {
	-webkit-transform:translate3d(0, -150px, 0);
	-ms-transform:translate3d(0, -150px, 0);
	transform:translate3d(0, -150px, 0);
}

.header .logo,
.header > img {
	position:absolute;
	margin:0;
	height:100%;
	width:auto;
	display:block;
	left:50%;
	top:50%;
	-o-transition:all 0.2s ease-in 0s;
	-webkit-transition:all 0.2s ease-in 0s;
	transition:all 0.2s ease-in 0s;
	-webkit-transform:translateX(-50%) translateY(-50%);
	-ms-transform:translateX(-50%) translateY(-50%);
	transform:translateX(-50%) translateY(-50%);
}

.header .logo img {
	height:100%;
	width:auto;
	-o-transition:all 0.2s ease-in 0s;
	-webkit-transition:all 0.2s ease-in 0s;
	transition:all 0.2s ease-in 0s;
}

.header .menu-toggler {
	display:block;
	position:relative;
	left:60px;
	top:50%;
	width:40px;
	height:25px;
	border-top-width:2px;
	border-top-style:solid;
	border-top-color:#464A52;
	border-bottom-width:2px;
	border-bottom-style:solid;
	border-bottom-color:#464A52;
	-webkit-transform:translateY(-50%);
	-ms-transform:translateY(-50%);
	transform:translateY(-50%);
}

.header .menu-toggler:after {
	content:'';
	position:absolute;
	top:10px;
	left:0;
	width:100%;
	height:2px;
	background-color:#464A52;
	z-index:1;
}

.header .navigation {
	max-width:40%;
	position:absolute;
	right:0;
	top:50%;
	-webkit-transform:translateY(-50%);
	-ms-transform:translateY(-50%);
	transform:translateY(-50%);
	text-align:right;
}

.header .navigation .link {
	font-size:1.15vw;
	text-decoration:none;
	line-height:50px;
	padding-top:0;
	padding-right:15px;
	padding-bottom:0;
	padding-left:15px;
	margin:0;
	font-family:Calibri,Arial,sans-serif;
	font-weight:bold;
	font-style:normal;
}

.header .navigation .link .icon {
	margin-left:15px;
	font-size:33px;
	top:0px;
	line-height:40px;
}

.header .navigation > .link {
	position:relative;
	z-index:2;
}

.header .navigation .counter {
	position:absolute;
	display:inline-block;
	right:0px;
	font-size:8px;
	top:5px;
	width:69px;
	text-align:center;
}

.page-documents .header .logo {
	top:calc(50% + 5px);
}

.page-brand .page {
	overflow:unset;
	margin-inline:auto;
}

.page-brand .content {
	padding-top:200px;
	width:auto;
	flex:1;
}

.content {
	width:100%;
	padding-top:120px;
	display:flex;
	flex-direction:column;
}

.content-article-wrap {
	display:flex;
	flex-direction:column;
}

.scroll-top {
	position:absolute;
	width:5.2vw;
	height:5.2vw;
	right:2.7vw;
	bottom:2.7vw;
}

.footer {
	background-color:#9A8675;
	position:relative;
}

.footer .scroll-top {
	top:2.7vw;
	bottom:auto;
}

.footer .title-h2 {
	font-family:Calibri,Arial,sans-serif;
	font-weight:bold;
	font-style:normal;
	font-size:3vw;
	color:#F1EDEA;
	margin-bottom:10px;
}

.footer .title-h2 + .title-h3 {
	margin-top:0;
}

.footer .title-h3 {
	font-family:Calibri-Light,Arial,sans-serif;
	font-weight:400;
	font-style:normal;
	font-size:3vw;
	color:#F8F5F4;
}

.footer .link {
	font-family:Calibri-Light,Arial,sans-serif;
	font-weight:400;
	font-style:normal;
	font-size:3vw;
	line-height:3.6vw;
	color:#F8F5F4;
}

.footer .footer-navigation-buttons {
	padding-top:3.55vw;
}

.footer .footer-navigation-buttons .link {
	display:block;
	margin-bottom:-3px;
}

.footer .footer-navigation-buttons .icon {
	font-size:5vw;
	position:relative;
	top:0.4vw;
	margin-right:10px;
}

.footer .footer-navigation-links .link {
	display:block;
	font-size:2vw;
	line-height:2.7vw;
}

.footer .text {
	font-size:2vw;
	line-height:2.7vw;
	color:#F8F5F4;
}

.cookie-notice {
	position:fixed;
	z-index:20;
	-o-transition:-o-transform 0.3s ease 0s;
	-webkit-transition:-webkit-transform 0.3s ease 0s;
	transition:transform 0.3s ease 0s;
	background-color:#CFDBDA;
	padding-top:30px;
	padding-right:20px;
	padding-bottom:25px;
	padding-left:20px;
}

.cookie-notice.cn-pos-top {
	top:0;
	-webkit-transform:translateY(-100%);
	-ms-transform:translateY(-100%);
	transform:translateY(-100%);
}

.cookie-notice.cn-pos-bottom {
	bottom:0;
	-webkit-transform:translateY(100%);
	-ms-transform:translateY(100%);
	transform:translateY(100%);
}

.cookie-notice.visible {
	-webkit-transform:translateY(0);
	-ms-transform:translateY(0);
	transform:translateY(0);
}

.cookie-notice .title-col {
	min-width:200px;
}

.cookie-notice .text-col {
	padding-top:0;
	padding-right:25px;
	padding-bottom:0;
	padding-left:25px;
}

.cookie-notice .title-h3 {
	font-size:3vw;
	line-height:3.6vw;
	font-family:Calibri-Light,Arial,sans-serif;
	font-weight:400;
	font-style:normal;
	color:#464A52;
}

.cookie-notice .pc3richtext p {
	font-size:2vw;
	line-height:2.7vw;
	font-family:Calibri-Light,Arial,sans-serif;
	font-weight:400;
	font-style:normal;
	height:30px;
	overflow:hidden;
	text-overflow:ellipsis;
	white-space:nowrap;
}

.cookie-notice .pc3richtext a {
	font-size:2vw;
	line-height:0;
	font-family:Calibri,Arial,sans-serif;
	font-weight:bold;
	font-style:normal;
	color:#464A52 !important;
	-o-transition:color 0.1s ease 0s;
	-webkit-transition:color 0.1s ease 0s;
	transition:color 0.1s ease 0s;
}

.cookie-notice .pc3richtext a:before {
	font-family:Touchway;
	font-weight:normal;
	font-style:normal;
	content:'\0028';
	margin-right:7px;
	position:relative;
	top:clamp(3px, 0.2vw, 7px);
	font-size:3vw;
}

.cookie-notice .link-rd23 {
	font-size:2vw;
	line-height:2.7vw;
	font-family:Calibri,Arial,sans-serif;
	font-weight:bold;
	font-style:normal;
	color:#464A52;
	-o-transition:color 0.1s ease 0s;
	-webkit-transition:color 0.1s ease 0s;
	transition:color 0.1s ease 0s;
	margin-top:-15px;
}

.cookie-notice .link-rd23 > .icon {
	line-height:0;
	position:relative;
	top:clamp(2px, 0.6vw, 8px);
	margin-right:7px;
}

.cookie-notice .link-rd23 > .icon:before {
	line-height:0;
	font-size:5vw;
}

.cookie-notice .cn-col {
	min-width:0;
	flex:0 1 auto;
}

.cookie-notice .cn-center-col {
	flex:1 1 0;
	max-width:2000px;
}

.cookie-notice .cn-right-col {
	padding-right:25px;
}

.cookie-notice .richtext-wrapper {
	position:relative;
	padding-top:6px;
}

.cookie-notice .richtext-wrapper.full-text {
	padding-right:0 !important;
}

.cookie-notice .richtext-wrapper.full-text .pc3richtext p {
	height:auto;
	overflow:visible;
	text-overflow:ellipsis;
	white-space:normal;
}

.cookie-notice .richtext-wrapper.full-text .richtext-toggler {
	display:none;
}

.cookie-notice .richtext-toggler {
	position:absolute;
	top:0;
	right:0px;
	padding-right:20px;
	padding-left:2px;
	background-color:#CFDBDA;
}

.cookie-notice-overlay {
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:19;
	-ms-filter:Alpha(opacity=0);
	filter:Alpha(opacity=0);
	opacity:0;
	visibility:hidden;
	background-color:#464A52;
	background-color:rgba(70,74,82,0.8);
	-o-transition:opacity 0.6s ease 0s, visibility 0.6s ease 0s;
	-webkit-transition:opacity 0.6s ease 0s, visibility 0.6s ease 0s;
	transition:opacity 0.6s ease 0s, visibility 0.6s ease 0s;
}

.cookie-notice-overlay.visible {
	-ms-filter:Alpha(opacity=100);
	filter:Alpha(opacity=100);
	opacity:1;
	visibility:visible;
}

.cookie-notice-overlay.cookie-notice-overlay-light {
	background-color:#464A52;
	background-color:rgba(70,74,82,0.1);
}

.ajax-spinner-wrapper.global {
	position:fixed;
	height:100%;
	-ms-filter:Alpha(opacity=0);
	filter:Alpha(opacity=0);
	opacity:0;
	visibility:hidden;
	background-color:#FFFFFF;
	background-color:rgba(255,255,255,0.9);
	-o-transition:opacity 0.3s ease 0s;
	-webkit-transition:opacity 0.3s ease 0s;
	transition:opacity 0.3s ease 0s;
	pointer-events:none;
}

.ajax-spinner-wrapper.global .visible {
	-ms-filter:Alpha(opacity=100);
	filter:Alpha(opacity=100);
	opacity:1;
	visibility:visible;
}

.ajax-spinner-wrapper.global .ajax-spinner {
	top:50%;
}

.ajax-spinner-positioner {
	position:absolute;
	top:0;
	left:0;
	bottom:0;
	right:0;
}

.ajax-spinner-wrapper {
	position:absolute;
	top:0px;
	left:0;
	bottom:0;
	right:0;
	background-color:#FFFFFF;
	z-index:9;
	animation:spinner-fadein 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
}

.ajax-spinner-wrapper.visible {
	-ms-filter:Alpha(opacity=100);
	filter:Alpha(opacity=100);
	opacity:1;
	visibility:visible;
}

.ajax-spinner-wrapper .ajax-spinner {
	position:relative;
	top:100px;
	left:50%;
	width:40px;
	height:40px;
	-ms-filter:Alpha(opacity=0);
	filter:Alpha(opacity=0);
	opacity:0;
	animation:spinner-fadein 6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1s forwards;
}

.ajax-spinner-wrapper .ajax-spinner .ajax-spinner-blade {
	position:absolute;
	left:44.5%;
	top:37%;
	width:10%;
	height:25%;
	-ms-filter:Alpha(opacity=25);
	filter:Alpha(opacity=25);
	opacity:0.25;
	background-color:#89574E;
	-moz-border-radius:50%/20%;
	-webkit-border-radius:50%/20%;
	border-radius:50%/20%;
	animation:ispinner-fade 1s linear infinite;
}

.load-more-ajax-spinner-wrapper {
	position:relative;
	min-height:100px;
}

.load-more-ajax-spinner-wrapper .ajax-spinner {
	top:40px;
	left:20px;
	-ms-filter:Alpha(opacity=100);
	filter:Alpha(opacity=100);
	opacity:1;
}

.load-more-ajax-spinner-wrapper > a {
	margin-top:0;
	margin-right:0;
	margin-bottom:25px;
	margin-left:30px;
}

.ajax-spinner-mini-wrapper {
	background-color:#FFFFFF;
	height:98%;
	left:1px;
	position:absolute;
	top:1px;
	width:30px;
}

.ajax-spinner-mini {
	border-width:3px;
	border-style:solid;
	border-color:#EDEDED;
	border-top-width:3px;
	border-top-style:solid;
	border-top-color:#464A52;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	border-radius:50%;
	width:20px;
	height:20px;
	position:absolute;
	top:7px;
	left:10px;
	animation:spin 1.5s linear infinite;
}

.ajax-spinner-mini.ajax-spinner-center {
	z-index:99;
	top:10%;
	left:50%;
	-webkit-transform:translateX(-50%);
	-ms-transform:translateX(-50%);
	transform:translateX(-50%);
}

.tooltip-wrapper {
	position:relative;
}

.tooltip-wrapper:hover .tooltip {
	-ms-filter:Alpha(opacity=100);
	filter:Alpha(opacity=100);
	opacity:1;
}

.tooltip-wrapper .tooltip {
	position:absolute;
	margin-top:6px;
	left:50%;
	-webkit-transform:translateX(-50%);
	-ms-transform:translateX(-50%);
	transform:translateX(-50%);
	display:inline-block;
	font-size:12px;
	font-family:Calibri,Arial,sans-serif;
	font-weight:bold;
	font-style:normal;
	padding-top:5px;
	padding-right:8px;
	padding-bottom:5px;
	padding-left:8px;
	white-space:nowrap;
	background-color:#89574E;
	color:#FFFFFF;
	pointer-events:none;
	-ms-filter:Alpha(opacity=0);
	filter:Alpha(opacity=0);
	opacity:0;
	-o-transition:opacity 0.2s ease 0s;
	-webkit-transition:opacity 0.2s ease 0s;
	transition:opacity 0.2s ease 0s;
}

.tooltip-wrapper .tooltip:before {
	content:'';
	position:absolute;
	top:-5px;
	left:50%;
	-webkit-transform:translateX(-50%);
	-ms-transform:translateX(-50%);
	transform:translateX(-50%);
	width:0;
	height:0;
	border-left-width:5px;
	border-left-style:solid;
	border-left-color:transparent;
	border-right-width:5px;
	border-right-style:solid;
	border-right-color:transparent;
	border-bottom-width:5px;
	border-bottom-style:solid;
	border-bottom-color:#89574E;
}

.highlight-on-hover {
	-o-transition:background 0.2s ease 0s;
	-webkit-transition:background 0.2s ease 0s;
	transition:background 0.2s ease 0s;
}

.colored-solid-bar {
	display:block;
	width:100%;
	height:5px;
	background-color:#89574E;
}

.colored-gradient-bar-image {
	display:block;
	width:100%;
	height:5px;
	background-image:url(../../../../docs/de/52752/100_RexRoyal_Farbverlauf.png?v=1.1);
	background-repeat:no-repeat;
	background-size:contain;
}

.colored-gradient-bar {
	display:block;
	width:100%;
	height:5px;
	background-color:#89574E;
	background-image:-o-linear-gradient(to right, rgba(137,87,78,1.0) 0%, rgba(223,176,124,1.0) 50%, rgba(137,87,78,1.0) 100%);
	background-image:-moz-linear-gradient(to right, rgba(137,87,78,1.0) 0%, rgba(223,176,124,1.0) 50%, rgba(137,87,78,1.0) 100%);
	background-image:-webkit-linear-gradient(to right, rgba(137,87,78,1.0) 0%, rgba(223,176,124,1.0) 50%, rgba(137,87,78,1.0) 100%);
	background-image:-ms-linear-gradient(to right, rgba(137,87,78,1.0) 0%, rgba(223,176,124,1.0) 50%, rgba(137,87,78,1.0) 100%);
	background-image:linear-gradient(to right, rgba(137,87,78,1.0) 0%, rgba(223,176,124,1.0) 50%, rgba(137,87,78,1.0) 100%);
}

.overlay-loader {
	background-color:#F8F5F4;
}

.calculate-header-hide-distance {
	position:absolute;
	visibility:hidden;
	-ms-filter:Alpha(opacity=0);
	filter:Alpha(opacity=0);
	opacity:0;
	width:0;
}
/* style: Hauptstil language: default / engineId: default / pseudo: visited */
.cookie-notice .pc3richtext a:visited {
	color:#464A52;
}
/* style: Hauptstil language: default / engineId: default / pseudo: hover */
.header .menu-toggler:hover {
	background-color:#FFFFFF;
}

.header .navigation .link:hover {
	color:#888888;
}

.footer .link:hover {
	text-decoration:none;
}

.cookie-notice .pc3richtext a:hover {
	color:#9BA1AD;
	text-decoration:none;
}

.cookie-notice .link-rd23:hover {
	color:#9BA1AD;
	text-decoration:none;
}

.highlight-on-hover:hover {
	background-color:#EDEDED;
}

/* b-slider */

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.b-slider {
	display:block;
}

.b-slider .swiper-slide {
	flex-shrink:0;
	flex:none;
}

.b-slider .swiper-button-prev,
.b-slider .swiper-button-next,
.b-accordeon .swiper-button-next,
.b-accordeon .swiper-button-prev {
	color:#464A52;
	top:35%;
	left:-50px;
	-o-transition:opacity 0.2s ease 0s;
	-webkit-transition:opacity 0.2s ease 0s;
	transition:opacity 0.2s ease 0s;
}

.b-slider .swiper-button-next,
.b-accordeon .swiper-button-next {
	left:auto;
	right:-50px;
}

.b-accordeon .swiper-button-next {
	top:42%;
}

.b-accordeon .swiper-button-prev {
	top:42%;
}

.b-slider .swiper-button-prev.swiper-button-disabled,
.b-slider .swiper-button-next.swiper-button-disabled {
	-ms-filter:Alpha(opacity=0);
	filter:Alpha(opacity=0);
	opacity:0;
}

.b-slider .swiper-button-prev:after,
.b-slider .swiper-button-next:after,
.b-accordeon .swiper-button-next:after,
.b-accordeon .swiper-button-prev:after {
	content:'4';
	font-family:Touchway;
	font-weight:normal;
	font-style:normal;
	font-size:clamp(45px, 7vw, 65px);
}

.b-slider .swiper-button-next:after,
.b-accordeon .swiper-button-next:after {
	content:'5';
}

.b-slider .swiper-scrollbar.swiper-scrollbar-horizontal {
	bottom:0;
	background-color:#E0E0E0;
}

.b-slider .swiper-scrollbar-drag {
	background-color:#7A7E84;
}

.b-slider.has-one-slide.visible-slides-3 .swiper-slide {
	max-width:33%;
}

.b-slider.has-one-slide.visible-slides-2 .swiper-slide {
	max-width:50%;
}

.b-slider .b-slider-space-none {
	width:0;
	height:0;
	-ms-filter:Alpha(opacity=0);
	filter:Alpha(opacity=0);
	opacity:0;
	visibility:hidden;
}

.b-slider .b-slider-space-fluid-30 {
	width:clamp(0px,1.8vw,18px);
	height:0;
	-ms-filter:Alpha(opacity=0);
	filter:Alpha(opacity=0);
	opacity:0;
	visibility:hidden;
}

.b-slider .b-slider-space-fluid-50 {
	width:clamp(0px, 2.7vw, 35px);
	height:0;
	-ms-filter:Alpha(opacity=0);
	filter:Alpha(opacity=0);
	opacity:0;
	visibility:hidden;
}

.b-slider .b-slider-space-fluid-100 {
	width:clamp(0px, 5.2vw, 70px);
	height:0;
	-ms-filter:Alpha(opacity=0);
	filter:Alpha(opacity=0);
	opacity:0;
	visibility:hidden;
}

.b-slider .b-slider-space-fluid-200 {
	width:clamp(0px, 10.4vw, 135px);
	height:0;
	-ms-filter:Alpha(opacity=0);
	filter:Alpha(opacity=0);
	opacity:0;
	visibility:hidden;
}

.pc3-ui-accordion-box.pc3-ui-accordion-box-collapsed .swiper-button-prev {
	-ms-filter:Alpha(opacity=0);
	filter:Alpha(opacity=0);
	opacity:0;
	visibility:hidden;
}

.pc3-ui-accordion-box.pc3-ui-accordion-box-collapsed .swiper-button-next {
	-ms-filter:Alpha(opacity=0);
	filter:Alpha(opacity=0);
	opacity:0;
	visibility:hidden;
}

.bo-slider {
	padding-top:0;
}

.bo-slider .bo-meta-label {
	margin-top:10px;
	margin-bottom:10px;
}

.m-slider .b-slider .multicolumn.b-mc-space {
	margin-left:0px;
	margin-right:0px;
}

.m-slider .b-slider .scroller {
	display:inline-block;
}

.b-s-item {
	position:relative;
}

.b-s-item > .section {
	height:100%;
}

.b-s-item > .multicolumn {
	height:100%;
}

.b-s-item .b-s-item-overlay {
	position:absolute;
	left:10%;
	top:10%;
}

.b-s-item .b-s-item-overlay h1 {
	margin-bottom:15px;
}

/* b-video */

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.b-video {
	width:100%;
	height:auto;
}

.b-video.d-cover {
	object-fit:cover;
}

.brick.b-video-frame-wrapper.d-cover {
	height:100%;
}

.brick.b-video-frame-wrapper.d-cover video {
	height:100%;
}

.brick.b-video-frame-wrapper video {
	position:static;
}

.b-video-preview {
	background-repeat:no-repeat;
	background-size:contain;
	background-color:#89574E;
	position:relative;
}

.b-video-preview .bo-meta-label {
	position:absolute;
	top:50%;
	left:50%;
	-webkit-transform:translate(-50%,-50%);
	-ms-transform:translate(-50%,-50%);
	transform:translate(-50%,-50%);
}

.video-object-position-20 {
	object-position:20%;
}

.video-object-position-25 {
	object-position:25%;
}

.video-object-position-30 {
	object-position:30%;
}

.video-object-position-50 {
	object-position:50%;
}

.video-object-position-65 {
	object-position:65%;
}

.video-object-position-75 {
	object-position:75%;
}

.video-object-position-80 {
	object-position:80%;
}

/* m-articles */

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.m-articles .structure-filter-wrapper {
	margin-bottom:100px;
	margin-top:0px;
}

.m-articles .multicolumn .col > .section {
	height:100%;
}

.m-articles .d-icon-link {
	font-family:Calibri,Arial,sans-serif;
	font-weight:bold;
	font-style:normal;
}

.m-articles .paragraph {
	margin-top:10px;
}

.m-articles .date {
	font-size:14px;
	margin-bottom:10px;
}

.m-articles .date .icon {
	font-size:22px;
	margin-right:4px;
}

/* m-datepicker */

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.datepicker {
	position:relative;
	z-index:30;
}

.datepicker .datepicker-popup {
	position:absolute;
	top:-1px;
	left:0;
	background-color:#FFFFFF;
	width:400px;
	-webkit-transform:scaleY(0);
	-ms-transform:scaleY(0);
	transform:scaleY(0);
	-webkit-transform-origin:top;
	-ms-transform-origin:top;
	transform-origin:top;
	-o-transition:all 0.3s ease 0s;
	-webkit-transition:all 0.3s ease 0s;
	transition:all 0.3s ease 0s;
	-ms-filter:Alpha(opacity=0);
	filter:Alpha(opacity=0);
	opacity:0;
	visibility:hidden;
	z-index:10;
}

.datepicker.visible .datepicker-popup {
	-ms-filter:Alpha(opacity=100);
	filter:Alpha(opacity=100);
	opacity:1;
	visibility:visible;
	-webkit-transform:scaleY(1);
	-ms-transform:scaleY(1);
	transform:scaleY(1);
}

.datepicker .datepicker-header {
	width:100%;
	padding-top:0;
	padding-right:12px;
	padding-bottom:0px;
	padding-left:12px;
	border-style:solid;
	border-top-width:0;
	border-right-width:1px;
	border-bottom-width:0;
	border-left-width:1px;
	border-color:#DADADA;
}

.datepicker .datepicker-body {
	border-style:solid;
	border-top-width:0;
	border-right-width:1px;
	border-bottom-width:1px;
	border-left-width:1px;
	border-color:#DADADA;
	padding-top:20px;
}

.datepicker table {
	width:100%;
}

.datepicker .title {
	text-align:center;
	font-family:Calibri,Arial,sans-serif;
	font-weight:bold;
	font-style:normal;
	color:#464A52;
	margin:0;
	position:relative;
	top:7px;
	width:200px;
}

.datepicker .navigation {
	font-family:Touchway;
	font-weight:normal;
	font-style:normal;
	font-size:42px;
	line-height:1;
}

.datepicker .navigation span {
	cursor:pointer;
}

.datepicker .navigation.year.backward span:before {
	content:'\0026';
}

.datepicker .navigation.month.backward {
	text-align:right;
}

.datepicker .navigation.month.backward span:before {
	content:'\0026';
}

.datepicker .navigation.year.forward {
	text-align:right;
}

.datepicker .navigation.year.forward span:after {
	content:'\0028';
}

.datepicker .navigation.month.forward {
	text-align:left;
}

.datepicker .navigation.month.forward span:after {
	content:'\0028';
}

.datepicker .day span {
	min-width:50px;
	min-height:50px;
	text-align:center;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	border-radius:3px;
	padding-top:15px;
	padding-right:15px;
	padding-bottom:15px;
	padding-left:15px;
	display:inline-block;
	cursor:pointer;
}

.datepicker .today {
	background-color:#EDEDED;
}

.datepicker .disabled {
	color:#DADADA;
}

.datepicker .day.selected span {
	background-color:#DFB07C;
	color:#FFFFFF;
}

.datepicker .empty span {
	cursor:default;
}
/* style: Hauptstil language: default / engineId: default / pseudo: hover */
.datepicker .day span:hover {
	background-color:#CCDCDA;
}

.datepicker .disabled span:hover {
	cursor:not-allowed;
}

.datepicker .empty span:hover {
	background-color:#FFFFFF;
}

/* m-factsheet */

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.factsheet .b-mc-space-line > .col {
	border-color:#EDEDED;
}

.factsheet .b-mc-space-line > .col.col-1 {
	padding-right:0;
}

.factsheet .b-mc-space-line > .col.col-1 .form-input-checkbox {
	white-space:nowrap;
}

.factsheet .col-1 .form-input-checkbox {
	margin-bottom:4px;
}

.factsheet .detail-selector {
	padding-top:3px;
	padding-right:40px;
	padding-bottom:3px;
	padding-left:5px;
	margin-left:-5px;
	position:relative;
	top:2px;
	display:block;
}

.factsheet .detail-selector.active {
	background-color:#DFB07C;
}

.factsheet .detail-selector.active label {
	color:#FFFFFF !important;
}

.factsheet .factsheet-part label {
	line-height:1;
}

.factsheet .factsheet-part img {
	width:auto;
	height:110px;
	margin-right:20px;
	margin-left:10px;
	float:left;
}

.factsheet .factsheet-part .description {
	margin-top:15px;
	margin-bottom:15px;
}

.factsheet .m-filter .form-input-checkbox input:checked + label .description em {
	font-family:Calibri,Arial,sans-serif;
	font-weight:normal;
}

.factsheet .mod-display-none {
	display:none !important;
}

/* m-profile */

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.mod-profile .toggle-content li {
	padding-top:10px;
	padding-right:0;
	padding-bottom:10px;
	padding-left:0;
	border-bottom-width:1px;
	border-bottom-style:solid;
	border-bottom-color:#DADADA;
	margin-left:50px;
}

.mod-profile-information th {
	text-align:left;
	width:150px;
	padding-top:2px;
	padding-right:5px;
	padding-bottom:2px;
	padding-left:5px;
}

.mod-profile-information td {
	padding-top:2px;
	padding-right:5px;
	padding-bottom:2px;
	padding-left:5px;
}

.mod-profile-information tr {
	background-color:#EDEDED;
}
/* style: Hauptstil language: default / engineId: default / pseudo: nth-child(even) */
.mod-profile-information tr:nth-child(even) {
	background-color:#FFFFFF;
}

/* bm-homevisual */

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.bm-homevisual.m-slider .slider {
	width:100%;
	height:700px;
}

.bm-homevisual.m-slider .overlay-wrap {
	position:relative;
}

.bm-homevisual.m-slider .text-overlay {
	position:absolute;
	top:0;
	left:0;
	height:100%;
	width:100%;
}

.bm-homevisual.m-slider .col-min {
	min-width:640px;
	max-width:640px;
}

.bm-homevisual.m-slider .d-icon-link {
	font-family:Calibri,Arial,sans-serif;
	font-weight:bold;
	font-style:normal;
}

.bm-homevisual.m-slider .title-h3 {
	margin-bottom:30px;
}

.bm-homevisual.m-slider .paragraph {
	margin-bottom:40px;
}

.bm-homevisual.m-slider .teaser {
	max-width:700px;
	margin-right:0;
}

.bm-homevisual.m-slider .link {
	text-decoration:none;
	color:#464A52;
}

.bm-homevisual.m-slider .reference {
	height:250px;
	margin-bottom:150px;
	max-width:700px;
}

.bm-homevisual.m-slider .reference .title-h3 {
	margin-top:0;
	margin-bottom:20px;
}

.bm-homevisual.m-slider .reference .text {
	-o-transition:color 0.3s ease 0s;
	-webkit-transition:color 0.3s ease 0s;
	transition:color 0.3s ease 0s;
	margin-top:0;
	margin-bottom:5px;
}

.bm-homevisual.m-slider .reference .d-box-light {
	padding:20px;
	position:relative;
}

.bm-homevisual.m-slider .reference .icon {
	font-size:60px;
	color:#EDEDED;
	position:absolute;
	bottom:0px;
	line-height:25px;
	right:0;
	-o-transition:color 0.3s ease 0s;
	-webkit-transition:color 0.3s ease 0s;
	transition:color 0.3s ease 0s;
}

.bm-homevisual.m-slider .reference:hover .icon {
	color:#89574E;
}

.bm-homevisual.m-slider .slider-dots {
	position:absolute;
	bottom:20px;
	right:15px;
	width:auto;
	margin:0;
}

.bm-homevisual .d-slider-references {
	height:615px;
}

.bm-homevisual-bo .title {
	margin-bottom:10px;
}

.bm-homevisual-bo .text.paragraph {
	margin-top:0;
}
/* style: Hauptstil language: default / engineId: default / pseudo: hover */
.bm-homevisual.m-slider .link:hover {
	color:#89574E;
}

/* bm-reference-overview */

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.bm-references-overview .title {
	margin-top:10px;
}

.bm-references-overview .b-table {
	margin-top:20px;
}

.bm-references-overview .d-button:first-child {
	margin-top:40px;
}

.bm-references-overview .d-slider-references {
	height:615px;
}

.bm-references-overview .d-icon-link {
	font-family:Calibri,Arial,sans-serif;
	font-weight:bold;
	font-style:normal;
}

.bm-references-overview-bo .title {
	margin-bottom:10px;
}

.bm-references-overview-bo .text.paragraph {
	margin-top:0px;
}

/* m-news */

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.box-background-white {
	background-color:#FFFFFF;
}

/* m-downloads */

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.alertify .ajs-dialog .ajs-footer {
	margin-top:25px;
}

.alertify .ajs-modal .ajs-footer {
	margin-left:0;
	margin-right:0;
}

.m-downloads {
	padding-top:160px;
}

.m-downloads .form-group.form-radio-list {
	margin-left:-25px;
	flex-wrap:wrap;
}

.m-downloads .form-input-radio.mod-flex-columns {
	margin-top:0;
	margin-right:25px;
	margin-bottom:25px;
	margin-left:25px;
}

.m-downloads .form-input-radio.mod-flex-columns:first-child {
	margin-left:25px;
}

.m-downloads #downloads-result-amount {
	margin-right:5px;
}

.m-downloads .no-result-message {
	padding-top:25px;
	padding-right:0;
	padding-bottom:25px;
	padding-left:0;
}

.m-downloads .results {
	margin-top:20px;
	margin-right:0;
	margin-bottom:50px;
	margin-left:0;
}

.m-downloads .results .m-archive {
	position:absolute;
	right:0px;
	top:-80px;
	z-index:1;
}

.m-downloads .results .b-listing-boxes {
	margin-left:-15px;
	margin-right:-15px;
}

.m-downloads .results .b-listing.b-listing-2 .b-entry {
	padding:0;
	overflow:hidden;
}

.m-downloads .results .b-listing.b-listing-horizontal .b-entry .b-e-header {
	margin-top:15px;
	margin-right:15px;
	margin-bottom:15px;
	margin-left:15px;
}

.m-downloads .results .b-listing.b-listing-horizontal .b-entry .b-e-content {
	margin-top:15px;
	margin-left:0px;
	margin-bottom:15px;
	display:block;
	flex:unset;
}

.m-downloads .results img {
	width:80px;
	height:auto;
}

.m-downloads .results .no-image-frame {
	overflow:hidden;
	border-width:1px;
	border-style:solid;
	border-color:#DADADA;
	width:80px;
	height:110px;
}

.m-downloads .results .no-image-frame .icon-dwg:before {
	position:relative;
	left:3px;
}

.m-downloads .load-more-ajax-spinner-wrapper > a {
	margin-right:15px;
	margin-bottom:15px;
}

.m-iframe-downloads .m-downloads {
	padding-top:40px;
}
/* style: Hauptstil language: default / engineId: default / pseudo: last-child */
.m-downloads .load-more-ajax-spinner-wrapper > a:last-child {
	margin-right:0;
}

/* m-search */

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.m-search .results .b-entry {
	padding:0;
	overflow:hidden;
}

.m-search .results .b-e-content {
	flex:unset !important;
	margin-top:15px;
	margin-left:0px;
	margin-bottom:15px;
	display:block;
}

.m-search .results img {
	width:80px;
	height:auto;
}

/* b-bricks */

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.brick {
	display:flex;
	flex-direction:column;
	width:100%;
	margin-top:20px;
	margin-bottom:20px;
}

.brick:first-child {
	margin-top:0;
}

.brick.col {
	margin-top:0;
	margin-bottom:0;
}

.fe.brick.fe-first-child {
	margin-top:0;
}

.m-newsletter .brick.brick-link {
	margin-top:20px;
}

.m-newsletter .list .brick {
	margin-top:20px;
}

.m-newsletter .list tr:first-child .brick {
	margin-top:0;
}

.m-newsletter .brick {
	margin-top:40px;
	margin-bottom:0;
	height:0;
	line-height:0;
	font-size:0;
	border:0;
	display:block;
}

.m-newsletter .brick:first-child {
	margin-top:0;
}

.brick.mod-reset-brick-margins {
	margin-top:0;
	margin-bottom:0;
}
/* style: Hauptstil language: default / engineId: default / pseudo: last-child */
.brick:last-child {
	margin-bottom:0;
}

.fe.brick:last-child {
	margin-bottom:20px;
}

/* image-zoom */

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.image-zoom-link .b-image {
	cursor:pointer;
}

.image-zoom-overlay {
	position:absolute;
	display:none;
	overflow:hidden;
	width:100%;
	height:100%;
	top:0;
	left:0;
	z-index:100;
}

.image-zoom-overlay.image-zoom-open {
	display:block;
}

.image-zoom-overlay img {
	max-width:none;
}

.image-zoom-bg {
	position:absolute;
	width:100%;
	height:100%;
	top:0;
	left:0;
	background-color:#EDEDED;
	-ms-filter:Alpha(opacity=0);
	filter:Alpha(opacity=0);
	opacity:0;
	-webkit-transform:translateZ(0);
	-ms-transform:translateZ(0);
	transform:translateZ(0);
	-o-transition:opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
	-webkit-transition:opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
	transition:opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.image-zoom-zoom-allowed .image-zoom-button-zoom {
	display:block;
}

.image-zoom-zoom-allowed .image-zoom-img {
	cursor:zoom-in;
}

.image-zoom-zoom-allowed .image-zoom-link {
	cursor:zoom-in;
}

.image-zoom-animated-in .image-zoom-bg {
	-o-transition:none;
	-webkit-transition:none;
	transition:none;
}

.image-zoom-animated-in .image-zoom-zoom-wrap {
	-o-transition:none;
	-webkit-transition:none;
	transition:none;
}

.container-transition {
	-o-transition:-o-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
	-webkit-transition:-webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
	transition:transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.image-zoom-scroll-wrap {
	position:absolute;
	overflow:hidden;
	width:100%;
	height:100%;
	top:0;
	left:0;
}

.image-zoom-container {
	position:absolute;
	top:0;
	right:0;
	bottom:0;
	left:0;
}

.image-zoom-item {
	position:absolute;
	overflow:hidden;
	top:0;
	right:0;
	bottom:0;
	left:0;
}

.image-zoom-zoom-wrap {
	position:absolute;
	width:100%;
	-webkit-transform-origin:left top;
	-ms-transform-origin:left top;
	transform-origin:left top;
	-o-transition:-o-transform 333ms cubic-bezier(0.4, 0, 0.22, 1), opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
	-webkit-transition:-webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1), opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
	transition:transform 333ms cubic-bezier(0.4, 0, 0.22, 1), opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.image-zoom-img {
	position:absolute;
	width:auto;
	height:auto;
	top:0;
	left:0;
	-ms-filter:Alpha(opacity=0);
	filter:Alpha(opacity=0);
	opacity:0;
	-o-transition:opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
	-webkit-transition:opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
	transition:opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.image-zoom-overview {
	position:absolute;
	display:none;
	overflow:hidden;
	top:0;
	right:0;
	bottom:0;
	left:0;
	margin:auto;
	margin-top:27px;
	margin-right:5%;
	margin-bottom:5%;
	margin-left:0%;
}

.image-zoom-overview .image-zoom-overlay-list > .grid-gutter-normal {
	margin:0px;
}

.image-zoom-overview .image-zoom-overlay-list > .grid-gutter-normal > .grid-item {
	padding-top:5%;
	padding-left:5%;
}

.image-zoom-overview .image-zoom-overlay-list > ul > .grid-item {
	overflow:hidden;
	cursor:pointer;
}

.image-zoom-overview .image-zoom-overlay-list > ul > .grid-item > div {
	position:relative;
	width:100%;
	height:1px;
	padding-bottom:100%;
	background-color:#EDEDED;
	background-repeat:no-repeat;
	background-position:center center;
	background-size:contain;
}

.image-zoom-ui-one-slide .image-zoom-button-overview:after {
	content:'\0080';
}

.image-zoom-ui-one-slide .image-zoom-counter {
	display:none !important;
}

.image-zoom-ui-one-slide .image-zoom-button-arrow-right {
	display:none !important;
}

.image-zoom-ui-one-slide .image-zoom-button-arrow-left {
	display:none !important;
}

.image-zoom-ui {
	visibility:visible;
	z-index:1550;
	-ms-filter:Alpha(opacity=100);
	filter:Alpha(opacity=100);
	opacity:1;
	-webkit-font-smoothing:auto;
}

.image-zoom-top-bar {
	position:absolute;
	width:100%;
	height:44px;
	top:5px;
	left:0;
	padding-top:0;
	padding-right:15px;
	padding-bottom:0;
	padding-left:15px;
	will-change:opacity;
	-o-transition:opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
	-webkit-transition:opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
	transition:opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
	z-index:10;
	display:flex;
	justify-content:space-between;
}

.image-zoom-counter {
	-webkit-user-select:none;
	-ms-user-select:none;
	-moz-user-select:none;
	user-select:none;
	font-family:Calibri,Arial,sans-serif;
	font-weight:normal;
	font-style:normal;
	line-height:43px;
}

.image-zoom-button {
	-moz-appearance:none;
	-webkit-appearance:none;
	appearance:none;
	-o-transition:opacity 0.2s ease 0s;
	-webkit-transition:opacity 0.2s ease 0s;
	transition:opacity 0.2s ease 0s;
	position:relative;
	display:block;
	overflow:visible;
	width:44px;
	height:44px;
	border-style:none;
	-moz-box-shadow:none;
	-webkit-box-shadow:none;
	box-shadow:none;
	-ms-filter:Alpha(opacity=75);
	filter:Alpha(opacity=75);
	opacity:0.75;
	font-family:Touchway;
	font-weight:normal;
	font-style:normal;
	cursor:pointer;
	color:#464A52;
}

.image-zoom-button:after {
	position:absolute;
	top:50%;
	left:50%;
	-webkit-transform:translate(-50%,-50%);
	-ms-transform:translate(-50%,-50%);
	transform:translate(-50%,-50%);
}

.image-zoom-button-close:after {
	content:'X';
}

.image-zoom-supports-fs .image-zoom-button-fs {
	display:block;
}

.image-zoom-button-fs {
	display:none;
}

.image-zoom-button-zoom {
	display:none;
	background-position:15px -88px;
}

.image-zoom-button-overview:after {
	content:'I';
}

.image-zoom-button-arrow-right:after {
	content:'(';
}

.image-zoom-button-arrow-left:after {
	content:'&';
}

.image-zoom-has-mouse .image-zoom-button-arrow-left {
	-webkit-backface-visibility:hidden;
	backface-visibility:hidden;
	will-change:opacity;
	visibility:visible;
	-o-transition:opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
	-webkit-transition:opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
	transition:opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.image-zoom-ui-hidden .image-zoom-button-arrow-right {
	-ms-filter:Alpha(opacity=1);
	filter:Alpha(opacity=1);
	opacity:0.01;
}

.image-zoom-ui-hidden .image-zoom-button-arrow-left {
	-ms-filter:Alpha(opacity=1);
	filter:Alpha(opacity=1);
	opacity:0.01;
}

.grid {
	font-size:0px;
	margin:0px;
	padding:0px;
}

.grid-gutter-normal {
	margin-top:-30px;
	margin-left:-30px;
}

.grid-item {
	vertical-align:top;
	position:relative;
	display:inline-block;
}

.grid-columns-3 > .grid-item {
	width:33.33333%;
	padding-top:30px;
	padding-left:30px;
}

.image-zoom-caption {
	position:absolute;
	width:100%;
	min-height:44px;
	bottom:0;
	left:0;
	display:none;
	-ms-filter:Alpha(opacity=0);
	filter:Alpha(opacity=0);
	opacity:0;
	will-change:opacity;
	-o-transition:opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
	-webkit-transition:opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
	transition:opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
	color:#464A52;
}

.image-zoom-caption .text {
	color:#464A52;
	line-height:1.4;
	font-size:16px;
}

.image-zoom-caption-center {
	max-width:80%;
	margin-top:0;
	margin-right:auto;
	margin-bottom:0;
	margin-left:auto;
	padding:10px;
	text-align:center;
}

.image-zoom-zoomed-in .image-zoom-img {
	cursor:grab;
}

.image-zoom-zoomed-in .image-zoom-button-zoom {
	background-position:-85px -88px;
}
/* style: Hauptstil language: default / engineId: default / pseudo: hover */
.image-zoom-button:hover {
	-ms-filter:Alpha(opacity=100);
	filter:Alpha(opacity=100);
	opacity:1;
}

/* alertify */

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.pc3body .alertify-notifier .ajs-message {
	font-size:2vw;
	color:#FFFFFF;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	border-radius:4px;
	background-color:#DB9B41;
	padding-top:clamp(15px, 5vw, 30px) !important;
	padding-right:clamp(15px, 5vw, 30px) !important;
	padding-bottom:clamp15px, 5vw, 30px) !important;
	padding-left:clamp(15px, 5vw, 30px) !important;
}

.pc3body .alertify-notifier .ajs-message.ajs-success {
	background-color:#DFB07C;
	padding-top:15px;
	padding-right:15px;
	padding-bottom:30px;
	padding-left:15px;
}

.pc3body .alertify-notifier a {
	display:inline-block;
	font-size:clamp(18px, 2vw, 26px);
	margin-top:0;
	line-height:inherit !important;
	color:#F8F5F4;
	margin-bottom:10px;
	outline-style:none;
}

.alertify .ajs-dialog {
	padding-bottom:12px;
}

.alertify .ajs-dialog .ajs-header {
	font-size:26px;
	font-family:Calibri,Arial,sans-serif;
	font-weight:normal;
	font-style:normal;
	margin-bottom:20px;
	color:#89574E;
}

.alertify .ajs-dialog .ajs-body .ajs-content {
	padding:0;
	font-family:Calibri,Arial,sans-serif;
	font-weight:normal;
	font-style:normal;
	margin-top:10px;
	margin-bottom:10px;
}

.alertify .ajs-dialog .ajs-commands {
	display:none;
}

.alertify .ajs-dialog .ajs-footer {
	padding-bottom:12px;
}

.alertify .ajs-dialog .ajs-footer .ajs-buttons.ajs-primary .ajs-ok {
	cursor:pointer;
	display:inline-block;
	color:#FFFFFF;
	background-color:#DFB07C;
	border-style:solid;
	border-width:1px;
	border-color:#DFB07C;
	padding-top:0;
	padding-right:30px;
	padding-bottom:3px;
	padding-left:30px;
	line-height:1.95;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	border-radius:3px;
	font-family:Calibri,Arial,sans-serif;
	font-weight:bold;
	font-style:normal;
	font-size:15px;
	text-align:center;
	-o-transition:opacity 0.2s ease 0s, color 0.2s ease 0s, background-color 0.2s ease 0s, border 0.2s ease 0s;
	-webkit-transition:opacity 0.2s ease 0s, color 0.2s ease 0s, background-color 0.2s ease 0s, border 0.2s ease 0s;
	transition:opacity 0.2s ease 0s, color 0.2s ease 0s, background-color 0.2s ease 0s, border 0.2s ease 0s;
}

.alertify .ajs-dialog .ajs-footer .ajs-buttons.ajs-primary .ajs-cancel {
	color:#464A52;
	background-color:#FFFFFF;
	cursor:pointer;
	display:inline-block;
	border-style:solid;
	border-width:1px;
	border-color:#DFB07C;
	padding-top:0;
	padding-right:30px;
	padding-bottom:3px;
	padding-left:30px;
	line-height:1.95;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	border-radius:3px;
	font-family:Calibri,Arial,sans-serif;
	font-weight:bold;
	font-style:normal;
	font-size:15px;
	text-align:center;
	-o-transition:opacity 0.2s ease 0s, color 0.2s ease 0s, background-color 0.2s ease 0s, border 0.2s ease 0s;
	-webkit-transition:opacity 0.2s ease 0s, color 0.2s ease 0s, background-color 0.2s ease 0s, border 0.2s ease 0s;
	transition:opacity 0.2s ease 0s, color 0.2s ease 0s, background-color 0.2s ease 0s, border 0.2s ease 0s;
}
/* style: Hauptstil language: default / engineId: default / pseudo: visited */
.pc3body .alertify-notifier a:visited {
	color:#DFB07C;
}
/* style: Hauptstil language: default / engineId: default / pseudo: hover */
.pc3body .alertify-notifier a:hover {
	color:inherit;
	text-decoration:underline;
}

.alertify .ajs-dialog .ajs-footer .ajs-buttons.ajs-primary .ajs-ok:hover {
	text-decoration:none;
	border-color:#464A52;
	background-color:#464A52;
}

.alertify .ajs-dialog .ajs-footer .ajs-buttons.ajs-primary .ajs-cancel:hover {
	background-color:#DFB07C;
	color:#FFFFFF;
	text-decoration:none;
}
/* style: Hauptstil language: default / engineId: default / pseudo: disabled */
.alertify .ajs-dialog .ajs-footer .ajs-buttons.ajs-primary .ajs-ok:disabled, .alertify .ajs-dialog .ajs-footer .ajs-buttons.ajs-primary .ajs-ok:disabled:hover {
	-ms-filter:Alpha(opacity=40);
	filter:Alpha(opacity=40);
	opacity:0.4;
}

.alertify .ajs-dialog .ajs-footer .ajs-buttons.ajs-primary .ajs-cancel:disabled, .alertify .ajs-dialog .ajs-footer .ajs-buttons.ajs-primary .ajs-cancel:disabled:hover {
	-ms-filter:Alpha(opacity=40);
	filter:Alpha(opacity=40);
	opacity:0.4;
}
/* style: Hauptstil language: default / engineId: default / pseudo: last-child */
.pc3body .alertify-notifier a:last-child {
	margin-bottom:0;
}

.alertify .ajs-dialog .ajs-body .ajs-content:last-child {
	margin-bottom:0;
}

/* b-locations */

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.b-locations {
	background-color:#FFFFFF;
	padding-top:50px;
	padding-right:0;
	padding-bottom:50px;
	padding-left:0;
	min-height:460px;
}

.b-locations.background-image {
	background-image:url(../../../../docs/de/50497/languageselector-world.png?v=1.0);
	background-position:66% 55px;
	background-size:800px auto;
	background-repeat:no-repeat;
	display:block;
	white-space:nowrap;
	margin-bottom:40px;
}

.b-locations .link {
	color:#464A52;
}

.b-locations .link.active {
	color:#DA2520;
}

.b-locations .active > .link {
	color:#DA2520;
}

.b-locations.active {
	pointer-events:all;
	-ms-filter:Alpha(opacity=100);
	filter:Alpha(opacity=100);
	opacity:1;
	visibility:visible;
	-webkit-transform:translateY(0);
	-ms-transform:translateY(0);
	transform:translateY(0);
	-o-transition:opacity 0.3s ease 0s, visibility 0.3s ease 0s, -o-transform 0.3s ease 0s;
	-webkit-transition:opacity 0.3s ease 0s, visibility 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
	transition:opacity 0.3s ease 0s, visibility 0.3s ease 0s, transform 0.3s ease 0s;
}

.b-locations.active > .section {
	-webkit-transform:translateY(0);
	-ms-transform:translateY(0);
	transform:translateY(0);
	-ms-filter:Alpha(opacity=100);
	filter:Alpha(opacity=100);
	opacity:1;
	-o-transition:-o-transform 0.4s ease 0.1s, opacity 0.4s ease 0.1s;
	-webkit-transition:-webkit-transform 0.4s ease 0.1s, opacity 0.4s ease 0.1s;
	transition:transform 0.4s ease 0.1s, opacity 0.4s ease 0.1s;
}

.b-locations > .section {
	position:relative;
	padding-bottom:20px;
}

.b-locations .backlink {
	height:100%;
	background-color:#EDEDED;
	width:25px;
	position:absolute;
	max-height:200px;
	top:0;
	-ms-filter:Alpha(opacity=100);
	filter:Alpha(opacity=100);
	opacity:1;
	visibility:visible;
	left:0;
	z-index:10;
	display:none;
}

.b-locations .backlink.disabled {
	-ms-filter:Alpha(opacity=0);
	filter:Alpha(opacity=0);
	opacity:0;
	visibility:hidden;
}

.b-locations .backlink .icon {
	font-size:49px;
	color:#FFFFFF;
	position:absolute;
	margin-left:-1px;
	top:50%;
	left:50%;
	-webkit-transform:translateX(-50%) translateY(-50%);
	-ms-transform:translateX(-50%) translateY(-50%);
	transform:translateX(-50%) translateY(-50%);
}

.b-locations .regions {
	position:relative;
	display:inline-block;
	vertical-align:top;
	width:230px;
	top:0;
	-webkit-transform:translateX(0);
	-ms-transform:translateX(0);
	transform:translateX(0);
	-o-transition:all 0.3s ease 0s;
	-webkit-transition:all 0.3s ease 0s;
	transition:all 0.3s ease 0s;
}

.b-locations .regions .d-small-listing-border {
	margin-bottom:0;
	margin-top:0;
}

.b-locations .regions .d-small-listing-border .col {
	margin:0;
}

.b-locations .regions .d-small-listing-border a {
	width:200px;
	white-space:normal;
}

.b-locations .countries {
	width:auto;
	position:relative;
	display:inline-block;
	vertical-align:top;
	top:0px;
	padding-left:40px;
	-webkit-transform:translateX(0);
	-ms-transform:translateX(0);
	transform:translateX(0);
	-o-transition:-o-transform 0.3s ease 0s;
	-webkit-transition:-webkit-transform 0.3s ease 0s;
	transition:transform 0.3s ease 0s;
}

.b-locations .countries .country {
	-ms-filter:Alpha(opacity=0);
	filter:Alpha(opacity=0);
	opacity:0;
	visibility:hidden;
	-webkit-transform:translateX(-20px);
	-ms-transform:translateX(-20px);
	transform:translateX(-20px);
	-o-transition:all 0.15s ease 0s;
	-webkit-transition:all 0.15s ease 0s;
	transition:all 0.15s ease 0s;
	padding-right:40px;
}

.b-locations .countries .country.active {
	-ms-filter:Alpha(opacity=100);
	filter:Alpha(opacity=100);
	opacity:1;
	visibility:visible;
	-webkit-transform:translateX(0px);
	-ms-transform:translateX(0px);
	transform:translateX(0px);
}

.b-locations .countries .country .d-button-solid {
	position:relative;
	height:34px;
	top:5px;
	margin-top:0;
	margin-right:0;
	margin-bottom:0;
	margin-left:5px;
	font-size:16px;
	padding-top:0;
	padding-right:9px;
	padding-bottom:0;
	padding-left:11px;
	line-height:34px;
	border-style:none;
	-ms-filter:Alpha(opacity=0);
	filter:Alpha(opacity=0);
	opacity:0;
	-o-transition:opacity 0.3s ease 0s;
	-webkit-transition:opacity 0.3s ease 0s;
	transition:opacity 0.3s ease 0s;
	background-color:#FFFFFF;
}

.b-locations .countries .country .d-button-solid.active {
	background-color:#89574E;
	color:#FFFFFF;
}

.b-locations .countries .country .d-small-listing-border {
	margin-bottom:0;
	margin-top:0;
}

.b-locations .countries .country .d-small-listing-border .col {
	margin:0;
}

.b-locations .countries .country .d-small-listing-border:hover .d-button-solid {
	-ms-filter:Alpha(opacity=100);
	filter:Alpha(opacity=100);
	opacity:1;
}

.b-locations .countries .country .d-small-listing-border.active .d-button-solid {
	-ms-filter:Alpha(opacity=100);
	filter:Alpha(opacity=100);
	opacity:1;
}

.b-locations .countries .country a {
	padding-right:50px;
	white-space:normal;
	width:200px;
}

.b-locations .addresses {
	position:relative;
	display:inline-block;
	vertical-align:top;
	top:0px;
	-webkit-transform:translateX(0);
	-ms-transform:translateX(0);
	transform:translateX(0);
	-o-transition:-o-transform 0.3s ease 0s;
	-webkit-transition:-webkit-transform 0.3s ease 0s;
	transition:transform 0.3s ease 0s;
}

.b-locations .addresses .address {
	-ms-filter:Alpha(opacity=0);
	filter:Alpha(opacity=0);
	opacity:0;
	visibility:hidden;
	-webkit-transform:translateX(-20px);
	-ms-transform:translateX(-20px);
	transform:translateX(-20px);
	-o-transition:all 0.15s ease 0s;
	-webkit-transition:all 0.15s ease 0s;
	transition:all 0.15s ease 0s;
	max-width:650px;
}

.b-locations .addresses .address.active {
	-ms-filter:Alpha(opacity=100);
	filter:Alpha(opacity=100);
	opacity:1;
	visibility:visible;
	-webkit-transform:translateX(0);
	-ms-transform:translateX(0);
	transform:translateX(0);
}

.b-locations .addresses .address .entry {
	float:left;
	width:300px;
	height:430px;
	margin-top:0;
	margin-right:10px;
	margin-bottom:10px;
	margin-left:0;
	background-color:#FFFFFF;
}

.b-locations .addresses .address .entry .b-image {
	width:100%;
	height:140px;
}

.b-locations .addresses .address .entry .inner .text {
	white-space:normal;
}

.b-locations .addresses .address .entry .text {
	margin-top:0;
}
/* style: Hauptstil language: default / engineId: default / pseudo: hover */
.b-locations .link:hover {
	text-decoration:none;
	color:#89574E;
}

.b-locations .backlink:hover {
	background-color:#89574E;
}

.b-locations .countries .country .d-button-solid:hover {
	background-color:#464A52;
	color:#FFFFFF;
}
/* style: Hauptstil language: default / engineId: default / pseudo: last-child */
.b-locations .addresses .address:last-child {
	margin-right:0px;
}

/* b-richtext */

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.bo-richtext-input {
	line-height:1;
}

.pc3richtext a {
	margin-top:0;
	margin-bottom:0;
	display:inline;
	font-size:16px;
	outline-style:none;
	color:#DFB07C;
	line-height:1.25;
}

.richtext ul {
	list-style-type:disc;
	margin-left:40px;
}

.richtext a {
	margin-top:0;
	margin-bottom:0;
	color:#89574E;
	display:inline;
}
/* style: Hauptstil language: default / engineId: default / pseudo: link */
.pc3richtext a:link {
	color:#89574E;
}
/* style: Hauptstil language: default / engineId: default / pseudo: visited */
.pc3richtext a:visited {
	color:#89574E;
}
/* style: Hauptstil language: default / engineId: default / pseudo: hover */
.pc3richtext a:hover {
	text-decoration:underline;
}

.richtext a:hover {
	text-decoration:underline;
}
/* style: Hauptstil language: default / engineId: default / pseudo: last-child */
.pc3richtext a:last-child {
	margin-bottom:0;
}

/* b-table */

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.b-table-wrap {
	overflow-x:auto;
	overflow-y:hidden;
}

.b-table {
	width:100%;
	border-collapse:collapse;
	text-align:left;
	table-layout:fixed;
}

.b-table thead th {
	font-weight:bold;
	padding-top:0;
	padding-right:25px;
	padding-bottom:25px;
	padding-left:25px;
	border-bottom-style:solid;
	border-bottom-width:1px;
	border-bottom-color:#DADADA;
}

.b-table tr td {
	width:10%;
	vertical-align:top;
	padding-top:8px;
	padding-right:25px;
	padding-bottom:8px;
	padding-left:25px;
	border-bottom-style:solid;
	border-bottom-width:1px;
	border-bottom-color:#DADADA;
}

.b-table tr:last-child td {
	border-bottom-width:0;
}

.b-table tfoot td {
	padding-top:10px;
	padding-right:25px;
	padding-bottom:0;
	padding-left:25px;
	border-top-style:solid;
	border-top-width:1px;
	border-top-color:#DADADA;
}

.b-table tr.mod-nopadding td {
	padding:0;
}

.b-table.mod-small-list th {
	padding-top:5px;
	padding-right:5px;
	padding-bottom:5px;
	padding-left:5px;
	white-space:nowrap;
}

.b-table.mod-small-list td {
	padding-top:5px;
	padding-right:5px;
	padding-bottom:5px;
	padding-left:5px;
	white-space:nowrap;
}

.b-table.mod-small-list .title {
	text-overflow:ellipsis;
	overflow:hidden;
}

.b-table.mod-small-list .text {
	text-overflow:ellipsis;
	overflow:hidden;
}

.bo-table-wrap .b-table {
	table-layout:auto;
}

.table-subtitle-row .title {
	text-align:center;
}

.tc-left {
	text-align:left;
}

.tc-right {
	text-align:right;
}

.tc-center {
	text-align:center;
}

/* forms */

/* style: Hauptstil language: default / engineId: default / pseudo: default */
input {
	font-family:Calibri,Arial,sans-serif;
	font-weight:normal;
	font-style:normal;
}

.form-fieldset {
	border-style:none;
	padding:0;
	margin-left:0;
	margin-right:0;
	padding-top:20px;
	border-width:0;
	border-top-width:1px;
	border-top-style:solid;
	border-top-color:#EDEDED;
	margin-top:20px;
}

.form-fieldset:first-child {
	border-top-width:0px;
}

.form-fieldset.no-border {
	border-top-width:0px;
}

.form-group,
.form-group-50,
.form-group-30-70 {
	display:flex;
	margin-top:20px;
	margin-bottom:20px;
}

.form-group-50 {
	align-items:flex-end;
}

.form-group:first-child,
.form-group-50:first-child,
.form-group-30-70:first-child {
	margin-top:0;
}

.form-group + .note {
	padding-left:200px;
	margin-top:-10px;
}

.form-group-50 > * {
	flex:1 0 50%;
	margin:0;
}

.form-group-50 > *:first-child {
	max-width:50%;
	padding-right:20px;
}

.form-group-30-70 > * {
	flex:1 0 50%;
	margin:0;
}

.form-group-30-70 > *:first-child {
	max-width:30%;
	padding-right:20px;
}

.text.paragraph.form-label {
	min-width:200px;
	max-width:200px;
	margin-bottom:0;
	line-height:20px;
	padding-top:9px;
}

.form-error .form-label {
	color:#FF3333;
}

.form-error .form-input {
	border-color:#FF3333;
}

.form-error .form-message {
	border-color:#FF3333;
}

.form-error .form-dropdown {
	border-color:#FF3333;
}

.form-error .form-checkbox {
	border-color:#FF3333;
}

.form-error .file-input-wrapper {
	border-color:#FF3333;
}

.form-required .form-label:after {
	content:'*';
	margin-left:5px;
}

.form-input-wrapper {
	flex:1 1 auto;
}

.form-input-wrapper.icon {
	position:relative;
}

.form-input-wrapper.icon:before {
	font-size:26px;
	position:absolute;
	line-height:40px;
	top:50%;
	right:0;
	padding-top:0;
	padding-right:10px;
	padding-bottom:0;
	padding-left:10px;
	pointer-events:none;
	-webkit-transform:translateY(-50%);
	-ms-transform:translateY(-50%);
	transform:translateY(-50%);
	color:#464A52;
}

.form-input-wrapper.icon .form-input {
	padding-right:34px;
}

.file-input-wrapper {
	position:relative;
	cursor:pointer;
	width:100%;
	outline-style:none;
	padding-top:8px;
	padding-right:10px;
	padding-bottom:7px;
	padding-left:10px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	border-radius:4px;
	font-size:15px;
	font-family:Calibri,Arial,sans-serif;
	font-weight:normal;
	font-style:normal;
	border-width:1px;
	border-style:solid;
	border-color:#DADADA;
}

.file-input-wrapper .form-input-file {
	position:absolute;
	right:0;
	top:0;
	z-index:3;
	width:100%;
	height:100%;
	-ms-filter:Alpha(opacity=0);
	filter:Alpha(opacity=0);
	opacity:0;
	cursor:pointer;
}

.file-input-wrapper .icon {
	position:absolute;
	right:10px;
	top:50%;
	-webkit-transform:translateY(-50%);
	-ms-transform:translateY(-50%);
	transform:translateY(-50%);
	z-index:1;
}

.file-input-wrapper .label-text {
	max-width:90%;
	white-space:nowrap;
	overflow:hidden;
	text-overflow:ellipsis;
}

.file-input-wrapper .label-text.label-text-top {
	position:absolute;
	width:100%;
	top:0;
	line-height:35px;
	background-color:#FFFFFF;
}

.g-recaptcha {
	max-width:100%;
}

.g-recaptcha > div {
	width:auto !important;
	max-width:100%;
}

.g-recaptcha iframe {
	max-width:100%;
}

.g-recaptcha .rc-anchor-normal {
	width:auto;
}

.form-dropdown {
	width:100%;
	-moz-appearance:none;
	-webkit-appearance:none;
	appearance:none;
	cursor:pointer;
	background-color:#FFFFFF;
}

.form-dropdown.selected {
	color:#DA2520;
	font-family:Calibri,Arial,sans-serif;
	font-weight:bold;
	font-style:normal;
}

.form-input {
	width:100%;
	outline-style:none;
	padding-top:8px;
	padding-right:10px;
	padding-bottom:7px;
	padding-left:10px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	border-radius:4px;
	font-size:15px;
	font-family:Calibri,Arial,sans-serif;
	font-weight:normal;
	font-style:normal;
	border-width:1px;
	border-style:solid;
	border-color:#DADADA;
}

textarea.form-input {
	height:120px;
}

.form-checkbox-list {
	flex:4 0 auto;
	padding-top:7px;
	padding-right:0;
	padding-bottom:7px;
	padding-left:0;
}

.form-input-checkbox {
	margin-bottom:10px;
	cursor:pointer;
	display:flex;
}

.form-input-checkbox input {
	width:20px;
	height:20px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	border-radius:4px;
	border-style:solid;
	border-width:1px;
	border-color:#DADADA;
	background-color:#FFFFFF;
	-moz-appearance:none;
	-webkit-appearance:none;
	appearance:none;
	outline-style:none;
	cursor:pointer;
	position:relative;
	margin-top:0;
	margin-right:10px;
	margin-bottom:0;
	margin-left:0;
	vertical-align:middle;
	flex-shrink:0;
}

.form-input-checkbox input:disabled + label {
	cursor:default;
}

.form-input-checkbox:hover input:after {
	-ms-filter:Alpha(opacity=30);
	filter:Alpha(opacity=30);
	opacity:0.3;
}

.form-input-checkbox input:after {
	-ms-filter:Alpha(opacity=0);
	filter:Alpha(opacity=0);
	opacity:0;
	position:absolute;
	content:'C';
	font-family:Touchway;
	font-weight:normal;
	font-style:normal;
	color:#89574E;
	font-size:22px;
	top:50%;
	left:50%;
	-webkit-transform:translateX(-50%) translateY(-50%);
	-ms-transform:translateX(-50%) translateY(-50%);
	transform:translateX(-50%) translateY(-50%);
}

.form-input-checkbox .text {
	line-height:20px;
	vertical-align:middle;
	cursor:pointer;
	margin-top:0;
}

.form-input-checkbox .text.paragraph {
	line-height:20px;
	vertical-align:middle;
	cursor:pointer;
	margin-top:0;
}

.form-input-checkbox .text.paragraph.form-label {
	padding-top:0;
}

.form-radio-list {
	flex:4 0 auto;
	padding-top:7px;
	padding-right:0;
	padding-bottom:7px;
	padding-left:0;
}

.form-input-radio {
	margin-bottom:10px;
	cursor:pointer;
	display:flex;
}

.form-input-radio input {
	width:16px;
	height:16px;
	-moz-border-radius:20px;
	-webkit-border-radius:20px;
	border-radius:20px;
	border-style:solid;
	border-width:1px;
	border-color:#B4B4B4;
	background-color:#FFFFFF;
	-moz-appearance:none;
	-webkit-appearance:none;
	appearance:none;
	outline-style:none;
	cursor:pointer;
	position:relative;
	margin-top:0;
	margin-right:10px;
	margin-bottom:0;
	margin-left:0;
	vertical-align:middle;
	flex-shrink:0;
}

.form-input-radio input:disabled + label {
	cursor:default;
}

.form-input-radio:hover input:after {
	-ms-filter:Alpha(opacity=30);
	filter:Alpha(opacity=30);
	opacity:0.3;
}

.form-input-radio input:after {
	content:'';
	-ms-filter:Alpha(opacity=0);
	filter:Alpha(opacity=0);
	opacity:0;
	position:absolute;
	background-color:#DA2520;
	width:8px;
	height:8px;
	-moz-border-radius:12px;
	-webkit-border-radius:12px;
	border-radius:12px;
	top:50%;
	left:50%;
	-webkit-transform:translateX(-50%) translateY(-50%);
	-ms-transform:translateX(-50%) translateY(-50%);
	transform:translateX(-50%) translateY(-50%);
}

.form-input-radio .text {
	line-height:18px;
	vertical-align:middle;
	cursor:pointer;
	margin-top:0;
	margin-bottom:0;
}

.form-input-radio .text.paragraph {
	line-height:18px;
	vertical-align:middle;
	cursor:pointer;
	margin-top:0;
	margin-bottom:0;
}

.form-input-button-wrapper {
	width:100%;
}

.form-input-button-wrapper > * {
	margin-left:10px;
}

.form-input-search {
	width:100%;
	-moz-appearance:none;
	-webkit-appearance:none;
	appearance:none;
}

.form-input-search.has-value + .form-input-reset {
	display:block;
}

.form-input-search + .form-input-reset {
	display:none;
}

.form-input-reset {
	font-family:Touchway;
	font-weight:normal;
	font-style:normal;
	padding:10px;
	position:absolute;
	right:24px;
	top:50%;
	font-size:30px;
	-webkit-transform:translateY(-50%);
	-ms-transform:translateY(-50%);
	transform:translateY(-50%);
	cursor:pointer;
	-moz-appearance:none;
	-webkit-appearance:none;
	appearance:none;
	border-style:none;
	background-color:transparent;
	outline-style:none;
}

.form-input-document {
	position:relative;
	margin-bottom:10px;
	width:100%;
	display:flex;
	justify-content:space-between;
	border-width:1px;
	border-style:solid;
	border-color:#B4B4B4;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	border-radius:3px;
	padding-top:8px;
	padding-right:10px;
	padding-bottom:8px;
	padding-left:10px;
}

.form-input-document p {
	margin:0;
}

.pc3-captcha-wrapper {
	width:100%;
}

.pc3-captcha-text {
	font-family:Calibri,Arial,sans-serif;
	font-weight:normal;
	font-style:normal;
	color:#464A52;
	font-size:34px;
	line-height:34px;
	text-align:left;
	vertical-align:middle;
	margin:0px;
	text-spacing:15px;
}

.pc3-captcha-image {
	vertical-align:top;
}

.form-input-small .form-input {
	font-family:Calibri-Light,Arial,sans-serif;
	font-weight:400;
	font-style:normal;
	padding-top:11px;
	padding-right:13px;
	padding-bottom:9px;
	padding-left:16px;
}

.form-input-small textarea.form-input {
	min-height:130px;
}

.form-input-small .form-group {
	margin-top:10px;
	margin-bottom:10px;
}

.form-input-small .form-group-50 {
	margin-top:10px;
	margin-bottom:10px;
}

.form-input-small .form-group-50 > * {
	margin:0;
}

.form-input-small .form-group-50 > *:first-child {
	padding-right:10px;
}

.form-input-small .form-group-30-70 {
	margin-top:10px;
	margin-bottom:10px;
}

.form-input-small .form-group-30-70 > * {
	margin:0;
}

.form-input-small .form-group-30-70 > *:first-child {
	padding-right:10px;
}

.form-input-small .pc3-captcha-wrapper {
	margin-top:0;
}

.form-input-small .pc3-captcha-text {
	font-family:Calibri,Arial,sans-serif;
	font-weight:bold;
	font-style:normal;
	font-size:35px;
	line-height:10px;
}

.text-color-grey7 .pc3-captcha-text,
.text-color-grey7 .link {
	color:#FFFFFF;
}
/* style: Hauptstil language: default / engineId: default / pseudo: hover */
.form-input-reset:hover {
	color:#89574E;
}
/* style: Hauptstil language: default / engineId: default / pseudo: disabled */
.form-input-checkbox input:disabled {
	cursor:default;
}

.form-input-radio input:disabled {
	cursor:default;
}
/* style: Hauptstil language: default / engineId: default / pseudo: last-child */
.form-fieldset:last-child {
	border-top-width:0px;
	padding-bottom:20px;
}

.form-group:last-child,
.form-group-50:last-child,
.form-group-30-70:last-child {
	margin-bottom:0;
}

.form-group-50 > *:last-child {
	padding-left:20px;
}

.form-group-30-70 > *:last-child {
	padding-left:20px;
}

.form-input-checkbox:last-child {
	margin-bottom:0;
}

.form-input-radio:last-child {
	margin-bottom:0;
}

.form-input-small .form-group-50 > *:last-child {
	padding-left:10px;
}

.form-input-small .form-group-30-70 > *:last-child {
	padding-left:10px;
}
/* style: Hauptstil language: default / engineId: default / pseudo: checked:after */
.form-input-checkbox input:checked:after {
	-ms-filter:Alpha(opacity=100);
	filter:Alpha(opacity=100);
	opacity:1;
	color:#DA2520;
}

.form-input-radio input:checked:after {
	-ms-filter:Alpha(opacity=100);
	filter:Alpha(opacity=100);
	opacity:1;
}
/* style: Hauptstil language: default / engineId: default / pseudo: indeterminate:after */
.form-input-checkbox input:indeterminate:after {
	-ms-filter:Alpha(opacity=100);
	filter:Alpha(opacity=100);
	opacity:1;
	content:'Z';
}

/* b-filter */

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.b-filter .filter-navigation {
	display:flex;
	gap:clamp(10px,4vw, 60px);
	flex-wrap:wrap;
}

.b-filter .filter-navigation .form-input-radio {
	margin:0;
}

.b-filter .filter-element-hidden {
	background-color:#DB9B41;
	display:none;
}

/* b-list */

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.list-ul {
	list-style-type:none;
}

.list-ul .list-item {
	position:relative;
	padding-left:clamp(13px, 1.3vw, 17px);
}

.list-ul .list-item:before {
	content:'•';
	position:absolute;
	top:clamp(2px, 0.2vw, 3px);
	left:0;
	font-size:clamp(14px, 1.8vw, 24px);
}

.list-link {
	list-style-type:none;
	padding:0;
}

.list-dl {
	border-collapse:collapse;
	padding-left:0;
	display:table;
}

.list-dl .list-item {
	width:100%;
	border-bottom-style:solid;
	border-bottom-width:1px;
	border-bottom-color:#DADADA;
}

.list-dl .list-item:first-child {
	border-top-style:solid;
	border-top-width:1px;
	border-top-color:#DADADA;
}

.list-dl .list-item td {
	padding-top:10px;
	padding-bottom:10px;
}

.list-dl .list-item-term {
	padding-top:0;
}

.list-dl .list-item-definition {
	padding-bottom:0;
}

.fe.list-dl {
	margin-bottom:-2px;
}

.list .list-item {
	margin-top:3px;
	margin-bottom:3px;
}

.list .list-item:first-child {
	margin-top:0;
}

.list .list-item .text {
	margin-top:0;
	margin-bottom:0;
}

.list .list-item > .link-wrap {
	width:100%;
}

.list .list-item .link-wrap {
	margin-top:0;
	margin-bottom:0;
}

.list .list-item .link-wrap .link {
	margin-top:0;
	margin-bottom:0;
}

.list-item-term {
	font-family:Calibri,Arial,sans-serif;
	font-weight:bold;
	font-style:normal;
	padding-right:10px;
	width:30%;
}

.b-list-invisible {
	margin-top:0;
	margin-bottom:0;
}

.b-list-invisible .list-item {
	margin:0;
}

.b-list-invisible .richtext a {
	text-decoration-line:underline;
	text-decoration-thickness:1px;
}

.b-list-invisible .richtext a:before {
	content:"";
	display:none;
}

.m-newsletter .list-dl {
	display:table;
	width:100%;
}

.m-newsletter .list-item-term {
	width:25%;
}

.m-newsletter .list-item-definition {
	width:75%;
}

.m-newsletter .list-item-minwidth {
	width:15px;
	vertical-align:top;
	position:relative;
}

.m-newsletter .list-item-minwidth .bullet {
	position:absolute;
	left:0;
	top:3px;
	width:5px;
	height:5px;
	margin-top:4px;
	margin-right:0;
	margin-bottom:0;
	margin-left:2px;
	-moz-border-radius:23px;
	-webkit-border-radius:23px;
	border-radius:23px;
	background-color:#464A52;
}
/* style: Hauptstil language: default / engineId: default / pseudo: hover */
.b-list-invisible .richtext a:hover {
	text-decoration-line:none;
}
/* style: Hauptstil language: default / engineId: default / pseudo: last-child */
.list .list-item:last-child {
	margin-bottom:0;
}

/* b-productfinder */

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.m-productfinder h2 + h3 {
	margin-bottom:20px;
}

.m-productfinder .detail .icon.space-m {
	margin-right:7px;
	color:#888888;
}

.m-productfinder .text .icon.space-m {
	position:relative;
	top:-3px;
	left:-1px;
}

.m-productfinder article {
	overflow:hidden;
	margin-bottom:50px;
}

.m-productfinder article ul {
	clear:left;
}

.m-productfinder article ul li {
	margin-bottom:10px;
	padding-left:40px;
	position:relative;
}

.m-productfinder article ul li .icon {
	position:absolute;
	margin-right:10px;
	left:20px;
	top:-3px;
	line-height:1;
}

.m-productfinder .heading {
	width:100%;
	float:left;
	overflow:hidden;
	margin-bottom:10px;
}

.m-productfinder .heading > * {
	display:inline-block;
}

.m-productfinder .heading .type-list {
	position:relative;
	top:3px;
}

.m-productfinder .heading h4 {
	margin-bottom:5px;
	margin-right:40px;
}

.m-productfinder .heading .d-button-solid {
	margin-top:3px;
	float:right;
}

.m-productfinder .b-listing .b-entry.b-listing-border {
	padding-top:0;
	padding-right:15px;
	padding-bottom:0;
	padding-left:15px;
	margin-left:calc(-1 * 15px);
	margin-right:15px;
}

.m-productfinder .b-listing .b-entry.b-listing-border .b-e-content {
	padding-top:15px;
}

/* b-accordeon */

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.pc3-ui-accordion-box {
	position:relative;
}

.pc3-ui-accordion-box:last-child .b-accordeon-box-header {
	border-bottom-width:1px !important;
}

.pc3-ui-accordion-box-body {
	overflow:hidden;
	position:relative;
	width:100%;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
}

.pc3-ui-accordion-box-content {
	bottom:0px;
	position:relative;
	width:100%;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
}

.pc3-ui-accordion-box-header {
	position:relative;
	-webkit-tap-highlight-color:transparent;
}

.pc3-ui-accordion-box-initial > .pc3-ui-accordion-box-body {
	height:0px;
}

.pc3-ui-accordion-box-initial > .pc3-ui-accordion-box-body .pc3-ui-accordion-box-content {
	position:absolute;
}

.toggle-wrapper .toggle-header {
	position:relative;
	border-bottom-style:solid;
	border-bottom-width:0px;
	border-bottom-color:#B4B4B4;
	border-top-style:solid;
	border-top-width:1px;
	border-top-color:#B4B4B4;
	padding-top:10px;
	padding-right:0;
	padding-bottom:10px;
	padding-left:0;
	cursor:pointer;
	-o-transition:border 0.3s ease 0s;
	-webkit-transition:border 0.3s ease 0s;
	transition:border 0.3s ease 0s;
}

.toggle-wrapper .toggle-header .toggler,
.b-accordeon-box-header .toggler {
	position:absolute;
	right:10px;
	top:50%;
	-webkit-transform:translateY(-50%);
	-ms-transform:translateY(-50%);
	transform:translateY(-50%);
	-o-transition:-o-transform 0.3s ease 0s;
	-webkit-transition:-webkit-transform 0.3s ease 0s;
	transition:transform 0.3s ease 0s;
	line-height:0;
	color:#89574E;
}

.b-accordeon-box-header .toggler {
	-webkit-transform:translateY(-50%) scale(-1);
	-ms-transform:translateY(-50%) scale(-1);
	transform:translateY(-50%) scale(-1);
}

.toggle-wrapper .toggle-header .toggler:before,
.b-accordeon-box-header .toggler:before {
	font-family:Touchway;
	font-weight:normal;
	font-style:normal;
	content:'s';
	font-size:32px;
}

.toggle-wrapper.open .toggler {
	-webkit-transform:translateY(-50%) scale(-1);
	-ms-transform:translateY(-50%) scale(-1);
	transform:translateY(-50%) scale(-1);
}

.toggle-wrapper.open .toggle-header {
	border-bottom-width:1px;
}

.toggle-wrapper .b-listing-border {
	padding-top:10px;
	padding-right:0;
	padding-bottom:10px;
	padding-left:0;
	border-bottom-width:1px;
	border-bottom-style:solid;
	border-bottom-color:#B4B4B4;
}

.toggle-wrapper:last-child .toggle-header {
	border-bottom-width:1px;
}

.b-accordeon-box-header {
	position:relative;
	border-top-width:1px;
	border-top-style:solid;
	border-top-color:#B4B4B4;
	border-bottom-width:1px;
	border-bottom-style:solid;
	border-bottom-color:#B4B4B4;
	padding-top:8px;
	padding-right:50px;
	padding-bottom:10px;
	padding-left:0;
	cursor:pointer;
}

.b-accordeon-box-header .title {
	margin:0;
}

.b-accordeon-box-header.b-accordeon-trigger-left {
	border-top-width:0;
	padding-top:10px;
	padding-right:0;
	padding-bottom:10px;
	padding-left:50px;
}

.b-accordeon-box-header.b-accordeon-trigger-left .icon {
	right:auto;
	left:10px;
}

.pc3-ui-accordion-box.pc3-ui-accordion-box-collapsed .b-accordeon-box-header {
	border-bottom-width:0;
}

.pc3-ui-accordion-box.pc3-ui-accordion-box-collapsed .b-accordeon-box-header.b-accordeon-trigger-left {
	border-bottom-width:1px;
}

.pc3-ui-accordion-box.pc3-ui-accordion-box-collapsed .b-accordeon-box-header .toggler {
	-webkit-transform:translateY(-50%);
	-ms-transform:translateY(-50%);
	transform:translateY(-50%);
}

.b-accordeon-max-height-50 .pc3-ui-accordion-box-content {
	max-height:50vh;
	overflow-x:hidden;
	overflow-y:auto;
	padding-top:0px;
	padding-right:0;
	padding-bottom:50px;
	padding-left:0;
}

.b-accordeon-max-height-70 .pc3-ui-accordion-box-content {
	max-height:70vh;
	overflow-x:hidden;
	overflow-y:auto;
	padding-top:0px;
	padding-right:0;
	padding-bottom:50px;
	padding-left:0;
}

.b-accordeon-max-height-90 .pc3-ui-accordion-box-content {
	max-height:90vh;
	overflow-x:hidden;
	overflow-y:auto;
	padding-top:00px;
	padding-right:0;
	padding-bottom:50px;
	padding-left:0;
}
/* style: Hauptstil language: default / engineId: default / pseudo: last-child */
.pc3-ui-accordion-box:last-child {
	margin-bottom:0px;
}

/* m-blog */

/* style: Hauptstil language: default / engineId: default / pseudo: default */
#blog-body .text .link i {
	line-height:0;
}

.blog-tag {
	background-color:#F8F5F4;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	border-radius:5px;
	padding-top:8px;
	padding-right:12px;
	padding-bottom:8px;
	padding-left:12px;
}

.similar-posts .link .icon {
	line-height:0;
}

/* m-filter */

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.m-filter .form-input-radio {
	max-width:90px;
}

.m-filter .form-input-radio input:checked + label {
	color:#FF3333;
	font-family:Calibri,Arial,sans-serif;
	font-weight:bold;
	font-style:normal;
}

.m-filter .form-input-radio label {
	cursor:pointer;
}

.m-filter .form-input-radio .icon {
	display:block;
	font-size:80px;
	min-width:60px;
	line-height:1.2;
}

.m-filter .form-input-checkbox input:checked + label {
	color:#FF3333;
	font-family:Calibri,Arial,sans-serif;
	font-weight:bold;
	font-style:normal;
}

.m-filter .form-input-checkbox label {
	cursor:pointer;
}

.m-filter .form-input-checkbox .icon {
	display:block;
	font-size:80px;
}

.m-filter .form-input-checkbox .text {
	margin-top:0;
}

.m-filter .form-input-wrapper {
	min-width:220px;
	margin-right:25px;
}

.m-filter .search {
	width:100%;
}

.m-filter .form-input-checkbox.mod-flex-columns {
	margin-bottom:10px;
}

.m-filter .entry-wrapper {
	min-height:50vh;
}

.m-filter.d-box-dark {
	padding-top:0;
	padding-bottom:0;
}

.m-filter .negative-text .d-button-solid {
	color:#89574E;
	background-color:#EDEDED;
	white-space:nowrap;
}

.m-filter .negative-text .d-button-solid.active {
	background-color:#EDEDED;
	-ms-filter:Alpha(opacity=100);
	filter:Alpha(opacity=100);
	opacity:1;
}

.m-filter .section.filter-level-one {
	padding:0;
	margin-bottom:0;
	margin-top:0;
	padding-bottom:0;
}

.m-filter .section.filter-level-one > .section {
	margin-bottom:0;
}

.m-filter .section.filter-level-one .title {
	color:#FFFFFF;
	margin-bottom:70px;
}

.m-filter .section.filter-level-one .d-button-solid {
	border-style:none;
	padding-top:12px;
	padding-bottom:12px;
}

.m-filter .filter-level-two {
	padding-top:30px;
	padding-bottom:30px;
	margin-top:0;
	margin-bottom:0;
}

.m-filter .filter-level-two > .section > .text {
	margin-top:0;
	margin-bottom:10px;
	margin-left:-15px;
}

.m-filter .filter-level-two .form-input-wrapper {
	width:100%;
	margin-right:40px;
}

.m-filter .filter-level-two .b-entry.link {
	width:100%;
	padding-bottom:8px;
	padding-top:8px;
}

.m-filter .filter-level-two .b-entry.link .b-e-header {
	margin:0;
}

.m-filter .filter-level-two .b-entry.link .b-e-header .b-image {
	height:40px;
	width:40px;
}

.m-filter .filter-level-two .b-entry.link .b-e-content {
	border-style:solid;
	border-width:1px;
	border-color:#DADADA;
	margin-top:0;
	margin-left:0;
	margin-bottom:0;
	margin-right:40px;
	color:#89574E;
	-o-transition:background-color 0.3s ease 0s;
	-webkit-transition:background-color 0.3s ease 0s;
	transition:background-color 0.3s ease 0s;
	overflow:hidden;
}

.m-filter .filter-level-two .b-entry.link .b-e-content .text {
	padding-top:8px;
	padding-right:8px;
	padding-bottom:9px;
	padding-left:12px;
	width:100%;
	text-overflow:ellipsis;
	overflow:hidden;
	white-space:nowrap;
}

.m-filter .filter-level-two .b-listing {
	margin-bottom:20px;
}

.m-filter .filter-level-two .b-entry.link.active .b-e-content {
	background-color:#FFFFFF;
}

.m-filter .filter-level-two .b-entry.link:hover .b-e-content {
	background-color:#FFFFFF;
}

.m-filter .filter-level-three {
	margin-top:5px;
	-ms-filter:Alpha(opacity=0);
	filter:Alpha(opacity=0);
	opacity:0;
	max-height:0;
	will-change:max-height;
	overflow:hidden;
	-o-transition:max-height 0.4s ease-in 0s, opacity 0.3s ease 0s;
	-webkit-transition:max-height 0.4s ease-in 0s, opacity 0.3s ease 0s;
	transition:max-height 0.4s ease-in 0s, opacity 0.3s ease 0s;
}

.m-filter .filter-level-three.active {
	will-change:max-height;
	max-height:800px;
	-ms-filter:Alpha(opacity=100);
	filter:Alpha(opacity=100);
	opacity:1;
}

.m-filter .activate-filter-wrapper {
	margin-top:0;
	margin-bottom:0;
}

.m-filter .activate-filter-wrapper .section {
	margin-top:0;
	margin-bottom:0;
}

.m-filter .activate-filter-wrapper .multicolumn {
	margin-top:25px;
	margin-bottom:20px;
}

.m-filter .activate-filter-wrapper .form-input-wrapper {
	width:200px;
}

.m-filter .activate-filter-wrapper .form-input-checkbox {
	position:relative;
	top:50%;
	-webkit-transform:translateY(-50%);
	-ms-transform:translateY(-50%);
	transform:translateY(-50%);
}

.m-filter .b-listing .b-entry.filter {
	display:block;
	-ms-filter:Alpha(opacity=100);
	filter:Alpha(opacity=100);
	opacity:1;
	-webkit-transform:translateX(1);
	-ms-transform:translateX(1);
	transform:translateX(1);
	-o-transition:background-color 0.2s ease 0s, opacity 0.2s ease 0s, -o-transform 0.2s ease 0s;
	-webkit-transition:background-color 0.2s ease 0s, opacity 0.2s ease 0s, -webkit-transform 0.2s ease 0s;
	transition:background-color 0.2s ease 0s, opacity 0.2s ease 0s, transform 0.2s ease 0s;
}

.m-filter .b-listing .b-entry.filter.hidden {
	-webkit-transform:translateX(-10px);
	-ms-transform:translateX(-10px);
	transform:translateX(-10px);
	-ms-filter:Alpha(opacity=0);
	filter:Alpha(opacity=0);
	opacity:0;
}

.m-filter .b-listing .b-entry.filter.gone {
	display:none;
}

.m-filter .b-listing .b-entry.filter.fulltext-hidden {
	-ms-filter:Alpha(opacity=0);
	filter:Alpha(opacity=0);
	opacity:0;
	-o-transition:background-color 0.2s ease 0s, opacity 0.2s ease 0s;
	-webkit-transition:background-color 0.2s ease 0s, opacity 0.2s ease 0s;
	transition:background-color 0.2s ease 0s, opacity 0.2s ease 0s;
}

.m-filter .b-listing .b-entry.filter.fulltext-gone {
	display:none;
}

.m-filter .d-spacing .col {
	padding-left:2.5px;
	padding-right:2.5px;
}

.m-filter .filter-title {
	-ms-filter:Alpha(opacity=100);
	filter:Alpha(opacity=100);
	opacity:1;
	-webkit-transform:translateX(0);
	-ms-transform:translateX(0);
	transform:translateX(0);
	max-height:84px;
	overflow:hidden;
	-o-transition:opacity 0.2s ease 0s, -o-transform 0.2s ease 0s, max-height 0.1s ease 0s;
	-webkit-transition:opacity 0.2s ease 0s, -webkit-transform 0.2s ease 0s, max-height 0.1s ease 0s;
	transition:opacity 0.2s ease 0s, transform 0.2s ease 0s, max-height 0.1s ease 0s;
}

.m-filter .filter-title .title {
	margin-bottom:-30px;
}

.m-filter .filter-title.hidden {
	-ms-filter:Alpha(opacity=0);
	filter:Alpha(opacity=0);
	opacity:0;
	-webkit-transform:translateX(-10px);
	-ms-transform:translateX(-10px);
	transform:translateX(-10px);
	max-height:0;
}

.m-filter .no-result-message {
	-ms-filter:Alpha(opacity=0);
	filter:Alpha(opacity=0);
	opacity:0;
	visibility:hidden;
	-o-transition:all 0.3s ease 0s;
	-webkit-transition:all 0.3s ease 0s;
	transition:all 0.3s ease 0s;
	position:relative;
	margin-top:80px;
}

.m-filter .no-result-message .icon {
	font-size:34px;
	margin-right:10px;
}

.m-filter .no-result-message .icon:before {
	position:relative;
}

.m-filter .no-result-message.visible {
	-ms-filter:Alpha(opacity=100);
	filter:Alpha(opacity=100);
	opacity:1;
	visibility:visible;
}

.d-structure-filter {
	padding-top:30px;
	padding-bottom:30px;
}
/* style: Hauptstil language: default / engineId: default / pseudo: hover */
.m-filter .negative-text .d-button-solid:hover {
	-ms-filter:Alpha(opacity=100);
	filter:Alpha(opacity=100);
	opacity:1;
}
/* style: Hauptstil language: default / engineId: default / pseudo: last-child */
.m-filter .form-input-wrapper:last-child {
	margin-right:0;
}

.m-filter .form-input-checkbox.mod-flex-columns:last-child {
	margin-bottom:0;
}

.m-filter .filter-level-two .b-listing:last-child {
	margin-bottom:0px;
}

/* slider */

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.slider-dots {
	position:absolute;
	bottom:40px;
	height:13px;
	width:100%;
}

.slider-dots .dot {
	width:13px;
	height:13px;
	-moz-border-radius:13px;
	-webkit-border-radius:13px;
	border-radius:13px;
	margin-top:0;
	margin-right:10px;
	margin-bottom:0;
	margin-left:10px;
	cursor:pointer;
	-o-transition:background-color 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
	-webkit-transition:background-color 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
	transition:background-color 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
	background-color:#89574E;
}

.slider-dots .dot.active {
	background-color:#DFB07C;
}

.m-slider {
	position:relative;
}

.m-slider .scroller {
	display:block;
	height:100%;
	position:relative;
	-webkit-transform:translate3d(0%, 0, 0);
	-ms-transform:translate3d(0%, 0, 0);
	transform:translate3d(0%, 0, 0);
}

.m-slider .slider {
	padding:0;
	overflow:hidden;
	position:relative;
}

.m-slider .slider.slider-inset-border:after {
	content:'';
	position:absolute;
	border-style:solid;
	border-width:20px;
	border-color:#EDEDED;
	top:0;
	left:0;
	width:100%;
	height:100%;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	pointer-events:none;
}

.m-slider .slider.slider-inset-border.negative-text:after {
	border-color:#89574E;
}

.m-slider .slide {
	width:100%;
	-ms-filter:Alpha(opacity=100);
	filter:Alpha(opacity=100);
	opacity:1;
	float:left;
	height:100%;
	max-width:100%;
}

.m-slider .slide .b-image {
	height:100%;
	width:100%;
	display:block;
}

.m-slider .slide.mod-no-padding {
	padding:0;
}

.m-listing-slider {
	position:relative;
}

.m-listing-slider.b-listing-boxes {
	display:inline-block;
}

.m-listing-slider .b-listing {
	flex-wrap:nowrap;
	justify-content:initial;
}

.m-listing-slider .b-listing .b-entry {
	margin-top:0;
	-o-transition:opacity 0.2s ease 0s, background-color 0.2s ease 0s;
	-webkit-transition:opacity 0.2s ease 0s, background-color 0.2s ease 0s;
	transition:opacity 0.2s ease 0s, background-color 0.2s ease 0s;
}

.m-listing-slider .b-listing .b-entry.ghost {
	-ms-filter:Alpha(opacity=30);
	filter:Alpha(opacity=30);
	opacity:0.3;
}

.m-listing-slider .l-s-scroller-wrapper {
	max-width:100%;
	display:inline-block;
	margin-bottom:-4px;
	overflow:hidden;
	left:50%;
	-webkit-transform:translateX(-50%);
	-ms-transform:translateX(-50%);
	transform:translateX(-50%);
	position:relative;
}

.m-listing-slider .l-s-scroller {
	display:inline-block;
	-o-transition:-o-transform 0.4s ease 0s;
	-webkit-transition:-webkit-transform 0.4s ease 0s;
	transition:transform 0.4s ease 0s;
}

.m-listing-slider .l-s-controls .l-s-c-control {
	position:absolute;
	display:inline-block;
	padding-top:0px;
	padding-right:14px;
	padding-bottom:0px;
	padding-left:14px;
	font-size:50px;
	cursor:pointer;
	color:#89574E;
	background-color:#FFFFFF;
	-ms-filter:Alpha(opacity=100);
	filter:Alpha(opacity=100);
	opacity:1;
	visibility:visible;
	-o-transition:opacity 0.2s ease 0s, background-color 0.2s ease 0s;
	-webkit-transition:opacity 0.2s ease 0s, background-color 0.2s ease 0s;
	transition:opacity 0.2s ease 0s, background-color 0.2s ease 0s;
	top:110px;
	-webkit-transform:translateY(-50%);
	-ms-transform:translateY(-50%);
	transform:translateY(-50%);
}

.m-listing-slider .l-s-controls .l-s-c-control.hidden {
	-ms-filter:Alpha(opacity=0);
	filter:Alpha(opacity=0);
	opacity:0;
	visibility:hidden;
}

.m-listing-slider .l-s-controls .l-s-c-next {
	right:-40px;
}

.m-listing-slider .l-s-controls .l-s-c-prev {
	left:-40px;
}
/* style: Hauptstil language: default / engineId: default / pseudo: hover */
.slider-dots .dot:hover {
	background-color:#CCDCDA;
}

.slider-dots .dot.active:hover {
	background-color:#DFB07C;
}

.m-listing-slider .l-s-controls .l-s-c-control:hover {
	background-color:#EDEDED;
}

.m-listing-slider .l-s-controls .l-s-c-control.hidden:hover {
	opacity:0;
}

/* icons */

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.icon {
	font-family:Touchway;
	font-weight:normal;
	font-style:normal;
	font-size:26px;
}

.icon.icon-small {
	font-size:22px;
}

.icon.icon-medium {
	font-size:32px;
}

.icon.icon-big {
	font-size:40px;
}

.icon.icon-jumbo {
	font-size:49px;
}

.icon.icon-enormus {
	font-size:80px;
}

.icon.icon-size-1 {
	font-size:clamp(30px, 5vw, 50px);
	line-height:10px;
	margin-bottom:25px;
	margin-top:5px;
}

.icon.icon-size-2 {
	font-size:clamp(50px, 7vw, 80px);
	line-height:15px;
	margin-bottom:35px;
	margin-top:10px;
}

.icon.icon-size-3 {
	font-size:clamp(80px, 9vw, 110px);
	line-height:30px;
	margin-bottom:50px;
	margin-top:10px;
}

.icon.space-s {
	margin-right:5px;
}

.icon.space-m {
	margin-right:10px;
}

.icon.icon-arrow-triangle-up:before {
	content:'r';
}

.icon.icon-arrow-triangle-down:before {
	content:'s';
}

.icon.icon-arrow-triangle-left:before {
	content:'0';
	position:relative;
	top:2px;
}

.icon.icon-arrow-triangle-right:before {
	content:'1';
}

.icon.icon-arrow-up:before {
	content:'r';
}

.icon.icon-arrow-down:before {
	content:'s';
}

.icon.icon-arrow2-up:before {
	content:'\0027';
}

.icon.icon-arrow2-down:before {
	content:'\0029';
}

.icon.icon-arrow2-right:before {
	content:'\0028';
}

.icon.icon-arrow2-left:before {
	content:'\0026';
}

.icon.icon-arrow2-triangle-up:before {
	content:'\00BB';
}

.icon.icon-arrow2-triangle-down:before {
	content:'\005F';
}

.icon.icon-tag:before {
	content:'`';
}

.icon.icon-arrow-right:before {
	content:'(';
}

.icon.icon-arrow-left:before {
	content:'&';
}

.icon.icon-caret-left:before {
	content:'0';
}

.icon.icon-caret-right:before {
	content:'1';
}

.icon.icon-caret-down:before {
	content:'s';
}

.icon.icon-hamburger:before {
	content:'G';
}

.icon.icon-search:before {
	content:'S';
}

.icon.icon-world:before {
	content:'W';
}

.icon.icon-document:before {
	content:'q';
}

.icon.icon-user:before {
	content:'J';
}

.icon.icon-letter:before {
	content:'D';
}

.icon.icon-marker:before {
	content:'e';
}

.icon.icon-calendar:before {
	content:'y';
}

.icon.icon-plus:before {
	content:'8';
}

.icon.icon-close:before {
	content:'X';
}

.icon.icon-phone:before {
	content:'P';
}

.icon.icon-mail:before {
	content:'D';
}

.icon.icon-home:before {
	content:'H';
}

.icon.icon-off:before {
	position:relative;
	top:-5px;
	content:'Q';
}

.icon.icon-disc:before {
	content:'u		';
}

.icon.icon-clock:before {
	content:'B';
}

.icon.icon-check:before {
	content:'C';
}

.icon.icon-eye:before {
	content:"c";
}

.icon.icon-download:before {
	content:'v';
}

.icon.icon-brochure:before {
	content:'K';
}

.icon.icon-forms:before {
	content:'\003B';
}

.icon.icon-foam:before {
	content:'L';
}

.icon.icon-steam:before {
	content:'N';
}

.icon.icon-water:before {
	content:'R';
}

.icon.icon-waterplus:before {
	content:'\00B4';
}

.icon.icon-instant:before {
	content:'T';
}

.icon.icon-milk:before {
	content:'V';
}

.icon.icon-software:before {
	content:'\00BA';
}

.icon.icon-media:before {
	content:'\00B9';
}

.icon.icon-hardware:before {
	content:'\00B3';
}

.icon.icon-drawings:before {
	content:'\00B7';
}

.icon.icon-globe:before {
	content:'F';
}

.icon.icon-bin:before {
	content:'U';
}

.icon.icon-zip:before {
	content:'E';
}

.icon.icon-dwg:before {
	content:':';
}

.icon.icon-stp:before {
	content:'\0021';
}

.icon.icon-datasheet:before {
	content:'i';
}

.icon.icon-all:before {
	content:'I';
}

.icon.icon-one:before {
	content:'\0080';
}

.icon.icon-touchscreen:before {
	content:'j';
}

.icon.icon-wallet:before {
	content:'k';
}

.icon.icon-service:before {
	content:'l';
}

.icon.icon-manuals:before {
	content:'p';
}

.icon.icon-company:before {
	content:'w';
}

.icon.icon-coffee:before {
	content:'x';
}

.icon.icon-archive:before {
	content:'m';
}

.icon.icon-trash:before {
	content:'t';
}

.icon.icon-basket:before {
	content:'[';
}

.icon.icon-checklist:before {
	content:'@';
}

.icon.icon-fax:before {
	content:']';
}

.icon.icon-admin:before {
	content:'A';
}

.icon.icon-pen:before {
	content:'?';
}

.icon.icon-pen2:before {
	content:'\0087';
}

.icon.icon-bell:before {
	content:'\005C';
}

.icon.icon-video:before {
	content:'\00B2';
}

.icon.icon-play:before {
	content:'7';
}

.icon.icon-warning:before {
	content:'\002E';
}

.icon.icon-share:before {
	content:'\001B';
}

.icon.icon-facebook:before {
	content:'\003D';
}

.icon.icon-insta:before {
	content:'\00B0';
}

.icon.icon-sharemail:before {
	content:'\00B6';
}

.icon.icon-twitter:before {
	content:'\00B5';
}

.icon.icon-linkedin:before {
	content:'\00B1';
}

.icon.tablesorter-header {
	position:relative;
	padding-left:15px !important;
	cursor:pointer;
}

.icon.tablesorter-header:after {
	content:'\00F6';
	position:absolute;
	left:0;
	top:4px;
}

.icon.tablesorter-header.tablesorter-headerDesc:after {
	content:'s';
	position:absolute;
	left:0;
	top:4px;
}

.icon.tablesorter-header.tablesorter-headerAsc:after {
	content:'r';
	position:absolute;
	left:0;
	top:4px;
}

/* b-spacer */

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.b-spacer-xxs {
	margin-bottom:7px;
}

.b-spacer-xs {
	margin-bottom:20px;
}

.b-spacer-s {
	margin-bottom:40px;
}

.b-spacer-m {
	margin-bottom:80px;
}

.b-spacer-l {
	margin-bottom:100px;
}

.b-spacer-xl {
	margin-bottom:120px;
}

.b-spacer-xxl {
	margin-bottom:160px;
}

.b-spacer-jumbo {
	margin-bottom:200px;
}

.b-spacer-flex {
	flex:1 0 auto;
}

.b-spacer-100vh {
	margin-bottom:100vh;
}

.b-spacer-80vh {
	margin-bottom:80vh;
}

.b-spacer-50-desktop {
	margin-bottom:50px;
}

.b-spacer-30-dynamic {
	margin-bottom:1.8vw;
}

.b-spacer-50-dynamic {
	margin-bottom:2.7vw;
}

.b-spacer-100-dynamic {
	margin-bottom:5.3vw;
}

.b-spacer-150-dynamic {
	margin-bottom:7.9vw;
}

.b-spacer-200-dynamic {
	margin-bottom:10.5vw;
}

.b-spacer-300-dynamic {
	margin-bottom:15.6vw;
}

.m-newsletter .b-spacer {
	font-size:0;
	height:0;
	line-height:0;
	display:block;
	width:100%;
}

.m-newsletter .b-spacer-xxs {
	margin-top:10px;
	margin-bottom:0;
}

.m-newsletter .b-spacer-xs {
	margin-top:20px;
	margin-bottom:0;
}

.m-newsletter .b-spacer-s {
	margin-top:40px;
	margin-bottom:0;
}

.m-newsletter .b-spacer-m {
	margin-top:80px;
	margin-bottom:0;
}

.m-newsletter .b-spacer-l {
	margin-top:100px;
	margin-bottom:0;
}

.m-newsletter .b-spacer-xl {
	margin-top:120px;
	margin-bottom:0;
}

.m-newsletter .b-spacer-xxl {
	margin-top:160px;
	margin-bottom:0;
}

.m-newsletter .b-spacer-jumbo {
	margin-top:200px;
	margin-bottom:0;
}

/* multirow */

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.multirow {
	display:flex;
	flex-direction:column;
	height:100%;
}

.multirow .flex {
	flex:1 0 auto;
}

/* m-claimmanagement */

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.mod-claimmanagement .searchbox {
	display:flex;
	flex-wrap:wrap;
	gap:20px;
}

.mod-claimmanagement .searchbox .form-group {
	margin:0;
}

.mod-claimmanagement .inlist-ajax-wrapper {
	min-height:58px;
}

.mod-claimmanagement .simple-list-wrapper {
	overflow-x:auto;
}

.mod-claimmanagement .simple-list-wrapper .b-table {
	table-layout:auto;
}

.mod-claimmanagement .simple-list-wrapper .b-table thead th {
	padding-top:10px;
	padding-left:18px !important;
	padding-right:18px;
	padding-bottom:15px;
	vertical-align:top;
	white-space:nowrap;
}

.mod-claimmanagement .simple-list-wrapper .b-table tr td {
	padding-top:5px;
	padding-right:8px;
	padding-bottom:8px;
	padding-left:8px;
	width:auto;
	vertical-align:middle;
}

.mod-claimmanagement .simple-list-wrapper .actions {
	min-width:initial;
}
/* style: Hauptstil language: default / engineId: default / pseudo: nth-child(3) */
.mod-claimmanagement .simple-list-wrapper .b-table tr td:nth-child(3) {
	width:200px;
}

/* m-claims */

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.mod-userclaims .limited-size {
	width:150px;
	overflow:hidden;
	white-space:nowrap;
	text-overflow:ellipsis;
}

.mod-userclaims .file-input-row .d-icon-link {
	line-height:36px;
}

.mod-userclaims .typeahead__list {
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	border-radius:4px;
}

.mod-userclaims .warning-block {
	padding:20px;
	width:100%;
	background-color:#FFB733;
	background-color:rgba(255,183,51,0.5);
}

.mod-userclaims .warning-label {
	background-color:#FFB733;
	background-color:rgba(255,183,51,0.5);
}

/* m-feedback */

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.mod-feedback .inlist-ajax-wrapper {
	min-width:125px;
}

.mod-feedback .mod-hide-overflow {
	overflow:hidden;
	text-overflow:ellipsis;
}

.mod-feedback .simple-list-wrapper .actions {
	right:5px;
}

.mod-feedback .simple-list-wrapper .actions .d-icon-link {
	margin-left:10px;
}

.mod-feedback .b-table {
	table-layout:auto;
}

.mod-feedback .b-table thead th {
	padding:8px;
}

.mod-feedback .b-table thead th .tablesorter-header-inner {
	padding-left:5px;
}

.mod-feedback .b-table tr td {
	padding-top:8px;
	padding-right:8px;
	padding-bottom:8px;
	padding-left:0;
	vertical-align:middle;
}

.mod-feedback .ajax-spinner-mini-wrapper {
	left:auto;
	right:5px;
	top:-7px;
	height:100%;
	background-color:transparent;
}

.mod-feedback .simple-list-row.stuck {
	position:fixed;
	z-index:1;
	top:56px;
	width:100%;
	left:0;
	padding-top:10px;
	padding-right:20px;
	padding-bottom:10px;
	padding-left:20px;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	display:block;
	background-color:#89574E;
}

.mod-feedback .simple-list-row.stuck > * {
	display:inline-block;
}

.mod-feedback .simple-list-row.stuck .actions {
	float:right;
}

.mod-feedback .simple-list-row.selected td {
	background-color:#89574E;
	color:#FFFFFF;
}

.mod-feedback .simple-list-row.selected td * {
	color:#FFFFFF !important;
}

.mod-feedback .limited-size {
	width:150px;
	overflow:hidden;
	white-space:nowrap;
	text-overflow:ellipsis;
}

.mod-feedback .file-input-row .d-icon-link {
	line-height:36px;
}

.mod-feedback .typeahead__list {
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	border-radius:4px;
}

.mod-feedback .ajax-spinner-wrapper {
	left:2px;
	top:2px;
}

.mod-feedback .ajax-spinner-mini {
	top:5px;
	left:10px;
}

/* m-import */

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.m-import {
	padding:50px;
	max-width:1200px;
	width:100%;
}

.m-import .list-item {
	justify-content:space-between;
	padding-top:5px;
	padding-right:10px;
	padding-bottom:5px;
	padding-left:10px;
}

.m-import .list-item.colored {
	background-color:#EDEDED;
	border-bottom-width:1px;
	border-bottom-style:solid;
	border-bottom-color:#DADADA;
}

.m-import .list-item.result {
	padding-left:0;
}

.m-import .success,
.m-import .warning,
.m-import .error {
	padding-top:3px;
	padding-right:10px;
	padding-bottom:3px;
	padding-left:10px;
	background-color:#00E673;
	background-color:rgba(0,230,115,0.5);
}

.m-import .warning {
	background-color:#FFB733;
	background-color:rgba(255,183,51,0.5);
}

.m-import .error {
	background-color:#FF3333;
	background-color:rgba(255,51,51,0.5);
}

.m-import .form-input {
	margin-right:20px;
	min-width:200px;
}

.m-import .form-dropdown {
	max-width:403px;
}

/* m-messages */

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.m-messages .unread-messages {
	position:absolute;
	right:50px;
	top:50%;
	-webkit-transform:translateY(-50%);
	-ms-transform:translateY(-50%);
	transform:translateY(-50%);
	color:#DFB07C;
}

.m-messages .unread-messages .circle {
	display:inline-block;
	margin-right:4px;
}

.m-messages .message-list .message-wrapper {
	margin-bottom:5px;
	width:100%;
	overflow:hidden;
}

.m-messages .message-list .message-wrapper.align-right .message-date {
	text-align:right;
}

.m-messages .message-list .message-wrapper.align-right .message {
	float:right;
}

.m-messages .message-list .message-wrapper.highlight-message {
	border-width:2px;
	border-style:dotted;
	border-color:#CCDCDA;
	background-color:#CCDCDA;
	background-color:rgba(204,220,218,0.5);
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	border-radius:3px;
	padding:15px;
	margin-top:20px;
	margin-right:0;
	margin-bottom:20px;
	margin-left:0;
}

.m-messages .message-list .message-date {
	margin-bottom:0px;
}

.m-messages .message-list .message {
	display:inline-block;
	padding:10px;
	border-width:1px;
	border-style:solid;
	border-color:#EDEDED;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	border-radius:4px;
}

.m-messages .message-list .unread-message {
	background-color:#FFB733;
	background-color:rgba(255,183,51,0.5);
	border-color:#DFB07C;
}

.m-messages #ajax-partner-new-message {
	min-height:320px;
}

.m-messages .message-box {
	background-color:#EDEDED;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	border-width:1px;
	border-style:solid;
	border-color:#DADADA;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	border-radius:4px;
	padding:15px;
	margin-bottom:15px;
}

/* m-products */

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.m-products .back-link {
	font-family:Calibri-Light,Arial,sans-serif;
	font-weight:400;
	font-style:normal;
	position:absolute;
	top:2vw;
	left:2vw;
}

.m-products .border-list-wrapper .icon {
	font-size:32px;
}

.m-products .link:hover p.text {
	text-decoration:none;
}

.m-products .swiper-slide {
	text-align:center;
}

.m-products .swiper-slide .b-image {
	display:inline-block;
	width:auto;
	height:100%;
}

.m-products .m-downloads {
	padding-top:0;
}

.m-products .image-wrapper {
	display:inline-block;
	height:100%;
}

.m-products .image-zoom-link {
	display:inline-block;
	height:100%;
}

.m-products .image-zoom-link:after {
	background-color:#FFFFFF;
}

.m-products .image-zoom-link:before {
	color:#464A52;
}

.m-products .b-listing-versions .b-entry {
	padding-bottom:5.3vw;
}

.m-products .b-listing-versions .b-e-header .b-image {
	width:100%;
	height:auto;
	max-height:clamp(360px, 39.6vw, 515px);
	object-fit:contain;
	object-position:center;
}

.m-products .b-listing.b-listing-horizontal.spacing-left {
	padding-left:10px;
}

.m-products .b-listing.b-listing-horizontal .b-entry {
	overflow:hidden;
}

.m-products .b-listing.b-listing-horizontal .b-entry .b-e-header {
	margin-left:0;
	margin-right:0;
}

.m-products .b-listing.b-listing-horizontal .b-entry .b-e-header > img {
	margin-left:15px;
}

.m-products .b-listing.b-listing-horizontal .b-entry .b-e-header .no-image-frame {
	margin-left:15px;
}

.m-products .b-listing.b-listing-horizontal .b-entry .b-e-content {
	width:70%;
	margin-top:25px;
	margin-right:25px;
	margin-bottom:25px;
	margin-left:15px;
}

.m-products .b-listing.b-listing-horizontal.b-listing-row-reverse .b-entry .b-e-header {
	margin-right:25px;
}

.m-products .b-listing-accordeons .b-entry {
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	padding-bottom:2vw;
	border-bottom-width:1px;
	border-bottom-style:solid;
	border-bottom-color:#9BA1AD;
}

.m-products .b-listing-accordeons .b-entry > * {
	flex:1 0 50%;
}

.m-products .b-listing-accordeons .b-image-label {
	margin-top:2vw;
}

.m-products .b-listing-accordeons .b-e-content {
	padding-top:2vw;
	padding-right:2.6vw;
	padding-bottom:2vw;
	padding-left:2.6vw;
	display:flex;
	flex-direction:column;
	justify-content:center;
}

.m-products .b-listing-accordeons .b-e-header {
	padding-right:2.6vw;
}

.m-products .b-listing-accordeons .b-e-header .b-image {
	width:100%;
	height:auto;
	max-height:clamp(360px, 32.3vw, 420px);
	object-fit:contain;
	object-position:center;
}

.m-products .downloads .b-listing.b-listing-horizontal .b-entry {
	padding-top:12px;
	padding-bottom:12px;
}

.m-products .downloads .b-listing.b-listing-horizontal .b-e-header {
	margin-top:0;
}

.m-products .ajax-spinner-wrapper .ajax-spinner {
	position:absolute;
	top:30px;
	left:auto;
	right:0;
}
/* style: Hauptstil language: default / engineId: default / pseudo: last-child */
.m-products .b-listing-accordeons .b-entry:last-child {
	padding-bottom:0vw;
	border-bottom-width:0px;
}
/* style: Hauptstil language: default / engineId: default / pseudo: hover:after */
.m-products .image-zoom-link:hover:after {
	-ms-filter:Alpha(opacity=80);
	filter:Alpha(opacity=80);
	opacity:0.8;
}

/* m-shop */

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.m-shop #shop-result-amount {
	margin-right:5px;
}

.m-shop .no-result-message {
	padding-top:25px;
	padding-right:0;
	padding-bottom:25px;
	padding-left:0;
}

.m-shop .results {
	margin-top:50px;
	margin-right:0;
	margin-bottom:50px;
	margin-left:0;
}

.m-shop .results .b-listing-boxes {
	margin-left:-15px;
	margin-right:-15px;
}

.m-shop .results .b-entry {
	position:relative;
	padding-right:140px;
	padding-left:0;
}

.m-shop .results .b-listing.b-listing-horizontal .b-entry .b-e-header {
	margin-top:15px;
	margin-right:15px;
	margin-bottom:15px;
}

.m-shop .results .b-listing.b-listing-horizontal .b-entry .b-e-content {
	margin-top:15px;
	margin-left:0px;
	margin-bottom:15px;
	max-width:100%;
}

.m-shop.m-basket .form-input-radio {
	padding-right:50px;
}

.m-shop.m-basket .form-input-radio label {
	line-height:1.35;
	margin-top:-2px;
}

.m-shop.m-basket .footer-row {
	justify-content:space-between;
	align-items:center;
}

.m-shop.m-basket .form-error label {
	color:#FF3333;
	border-bottom-width:2px;
	border-bottom-style:solid;
}

.m-shop .form-fieldset {
	border-top-width:0px;
}

.m-shop .shop-actions {
	position:absolute;
	right:20px;
	bottom:20px;
}

.m-shop .shop-actions > * {
	display:inline-block;
}

.m-shop .shop-actions .input-amount {
	margin-top:0;
	margin-right:10px;
	margin-bottom:0;
	margin-left:0;
	max-width:70px;
}

.m-shop .shop-actions .button {
	width:37px;
	height:37px;
	padding:0;
	line-height:1.25;
}

.m-shop .shop-actions .button .icon {
	line-height:1;
}

.m-shop .shop-actions .remove-from-wallet {
	background-color:#89574E;
	border-color:#89574E;
	color:#EDEDED;
}

.m-shop .load-more-ajax-spinner-wrapper > a {
	margin-top:0;
	margin-right:0;
	margin-bottom:25px;
	margin-left:30px;
}

.rotate-y-animation {
	animation:rotateY 1s ease forwards;
}

/* m-swiper */

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.m-swiper {
	position:relative;
	display:block;
}

.m-swiper .swiper-nav-prev,
.m-swiper .swiper-nav-next {
	position:absolute;
	top:50%;
	left:0;
	z-index:1;
	-webkit-transform:translateY(-50%);
	-ms-transform:translateY(-50%);
	transform:translateY(-50%);
	cursor:pointer;
}

.m-swiper .swiper-nav-next {
	left:auto;
	right:0;
}

.m-swiper .swiper-nav-disabled {
	-ms-filter:Alpha(opacity=20);
	filter:Alpha(opacity=20);
	opacity:0.2;
}

.m-swiper .swiper-pagination-bullet {
	background-color:#DA2520;
}

.m-swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background-color:#89574E;
}

.m-swiper .swiper-thumbs {
	margin-top:15px;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	padding-top:0;
	padding-right:10px;
	padding-bottom:0;
	padding-left:10px;
}

.m-swiper .swiper-thumbs .swiper-slide {
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	padding:5px;
	width:50px;
	height:50px;
	text-align:center;
	border-width:0px;
	border-style:solid;
	border-color:#FFFFFF;
	cursor:pointer;
	-o-transition:border 0.1s ease 0s;
	-webkit-transition:border 0.1s ease 0s;
	transition:border 0.1s ease 0s;
}

.m-swiper .swiper-thumbs .swiper-slide.swiper-slide-thumb-active {
	border-width:1px;
	border-style:solid;
	border-color:#DA2520;
}

.m-swiper .swiper-thumbs .swiper-slide .b-image {
	width:auto;
	height:100%;
	display:inline-block;
}
/* style: Hauptstil language: default / engineId: default / pseudo: hover */
.m-swiper .swiper-thumbs .swiper-slide:hover {
	border-width:1px;
	border-color:#89574E;
}

/* m-useradmin */

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.mod-useradmin .form-input-button-wrapper > * {
	margin-left:10px;
}

.mod-useradmin .user-update-wrapper {
	border-bottom-width:1px;
	border-bottom-style:solid;
	border-bottom-color:#B4B4B4;
	padding-top:40px;
	padding-right:0;
	padding-bottom:40px;
	padding-left:0;
}

.mod-useradmin .action-row-top {
	padding-bottom:10px;
	border-bottom-width:1px;
	border-bottom-style:solid;
	border-bottom-color:#464A52;
}

.mod-useradmin .actions .d-icon-link .icon {
	top:-3px;
}

.mod-useradmin .error-text {
	color:#FF3333;
}

.mod-useradmin #partnerform-update-wrapper {
	min-height:300px;
}

.mod-partnerinfo .contact-box {
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	border-width:1px;
	border-style:solid;
	border-color:#DADADA;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	border-radius:4px;
	padding:15px;
	margin-bottom:15px;
}

.mod-partnerinfo .contact-box .link {
	display:block;
}

/* m-references */

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.m-references .b-listing-references .b-image {
	max-height:40vh;
}

.m-references .b-listing-references > * {
	width:100%;
	padding-top:0;
	padding-right:0;
	padding-bottom:80px;
	padding-left:0;
}

.m-references .b-listing-references > .link:hover .link {
	text-decoration:underline;
}

.m-references .b-listing-references > a:nth-child(odd) .multicolumn {
	flex-direction:row-reverse;
}

.m-references .b-listing-references > a:nth-child(odd) .section.box-padding-m {
	padding-left:0;
}

.m-references .b-listing-references > a:nth-child(even) .section.box-padding-m {
	padding-right:0;
}

.m-references .b-listing-references .b-entry:nth-child(odd) .multicolumn {
	flex-direction:row-reverse;
}

.m-references .b-listing-references .b-entry:nth-child(odd) .section.box-padding-m {
	padding-left:0;
}

.m-references .b-listing-references .b-entry:nth-child(even) .section.box-padding-m {
	padding-right:0;
}

.m-references .m-filter {
	padding-top:20px;
	padding-bottom:100px;
}

.m-references .section.box-padding-m {
	padding-top:0;
}

.m-references .mod-break-word {
	word-break:break-word;
}

.m-references-detail .header-image {
	max-height:40vh;
	object-fit:cover;
}

.b-listing-references .icon {
	min-width:17px;
	display:inline-block;
	top:5px;
	position:relative;
}
/* style: Hauptstil language: default / engineId: default / pseudo: hover */
.m-references .b-listing-references > .link:hover {
	text-decoration:none;
}

/* defaults */

/* style: Hauptstil language: default / engineId: default / pseudo: default */
* {
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
}

.reset-browser-spacing-defaults,
body,
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
li {
	margin:0;
	padding:0;
}

ul {
	list-style-type:none;
}

a {
	text-decoration:none;
}

table td {
	padding:0;
}

/* colors */

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.warning-background {
	background-color:#FFB733;
	background-color:rgba(255,183,51,0.5);
}

.error-background {
	background-color:#FF3333;
	background-color:rgba(255,51,51,0.5);
}

.success-background {
	background-color:#00E673;
	background-color:rgba(0,230,115,0.5);
}

/* b-title */

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.title {
	margin-top:0px;
	margin-bottom:40px;
}

.title:first-child {
	margin-top:0;
}

.title.fe.fe-first-child {
	margin-top:0;
}

.title.fe.fe-last-child {
	margin-bottom:0;
}

.title-h1 {
	font-size:49px;
	font-family:Calibri,Arial,sans-serif;
	font-weight:normal;
	font-style:normal;
}

.title-h2 {
	font-size:40px;
	font-family:Calibri,Arial,sans-serif;
	font-weight:normal;
	font-style:normal;
	line-height:1.2;
}

.title-h2 + .title-h3 {
	margin-top:-35px;
}

.title-h3 {
	font-size:32px;
	font-family:Calibri-Light,Arial,sans-serif;
	font-weight:400;
	font-style:normal;
	color:#888888;
}

.title-h4 {
	font-size:26px;
	font-family:Calibri,Arial,sans-serif;
	font-weight:normal;
	font-style:normal;
	margin-bottom:20px;
	color:#89574E;
}

.title-h5 {
	font-family:Calibri,Arial,sans-serif;
	font-weight:bold;
	font-style:normal;
	font-size:16px;
	margin-bottom:0;
}

.title-extra {
	font-family:Calibri,Arial,sans-serif;
	font-weight:bold;
	font-style:normal;
}

.title-flag {
	position:relative;
	padding-bottom:36px;
}

.title-flag:after {
	position:absolute;
	bottom:0;
	content:"";
	display:block;
	width:18px;
	height:18px;
	background-image:url(../../../../docs/de/53233/swiss-cross.svg?v=1.1);
	background-repeat:no-repeat;
	background-size:contain;
	margin-left:3px;
}

.title-flag.text-align-right:after,
.text-align-right .title-flag:after {
	right:2px;
}

.title-flag-23 {
	position:relative;
	padding-bottom:5vw;
}

.title-flag-23:after {
	position:absolute;
	bottom:0;
	content:"";
	display:block;
	width:2.3vw;
	height:2.3vw;
	background-image:url(../../../../docs/de/53233/swiss-cross.svg?v=1.1);
	background-repeat:no-repeat;
	background-size:contain;
	margin-left:3px;
}

.title-flag-23.text-align-center:after,
.text-align-center .title-flag-23:after {
	left:50%;
	-webkit-transform:translateX(-50%);
	-ms-transform:translateX(-50%);
	transform:translateX(-50%);
}

.title-flag-23.text-align-right:after {
	right:3px;
}

.fe.title {
	line-height:1;
}
/* style: Hauptstil language: default / engineId: default / pseudo: last-child */
.title:last-child {
	margin-bottom:0;
}

/* b-text */

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.text {
	margin-top:10px;
	margin-bottom:10px;
}

.text:first-child {
	margin-top:0;
}

.text.fe.fe-first-child {
	margin-top:0;
}

.m-newsletter .text {
	margin-top:20px;
	margin-bottom:0;
}

.m-newsletter .text:first-child {
	margin-top:0;
}

.text.paragraph {
	font-size:16px;
	line-height:1.25;
}

.text.text-intro {
	font-size:22px;
}

.text.text-remark {
	font-size:14px;
}

.text.text-list {
	font-size:12px;
	font-family:Calibri,Arial,sans-serif;
	font-weight:bold;
	font-style:normal;
}

.text.text-quote {
	font-size:40px;
}

.text.text-quote:before {
	content:"«";
}

.text.text-quote:after {
	content:"»";
}

.text.text-highlight {
	font-family:Calibri,Arial,sans-serif;
	font-weight:bold;
	font-style:normal;
}

.text.text-tag {
	display:inline-block;
	font-size:14px;
	background-color:#F8F5F4;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	border-radius:5px;
	padding-top:8px;
	padding-right:12px;
	padding-bottom:8px;
	padding-left:12px;
}

.blocktext {
	height:100%;
	max-width:500px;
}

.text.d-text-big {
	font-size:26px;
}

.text.d-text-medium {
	font-size:22px;
}

.text.d-text-small {
	font-size:15px;
}

.text.d-text-tiny {
	font-size:14px;
}

.text.d-text-tiny.text-highlight {
	font-family:Calibri,Arial,sans-serif;
	font-weight:bold;
	font-style:normal;
}

strong {
	font-family:Calibri,Arial,sans-serif;
	font-weight:bold;
	font-style:normal;
}

em {
	font-style:italic;
}

.bo-text-preview-list {
	line-height:1;
}

.bo-sl-option-text-color-grey0 {
	background-color:#000000;
}

.bo-sl-option-text-color-grey1 {
	background-color:#464A52;
}

.bo-sl-option-text-color-grey2 {
	background-color:#888888;
}

.bo-sl-option-text-color-grey3 {
	background-color:#B4B4B4;
}

.bo-sl-option-text-color-grey4 {
	background-color:#DADADA;
}

.bo-sl-option-text-color-grey5 {
	background-color:#EDEDED;
}

.bo-sl-option-text-color-grey6 {
	background-color:#EDEDED;
}

.bo-sl-option-text-color-grey7 {
	background-color:#FFFFFF;
}

.bo-sl-option-text-color-deco1 {
	background-color:#89574E;
}

.bo-sl-option-text-color-deco2 {
	background-color:#DFB07C;
}

.bo-sl-option-text-color-deco3 {
	background-color:#DA2520;
}

.bo-sl-option-text-color-deco4 {
	background-color:#CCDCDA;
}

.bo-sl-option-text-color-deco5 {
	background-color:colors/$deco5;
}

.bo-sl-option-text-color-deco6 {
	background-color:colors/$deco6;
}

.bo-sl-option-text-color-deco7 {
	background-color:colors/$deco7;
}

.bo-sl-option-text-color-ok {
	background-color:#00E673;
}

.bo-sl-option-text-color-warning {
	background-color:#FFB733;
}

.bo-sl-option-text-color-error {
	background-color:#FF3333;
}

.text-color-grey0,
.link.text-color-grey0 {
	color:#000000;
}

.text-color-grey1,
.link.text-color-grey1 {
	color:#464A52;
}

.text-color-grey2,
.link.text-color-grey2 {
	color:#888888;
}

.text-color-grey3,
.link.text-color-grey3 {
	color:#B4B4B4;
}

.text-color-grey4,
.link.text-color-grey4 {
	color:#DADADA;
}

.text-color-grey5,
.link.text-color-grey5 {
	color:#EDEDED;
}

.text-color-grey6,
.link.text-color-grey6 {
	color:#EDEDED;
}

.text-color-grey7,
.link.text-color-grey7 {
	color:#FFFFFF;
}

.text-color-deco1,
.link.text-color-deco1 {
	color:#89574E;
}

.text-color-deco2,
.link.text-color-deco2 {
	color:#DFB07C;
}

.text-color-deco3,
.link.text-color-deco3 {
	color:#DA2520;
}

.text-color-deco4,
.link.text-color-deco4 {
	color:#CCDCDA;
}

.text-color-deco5,
.link.text-color-deco5 {
	color:colors/$deco5;
}

.text-color-deco6,
.link.text-color-deco6 {
	color:colors/$deco6;
}

.text-color-deco7,
.link.text-color-deco7 {
	color:colors/$deco7;
}

.text-color-ok,
.link.text-color-ok {
	color:#00E673;
}

.text-color-pc3 {
	color:#CC1880;
}

.text-color-warning,
.link.text-color-warning {
	color:#FFB733;
}

.invalidFileType {
	color:#FF3333;
}

.text-color-error,
.link.text-color-error {
	color:#FF3333;
}

.shadow-color-grey0 {
	text-shadow:1px 1px 3px rgba(0,0,0,1.0);
}

.shadow-color-grey1 {
	text-shadow:1px 1px 3px rgba(70,74,82,1.0);
}

.shadow-color-grey3 {
	text-shadow:1px 1px 3px rgba(180,180,180,1.0);
}

.shadow-color-grey7 {
	text-shadow:1px 1px 3px rgba(255,255,255,1.0);
}

.text-align-left {
	text-align:left;
}

.text-align-center {
	text-align:center;
}

.text-align-right {
	text-align:right;
}

.text-wrap-auto {
	-webkit-hyphens:auto;
	-ms-hyphens:auto;
	-moz-hyphens:auto;
	hyphens:auto;
}

.text-wrap-balance {
	text-wrap:balance;
}

.text-wrap-pretty {
	text-wrap:pretty;
}

.text-flag-23 {
	position:relative;
	padding-bottom:clamp(20px, 3vw, 50px);
}

.text-flag-23:after {
	position:absolute;
	bottom:0;
	content:"";
	display:block;
	width:2.3vw;
	height:2.3vw;
	background-image:url(../../../../docs/de/53233/swiss-cross.svg?v=1.1);
	background-repeat:no-repeat;
	background-size:contain;
	margin-left:3px;
}

.text.text-speech-bubble {
	background-color:#DDB28D;
	color:#FFFFFF;
	font-family:Calibri,Arial,sans-serif;
	font-weight:normal;
	font-style:normal;
	-moz-border-radius:25px;
	-webkit-border-radius:25px;
	border-radius:25px;
	padding:clamp(30px, 3vw, 30px) clamp(40px, 8vw, 65px) clamp(35px, 3.1vw, 35px);
	position:relative;
	display:inline-block;
	margin-left:auto !important;
	margin-right:auto !important;
	font-size:3vw;
	line-height:3.6vw;
}

.text.text-speech-bubble:after {
	content:"";
	position:absolute;
	left:clamp(35px,5vw, 65px);
	bottom:clamp(-50px, -2.9vw, -25px);
	width:0;
	height:0;
	border-top-color:transparent;
	border-right-color:#DDB28D;
	border-bottom-color:transparent;
	border-left-color:transparent;
	border-top-width:clamp(25px, 3vw, 50px);
	border-right-width:clamp(25px, 3vw, 50px);
	border-bottom-width:clamp(25px, 3vw, 50px);
	border-left-width:clamp(25px, 3vw, 50px);
	border-style:solid;
	-webkit-transform:rotate(45deg);
	-ms-transform:rotate(45deg);
	transform:rotate(45deg);
}

.text-flag-23.text-align-center:after {
	left:50%;
	-webkit-transform:translateX(-50%);
	-ms-transform:translateX(-50%);
	transform:translateX(-50%);
}

.text-flag-23.text-align-right:after {
	right:3px;
}
/* style: Hauptstil language: default / engineId: default / pseudo: last-child */
.text:last-child {
	margin-bottom:0;
}

.text.fe:last-child {
	margin-bottom:10px;
}

/* b-delimiter */

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.b-delimiter {
	width:100%;
	height:1px;
	background-color:#DADADA;
	border-style:none;
	margin-top:20px;
	margin-bottom:20px;
}

.b-delimiter:first-child {
	margin-top:0;
}

.b-delimiter-border {
	width:100%;
	height:1px;
	background-color:#DADADA;
}

.m-newsletter .b-delimiter {
	border-bottom-style:solid;
	border-bottom-width:1px;
	border-bottom-color:#DADADA;
	height:0;
	margin-top:0;
	margin-bottom:0;
	background-color:transparent;
}

.m-newsletter .b-delimiter:first-child {
	margin-top:0;
}

.m-newsletter .section.delimiter {
	margin-bottom:0;
}

.m-newsletter .delimiter .col {
	height:0;
}

.m-newsletter .delimiter .border {
	margin-top:-1px;
	font-size:0;
	line-height:0;
	border-bottom-style:solid;
	border-bottom-width:2px;
	border-bottom-color:#DADADA;
}

.b-delimiter-medium {
	background-color:#B4B4B4;
}

.b-delimiter-dark {
	background-color:#888888;
}

.section.delimiter {
	margin-top:40px;
	margin-bottom:10px;
}

.multicolumn.delimiter {
	margin-bottom:10px;
	border-top-style:solid;
	border-top-width:1px;
	border-top-color:#DADADA;
}

.delimiter .multicolumn {
	border-top-style:solid;
	border-top-width:1px;
	border-top-color:#DADADA;
}

.delimiter .col {
	height:3px;
}

.delimiter .col:first-child {
	padding-right:25px;
}

.delimiter .border {
	height:3px;
	background-color:#DADADA;
}

.delimiter .border.nomargin {
	margin-right:0;
}

.delimiter.margin-10 {
	margin-top:10px;
	margin-bottom:10px;
}

.delimiter.border-bottom {
	border-top-width:0px;
	border-bottom-style:solid;
	border-bottom-width:1px;
	border-bottom-color:#DADADA;
}

.delimiter.border-bottom .col {
	height:auto;
	position:relative;
}

.delimiter.border-bottom .border {
	position:absolute;
	bottom:-4px;
	width:100%;
}

.delimiter.swiss-flag {
	display:block;
	margin-top:10px;
	margin-right:0;
	margin-bottom:0;
	margin-left:0;
}

.delimiter.swiss-flag:after {
	content:"";
	display:block;
	width:18px;
	height:18px;
	background-image:url(../../../../docs/de/53233/swiss-cross.svg?v=1.1);
	background-repeat:no-repeat;
	background-size:contain;
	margin-left:3px;
	margin-right:3px;
}
/* style: Hauptstil language: default / engineId: default / pseudo: last-child */
.delimiter .col:last-child {
	padding-left:25px;
}

/* b-listing */

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.b-listing {
	display:flex;
	flex-wrap:wrap;
	flex-direction:row;
}

.b-listing .b-entry.b-listing-border {
	padding-bottom:15px;
}

.b-listing .b-entry.b-listing-border .b-e-content {
	border-bottom-width:1px;
	border-bottom-style:solid;
	border-bottom-color:#DADADA;
}

.b-listing .b-entry.b-listing-border:first-child .b-e-content {
	padding-top:15px;
	border-top-width:1px;
	border-top-style:solid;
	border-top-color:#DADADA;
}

.b-listing .b-entry.b-listing-border:nth-child(2) .b-e-content {
	padding-top:15px;
	border-top-width:1px;
	border-top-style:solid;
	border-top-color:#DADADA;
}

.b-listing-centered {
	justify-content:center;
}

.b-listing-height-full > .b-entry > .b-e-content > .section {
	height:100%;
}

.b-entry-border-bottom {
	position:relative;
}

.b-entry-border-bottom:after {
	content:"";
	position:absolute;
	bottom:0;
	left:15px;
	right:15px;
	height:1px;
	background-color:#DADADA;
}

.b-listing-gap-none {
	gap:0px;
}

.b-listing-gap-micro {
	gap:4px;
}

.b-listing-gap-small {
	gap:clamp(2px, 1vw, 10px);
}

.b-listing-gap-medium {
	gap:clamp(15px, 4vw, 30px);
}

.b-listing-gap-large {
	gap:clamp(30px, 8vw, 50px);
}

.b-listing-gap-50-fluid {
	gap:clamp(0px, 2.7vw, 35px);
}

.b-listing-gap-100-fluid {
	gap:clamp(0px, 5.3vw, 70px);
}

.b-listing-gap-150-fluid {
	gap:clamp(0px, 7.9vw, 105px);
}

.b-entry {
	display:flex;
	flex-direction:column;
	flex:1 0 100%;
	max-width:100%;
	min-width:0;
}

.b-listing-boxes {
	margin-left:-25px;
	margin-right:-25px;
	width:auto;
}

.b-listing-boxes .b-e-header {
	margin-top:25px;
	margin-left:25px;
	margin-right:25px;
}

.b-listing-boxes .b-e-content {
	margin:25px;
}

.b-listing.b-listing-links .b-entry {
	display:block;
	background-color:transparent;
	-o-transition:background-color 0.3s ease 0s;
	-webkit-transition:background-color 0.3s ease 0s;
	transition:background-color 0.3s ease 0s;
}

.b-listing.b-listing-links .b-entry .b-e-header {
	display:none;
}

.b-listing.b-listing-links .b-entry .b-e-content .multicolumn .col:first-child {
	display:none;
}

.b-listing.b-listing-links .b-entry .b-e-content .multicolumn .col:last-child .text {
	display:none;
}

.b-listing.b-listing-links .b-entry .b-e-content .multicolumn .col:last-child .text.link {
	display:block;
}

.b-listing.b-listing-links .b-entry.list-item .b-e-content .text.paragraph {
	display:none;
}

.b-listing.b-listing-links .b-entry.list-item .b-e-content .title {
	margin:0;
	padding-top:10px;
	padding-right:0;
	padding-bottom:10px;
	padding-left:0;
	font-size:22px;
	color:#464A52;
	font-family:Calibri,Arial,sans-serif;
	font-weight:normal;
	font-style:normal;
}

.b-listing.b-listing-links .b-entry.d-document .link {
	width:100%;
	height:100%;
	border-bottom-style:solid;
	border-bottom-width:1px;
	border-bottom-color:#DADADA;
}

.b-listing.b-listing-links .b-entry.d-document .b-image {
	height:100%;
	width:100%;
}

.b-listing.b-listing-image .b-entry .col-2 {
	display:none;
}

.b-listing.b-listing-values .b-entry {
	display:flex;
	flex-direction:row;
	padding-top:5.3vw;
	padding-right:0;
	padding-bottom:5.3vw;
	padding-left:0;
}

.b-listing.b-listing-values .b-entry > * {
	flex:1 0 50%;
	padding-left:2.6vw;
	padding-right:2.6vw;
}

.b-listing.b-listing-values .b-entry > *:first-child {
	padding-left:0;
}

.b-listing.b-listing-values .b-entry:nth-child(even) > *:first-child {
	padding-right:0;
	padding-left:2.6vw;
}

.b-listing.b-listing-values .b-entry:first-child {
	padding-top:0;
}

.b-listing.b-listing-values .b-entry .b-e-header {
	display:flex;
	align-items:center;
}

.b-listing.b-listing-simple {
	display:flex;
	flex-direction:row;
	flex-wrap:nowrap;
	justify-content:center;
}

.b-listing.b-listing-simple .b-entry {
	min-width:unset;
	max-width:unset;
	flex:unset;
}

.b-listing.b-listing-simple .b-entry .b-e-header {
	display:none;
	margin:0;
}

.b-listing-blocks {
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	justify-content:center;
	gap:2px;
}

.b-listing-blocks .b-entry {
	min-width:unset;
	max-width:unset;
	flex-grow:1;
	flex-shrink:1;
	flex-basis:calc(50% - 2px);
}

.b-listing-blocks .b-entry .b-e-header {
	display:none;
	margin:0;
}

.b-listing-tiles {
	display:block;
}

.b-listing-tiles .b-entry {
	min-width:unset;
	max-width:unset;
	margin-bottom:7.9vw;
}

.b-listing-tiles .b-entry:nth-child(odd) .b-e-content > .section > .multicolumn {
	flex-direction:row-reverse;
}

.b-listing-tiles .b-entry:nth-child(odd) .b-e-content > .section > .multicolumn .col:first-child {
	padding-right:0;
	padding-left:25px !important;
}

.b-listing-tiles .b-entry .b-e-content > .section {
	max-width:100%;
}

.b-listing-tiles .b-entry .b-e-content > .section > .multicolumn {
	align-items:center;
}

.b-listing-tiles .b-entry .b-e-content > .section > .multicolumn .col {
	flex-direction:column;
	align-items:start;
}

.b-listing-tiles .b-entry .b-e-header {
	display:none;
	margin:0;
}

.m-listing-products {
	border-top-width:1px;
	border-top-style:solid;
	border-top-color:#9BA1AD;
	margin-top:20px;
	margin-right:0;
	margin-bottom:20px;
	margin-left:0;
}

.m-listing-products .m-product-entry {
	flex-direction:row;
	margin-top:3vw;
	margin-right:0;
	margin-bottom:0;
	margin-left:0;
	padding-bottom:4vw;
	border-bottom-width:1px;
	border-bottom-style:solid;
	border-bottom-color:#9BA1AD;
}

.m-listing-products .m-product-entry .b-e-header {
	padding-right:2.6vw;
	margin:0;
}

.m-listing-products .m-product-entry .b-e-content {
	padding-left:2.6vw;
	padding-top:4vw;
	margin:0;
	display:flex;
	align-items:center;
	flex-direction:unset;
}

.m-listing-products .m-product-entry > * {
	flex:1 0 50%;
}

.m-listing-products .m-product-entry .b-image {
	min-height:33vw;
	object-fit:contain;
}

.m-listing-products .m-product-entry .b-image-label {
	display:block;
	text-align:center;
	margin-top:clamp(5px, 1.6vw, 21px);
}

.m-listing-news .b-listing-2 .b-entry {
	padding-bottom:clamp(25px, 6.6vw, 69px);
}

.b-listing.b-listing-filter.b-listing-boxes {
	margin-left:-5px;
	margin-right:-5px;
}

.b-listing.b-listing-filter .b-entry {
	border-width:1px;
	border-style:solid;
	border-color:#EDEDED;
	color:#464A52;
	font-family:Calibri,Arial,sans-serif;
	font-weight:bold;
	font-style:normal;
	margin:10px;
	-o-transition:all 0.3s ease 0s;
	-webkit-transition:all 0.3s ease 0s;
	transition:all 0.3s ease 0s;
}

.b-listing.b-listing-filter .b-entry .b-e-header {
	margin-top:0;
}

.b-listing.b-listing-filter .b-entry .b-e-header .icon {
	display:inline-block;
	min-width:23px;
	position:absolute;
	top:50%;
	left:0;
	-webkit-transform:translateY(-50%);
	-ms-transform:translateY(-50%);
	transform:translateY(-50%);
}

.b-listing.b-listing-filter .b-entry .b-e-header .icon.icon-coffee {
	left:-10px;
}

.b-listing.b-listing-filter .b-entry .b-e-content {
	margin:15px;
}

.b-listing.b-listing-filter .b-entry .b-e-content .text {
	position:relative;
	top:3px;
}

.b-listing.b-listing-filter .b-entry .b-e-content .form-group {
	margin:0;
	position:absolute;
	top:50%;
	right:0;
	-webkit-transform:translateY(-50%);
	-ms-transform:translateY(-50%);
	transform:translateY(-50%);
}

.b-listing.b-listing-filter .b-entry.active {
	border-color:#DFB07C;
}

.b-listing.b-listing-filter .b-entry.b-entry-filler {
	border-width:0px;
}

.border-list-wrapper.multicolumn {
	justify-content:space-between;
}

.border-list-wrapper .col {
	width:100%;
	margin-top:0;
	margin-right:25px;
	margin-bottom:0;
	margin-left:25px;
	border-top-width:1px;
	border-top-style:solid;
	border-top-color:#B4B4B4;
}

.border-list-wrapper .link:before {
	content:"";
	padding:0;
}

.b-listing.b-listing-links.b-listing-horizontal .b-entry.d-document {
	padding-top:25px;
	padding-right:25px;
	padding-bottom:0;
	padding-left:25px;
}

.b-listing.b-listing-links.b-listing-horizontal .b-entry.d-document .b-e-header {
	margin-top:0;
	margin-bottom:25px;
	margin-left:0;
	margin-right:25px;
}

.b-listing.b-listing-links.b-listing-horizontal .b-entry.d-document .b-e-header .b-image {
	height:62px;
	width:auto;
}

.b-listing.b-listing-links.b-listing-horizontal .b-entry.d-document .b-e-content {
	margin-top:0;
	margin-right:0;
	margin-bottom:25px;
	margin-left:0;
}

.b-listing.b-listing-links.b-listing-horizontal .b-entry.d-document .b-e-content .text.paragraph {
	margin-bottom:5px;
}

.b-listing.b-listing-links.b-listing-horizontal .b-entry.d-document .b-e-content .text {
	margin-top:0;
}

.b-listing.b-listing-fixed .b-entry {
	max-width:257.5px;
	min-width:257.5px;
}

.bo-b-listing.bo-b-listing-fixed .b-entry {
	max-width:257.5px;
	min-width:257.5px;
}

.b-listing.b-listing-halfwidth .b-entry {
	flex:1 0 50%;
	max-width:400px;
	min-width:200px;
}

.bo-b-listing.bo-b-listing-halfwidth .b-entry {
	flex:1 0 50%;
	max-width:400px;
	min-width:200px;
}

.b-listing-2 .b-entry {
	flex:1 0 50%;
	max-width:760px;
	min-width:300px;
	padding-top:0;
	padding-right:25px;
	padding-bottom:25px;
	padding-left:25px;
}

.b-listing-3 .b-entry {
	flex:1 0 31%;
	max-width:600px;
	min-width:290px;
}

.b-listing-4 .b-entry {
	flex:1 0 22%;
	max-width:400px;
	min-width:240px;
}

.b-listing-5 .b-entry {
	flex:1 0 17%;
	max-width:260px;
	min-width:180px;
}

.m-listing-slider.brick .l-s-c-control {
	border-style:solid;
	border-width:1px;
	border-color:#EDEDED;
	top:50%;
	-webkit-transform:translateY(-50%);
	-ms-transform:translateY(-50%);
	transform:translateY(-50%);
}

.b-listing.b-listing-horizontal.b-listing-row-reverse .b-entry {
	flex-direction:row-reverse;
}

.multicolumn.b-listing-row-reverse {
	flex-direction:row-reverse;
}

.b-entry-filler {
	pointer-events:none;
	padding:0 !important;
}

.b-listing.b-listing-horizontal .b-entry {
	display:flex;
	flex-direction:row;
}

.b-listing.b-listing-horizontal .b-entry .b-e-header {
	margin-right:25px;
	margin-bottom:0;
}

.b-listing.b-listing-horizontal .b-entry .b-e-content {
	flex:1 0 auto;
}

.b-listing.b-listing-horizontal .b-entry > .link {
	display:flex;
}

.b-e-header {
	margin-bottom:25px;
}

.b-e-header .b-image {
	height:150px;
	width:100%;
	display:block;
	object-fit:cover;
}

.b-e-header .b-image.small {
	height:150px;
}

.b-listing-hide-header .b-e-header {
	display:none;
}

.b-e-content {
	flex:1 0 auto;
	display:flex;
	flex-direction:column;
}

.b-e-content .icon-download {
	margin-right:5px;
}

.b-e-content .icon-play {
	margin-right:5px;
}

.b-e-content .info-document {
	margin-left:25px;
}

.b-e-content .icon-document {
	margin-right:5px;
}

.multicolumn.b-mc-space > * > .b-listing {
	margin-left:-25px;
	margin-right:-25px;
}

.simple-list-wrapper .simple-list-item {
	display:flex;
	border-bottom-width:1px;
	border-bottom-style:solid;
	padding-top:5px;
	padding-bottom:5px;
}

.simple-list-wrapper .simple-list-item > * {
	flex-basis:100%;
	padding-top:0;
	padding-right:10px;
	padding-bottom:0;
	padding-left:10px;
	white-space:nowrap;
	line-height:29px;
}

.simple-list-wrapper .simple-list-item > *:first-child {
	padding-left:0;
}

.simple-list-wrapper .simple-list-item.simple-list-light {
	border-bottom-color:#DADADA;
}

.simple-list-wrapper .actions {
	min-width:200px;
}

.simple-list-wrapper .actions > * {
	margin-left:10px;
}

.simple-list-wrapper .actions .d-icon-link {
	line-height:29px;
}

.simple-list-wrapper.claim-list .simple-list-item p {
	flex:16.6666667% 1 0;
}

.simple-list-wrapper.claim-list .simple-list-item p:first-child {
	max-width:70px;
}

.b-listing.b-listing-gap-micro .b-entry {
	padding:0;
}

.b-listing-2.b-listing-gap-micro .b-entry {
	flex:1 0 calc(50% - 4px);
}

.b-listing-2.b-listing-gap-micro .b-entry .b-e-header {
	display:none;
}

.b-listing-slider .swiper-slide .b-entry {
	display:block;
}

.b-listing-slider .swiper-slide .b-e-content {
	display:block;
}

.b-listing-slider .swiper-slide .section {
	width:100%;
	max-width:100%;
}

.b-listing-slider .swiper-slide .multicolumn {
	display:block;
}

.b-listing-slider .b-listing-gap-small {
	width:clamp(2px, 1vw, 10px);
	height:0;
	-ms-filter:Alpha(opacity=0);
	filter:Alpha(opacity=0);
	opacity:0;
	visibility:hidden;
}

.b-listing-slider .b-listing-gap-medium {
	width:clamp(15px, 4vw, 30px);
	height:0;
	-ms-filter:Alpha(opacity=0);
	filter:Alpha(opacity=0);
	opacity:0;
	visibility:hidden;
}

.b-listing-slider .b-listing-gap-large {
	width:clamp(30px, 8vw, 50px);
	height:0;
	-ms-filter:Alpha(opacity=0);
	filter:Alpha(opacity=0);
	opacity:0;
	visibility:hidden;
}

.b-listing-slider .b-listing-gap-50-fluid {
	width:clamp(0px, 2.7vw, 35px);
	height:0;
	-ms-filter:Alpha(opacity=0);
	filter:Alpha(opacity=0);
	opacity:0;
	visibility:hidden;
}

.b-listing-slider .b-listing-gap-100-fluid {
	width:clamp(0px, 5.3vw, 70px);
	height:0;
	-ms-filter:Alpha(opacity=0);
	filter:Alpha(opacity=0);
	opacity:0;
	visibility:hidden;
}

.b-listing-slider .b-listing-gap-150-fluid {
	width:clamp(0px, 7.9vw, 105px);
	height:0;
	-ms-filter:Alpha(opacity=0);
	filter:Alpha(opacity=0);
	opacity:0;
	visibility:hidden;
}
/* style: Hauptstil language: default / engineId: default / pseudo: hover */
.b-listing.b-listing-filter .b-entry:hover {
	text-decoration:none;
	border-color:#DFB07C;
}

.simple-list-wrapper .highlight-on-hover .highlight-on-hover:hover {
	background-color:#CCDCDA;
}
/* style: Hauptstil language: default / engineId: default / pseudo: last-child */
.b-listing.b-listing-values .b-entry:last-child {
	padding-bottom:0;
}

.b-listing.b-listing-values .b-entry > *:last-child {
	padding-right:0;
}

.b-listing.b-listing-values .b-entry:nth-child(even) > *:last-child {
	padding-left:0;
	padding-right:2.6vw;
}

.b-listing-tiles .b-entry:nth-child(odd) .b-e-content > .section > .multicolumn .col:last-child {
	padding-left:0;
	padding-right:25px !important;
}

.m-listing-products .m-product-entry:last-child {
	border-bottom-width:0;
}

.simple-list-wrapper .simple-list-item > *:last-child {
	padding-right:0;
}
/* style: Hauptstil language: default / engineId: default / pseudo: nth-child(2n) */
.simple-list-wrapper.claim-list .simple-list-item p:nth-child(2n) {
	max-width:90px;
	overflow:hidden;
	text-overflow:ellipsis;
}
/* style: Hauptstil language: default / engineId: default / pseudo: nth-child(3n) */
.simple-list-wrapper.claim-list .simple-list-item p:nth-child(3n) {
	min-width:200px;
	overflow:hidden;
	text-overflow:ellipsis;
}
/* style: Hauptstil language: default / engineId: default / pseudo: nth-child(4n) */
.simple-list-wrapper.claim-list .simple-list-item p:nth-child(4n) {
	min-width:350px;
	max-width:400px;
	overflow:hidden;
	text-overflow:ellipsis;
}
/* style: Hauptstil language: default / engineId: default / pseudo: nth-child(even) */
.b-listing.b-listing-values .b-entry:nth-child(even) {
	flex-direction:row-reverse;
}

.border-list-wrapper .col:nth-child(even) {
	margin-right:0;
}

.b-listing-2 .b-entry:nth-child(even) {
	padding-right:0;
}
/* style: Hauptstil language: default / engineId: default / pseudo: nth-child(odd) */
.border-list-wrapper .col:nth-child(odd) {
	margin-left:0;
}

.b-listing-2 .b-entry:nth-child(odd) {
	padding-left:0;
}

/* b-image */

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.b-image {
	width:100%;
	max-width:100%;
	height:auto;
	display:block;
	object-fit:contain;
}

.b-image.d-cover {
	object-fit:cover;
}

.b-image.d-contain {
	object-fit:contain;
}

.b-image-original {
	width:auto !important;
	max-width:initial !important;
}

.image-object-position-top {
	object-position:top;
}

.image-object-position-bottom {
	object-position:bottom;
}

.image-object-position-left {
	object-position:left;
}

.image-object-position-right {
	object-position:right;
}

.b-image-label {
	margin-left:auto;
	margin-right:auto;
	max-width:45vw;
	line-height:1.8vw;
	font-size:clamp(16px, 1.85vw, 22px);
	margin-top:clamp(5px, 1.3vw, 50px);
	margin-bottom:0px;
}

.b-image-label.text-align-left {
	margin-left:0;
	margin-right:0;
	text-align:left;
	display:block;
	max-width:none;
	width:100%;
}

.b-image-label.text-align-right {
	margin-left:0;
	margin-right:0;
	text-align:right;
	display:block;
	max-width:none;
	width:100%;
}

.multicolumn > .col > .b-image {
	width:100%;
	display:block;
}

.image-height-s {
	height:100px !important;
}

.image-height-m {
	height:150px !important;
}

.image-height-l {
	height:200px !important;
}

.image-height-100 {
	height:100% !important;
	width:auto;
}

.b-image.image-height-listing-product {
	max-width:315px;
	margin-inline:auto !important;
}

.image-max-height-25 {
	max-height:25vh;
}

.image-max-height-32 {
	max-height:32vh;
}

.image-max-height-40 {
	max-height:40vh;
}

.image-max-height-50 {
	max-height:50vh;
}

.image-max-height-60 {
	max-height:60vh;
}

.image-max-height-67 {
	max-height:67vh;
}

.image-max-height-75 {
	max-height:75vh;
}

.image-max-height-100 {
	max-height:100vh;
}

.b-image-description-max-width-75 {
	max-width:calc(75% - 25px);
}

.b-image-description-max-width-50 {
	max-width:calc(50% - 25px);
}

.b-image-description-max-width-25 {
	max-width:calc(25% - 25px);
}

.lazyload-animated {
	-ms-filter:Alpha(opacity=100);
	filter:Alpha(opacity=100);
	opacity:1;
	-o-transition:opacity 0.8s ease 0s;
	-webkit-transition:opacity 0.8s ease 0s;
	transition:opacity 0.8s ease 0s;
}

.lazyload-animated.hidden {
	-ms-filter:Alpha(opacity=0);
	filter:Alpha(opacity=0);
	opacity:0;
	background-color:#EDEDED;
	-o-transition:opacity 0s ease 0s;
	-webkit-transition:opacity 0s ease 0s;
	transition:opacity 0s ease 0s;
}

.image-zoom-link {
	position:relative;
	display:block;
	overflow:hidden;
	cursor:pointer;
}

.image-zoom-link .b-image {
	-webkit-transform:scale(1);
	-ms-transform:scale(1);
	transform:scale(1);
	-o-transition:opacity 0.4s ease 0s, -o-transform 0.4s ease 0s;
	-webkit-transition:opacity 0.4s ease 0s, -webkit-transform 0.4s ease 0s;
	transition:opacity 0.4s ease 0s, transform 0.4s ease 0s;
}

.image-zoom-link .b-image.hidden {
	-o-transition:opacity 0s ease 0s, -o-transform 0.4s ease 0s;
	-webkit-transition:opacity 0s ease 0s, -webkit-transform 0.4s ease 0s;
	transition:opacity 0s ease 0s, transform 0.4s ease 0s;
}

.image-zoom-link:hover .b-image {
	-webkit-transform:scale(1.05);
	-ms-transform:scale(1.05);
	transform:scale(1.05);
}

.image-zoom-link:after {
	-ms-filter:Alpha(opacity=0);
	filter:Alpha(opacity=0);
	opacity:0;
	content:attr(data-zoom-label);
	position:absolute;
	bottom:0;
	left:0;
	width:100%;
	text-align:center;
	z-index:1;
	background-color:#EDEDED;
	-o-transition:opacity 0.4s ease 0s;
	-webkit-transition:opacity 0.4s ease 0s;
	transition:opacity 0.4s ease 0s;
	pointer-events:none;
	padding-top:5px;
	padding-right:10px;
	padding-bottom:7px;
	padding-left:10px;
}

.b-i-full-height {
	height:100%;
}

.m-newsletter .b-image {
	line-height:null !important;
}

.m-newsletter-online-view .b-image {
	width:auto !important;
}
/* style: Hauptstil language: default / engineId: default / pseudo: hover:after */
.image-zoom-link:hover:after {
	-ms-filter:Alpha(opacity=100);
	filter:Alpha(opacity=100);
	opacity:1;
}

/* animation */

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.anim-appear {
	-ms-filter:Alpha(opacity=100);
	filter:Alpha(opacity=100);
	opacity:1;
	-o-transition:opacity 0.3s ease-in 0s;
	-webkit-transition:opacity 0.3s ease-in 0s;
	transition:opacity 0.3s ease-in 0s;
}

.anim-appear.anim-start {
	-ms-filter:Alpha(opacity=0);
	filter:Alpha(opacity=0);
	opacity:0;
}

.anim-fadeinTop {
	position:relative;
	-webkit-transform:translateY(0);
	-ms-transform:translateY(0);
	transform:translateY(0);
	-ms-filter:Alpha(opacity=100);
	filter:Alpha(opacity=100);
	opacity:1;
	-o-transition:opacity 0.3s ease-in 0s, -o-transform 0.3s ease-in 0s;
	-webkit-transition:opacity 0.3s ease-in 0s, -webkit-transform 0.3s ease-in 0s;
	transition:opacity 0.3s ease-in 0s, transform 0.3s ease-in 0s;
}

.anim-fadeinTop.anim-start {
	-webkit-transform:translateY(-50px);
	-ms-transform:translateY(-50px);
	transform:translateY(-50px);
	-ms-filter:Alpha(opacity=0);
	filter:Alpha(opacity=0);
	opacity:0;
}

.anim-fadeinBottom {
	position:relative;
	-webkit-transform:translateY(0);
	-ms-transform:translateY(0);
	transform:translateY(0);
	-ms-filter:Alpha(opacity=100);
	filter:Alpha(opacity=100);
	opacity:1;
	-o-transition:opacity 0.3s ease-in 0s, -o-transform 0.3s ease-in 0s;
	-webkit-transition:opacity 0.3s ease-in 0s, -webkit-transform 0.3s ease-in 0s;
	transition:opacity 0.3s ease-in 0s, transform 0.3s ease-in 0s;
}

.anim-fadeinBottom.anim-start {
	-webkit-transform:translateY(100px);
	-ms-transform:translateY(100px);
	transform:translateY(100px);
	-ms-filter:Alpha(opacity=0);
	filter:Alpha(opacity=0);
	opacity:0;
}

.anim-fadeinLeft {
	position:relative;
	-webkit-transform:translateX(0);
	-ms-transform:translateX(0);
	transform:translateX(0);
	-ms-filter:Alpha(opacity=100);
	filter:Alpha(opacity=100);
	opacity:1;
	-o-transition:opacity 0.3s ease-in 0s, -o-transform 0.3s ease-in 0s;
	-webkit-transition:opacity 0.3s ease-in 0s, -webkit-transform 0.3s ease-in 0s;
	transition:opacity 0.3s ease-in 0s, transform 0.3s ease-in 0s;
}

.anim-fadeinLeft.anim-start {
	-webkit-transform:translateX(-100px);
	-ms-transform:translateX(-100px);
	transform:translateX(-100px);
	-ms-filter:Alpha(opacity=0);
	filter:Alpha(opacity=0);
	opacity:0;
}

.anim-fadeinRight {
	position:relative;
	-webkit-transform:translateX(0);
	-ms-transform:translateX(0);
	transform:translateX(0);
	-ms-filter:Alpha(opacity=100);
	filter:Alpha(opacity=100);
	opacity:1;
	-o-transition:opacity 0.3s ease-in 0s, -o-transform 0.3s ease-in 0s;
	-webkit-transition:opacity 0.3s ease-in 0s, -webkit-transform 0.3s ease-in 0s;
	transition:opacity 0.3s ease-in 0s, transform 0.3s ease-in 0s;
}

.anim-fadeinRight.anim-start {
	-webkit-transform:translateX(100px);
	-ms-transform:translateX(100px);
	transform:translateX(100px);
	-ms-filter:Alpha(opacity=0);
	filter:Alpha(opacity=0);
	opacity:0;
}

.anim-turn {
	-ms-filter:Alpha(opacity=100);
	filter:Alpha(opacity=100);
	opacity:1;
	-webkit-transform:rotate(0deg);
	-ms-transform:rotate(0deg);
	transform:rotate(0deg);
	-o-transition:-o-transform 0.5s ease-in 0s, opacity 0.5s ease 0s;
	-webkit-transition:-webkit-transform 0.5s ease-in 0s, opacity 0.5s ease 0s;
	transition:transform 0.5s ease-in 0s, opacity 0.5s ease 0s;
}

.anim-turn.anim-start {
	-ms-filter:Alpha(opacity=0);
	filter:Alpha(opacity=0);
	opacity:0;
	-webkit-transform:rotate(360deg);
	-ms-transform:rotate(360deg);
	transform:rotate(360deg);
}

.anim-turnX {
	-webkit-transform:rotateX(0deg);
	-ms-transform:rotateX(0deg);
	transform:rotateX(0deg);
	-o-transition:-o-transform 0.5s ease-in 0s;
	-webkit-transition:-webkit-transform 0.5s ease-in 0s;
	transition:transform 0.5s ease-in 0s;
}

.anim-turnX.anim-start {
	-webkit-transform:rotateX(-90deg);
	-ms-transform:rotateX(-90deg);
	transform:rotateX(-90deg);
}

.anim-turnY {
	-webkit-transform:rotateY(0deg);
	-ms-transform:rotateY(0deg);
	transform:rotateY(0deg);
	-o-transition:-o-transform 0.5s ease-in 0s;
	-webkit-transition:-webkit-transform 0.5s ease-in 0s;
	transition:transform 0.5s ease-in 0s;
}

.anim-turnY.anim-start {
	-webkit-transform:rotateY(-90deg);
	-ms-transform:rotateY(-90deg);
	transform:rotateY(-90deg);
}

.anim-zoomIn {
	-webkit-transform:scale(1,1);
	-ms-transform:scale(1,1);
	transform:scale(1,1);
	-o-transition:opacity 0.5s ease-in 0s, -o-transform 0.5s ease-in 0s;
	-webkit-transition:opacity 0.5s ease-in 0s, -webkit-transform 0.5s ease-in 0s;
	transition:opacity 0.5s ease-in 0s, transform 0.5s ease-in 0s;
}

.anim-zoomIn.anim-start {
	-webkit-transform:scale(2,2);
	-ms-transform:scale(2,2);
	transform:scale(2,2);
}

.anim-zoomOut {
	-ms-filter:Alpha(opacity=100);
	filter:Alpha(opacity=100);
	opacity:1;
	-webkit-transform:scale(1,1);
	-ms-transform:scale(1,1);
	transform:scale(1,1);
	-o-transition:opacity 0.5s ease-in 0s, -o-transform 0.5s ease-in 0s;
	-webkit-transition:opacity 0.5s ease-in 0s, -webkit-transform 0.5s ease-in 0s;
	transition:opacity 0.5s ease-in 0s, transform 0.5s ease-in 0s;
}

.anim-zoomOut.anim-start {
	-ms-filter:Alpha(opacity=0);
	filter:Alpha(opacity=0);
	opacity:0;
	-webkit-transform:scale(0,0);
	-ms-transform:scale(0,0);
	transform:scale(0,0);
}

.anim-wave {
	-ms-filter:Alpha(opacity=100);
	filter:Alpha(opacity=100);
	opacity:1;
	-webkit-transform:rotateY(0deg);
	-ms-transform:rotateY(0deg);
	transform:rotateY(0deg);
	-webkit-transform-origin:0 0 0;
	-ms-transform-origin:0 0 0;
	transform-origin:0 0 0;
	-o-transition:opacity 0.3s ease 0s, -o-transform 0.3ms ease 0s;
	-webkit-transition:opacity 0.3s ease 0s, -webkit-transform 0.3ms ease 0s;
	transition:opacity 0.3s ease 0s, transform 0.3ms ease 0s;
}

.anim-wave.anim-start {
	-ms-filter:Alpha(opacity=0);
	filter:Alpha(opacity=0);
	opacity:0;
	-webkit-transform:rotateY(90deg);
	-ms-transform:rotateY(90deg);
	transform:rotateY(90deg);
}

.anim-curve-ease {
	-o-transition-timing-function:ease;
	-webkit-transition-timing-function:ease;
	transition-timing-function:ease;
}

.anim-curve-ease-in {
	-o-transition-timing-function:ease-in;
	-webkit-transition-timing-function:ease-in;
	transition-timing-function:ease-in;
}

.anim-curve-ease-in-out {
	-o-transition-timing-function:ease-in-out;
	-webkit-transition-timing-function:ease-in-out;
	transition-timing-function:ease-in-out;
}

.anim-curve-ease-out {
	-o-transition-timing-function:ease-out;
	-webkit-transition-timing-function:ease-out;
	transition-timing-function:ease-out;
}

.anim-curve-linear {
	-o-transition-timing-function:linear;
	-webkit-transition-timing-function:linear;
	transition-timing-function:linear;
}

.anim-curve-cubic-bezier-1 {
	-o-transition-timing-function:cubic-bezier(0.680, -0.550, 0.265, 1.550);
	-webkit-transition-timing-function:cubic-bezier(0.680, -0.550, 0.265, 1.550);
	transition-timing-function:cubic-bezier(0.680, -0.550, 0.265, 1.550);
}

/* b-multicolumn */

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.multicolumn {
	display:flex;
	width:100%;
	flex-direction:row;
}

.multicolumn .col {
	background-size:cover;
	background-position:center;
	background-repeat:no-repeat;
}

.multicolumn .col.col-flex {
	flex:1 0 auto;
}

.b-mc-space {
	margin-left:-25px;
	margin-right:-25px;
	width:auto;
}

.b-mc-space > .col {
	padding-left:25px;
	padding-right:25px;
}

.b-mc-space-medium {
	margin-left:-2.5px;
	margin-right:-2.5px;
	width:auto;
}

.b-mc-space-medium > .col,
.m-newsletter .b-mc-space-medium > tr > .col {
	padding-left:2.5px;
	padding-right:2.5px;
}

.m-newsletter .b-mc-space-small > tr > .col {
	padding-left:0.5px;
	padding-right:0.5px;
}

.m-newsletter .b-mc-space-no > tr > .col {
	padding-left:0;
	padding-right:0;
}

.m-newsletter .multicolumn {
	width:100%;
	margin-top:20px;
	margin-bottom:20px;
	margin-left:0;
	margin-right:0;
}

.m-newsletter .multicolumn .col.newsletter-mc-first-col {
	padding-left:0;
}

.m-newsletter .multicolumn .col.newsletter-mc-last-col {
	padding-right:0;
}

.m-newsletter .mc-space-creator {
	width:15px;
	margin:0;
}

.m-newsletter .mc-space-creator.b-mc-space {
	width:15px;
}

.m-newsletter .mc-space-creator.b-mc-space-small {
	width:1px;
}

.m-newsletter .mc-space-creator.b-mc-space-medium {
	width:5px;
}

.m-newsletter .mc-space-creator.b-mc-space-no {
	width:0px;
}

.m-newsletter .b-mc-space-line {
	border-left-style:solid;
	border-left-width:1px;
	border-left-color:#000000;
}

.m-newsletter .multicolumn.outlook-multicolumn.cols-50 .col-1 {
	width:50%;
}

.m-newsletter .multicolumn.outlook-multicolumn.cols-50 .col-1 > .col-1 {
	width:auto;
}

.m-newsletter .multicolumn.outlook-multicolumn.cols-33 .col-1 {
	width:33.333%;
}

.m-newsletter .multicolumn.outlook-multicolumn.cols-33 .col-1 > .col-1 {
	width:auto;
}

.m-newsletter .multicolumn.outlook-multicolumn.cols-33 .col-2 {
	width:66.666%;
}

.m-newsletter .multicolumn.outlook-multicolumn.cols-33 .col-2 > .col-2 {
	width:auto;
}

.m-newsletter .multicolumn.outlook-multicolumn.cols-25 .col-1 {
	width:25%;
}

.m-newsletter .multicolumn.outlook-multicolumn.cols-25 .col-1 > .col-1 {
	width:auto;
}

.m-newsletter .multicolumn.outlook-multicolumn.cols-25 .col-3 {
	width:75%;
}

.m-newsletter .multicolumn.outlook-multicolumn.cols-25 .col-3 > .col-3 {
	width:auto;
}

.m-newsletter .multicolumn.outlook-multicolumn.cols-20 .col-1 {
	width:20%;
}

.m-newsletter .multicolumn.outlook-multicolumn.cols-20 .col-1 > .col-1 {
	width:auto;
}

.m-newsletter .multicolumn.outlook-multicolumn.cols-20 .col-4 {
	width:80%;
}

.m-newsletter .multicolumn.outlook-multicolumn.cols-20 .col-4 > .col-4 {
	width:auto;
}

.b-mc-space-small {
	margin-left:-0.5px;
	margin-right:-0.5px;
	width:auto;
}

.b-mc-space-small > .col {
	padding-left:0.5px;
	padding-right:0.5px;
}

.b-mc-space-no {
	margin-left:0;
	margin-right:0;
	width:auto;
}

.b-mc-space-no > .col {
	padding-left:0;
	padding-right:0;
}

.b-mc-space-line {
	width:auto;
}

.b-mc-space-line > .col {
	border-left-style:solid;
	border-left-width:0.5px;
	border-left-color:#464A52;
	border-right-style:solid;
	border-right-width:0.5px;
	border-right-color:#464A52;
}

.b-mc-space-line > .col:first-child {
	border-left-width:0;
}

.b-mc-space-fluid > .col {
	padding-left:25px;
	padding-right:25px;
}

.b-mc-space-fluid > .col:first-child {
	padding-left:0 !important;
}

.b-mc-space-fluid-inside > .col {
	padding-left:25px;
	padding-right:25px;
}

.b-mc-space-fluid-inside > *:first-child {
	padding-left:0 !important;
}

.b-mc-space-fluid-inside.cols-33 {
	margin-left:calc(-1 * 15px);
	width:calc(100% + 2 * 15px);
}

.b-mc-space-fluid-inside.cols-33 > .col {
	padding-left:15px;
	padding-right:15px;
}

.b-mc-space-fluid-inside.cols-33 > *:first-child {
	padding-left:15px !important;
}

.multicolumn.mod-flex-vertical-align-center > .col {
	display:flex;
	align-items:center;
}

.multicolumn.mod-flex-nowrap .col {
	min-width:unset;
}

.b-mc-height-full > .col > .section {
	height:100%;
}

.multicolumn-nowrap {
	display:flex;
	flex-direction:row !important;
}

.multicolumn-nowrap .col.col-flex {
	flex:1 0 auto;
}

.mod-row-reverse {
	flex-direction:row-reverse;
}

.multicolumn.mod-reset-brick-margins {
	margin-top:0;
	margin-bottom:0;
}

.cols-50 > .col-1 {
	width:50%;
}

.cols-33 > .col-1 {
	width:33.333%;
}

.cols-33 > .col-2 {
	width:66.666%;
}

.cols-25 > .col-1 {
	width:25%;
}

.cols-25 > .col-2 {
	width:50%;
}

.cols-25 > .col-3 {
	width:75%;
}

.cols-20 > .col-1 {
	width:20%;
}

.cols-20 > .col-2 {
	width:40%;
}

.cols-20 > .col-3 {
	width:60%;
}

.cols-20 > .col-4 {
	width:80%;
}

.b-mc-max-col-width-auto .col-1 {
	max-width:none;
}

.bo-multicolumn {
	padding-top:10px;
	padding-bottom:10px;
}

.bo-mc-preview-list {
	display:flex;
	flex-wrap:wrap;
	margin-top:0;
	margin-right:-20px;
	margin-bottom:0;
	margin-left:-20px;
	position:relative;
}

.bo-mc-preview-item {
	flex:1 0 20%;
	max-width:25%;
	text-align:center;
	padding-top:10px;
	padding-right:20px;
	padding-bottom:10px;
	padding-left:20px;
}

.bo-mc-preview-item .col {
	margin:2px;
	min-height:50px;
	background-color:#BAC3C7;
}

.bo-multicolumn.b-mc-height-full > .col > * > * > * {
	height:100%;
}

.fe.box-padding-none {
	padding:0px;
}
/* style: Hauptstil language: default / engineId: default / pseudo: last-child */
.b-mc-space-line > .col:last-child {
	border-right-width:0;
}

.b-mc-space-fluid > .col:last-child {
	padding-right:0 !important;
}

.b-mc-space-fluid-inside > *:last-child {
	padding-right:0 !important;
}

.b-mc-space-fluid-inside.cols-33 > *:last-child {
	padding-right:15px !important;
}

/* navigation */

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.overlay {
	position:fixed;
	width:100%;
	height:100%;
	z-index:12;
	pointer-events:none;
	-ms-filter:Alpha(opacity=0);
	filter:Alpha(opacity=0);
	opacity:0;
	background-color:#F8F5F4;
	visibility:hidden;
	-webkit-transform:translate3d(0, -30vh, 0);
	-ms-transform:translate3d(0, -30vh, 0);
	transform:translate3d(0, -30vh, 0);
	-o-transition:opacity 0.3s ease 0s, visibility 0.3s ease 0.1s, -o-transform 0.3s ease 0s;
	-webkit-transition:opacity 0.3s ease 0s, visibility 0.3s ease 0.1s, -webkit-transform 0.3s ease 0s;
	transition:opacity 0.3s ease 0s, visibility 0.3s ease 0.1s, transform 0.3s ease 0s;
}

.overlay .title-h1 {
	font-size:4vw;
	line-height:4.7vw;
}

.overlay .title-h3 {
	font-size:3vw;
	line-height:3.6vw;
}

.overlay .overlay-close {
	bottom:auto;
	top:-25px;
	right:50%;
	-webkit-transform:translateX(65%);
	-ms-transform:translateX(65%);
	transform:translateX(65%);
	z-index:10;
	background-image:url(../../../../docs/de/55811/overlay-close.svg?v=1.0);
	position:absolute;
	width:5.2vw;
	height:5.2vw;
}

.overlay.popup {
	top:0;
	left:0;
	background-color:#F8F5F4;
	-webkit-transform:none;
	-ms-transform:none;
	transform:none;
}

.overlay.popup .overlay-close {
	top:25px;
}

.overlay.popup > .section {
	padding-top:50px;
	background-color:#FFFFFF;
}

.overlay.popup .overlay-continue {
	position:absolute;
	z-index:1;
	bottom:30px;
	right:30px;
}

.overlay.trigger-popup {
	-webkit-transform:translate3d(10vw,0, 0);
	-ms-transform:translate3d(10vw,0, 0);
	transform:translate3d(10vw,0, 0);
	width:100%;
	bottom:clamp(20px, 5vw, 40px);
	right:clamp(20px, 5vw, 40px);
	height:auto;
	max-height:calc(100% - 150px);
	overflow-x:hidden;
	overflow-y:auto;
	max-width:640px;
	padding:0;
	background-color:transparent;
	-moz-border-radius:20px;
	-webkit-border-radius:20px;
	border-radius:20px;
	-moz-box-shadow:4px 4px 3px 0px rgba(155,161,173,0.4);
	-webkit-box-shadow:4px 4px 3px 0px rgba(155,161,173,0.4);
	box-shadow:4px 4px 3px 0px rgba(155,161,173,0.4);
	z-index:15;
}

.overlay.trigger-popup .overlay-close {
	right:60px;
	background-image:none;
	width:60px;
	height:50px;
	top:0px;
	font-size:60px;
	text-align:center;
	color:#464A52;
}

.overlay.trigger-popup .overlay-close:before {
	content:'X';
	font-family:Touchway;
	font-weight:normal;
	font-style:normal;
}

.overlay.active {
	pointer-events:all;
	-ms-filter:Alpha(opacity=100);
	filter:Alpha(opacity=100);
	opacity:1;
	visibility:visible;
	-webkit-transform:translate3d(0, 0, 0);
	-ms-transform:translate3d(0, 0, 0);
	transform:translate3d(0, 0, 0);
}

.overlay.active > .section > .section {
	-webkit-transform:translateY(0);
	-ms-transform:translateY(0);
	transform:translateY(0);
	-ms-filter:Alpha(opacity=100);
	filter:Alpha(opacity=100);
	opacity:1;
	-o-transition:-o-transform 0.4s ease 0.1s, opacity 0.4s ease 0.1s;
	-webkit-transition:-webkit-transform 0.4s ease 0.1s, opacity 0.4s ease 0.1s;
	transition:transform 0.4s ease 0.1s, opacity 0.4s ease 0.1s;
}

.overlay.popup.active {
	-webkit-transform:none;
	-ms-transform:none;
	transform:none;
}

.overlay > .section {
	height:100%;
	width:100%;
	padding-top:100px;
	padding-right:50px;
	padding-bottom:50px;
	padding-left:50px;
	overflow-y:auto;
	position:relative;
}

.overlay > .section .b-listing-2 .b-e-content {
	padding:0;
}

.overlay > .section > .section {
	max-width:initial;
	-webkit-transform:translateY(-100px);
	-ms-transform:translateY(-100px);
	transform:translateY(-100px);
	-ms-filter:Alpha(opacity=0);
	filter:Alpha(opacity=0);
	opacity:0;
	-o-transition:-o-transform 0.2s ease-in 0s, opacity 0.2s ease 0s;
	-webkit-transition:-webkit-transform 0.2s ease-in 0s, opacity 0.2s ease 0s;
	transition:transform 0.2s ease-in 0s, opacity 0.2s ease 0s;
}

.overlay .border-bottom {
	border-bottom-width:1px;
	border-bottom-style:solid;
	border-bottom-color:#B4B4B4;
}

.overlay .spacer {
	padding-top:77px;
	padding-right:30px;
	padding-bottom:77px;
	padding-left:30px;
}

.overlay.text-color-grey7 .overlay-close {
	color:#FFFFFF;
}

.overlay-login .form-input {
	padding-top:1.1vw;
	padding-right:1.4vw;
	padding-bottom:1.3vw;
	padding-left:1.4vw;
	-moz-border-radius:7px;
	-webkit-border-radius:7px;
	border-radius:7px;
	font-size:2vw;
	line-height:2.7vw;
}

.overlay-login .link {
	color:#464A52;
	font-family:Calibri,Arial,sans-serif;
	font-weight:bold;
	font-style:normal;
	font-size:2vw;
	line-height:2.7vw;
}

.overlay-login .link .icon {
	font-size:5vw;
	position:relative;
	top:0.6vw;
	margin-right:7px;
}

.overlay-website .languages {
	align-items:center;
}

.overlay-website .languages > a {
	width:3.3vw;
	text-align:center;
	-moz-border-radius:100%;
	-webkit-border-radius:100%;
	border-radius:100%;
	padding-top:0.1vw;
	padding-bottom:0.2vw;
	margin-left:10px;
}

.overlay-website .languages > a span {
	color:#89574E;
}

.flyout-content {
	position:fixed;
	z-index:1;
	right:0;
	top:100%;
	border-style:solid;
	border-color:#FFFFFF;
	border-top-width:25px;
	border-right-width:0;
	border-bottom-width:40px;
	border-left-width:40px;
	-o-transition:all 0.2s ease-out 0s;
	-webkit-transition:all 0.2s ease-out 0s;
	transition:all 0.2s ease-out 0s;
	-webkit-transform:translateX(100%);
	-ms-transform:translateX(100%);
	transform:translateX(100%);
}

.flyout-content.active {
	-webkit-transform:translateX(0%);
	-ms-transform:translateX(0%);
	transform:translateX(0%);
}

.flyout-content > .link {
	display:block;
	white-space:nowrap;
	text-align:right;
	background-color:#FFFFFF;
	border-bottom-width:0px;
	border-bottom-style:solid;
	border-bottom-color:colorsnavigation/$grey1;
}

.breadcrumbs {
	margin-left:15px;
}

.breadcrumbs ul {
	white-space:nowrap;
	text-overflow:ellipsis;
	overflow:hidden;
	padding-right:20px;
}

.breadcrumbs li {
	display:inline-block;
}

.breadcrumbs li:after {
	content:'|';
	padding-right:6px;
	padding-left:6px;
}

.breadcrumbs .link {
	line-height:48px;
}

.page .breadcrumbs {
	margin-left:20px;
	padding-top:40px;
}

.page .breadcrumbs .link {
	font-size:12px;
}

.menu .link {
	margin-top:0;
	margin-bottom:0;
	text-decoration:none;
	padding-top:0.5vw;
	padding-right:0;
	padding-bottom:0.6vw;
	padding-left:0;
	font-size:2vw;
	line-height:2.7vw;
	color:#464A52;
	font-family:Calibri,Arial,sans-serif;
	font-weight:bold;
	font-style:normal;
}

.menu .link.active {
	color:#888888;
}

.menu .title-h3 {
	padding-bottom:25px;
	margin-bottom:0px;
	margin-top:0px;
	border-bottom-width:1px;
	border-bottom-style:solid;
	border-bottom-color:#B4B4B4;
}

.menu .search .icon {
	font-size:35px;
	position:absolute;
	right:0;
	top:0;
	height:100%;
	color:#888888;
	width:50px;
	cursor:pointer;
	text-align:center;
}

.menu .search .icon:before {
	position:absolute;
	top:37%;
	-webkit-transform:translateY(-50%) translateX(-50%);
	-ms-transform:translateY(-50%) translateX(-50%);
	transform:translateY(-50%) translateX(-50%);
	left:50%;
}

.menu .search .icon > input {
	position:absolute;
	right:0;
	top:0px;
	width:100%;
	height:100%;
	background-color:transparent;
	padding:0;
	cursor:pointer;
}

.menu .search .icon.icon-close {
	right:50px;
}

.menu .search .form-input-wrapper {
	position:relative;
}

.menu .search input {
	height:100%;
	font-size:30px;
	background-color:#EDEDED;
	border-style:none;
	outline-style:none;
	padding-top:3px;
	padding-right:5px;
	padding-bottom:5px;
	padding-left:10px;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	border-radius:6px;
	line-height:40px;
}

.header .navigation .language-selector .link {
	font-size:clamp(16px, 1.15vw, 18px);
}

.brand-navigation-wrapper {
	width:31%;
	display:flex;
	justify-content:flex-end;
	padding-top:200px;
	-o-transition:all 0.3s ease 0s;
	-webkit-transition:all 0.3s ease 0s;
	transition:all 0.3s ease 0s;
	position:relative;
}

.brand-navigation-wrapper:after {
	content:"";
	display:block;
	position:absolute;
	bottom:0;
	left:0;
	width:100%;
	height:70px;
	background-image:-o-linear-gradient(to bottom, transparent 0%, rgba(255,255,255,1.0) 70%);
	background-image:-moz-linear-gradient(to bottom, transparent 0%, rgba(255,255,255,1.0) 70%);
	background-image:-webkit-linear-gradient(to bottom, transparent 0%, rgba(255,255,255,1.0) 70%);
	background-image:-ms-linear-gradient(to bottom, transparent 0%, rgba(255,255,255,1.0) 70%);
	background-image:linear-gradient(to bottom, transparent 0%, rgba(255,255,255,1.0) 70%);
}

.brand-navigation-container {
	position:sticky;
	top:200px;
	display:block;
	align-self:flex-start;
	max-height:calc(100vh - 200px);
	overflow-y:scroll;
	max-width:500px;
	right:0;
	-o-transition:all 0.3s ease 0s;
	-webkit-transition:all 0.3s ease 0s;
	transition:all 0.3s ease 0s;
	border-right-width:1px;
	border-right-style:solid;
	border-right-color:#F1EDEA;
	scrollbar-color:#b4b4b4 #FFFFFF;
	scrollbar-width:thin;
}

.brand-navigation-wrapper.without-header {
	padding-top:50px;
}

.brand-navigation-wrapper.without-header .brand-navigation-container {
	top:50px;
	max-height:calc(100vh - 50px);
}

.brand-navigation {
	padding-left:clamp(15px, 2.7vw, 40px);
	padding-right:clamp(20px, 5.3vw, 60px);
	padding-bottom:50px;
}

.brand-navigation .title-h2 {
	color:#515151;
}

.brand-navigation a {
	font-family:Calibri-Light,Arial,sans-serif;
	font-weight:400;
	font-style:normal;
	margin-top:0;
	margin-bottom:0;
	line-height:1.7;
}

.brand-navigation a.active {
	font-family:Calibri,Arial,sans-serif;
	font-weight:bold;
	font-style:normal;
	position:relative;
	top:-3px;
}

.page-brand .overlay-menu .brand-navigation-container {
	position:relative;
	width:100%;
	top:0;
	max-height:unset;
	max-width:100%;
	border-right-width:0;
}

.page-brand .overlay-menu .brand-navigation > div {
	margin-bottom:clamp(30px, 5.3vw, 60px);
}

.page-brand .overlay-menu .brand-navigation a {
	font-family:Calibri-Light,Arial,sans-serif;
	font-weight:400;
	font-style:normal;
	color:#464A52;
	padding-top:2px;
	padding-right:0;
	padding-bottom:0;
	padding-left:0;
	line-height:2;
}

.page-brand .overlay-menu .brand-navigation a.active {
	font-family:Calibri,Arial,sans-serif;
	font-weight:bold;
	font-style:normal;
}

.brand-header-navigation-wrapper {
	margin-right:50px;
	position:relative;
	top:-10px;
}

.brand-header-navigation-wrapper .icon {
	line-height:0.7;
	color:#464A52;
	font-size:40px;
	position:relative;
}

.brand-header-navigation-wrapper .icon-user {
	top:4px;
}

.brand-header-navigation-wrapper .icon-off {
	top:9px;
}

.brand-navigation-language {
	position:relative;
}

.brand-navigation-language .language-selector {
	display:flex;
	position:absolute;
	top:-14px;
	right:50px;
	gap:0;
	-o-transition:all 0.3s ease 0s;
	-webkit-transition:all 0.3s ease 0s;
	transition:all 0.3s ease 0s;
}

.brand-navigation-language a {
	overflow:hidden;
	display:inline-block;
	-o-transition:all 0.3s ease 0s;
	-webkit-transition:all 0.3s ease 0s;
	transition:all 0.3s ease 0s;
	color:#464A52 !important;
	font-size:26px;
	line-height:41px;
	font-family:Calibri,Arial,sans-serif;
	font-weight:normal;
	font-style:normal;
	max-width:0px;
}

.brand-navigation-language a.active {
	max-width:50px;
}

.brand-navigation-language .toggler {
	position:absolute;
	left:0;
	top:0;
	z-index:1;
	width:100%;
	height:100%;
	cursor:pointer;
	max-width:100%;
	max-height:100%;
}

.brand-navigation-language .language-selector.open {
	gap:20px;
}

.brand-navigation-language .language-selector.open a {
	max-width:200px;
}

.brand-navigation-language .language-selector.open .toggler {
	max-width:0px;
	max-height:0px;
}

ul.surfnedit {
	position:absolute;
	left:30px;
	top:30px;
	z-index:1;
}
/* style: Hauptstil language: default / engineId: default / pseudo: hover */
.breadcrumbs .link:hover {
	background-color:#FFFFFF;
}

.menu .link:hover {
	color:#888888;
}

.menu .search .icon:hover {
	color:#DA2520;
}

.brand-navigation-language a:hover {
	color:#B4B4B4 !important;
}
/* style: Hauptstil language: default / engineId: default / pseudo: last-child */
.flyout-content > .link:last-child {
	padding-top:25px;
}
/* style: Hauptstil language: default / engineId: default / pseudo: :placeholder */
.menu .search input::placeholder {
	color:#B4B4B4;
}
/* style: Hauptstil language: default / engineId: default / pseudo: last-child:after */
.breadcrumbs li:last-child:after {
	display:none;
}
/* style: Hauptstil language: default / engineId: default / pseudo: nth-child(even) */
.menu .b-listing-2 .b-entry:nth-child(even) {
	padding-right:25px;
}
/* style: Hauptstil language: default / engineId: default / pseudo: nth-child(odd) */
.menu .b-listing-2 .b-entry:nth-child(odd) {
	padding-left:25px;
}

/* b-contactform */

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.form .align-with-input {
	padding-left:200px;
}

/* b-section */

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.section-backlink,
.section-backlink-dark {
	position:relative;
}

.section.full-height {
	flex:1 0 auto;
}

.d-box-light,
.section.d-box-light {
	background-color:#EDEDED;
	padding-top:50px;
	padding-right:50px;
	padding-bottom:50px;
	padding-left:50px;
}

.d-box-dark,
.section.d-box-dark {
	background-color:#464A52;
	padding-top:50px;
	padding-right:50px;
	padding-bottom:50px;
	padding-left:50px;
}

.d-box-color,
.section.d-box-color {
	background-color:#CCDCDA;
	padding-top:50px;
	padding-right:50px;
	padding-bottom:50px;
	padding-left:50px;
}

.d-box-color .title-h3 {
	color:#B4B4B4;
}

.d-box-color .title-h1 {
	color:#EDEDED;
}

.d-box-color .text {
	color:#EDEDED;
}

.d-box-color .link {
	color:#EDEDED;
}

.d-box-transparent,
.section.d-box-transparent {
	background-color:transparent;
	padding-top:25px;
	padding-right:25px;
	padding-bottom:25px;
	padding-left:25px;
}

.d-box-contour,
.section.d-box-contour,
.section.d-box-color.d-box-contour {
	background-color:#FFFFFF;
	border-style:solid;
	border-width:20px;
	border-color:#EDEDED;
	padding-top:15px;
	padding-right:15px;
	padding-bottom:15px;
	padding-left:15px;
}

.d-box-color.d-box-title {
	padding-bottom:118px;
	padding-top:15px;
	padding-right:15px;
	padding-left:15px;
	max-width:100% !important;
	color:#FFFFFF;
}

.d-box-rd23 .title-h3 {
	color:#F8F5F4;
}

.d-box-rd23 .title-h1 {
	color:#F8F5F4;
}

.d-box-rd23 .text {
	color:#F8F5F4;
}

.d-box-rd23 .link {
	color:#F8F5F4;
}

.d-box-rd23 .section.section-fluid {
	padding-top:5.2vw;
}

.b-mc-space-no > .col.d-box-light {
	padding-left:40px;
	padding-right:40px;
}

.b-mc-space-no > .col.d-box-dark {
	padding-left:40px;
	padding-right:40px;
}

.b-mc-space-no > .col.d-box-color {
	padding-left:40px;
	padding-right:40px;
}

.b-mc-space-no > .col.d-box-transparent {
	padding-left:25px;
	padding-right:25px;
}

.b-mc-space > .col.d-box-light {
	padding-left:40px;
	padding-right:40px;
}

.b-mc-space > .col.d-box-dark {
	padding-left:40px;
	padding-right:40px;
}

.b-mc-space > .col.d-box-color {
	padding-left:40px;
	padding-right:40px;
}

.b-mc-space > .col.d-box-transparent {
	padding-left:25px;
	padding-right:25px;
}

.d-box-contour.box-border-dark {
	border-color:#464A52;
}

.d-box-contour.box-border-color {
	border-color:#89574E;
}

.section.box-padding-s {
	padding:25px;
}

.section.box-padding-m,
.box-padding-m {
	padding:50px;
}

.section.box-padding-l {
	padding:60px;
}

.section.box-padding-xl {
	padding:100px;
}

.section.box-padding-none {
	padding:0;
}

.section.box-padding-m-mobile {
	padding:25px;
}

.section.box-padding-l-mobile {
	padding:25px;
}

.section.box-padding-xl-mobile {
	padding:25px;
}

.section-height-50 {
	min-height:calc(50vh - 120px);
}

.section-height-75 {
	min-height:calc(75vh - 120px);
}

.section-height-100 {
	min-height:calc(100vh - 120px);
}

.box-background-light {
	background-color:#EDEDED;
}

.box-background-deco4 {
	background-color:#CCDCDA;
}

.box-background-dark {
	background-color:#464A52;
}

.box-background-color {
	background-color:#89574E;
}

.box-background-rd23grey6 {
	background-color:#F8F5F4;
}

.box-background-rd23deco1 {
	background-color:#848EA2;
}

.box-background-rd23deco2 {
	background-color:#DB9B41;
}

.box-background-rd23deco4 {
	background-color:#CFDBDA;
}

.box-background-rd23deco5 {
	background-color:#363636;
}

.box-background-rd23deco7 {
	background-color:#C7B197;
}

.box-background-rd23deco8 {
	background-color:#AF9683;
}

.box-background-grey7 {
	background-color:#FFFFFF;
}

.m-newsletter .box-padding-s {
	padding:25px;
}

.m-newsletter .box-padding-s .s-padding-faker {
	padding:25px;
}

.m-newsletter .box-padding-m {
	padding:40px;
}

.m-newsletter .box-padding-m .s-padding-faker {
	padding:40px;
}

.m-newsletter .box-padding-l {
	padding:60px;
}

.m-newsletter .box-padding-l .s-padding-faker {
	padding:60px;
}

.m-newsletter .box-padding-none .s-padding-faker {
	padding:0px;
}

.m-newsletter table.section {
	line-height:null !important;
}

.m-newsletter table.section > tr {
	line-height:null !important;
}

.m-newsletter table.section > tr > td {
	line-height:null !important;
}

.m-newsletter .box-padding-auto {
	padding:0px;
}

.content-align-center {
	margin-left:auto;
	margin-right:auto;
}

.content-align-left {
	margin-left:0;
	margin-right:auto;
}

.content-align-right {
	margin-left:auto;
	margin-right:0;
}

.section {
	margin-left:auto;
	margin-right:auto;
	width:100%;
	max-width:1000px;
	background-size:cover;
	background-position:center;
}

.section.small-margin {
	margin-top:10px;
}

.section.nlow {
	width:740px;
}

.section.section-fluid {
	max-width:1300px;
	padding-top:10.5vw;
	padding-right:8vw;
	padding-bottom:10.5vw;
	padding-left:8vw;
}

.section.no-padding-bottom {
	padding-bottom:0 !important;
}

.section.no-padding-top {
	padding-top:0 !important;
}

.section.no-padding-topbottom {
	padding-top:0 !important;
	padding-bottom:0 !important;
}

.section-circle {
	max-width:700px;
	max-height:700px;
	width:51.3vw;
	height:51.3vw;
	-moz-border-radius:100%;
	-webkit-border-radius:100%;
	border-radius:100%;
	display:flex;
	align-items:center;
	flex-wrap:wrap;
	flex-direction:unset;
}

.section-circle > div {
	max-width:380px;
	margin-top:0;
	margin-right:auto;
	margin-bottom:0;
	margin-left:auto;
}

.section.section-bleed {
	max-width:100%;
}

.section.section-text-inside-multicolumn-right {
	max-width:730px;
	margin-left:0;
	margin-right:0;
	padding-right:8vw !important;
	padding-top:0 !important;
	padding-bottom:0 !important;
}

.section.section-text-inside-multicolumn-left {
	max-width:730px;
	margin-left:0;
	margin-right:0;
	padding-left:8vw !important;
	padding-top:0 !important;
	padding-bottom:0 !important;
}

.s-space {
	padding-left:25px;
	padding-right:25px;
}

.section-half {
	max-width:500px;
}

.section-large {
	max-width:1300px;
	padding-top:0;
	padding-right:50px;
	padding-bottom:0;
	padding-left:50px;
}

.section.section-visual {
	max-width:1800px;
}

.section-fitting-middle {
	justify-content:center;
}

.section-fitting-bottom {
	justify-content:flex-end;
}

.s-video-positioner {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:1;
	overflow:hidden;
}

.s-video-positioner video {
	width:100%;
	height:100%;
	object-fit:cover;
}

.s-video-bricks {
	position:relative;
	z-index:2;
	display:flex;
	flex-direction:column;
	height:100%;
}

.bo-sl-option-box-background-grey7 {
	background-color:#FFFFFF;
}

.bo-sl-option-box-background-light {
	background-color:#EDEDED;
}

.bo-sl-option-box-background-deco4 {
	background-color:#CCDCDA;
}

.bo-sl-option-box-background-dark {
	background-color:#464A52;
}

.bo-sl-option-box-background-color {
	background-color:#89574E;
}

.bo-sl-option-box-background-rd23grey6 {
	background-color:#F8F5F4;
}

.bo-sl-option-box-background-rd23deco1 {
	background-color:#848EA2;
}

.bo-sl-option-box-background-rd23deco2 {
	background-color:#DB9B41;
}

.bo-sl-option-box-background-rd23deco4 {
	background-color:#CFDBDA;
}

.bo-sl-option-box-background-rd23deco5 {
	background-color:#363636;
}

.bo-sl-option-box-background-rd23deco7 {
	background-color:#C7B197;
}

.bo-sl-option-box-background-rd23deco8 {
	background-color:#AF9683;
}
/* style: Hauptstil language: default / engineId: default / pseudo: hover */
.d-box-rd23 .link:hover {
	color:#FFFFFF;
}

/* h-decoration */

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.d-small-listing-border {
	border-bottom-style:solid;
	border-bottom-width:1px;
	border-bottom-color:#DADADA;
	width:100%;
	margin-bottom:8px;
	margin-top:-2px;
}

.d-small-listing-border .link {
	margin-top:8px;
	margin-bottom:8px;
}

.d-small-listing-border:first-child {
	border-top-style:solid;
	border-top-width:1px;
	border-top-color:#DADADA;
}

.d-shadow {
	-moz-box-shadow:1px 1px 2px 0px rgba(0,0,0,0.2);
	-webkit-box-shadow:1px 1px 2px 0px rgba(0,0,0,0.2);
	box-shadow:1px 1px 2px 0px rgba(0,0,0,0.2);
}

.d-box-white {
	padding:20px;
	background-color:#FFFFFF;
}

.d-multicolumn-product-entry {
	padding-bottom:10px;
}

.d-multicolumn-product-entry .paragraph {
	position:relative;
	top:50%;
	-webkit-transform:translateY(-50%);
	-ms-transform:translateY(-50%);
	transform:translateY(-50%);
	padding-right:10px;
}

.d-multicolumn-product-entry .tooltip-wrapper {
	top:50%;
	-webkit-transform:translateY(-50%);
	-ms-transform:translateY(-50%);
	transform:translateY(-50%);
	float:right;
	margin-left:5px;
}

.d-multicolumn-product-entry img {
	height:30px;
	width:30px;
	display:block;
}

.d-icon-link {
	line-height:24px;
}

.d-icon-link .icon {
	width:20px;
	font-size:26px;
	text-align:center;
	display:inline-block;
	vertical-align:top;
	top:1px;
	position:relative;
	line-height:16px;
}

.d-icon-link .text {
	display:inline-block;
	vertical-align:top;
	margin-top:0;
}

.d-icon-link.left .icon {
	margin-right:10px;
}

.d-icon-link.right .icon {
	margin-left:10px;
}

.d-icon-link-arrow {
	margin-left:25px;
}

.d-button {
	border-style:solid;
	border-width:1px;
	border-color:#EDEDED;
	display:inline-block;
	color:#89574E;
	font-family:Calibri,Arial,sans-serif;
	font-weight:bold;
	font-style:normal;
	padding-top:10px;
	padding-right:40px;
	padding-bottom:10px;
	padding-left:40px;
	text-transform:uppercase;
	font-size:16px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	border-radius:5px;
	-o-transition:opacity 0.2s ease 0s, color 0.2s ease 0s, background-color 0.2s ease 0s;
	-webkit-transition:opacity 0.2s ease 0s, color 0.2s ease 0s, background-color 0.2s ease 0s;
	transition:opacity 0.2s ease 0s, color 0.2s ease 0s, background-color 0.2s ease 0s;
}

.d-button-solid,
.d-button-border {
	cursor:pointer;
	display:inline-block;
	color:#FFFFFF;
	background-color:#DFB07C;
	border-style:solid;
	border-width:1px;
	border-color:#DFB07C;
	padding-top:0;
	padding-right:30px;
	padding-bottom:3px;
	padding-left:30px;
	line-height:1.95;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	border-radius:3px;
	font-family:Calibri,Arial,sans-serif;
	font-weight:bold;
	font-style:normal;
	font-size:15px;
	text-align:center;
	-o-transition:opacity 0.2s ease 0s, color 0.2s ease 0s, background-color 0.2s ease 0s, border 0.2s ease 0s;
	-webkit-transition:opacity 0.2s ease 0s, color 0.2s ease 0s, background-color 0.2s ease 0s, border 0.2s ease 0s;
	transition:opacity 0.2s ease 0s, color 0.2s ease 0s, background-color 0.2s ease 0s, border 0.2s ease 0s;
}

.d-button-border {
	color:#464A52;
	background-color:#FFFFFF;
}

.d-button-solid.active {
	background-color:#FFFFFF;
	color:#89574E;
}

.d-button-solid.medium {
	font-size:22px;
	padding-left:10px;
	padding-right:10px;
}

.d-button-solid.big {
	font-size:26px;
	padding-top:20px;
	padding-right:50px;
	padding-bottom:20px;
	padding-left:50px;
}

.m-newsletter .d-button-solid {
	padding:0;
}

.m-newsletter .d-button-solid .padding-faker {
	padding-top:3px;
	padding-right:20px;
	padding-bottom:3px;
	padding-left:20px;
}

.d-button-solid.d-text-small {
	font-size:12px;
	padding-top:6px;
	padding-right:8px;
	padding-bottom:6px;
	padding-left:8px;
	width:auto;
}

.d-uppercase {
	text-transform:uppercase;
}

.d-tag {
	font-family:Calibri,Arial,sans-serif;
	font-weight:bold;
	font-style:normal;
	color:#89574E;
}

.d-tag .text {
	display:inline-block;
	line-height:20px;
	vertical-align:top;
}

.d-tag .icon {
	font-size:22px;
	margin-right:6px;
}

.d-color-overlay {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	-ms-filter:Alpha(opacity=10);
	filter:Alpha(opacity=10);
	opacity:0.1;
	background-color:#89574E;
	-o-transition:opacity 0.3s ease 0s;
	-webkit-transition:opacity 0.3s ease 0s;
	transition:opacity 0.3s ease 0s;
}

.d-grayscale {
	filter:grayscale(100%);
	-o-transition:filter 0.3s ease 0s, opacity 0.8s ease 0s;
	-webkit-transition:filter 0.3s ease 0s, opacity 0.8s ease 0s;
	transition:filter 0.3s ease 0s, opacity 0.8s ease 0s;
}

.d-filter-header-nav .col {
	margin-top:0;
	margin-right:2px;
	margin-bottom:0;
	margin-left:2px;
}

.d-filter-header-nav .d-button-solid {
	width:100%;
}

.surf-n-edit-error-wrapper {
	margin-top:40px;
	margin-right:0px;
	margin-bottom:40px;
	margin-left:0px;
	border-width:1px;
	border-style:solid;
	padding:20px;
	border-color:#888888;
}

.bg-grey0 {
	background-color:#000000;
}

.bg-grey1 {
	background-color:#464A52;
}

.bg-grey2 {
	background-color:#888888;
}

.bg-grey3 {
	background-color:#B4B4B4;
}

.bg-grey4 {
	background-color:#DADADA;
}

.bg-grey5 {
	background-color:#EDEDED;
}

.bg-grey6 {
	background-color:#EDEDED;
}

.bg-grey7 {
	background-color:#FFFFFF;
}

.bg-deco1 {
	background-color:#89574E;
}

.bg-deco2 {
	background-color:#DFB07C;
}

.bg-deco3 {
	background-color:#DA2520;
}

.bg-deco4 {
	background-color:#CCDCDA;
}

.bg-deco5 {
	background-color:colors/deco5;
}

.bg-deco6 {
	background-color:colors/deco6;
}

.bg-deco7 {
	background-color:colors/deco7;
}
/* style: Hauptstil language: default / engineId: default / pseudo: hover */
.d-button:hover {
	text-decoration:none;
	background-color:#EDEDED;
}

.d-button-solid:hover,
.d-button-border:hover {
	text-decoration:none;
	border-color:#464A52;
	background-color:#464A52;
}

.d-button-border:hover {
	border-color:#DFB07C;
	background-color:#DFB07C;
	color:#FFFFFF;
}
/* style: Hauptstil language: default / engineId: default / pseudo: disabled */
.d-button-solid:disabled, .d-button-solid:disabled:hover,
.d-button-border:disabled, .d-button-border:disabled:hover {
	-ms-filter:Alpha(opacity=40);
	filter:Alpha(opacity=40);
	opacity:0.4;
}

/* h-modifier */

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.mod-align-left {
	position:relative;
	display:inline-block;
	left:0;
	-webkit-transform:translateX(0);
	-ms-transform:translateX(0);
	transform:translateX(0);
}

.mod-align-center {
	position:relative;
	display:inline-block;
	left:50%;
	-webkit-transform:translateX(-50%);
	-ms-transform:translateX(-50%);
	transform:translateX(-50%);
}

.mod-align-right {
	position:relative;
	display:inline-block;
	left:100%;
	-webkit-transform:translateX(-100%);
	-ms-transform:translateX(-100%);
	transform:translateX(-100%);
}

.mod-align-right.noresetmobile {
	left:100%;
	-webkit-transform:translateX(-100%);
	-ms-transform:translateX(-100%);
	transform:translateX(-100%);
}

.mod-whitespace-nowrap {
	white-space:nowrap;
}

.mod-text-wrap-balance {
	text-wrap:balance;
}

.mod-hyphens-auto {
	-webkit-hyphens:auto;
	-ms-hyphens:auto;
	-moz-hyphens:auto;
	hyphens:auto;
}

.mod-valign-middle {
	position:relative;
	top:50%;
	-webkit-transform:translateY(-50%);
	-ms-transform:translateY(-50%);
	transform:translateY(-50%);
}

.mod-valign-middle.mod-align-left {
	-webkit-transform:translateX(0) translateY(-50%);
	-ms-transform:translateX(0) translateY(-50%);
	transform:translateX(0) translateY(-50%);
}

.mod-valign-middle.mod-align-center {
	-webkit-transform:translateX(-50%) translateY(-50%);
	-ms-transform:translateX(-50%) translateY(-50%);
	transform:translateX(-50%) translateY(-50%);
}

.mod-valign-middle.mod-align-right {
	-webkit-transform:translateX(-100%) translateY(-50%);
	-ms-transform:translateX(-100%) translateY(-50%);
	transform:translateX(-100%) translateY(-50%);
}

.mod-no-scroll {
	width:100%;
	height:100%;
	overflow:hidden;
}

.mod-scroll-wrapper {
	width:100%;
	height:100%;
}

.mod-scroll-horizontal {
	width:100%;
	height:100%;
	overflow-y:auto;
	overflow-x:hidden;
}

.mod-scroll-vertical {
	width:100%;
	height:100%;
	overflow-y:hidden;
	overflow-x:auto;
}

.mod-relative {
	position:relative;
}

.mod-absolute {
	position:absolute;
}

.mod-display-block {
	display:block;
}

.mod-display-flex {
	display:flex;
}

.mod-display-none {
	display:none;
}

.mod-hidden-visibility {
	visibility:hidden;
}

.mod-display-inline-block {
	display:inline-block;
}

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

.mod-flex-gap {
	gap:20px;
}

.mod-flex-gap.small-gap {
	gap:10px;
}

.mod-flex-gap.big-gap {
	gap:40px;
}

.mod-flex-align-start {
	align-content:flex-start;
}

.mod-flex-align-end {
	align-content:flex-end;
}

.mod-flex-align-center {
	align-items:center;
}

.mod-flex-justify-end {
	justify-content:flex-end;
}

.mod-flex-align-items-start {
	align-items:flex-start;
}

.mod-flex-align-items-center {
	align-items:center;
	justify-content:center;
}

.mod-flex-align-items-end {
	align-items:flex-end;
}

.mod-flex-basis-50 > * {
	flex:1 1 50%;
}

.mod-flex-basis-50.mod-flex-gap > * {
	flex:1 1 calc(50% - 20px / 2);
}

.mod-flex-nowrap {
	flex-wrap:nowrap;
	flex-direction:row;
}

.mod-nomargin {
	margin-top:0 !important;
	margin-right:0 !important;
	margin-left:0 !important;
	margin-bottom:0 !important;
}

.mod-nomargin-bottom {
	margin-bottom:0 !important;
}

.mod-nomargin-top {
	margin-top:0 !important;
}

.mod-nopadding {
	padding-top:0 !important;
	padding-right:0 !important;
	padding-left:0 !important;
	padding-bottom:0 !important;
}

.mod-nopadding-top {
	padding-top:0 !important;
}

.mod-nopadding-bottom {
	padding-bottom:0 !important;
}

.mod-no-side-spacing {
	padding-left:0 !important;
	padding-right:0 !important;
}

.mod-nopadding-left {
	padding-left:0 !important;
}

.mod-nopadding-right {
	padding-right:0 !important;
}

.mod-noborder-top {
	border-top-width:0px !important;
}

.mod-noborder-bottom {
	border-bottom-width:0px !important;
}

.mod-hide-desktop {
	display:none !important;
}

.mod-flex-columns {
	flex-wrap:wrap;
	flex-direction:column;
	margin-top:0;
	margin-right:25px;
	margin-bottom:0;
	margin-left:25px;
}

.mod-flex-columns:first-child {
	margin-left:0;
}

.mod-flex-row {
	flex-direction:row;
}

.mod-flex-wrap {
	flex-wrap:wrap;
}

.form-group .mod-margin-center {
	margin-top:0;
	margin-right:auto;
	margin-bottom:0;
	margin-left:auto;
	padding:0;
}

.mod-object-cover {
	object-fit:cover;
}

.mod-aspect-ratio-1 {
	aspect-ratio:1;
}
/* style: Hauptstil language: default / engineId: default / pseudo: last-child */
.mod-flex-columns:last-child {
	margin-right:0;
}

/* b-flipbox @media BigScreen */
@media only screen and (min-width : 1300px) {

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.list-box-item.front .title-bg span {
	line-height:52px;
}
}

/* b-visual @media BigScreen */
@media only screen and (min-width : 1300px) {

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.visual-wrapper .default-visual-elements {
	padding-left:104px;
	padding-bottom:60px;
}
}

/* b-link @media BigScreen */
@media only screen and (min-width : 1300px) {

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.page-back-link {
	top:0px;
}
}

/* design @media BigScreen */
@media only screen and (min-width : 1300px) {

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.header .navigation .link {
	font-size:16px;
}

.scroll-top {
	width:68px;
	height:68px;
}

.footer .title-h2 {
	font-size:39px;
}

.footer .title-h3 {
	font-size:39px;
}

.footer .link {
	font-size:39px;
	line-height:47px;
}

.footer .footer-navigation-buttons .icon {
	font-size:65px;
	top:4px;
}

.footer .footer-navigation-links .link {
	font-size:26px;
	line-height:35px;
}

.footer .text {
	font-size:26px;
	line-height:35px;
}

.cookie-notice .title-h3 {
	font-size:39px;
	line-height:47px;
}

.cookie-notice .pc3richtext p {
	font-size:26px;
	line-height:35px;
}

.cookie-notice .pc3richtext a {
	font-size:26px;
	line-height:0;
}

.cookie-notice .pc3richtext a:before {
	font-size:39px;
}

.cookie-notice .link-rd23 {
	font-size:26px;
	line-height:35px;
}

.cookie-notice .link-rd23 > .icon:before {
	font-size:65px;
}
}

/* alertify @media BigScreen */
@media only screen and (min-width : 1300px) {

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.pc3body .alertify-notifier .ajs-message {
	font-size:26px;
}
}

/* b-spacer @media BigScreen */
@media only screen and (min-width : 1300px) {

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.b-spacer-30-dynamic {
	margin-bottom:18px;
}

.b-spacer-50-dynamic {
	margin-bottom:35px;
}

.b-spacer-100-dynamic {
	margin-bottom:70px;
}

.b-spacer-150-dynamic {
	margin-bottom:105px;
}

.b-spacer-200-dynamic {
	margin-bottom:135px;
}

.b-spacer-300-dynamic {
	margin-bottom:200px;
}
}

/* m-products @media BigScreen */
@media only screen and (min-width : 1300px) {

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.m-products .b-listing-versions .b-entry {
	padding-bottom:69px;
}
}

/* b-title @media BigScreen */
@media only screen and (min-width : 1300px) {

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.title-flag-23 {
	padding-bottom:65px;
}

.title-flag-23:after {
	width:30px;
	height:30px;
}
}

/* b-text @media BigScreen */
@media only screen and (min-width : 1300px) {

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.text-flag-23:after {
	width:30px;
	height:30px;
}

.text.text-speech-bubble {
	font-size:39px;
	line-height:47px !important;
}
}

/* b-listing @media BigScreen */
@media only screen and (min-width : 1300px) {

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.b-listing.b-listing-values .b-entry > * {
	padding-left:34px;
	padding-right:34px;
}

.b-listing.b-listing-values .b-entry:nth-child(even) > *:first-child {
	padding-left:34px;
}

.b-listing.b-listing-values .b-entry:nth-child(even) > *:last-child {
	padding-right:34px;
}

.b-listing.b-listing-values .b-entry {
	padding-top:69px;
	padding-bottom:69px;
}

.b-listing-tiles .b-entry {
	margin-bottom:105px;
}

.m-listing-products .m-product-entry {
	padding-bottom:52px;
}

.m-listing-products .m-product-entry .b-e-header {
	padding-right:34px;
}

.m-listing-products .m-product-entry .b-e-content {
	padding-right:34px;
	padding-top:52px;
}

.m-listing-products .m-product-entry .b-image {
	min-height:430px;
}

.b-listing-2 .b-entry {
	padding-left:34px;
	padding-right:34px;
}
}

/* b-image @media BigScreen */
@media only screen and (min-width : 1300px) {

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.b-image-label {
	line-height:24px;
}
}

/* b-multicolumn @media BigScreen */
@media only screen and (min-width : 1300px) {

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.b-mc-space-fluid > .col {
	padding-left:34px;
	padding-right:34px;
}

.b-mc-space-fluid-inside > .col {
	padding-left:34px;
	padding-right:34px;
}

.b-mc-space-fluid-inside.cols-33 > .col {
	padding-left:23px !important;
	padding-right:23px !important;
}

.b-mc-space-fluid-inside.cols-33 {
	margin-left:calc(-1 * 23px);
	width:calc(100% + 2 * 23px);
}
}

/* navigation @media BigScreen */
@media only screen and (min-width : 1300px) {

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.overlay .title-h1 {
	font-size:52px;
	line-height:61px;
}

.overlay .title-h3 {
	font-size:39px;
	line-height:47px;
}

.overlay .overlay-close {
	width:100px;
	height:100px;
}

.overlay-login .form-input {
	font-size:26px;
	line-height:35px;
}

.overlay-login .link {
	font-size:26px;
	line-height:35px;
}

.overlay-login .link .icon {
	font-size:65px;
	top:8px;
}

.menu .link {
	font-size:26px;
	line-height:35px;
}
}

/* b-section @media BigScreen */
@media only screen and (min-width : 1300px) {

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.d-box-rd23 .section.section-fluid {
	padding-top:67px;
}

.section.section-fluid {
	padding-top:135px;
	padding-right:104px;
	padding-bottom:135px;
	padding-left:104px;
}

.section.section-text-inside-multicolumn-right {
	padding-right:104px !important;
}

.section.section-text-inside-multicolumn-left {
	padding-left:104px !important;
}
}

/* b-flipbox @media Mobile */
@media only screen and (max-width : 685px) {

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.flipbox-default-noimage {
	min-height:457px;
}

.list-box-item.front .title-bg span {
	line-height:52px;
}

.mod-display-close:before {
	right:13px;
}
}

/* b-mediaplayer @media Mobile */
@media only screen and (max-width : 685px) {

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.content .mediaplayer-wrapper .mp-player .mp-stage .mp-caption {
	max-height:auto;
	display:none;
}

.content .mediaplayer-wrapper.mp-skin .mp-gallery-wrapper .mp-gallery-list li {
	width:50%;
}

.content .mediaplayer-wrapper.mp-skin .mp-player .mp-stage .mp-caption {
	border-width:10px;
}

.content .mediaplayer-wrapper.mp-skin .mp-player .mp-stage .mp-caption h3 {
	font-size:22px;
}

.content .mediaplayer-wrapper.mp-skin .mp-player .mp-stage .mp-caption p {
	font-size:14px;
}

.content .mediaplayer-wrapper.mp-skin .mp-player .mp-stage .mp-caption a {
	font-size:14px;
}

.content .mediaplayer-wrapper.mp-skin .mp-player .mp-stage a.mp-controls {
	margin-left:0;
	margin-right:0;
}
}

/* b-quote @media Mobile */
@media only screen and (max-width : 685px) {

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.b-quote .quote-text {
	margin-left:0;
	margin-bottom:20px;
}

.b-quote .source-text {
	position:relative;
	text-align:right;
	bottom:-20px;
	right:0;
}

.b-quote.section.section-large {
	padding-right:15px !important;
	padding-left:15px !important;
}
}

/* b-scrollingvideo @media Mobile */
@media only screen and (max-width : 685px) {

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.b-vs-loader {
	top:100px;
}

.b-vs-loader p {
	padding-top:0px;
}

#b-vs-overlay-loading {
	height:calc(100% - 100px);
}
}

/* b-visual @media Mobile */
@media only screen and (max-width : 685px) {

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.visual-wrapper.default-wrapper {
	max-height:unset;
}

.visual-wrapper .default-visual-elements {
	padding-left:4vw;
	padding-bottom:8vw;
	padding-right:4vw;
}
}

/* b-anchor-trigger @media Mobile */
@media only screen and (max-width : 685px) {

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.notification-trigger.image-trigger {
	max-width:60px;
}
}

/* b-link @media Mobile */
@media only screen and (max-width : 685px) {

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.page-back-link {
	left:4vw;
	-webkit-transform:translateY(-5px);
	-ms-transform:translateY(-5px);
	transform:translateY(-5px);
}

.section-backlink-dark .page-back-link {
	top:15px !important;
	left:10px;
	-webkit-transform:translateY(0) !important;
	-ms-transform:translateY(0) !important;
	transform:translateY(0) !important;
}

.section-backlink-dark .page-back-link .d-text-tiny {
	font-size:12px;
}
}

/* design @media Mobile */
@media only screen and (max-width : 685px) {

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.header {
	height:100px;
}

.header.small-header {
	-webkit-transform:translate3d(0, -105px, 0);
	-ms-transform:translate3d(0, -105px, 0);
	transform:translate3d(0, -105px, 0);
}

.header .logo img {
	max-width:unset;
}

.header .menu-toggler {
	width:32px;
	height:21px;
}

.header .menu-toggler:after {
	top:8px;
}

.header .navigation {
	padding-right:7px;
	max-width:35%;
}

.header .navigation .link {
	line-height:40px;
	padding:0px !important;
	font-size:14px;
}

.header .navigation .link .icon-basket {
	left:-5px;
}

.header .navigation .link .icon-wallet {
	left:2px;
}

.header .navigation .link .icon {
	line-height:35px;
}

.header .navigation .counter {
	right:10px;
	width:12px !important;
}

.page-brand .header .logo-wrapper img {
	max-height:100px;
	width:auto;
}

.page-brand .content {
	padding-top:150px;
}

.content {
	padding-top:80px;
}

.content > .content {
	padding-top:40px;
}

.scroll-top {
	width:8vw;
	height:8vw;
}

.footer .scroll-top {
	width:65px;
	height:65px;
	top:18px;
	right:15px;
}

.footer .title-h2 {
	font-size:28px;
}

.footer .title-h3 {
	font-size:28px;
}

.footer .link {
	font-size:28px;
	line-height:32px;
}

.footer .footer-navigation-buttons {
	padding-top:100px;
	padding-bottom:100px;
}

.footer .footer-navigation-buttons .icon {
	font-size:38px;
}

.footer .footer-navigation-links .link {
	font-size:19px;
	line-height:26px;
}

.footer .footer-navigation-links .text {
	margin-top:4px !important;
}

.footer .text {
	font-size:19px;
	line-height:26px;
}

.cookie-notice {
	padding:20px;
}

.cookie-notice .text-col {
	padding:0;
	margin-top:10px;
	margin-right:0;
	margin-bottom:10px;
	margin-left:0;
}

.cookie-notice .title-h3 {
	font-size:28px;
	line-height:32px;
	margin-bottom:1vw;
}

.cookie-notice .pc3richtext p {
	font-size:19px;
	line-height:26px;
}

.cookie-notice .pc3richtext a {
	font-size:19px;
	line-height:0;
}

.cookie-notice .pc3richtext a:before {
	font-size:28px;
}

.cookie-notice .link-rd23 {
	font-size:19px;
	line-height:26px;
	margin-top:0;
}

.cookie-notice .link-rd23 > .icon:before {
	font-size:38px;
}

.cookie-notice > * {
	flex-direction:column !important;
}

.cookie-notice .cn-col {
	max-width:100%;
}

.cookie-notice .cn-right-col {
	padding-right:0;
	position:absolute;
	right:25px;
}

.cookie-notice .richtext-wrapper {
	padding-top:2px !important;
}

.cookie-notice .richtext-toggler {
	padding-right:0px;
}

.tooltip-wrapper .tooltip {
	display:none;
}
}

/* b-slider @media Mobile */
@media only screen and (max-width : 685px) {

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.b-slider .swiper-slide {
	padding-top:0;
	padding-right:25px;
	padding-bottom:0;
	padding-left:25px;
}

.b-slider.b-listing-gap-none .swiper-slide {
	padding:0;
}

.b-slider .swiper-button-prev {
	left:-5px;
}

.b-slider .swiper-button-next {
	right:-5px;
}

.b-slider.has-one-slide.visible-slides-3 .swiper-slide {
	max-width:100% !important;
}

.b-slider.has-one-slide.visible-slides-2 .swiper-slide {
	max-width:100%;
}

.b-accordeon .swiper-button-prev {
	top:45%;
	left:-5px;
}

.b-accordeon .swiper-button-next {
	top:45%;
	right:-5px;
}
}

/* b-video @media Mobile */
@media only screen and (max-width : 685px) {

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.brick.b-video-frame-wrapper.portrait-on-mobile {
	height:70vh;
}

.brick.b-video-frame-wrapper.portrait-on-mobile video {
	height:100%;
	object-fit:cover;
}
}

/* m-datepicker @media Mobile */
@media only screen and (max-width : 685px) {

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.datepicker .datepicker-popup {
	top:0;
}

.datepicker .day span {
	min-width:40px;
	min-height:40px;
}
}

/* m-factsheet @media Mobile */
@media only screen and (max-width : 685px) {

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.factsheet .factsheet-part img {
	margin-left:0px;
	margin-right:10px;
	margin-bottom:15px;
	float:none;
}
}

/* m-profile @media Mobile */
@media only screen and (max-width : 685px) {

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.mod-profile .toggle-content li:last-child {
	border-bottom-width:0;
}

.mod-profile .toggle-content li {
	margin-left:0;
}
}

/* bm-homevisual @media Mobile */
@media only screen and (max-width : 685px) {

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.bm-homevisual.m-slider .slider {
	height:300px;
}

.bm-homevisual.m-slider .slide.mod-no-padding {
	padding:0;
}

.bm-homevisual.m-slider .col-min {
	min-width:100%;
}

.bm-homevisual.m-slider .teaser {
	width:100%;
	max-width:100%;
	padding:30px;
	text-align:right;
}

.bm-homevisual.m-slider .reference {
	margin-bottom:30px;
	height:180px;
}

.bm-homevisual.m-slider .reference .text {
	display:none;
}

.bm-homevisual .slider .slide {
	padding:30px;
}

.bm-homevisual .d-slider-references {
	height:600px;
}

.bm-homevisual .multicolumn .col {
	margin-bottom:0px;
}

.bm-homevisual .multicolumn.mod-row-reverse {
	flex-direction:column-reverse;
}
}

/* bm-reference-overview @media Mobile */
@media only screen and (max-width : 685px) {

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.bm-references-overview .slider.slider-image-col {
	height:180px;
}

.bm-references-overview .slider .slide {
	padding:30px;
}

.bm-references-overview .d-slider-references {
	height:600px;
}

.bm-references-overview .multicolumn .col {
	margin-bottom:0px;
}

.bm-references-overview .multicolumn {
	flex-direction:column-reverse;
}
}

/* m-downloads @media Mobile */
@media only screen and (max-width : 685px) {

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.m-downloads .form-group.form-radio-list {
	margin-left:0px;
}

.m-downloads .form-input-radio.mod-flex-columns {
	width:33%;
}

.m-downloads .results .m-filter .search {
	max-width:unset;
}
}

/* alertify @media Mobile */
@media only screen and (max-width : 685px) {

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.pc3body .alertify-notifier .ajs-message {
	font-size:19px;
}
}

/* b-locations @media Mobile */
@media only screen and (max-width : 685px) {

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.b-locations {
	overflow:hidden;
}

.b-locations.background-image {
	background-size:300px auto;
	background-position:66% 100px;
	min-height:initial;
}

.b-locations .backlink {
	display:block;
	left:-20px;
	top:46px;
}

.b-locations .regions.moveout {
	-webkit-transform:translateX(-120%);
	-ms-transform:translateX(-120%);
	transform:translateX(-120%);
}

.b-locations .regions.movein {
	-webkit-transform:translateX(120%);
	-ms-transform:translateX(120%);
	transform:translateX(120%);
}

.b-locations .regions {
	width:100%;
	padding-right:20px;
	padding-left:10px;
	position:relative;
}

.b-locations .countries {
	width:100%;
	left:0;
	padding-left:10px;
	-webkit-transform:translateX(-95%);
	-ms-transform:translateX(-95%);
	transform:translateX(-95%);
	max-height:10000px;
	max-width:10000px;
	overflow:hidden;
	-o-transition:max-height 0s ease 0s, -o-transform 0.3s ease 0s;
	-webkit-transition:max-height 0s ease 0s, -webkit-transform 0.3s ease 0s;
	transition:max-height 0s ease 0s, transform 0.3s ease 0s;
}

.b-locations .countries .country {
	-webkit-transform:translateX(0);
	-ms-transform:translateX(0);
	transform:translateX(0);
}

.b-locations .countries .country .d-button-solid {
	-ms-filter:Alpha(opacity=100);
	filter:Alpha(opacity=100);
	opacity:1;
}

.b-locations .countries.moveout {
	-webkit-transform:translateX(-200%);
	-ms-transform:translateX(-200%);
	transform:translateX(-200%);
	max-height:0;
	max-width:10000px;
	-o-transition:max-height 0s ease 0.3s, max-width 0s ease 0.3s, -o-transform 0.3s ease 0s;
	-webkit-transition:max-height 0s ease 0.3s, max-width 0s ease 0.3s, -webkit-transform 0.3s ease 0s;
	transition:max-height 0s ease 0.3s, max-width 0s ease 0.3s, transform 0.3s ease 0s;
}

.b-locations .countries.movein {
	-webkit-transform:translateX(100%);
	-ms-transform:translateX(100%);
	transform:translateX(100%);
	max-height:0;
	max-width:0;
	-o-transition:max-height 0s ease 0.3s, -o-transform 0.3s ease 0s;
	-webkit-transition:max-height 0s ease 0.3s, -webkit-transform 0.3s ease 0s;
	transition:max-height 0s ease 0.3s, transform 0.3s ease 0s;
}

.b-locations .addresses {
	left:0;
	width:100%;
	position:relative;
	padding-left:10px;
	-webkit-transform:translateX(-195%);
	-ms-transform:translateX(-195%);
	transform:translateX(-195%);
	max-height:10000px;
	overflow:hidden;
	max-width:10000px;
	-o-transition:max-height 0s ease 0s, -o-transform 0.3s ease 0s;
	-webkit-transition:max-height 0s ease 0s, -webkit-transform 0.3s ease 0s;
	transition:max-height 0s ease 0s, transform 0.3s ease 0s;
}

.b-locations .addresses.onelevel {
	-webkit-transform:translateX(-102%);
	-ms-transform:translateX(-102%);
	transform:translateX(-102%);
}

.b-locations .addresses .address {
	-webkit-transform:translateX(0%);
	-ms-transform:translateX(0%);
	transform:translateX(0%);
}

.b-locations .addresses .address .entry {
	padding:0;
}

.b-locations .addresses.movein {
	-webkit-transform:translateX(100%);
	-ms-transform:translateX(100%);
	transform:translateX(100%);
	max-height:0;
	max-width:0;
	-o-transition:max-height 0s ease 0.3s, max-width 0s ease 0.3s, -o-transform 0.3s ease 0s;
	-webkit-transition:max-height 0s ease 0.3s, max-width 0s ease 0.3s, -webkit-transform 0.3s ease 0s;
	transition:max-height 0s ease 0.3s, max-width 0s ease 0.3s, transform 0.3s ease 0s;
}
}

/* forms @media Mobile */
@media only screen and (max-width : 685px) {

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.form-group {
	display:block;
}

.form-group + .note {
	padding-left:0;
}

.form-group-50 {
	display:block;
	margin-top:0;
	margin-bottom:0;
}

.form-group-50 > * {
	margin-top:20px;
	margin-bottom:20px;
}

.form-group-50 > *:first-child {
	max-width:100%;
	padding-right:0;
	margin-top:20px;
}

.form-group-50 > *:last-child {
	padding-left:0;
	margin-bottom:20px;
}

.form-group-30-70 {
	display:block;
	margin-top:0;
	margin-bottom:0;
}

.form-group-30-70 > * {
	margin-top:20px;
	margin-bottom:30px;
}

.form-group-30-70 > *:first-child {
	max-width:100%;
	padding-right:0;
	margin-top:15px;
}

.form-group-30-70 > *:last-child {
	padding-left:0;
	margin-bottom:20px;
}

.text.paragraph.form-label {
	display:inline-block;
	margin-bottom:10px;
}

.pc3-captcha-wrapper img {
	width:100%;
	height:auto;
	max-width:300px;
}

.form-input-small .form-group-50 > * {
	margin-top:0px;
	margin-bottom:10px;
}

.form-input-small .form-group-50 > *:first-child {
	padding-right:0px;
}

.form-input-small .form-group-50 > *:last-child {
	padding-left:0px;
}
}

/* b-productfinder @media Mobile */
@media only screen and (max-width : 685px) {

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.m-productfinder .detail .b-image {
	max-height:280px;
}

.m-productfinder article ul li .icon {
	left:0;
}

.m-productfinder article ul li {
	padding-left:20px;
}

.m-productfinder article ul {
	margin-bottom:30px;
}

.m-productfinder .heading {
	padding-bottom:10px;
	margin-bottom:20px;
}

.m-productfinder .heading h4 {
	margin-right:20px;
}

.m-productfinder .b-listing .b-entry.b-listing-border {
	margin-right:0;
	padding-right:0;
}

.m-productfinder .b-listing .b-entry.b-listing-border .b-e-content {
	padding-top:15px !important;
}
}

/* m-filter @media Mobile */
@media only screen and (max-width : 685px) {

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.m-filter .form-input-wrapper {
	min-width:unset;
	width:100%;
	margin-bottom:10px;
}

.m-filter .form-group {
	display:flex;
	flex-wrap:wrap;
}

.m-filter .form-group .form-input-wrapper {
	margin-bottom:10px;
}

.m-filter .form-input-checkbox.mod-flex-columns {
	width:33%;
	margin-top:0;
	margin-right:0;
	margin-bottom:30px;
	margin-left:0;
	max-width:110px;
}

.m-filter .section.filter-level-one {
	padding-top:20px;
	padding-bottom:20px;
}

.m-filter .filter-level-two {
	padding-left:20px;
	padding-right:20px;
	padding-top:20px;
	padding-bottom:20px;
}

.m-filter .filter-level-two > .section {
	padding-right:0;
	padding-left:0;
}

.m-filter .filter-level-two .b-entry.link .b-e-content {
	margin-right:0;
}

.m-filter .filter-level-two .b-listing {
	margin-left:0;
	margin-right:0;
}
}

/* icons @media Mobile */
@media only screen and (max-width : 685px) {

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.icon.icon-enormus {
	font-size:43px;
}
}

/* b-spacer @media Mobile */
@media only screen and (max-width : 685px) {

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.b-spacer-50-desktop {
	margin-bottom:0;
}

.b-spacer-30-dynamic {
	margin-bottom:20px;
}
}

/* m-products @media Mobile */
@media only screen and (max-width : 685px) {

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.m-products .back-link {
	top:1vw;
	left:4vw;
}

.m-products .multicolumn.cols-33.detail {
	flex-direction:column-reverse;
}

.m-products .multicolumn.cols-33.detail .col-2 {
	margin-bottom:25px;
}

.m-products .b-listing-versions .b-entry {
	padding-bottom:15vw;
}

.m-products .b-listing-versions .b-e-header {
	margin-bottom:5.3vw;
}

.m-products .b-listing-accordeons .b-entry > * {
	flex:1 0 100%;
	padding-left:0;
	padding-right:0;
}
}

/* m-shop @media Mobile */
@media only screen and (max-width : 685px) {

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.m-shop .results .b-entry {
	padding-right:0;
}

.m-shop .results .b-listing.b-listing-horizontal .b-entry .b-e-content {
	max-width:80%;
	padding-bottom:60px;
}
}

/* m-references @media Mobile */
@media only screen and (max-width : 685px) {

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.m-references .b-listing-references > * {
	padding-bottom:40px;
}

.m-references .b-listing-references > a:nth-child(odd) .multicolumn {
	flex-direction:column;
}

.m-references .b-listing-references .b-entry:nth-child(odd) .multicolumn {
	flex-direction:column;
}

.m-references .m-filter {
	padding-bottom:50px;
}

.m-references .section.box-padding-m {
	padding:0px !important;
}

.b-listing-references .icon {
	margin-left:10px;
}
}

/* b-title @media Mobile */
@media only screen and (max-width : 685px) {

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.title-h1 {
	font-size:49px;
}

.title-h2 {
	font-size:40px;
}

.title-h3 {
	font-size:32px;
}

.title-h4 {
	font-size:26px;
}

.title-h5 {
	font-size:16px;
}

.title-flag-23 {
	padding-bottom:40px;
}

.title-flag-23:after {
	width:23px;
	height:23px;
}
}

/* b-text @media Mobile */
@media only screen and (max-width : 685px) {

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.text-flag-23:after {
	width:23px;
	height:23px;
}

.text.text-speech-bubble {
	font-size:28px;
	line-height:32px;
}
}

/* b-listing @media Mobile */
@media only screen and (max-width : 685px) {

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.b-listing .box-padding-m {
	padding:0;
}

.b-listing .list-box-container .box-padding-m {
	padding:clamp(25px,7vw,50px);
}

.b-listing .b-entry.b-listing-border:nth-child(2) .b-e-content {
	padding-top:0;
	border-top-width:0px;
}

.b-listing.b-listing-image .b-entry {
	padding-left:0;
	padding-right:0;
}

.b-listing.b-listing-values .b-entry:nth-child(even) {
	flex-direction:column-reverse;
}

.b-listing.b-listing-values .b-entry {
	flex-direction:column-reverse;
	padding-top:2vw;
	padding-right:0;
	padding-bottom:2vw;
	padding-left:0;
}

.b-listing.b-listing-values .b-entry > * {
	flex:1;
}

.b-listing.b-listing-values .b-entry .b-e-content {
	padding-left:0;
	padding-right:0;
	padding-top:10px;
	padding-bottom:10px;
}

.b-listing.b-listing-values .b-entry .b-e-header {
	padding-left:0 !important;
	padding-right:0 !important;
	padding-top:10px;
	padding-bottom:10px;
}

.b-listing.b-listing-values .b-entry .link-wrap {
	margin-top:0;
}

.b-listing-tiles .b-entry {
	margin-bottom:15.6vw;
}

.b-listing-tiles .b-entry:nth-child(odd) .b-e-content > .section > .multicolumn {
	flex-direction:column;
}

.b-listing-tiles .b-entry:nth-child(odd) .b-e-content > .section > .multicolumn .col:first-child {
	padding-left:0 !important;
}

.b-listing-tiles .b-entry:nth-child(odd) .b-e-content > .section > .multicolumn .col:last-child {
	padding-right:0 !important;
}

.b-listing-tiles .b-entry .b-e-content > .section > .multicolumn {
	align-items:start;
}

.m-listing-products .m-product-entry {
	display:block;
	margin-top:20px;
	padding-bottom:0;
}

.m-listing-products .m-product-entry .b-e-content {
	margin-top:40px;
	margin-right:0;
	margin-bottom:40px;
	margin-left:0;
	display:block;
}

.m-listing-products .m-product-entry > * {
	padding:0 !important;
}

.m-listing-products .m-product-entry .b-image {
	min-height:90vw;
}

.border-list-wrapper .col {
	margin:0;
}

.b-listing-2 .b-entry {
	padding-top:0;
	padding-right:0;
	padding-bottom:25px;
	padding-left:0;
}

.b-listing.b-listing-horizontal.b-listing-row-reverse .b-entry {
	flex-direction:column-reverse;
}

.multicolumn.b-listing-row-reverse {
	flex-direction:column;
}

.simple-list-wrapper .simple-list-item.flex-wrap-mobile {
	flex-wrap:wrap;
}

.simple-list-wrapper .simple-list-item > * {
	display:block;
	white-space:normal;
	padding:0;
	margin-bottom:5px !important;
	line-height:1.25;
}

.simple-list-wrapper .actions {
	min-width:initial;
}
}

/* b-image @media Mobile */
@media only screen and (max-width : 685px) {

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.image-object-position-mobile-20 {
	object-position:20%;
}

.image-object-position-mobile-25 {
	object-position:25%;
}

.image-object-position-mobile-30 {
	object-position:30%;
}

.image-object-position-mobile-35 {
	object-position:35%;
}

.image-object-position-mobile-40 {
	object-position:40%;
}

.image-object-position-mobile-45 {
	object-position:45%;
}

.image-object-position-mobile-50 {
	object-position:50%;
}

.image-object-position-mobile-55 {
	object-position:55%;
}

.image-object-position-mobile-60 {
	object-position:60%;
}

.image-object-position-mobile-65 {
	object-position:65%;
}

.image-object-position-mobile-70 {
	object-position:70%;
}

.image-object-position-mobile-75 {
	object-position:75%;
}

.image-object-position-mobile-80 {
	object-position:80%;
}

.image-object-position-mobile-85 {
	object-position:85%;
}

.image-object-position-mobile-90 {
	object-position:90%;
}

.image-object-position-mobile-95 {
	object-position:95%;
}

.image-object-position-mobile-100 {
	object-position:100%;
}

.b-image-label {
	margin-bottom:0px;
	max-width:90vw;
	line-height:20px;
}

.image-height-portrait-on-mobile {
	height:calc(70vh - 100px);
}

.b-image-description-max-width-75 {
	max-width:100%;
}

.b-image-description-max-width-50 {
	max-width:100%;
}

.b-image-description-max-width-25 {
	max-width:100%;
}
}

/* b-multicolumn @media Mobile */
@media only screen and (max-width : 685px) {

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.multicolumn {
	flex-direction:column;
}

.multicolumn .col {
	min-width:100%;
}

.multicolumn .col:last-child {
	margin-bottom:0px;
}

.b-mc-space {
	margin-left:0;
	margin-right:0;
}

.b-mc-space > .col:first-child {
	margin-top:0;
}

.b-mc-space > .col:last-child {
	margin-bottom:0;
}

.b-mc-space > .col {
	padding-left:0;
	padding-right:0;
	margin-bottom:25px;
	margin-top:25px;
}

.b-mc-space-medium {
	margin-left:0;
	margin-right:0;
}

.b-mc-space-medium > .col:first-child {
	margin-top:0;
}

.b-mc-space-medium > .col:last-child {
	margin-bottom:0;
}

.b-mc-space-medium > .col {
	padding-left:0;
	padding-right:0;
	margin-bottom:2.5px;
	margin-top:2.5px;
}

.b-mc-space-small {
	margin-left:0;
	margin-right:0;
}

.b-mc-space-small > .col:first-child {
	margin-top:0;
}

.b-mc-space-small > .col:last-child {
	margin-bottom:0;
}

.b-mc-space-small > .col {
	padding-left:0;
	padding-right:0;
	margin-bottom:0.5px;
	margin-top:0.5px;
}

.b-mc-space-no > .col {
	padding-left:0;
	padding-right:0;
	margin-bottom:0;
	margin-top:0;
}

.b-mc-space-line > .col:first-child {
	border-top-width:0;
}

.b-mc-space-line > .col:last-child {
	border-bottom-width:0;
}

.b-mc-space-line > .col {
	border-top-style:solid;
	border-top-width:0.5px;
	border-top-color:#464A52;
	border-bottom-style:solid;
	border-bottom-width:0.5px;
	border-bottom-color:#464A52;
	border-left-width:0;
	border-right-width:0;
	margin-top:0;
	margin-bottom:0;
}

.b-mc-space-fluid > .col {
	padding:0;
}

.b-mc-space-fluid-inside > .col {
	padding-left:0;
	padding-right:0;
	padding-top:25px;
	padding-bottom:25px;
}

.b-mc-space-fluid-inside > *:first-child {
	padding-top:0;
}

.b-mc-space-fluid-inside > *:last-child {
	padding-bottom:0;
	margin-bottom:0 !important;
}

.b-mc-space-fluid-inside.cols-33 > .col {
	padding-left:0;
	padding-right:0;
	padding-top:15px;
	padding-bottom:15px;
}

.b-mc-space-fluid-inside.cols-33 {
	width:100%;
	margin-left:0;
}

.b-mc-spacer-50-dynamic > .col {
	margin-bottom:2.7vw;
}

.b-mc-spacer-100-dynamic > .col {
	margin-bottom:5.3vw;
}

.b-mc-spacer-200-dynamic > .col {
	margin-bottom:10.5vw;
}

.b-mc-spacer-300-dynamic > .col {
	margin-bottom:15.6vw;
}

.mod-mc-column-reverse-mobile-only {
	flex-direction:column-reverse;
}

.mod-mc-column-reverse-mobile-only .col:first-child {
	margin-bottom:0;
}

.multicolumn-nowrap .col {
	min-width:initial;
	margin-bottom:0;
}
/* style: Hauptstil language: default / engineId: default / pseudo: last-child */
.mod-mc-column-reverse-mobile-only .col:last-child {
	margin-bottom:clamp(30px, 25px, 50px) !important;
}
}

/* navigation @media Mobile */
@media only screen and (max-width : 685px) {

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.overlay .title-h1 {
	font-size:28px;
	line-height:32px;
}

.overlay .title-h3 {
	font-size:28px;
	line-height:32px;
}

.overlay.popup {
	padding:1vw;
}

.overlay.popup .overlay-continue {
	right:10px;
	bottom:10px;
}

.overlay.trigger-popup {
	max-width:90%;
	right:5%;
	max-height:calc(100% - 40px);
}

.overlay.trigger-popup .overlay-close {
	right:45px;
	top:-10px;
}

.overlay.trigger-popup .m-popup > .section {
	padding-top:70px;
}

.overlay > .section {
	padding-top:40px;
	padding-right:20px;
	padding-bottom:20px;
	padding-left:20px;
}

.overlay > .section .b-listing-2 .b-e-content {
	margin-bottom:0;
}

.overlay .spacer {
	padding-top:20px;
	padding-right:10px;
	padding-bottom:20px;
	padding-left:10px;
}

.overlay-login .form-input {
	font-size:19px;
	line-height:26px;
}

.overlay-login .link {
	font-size:19px;
	line-height:26px;
}

.overlay-login .link .icon {
	font-size:38px;
	top:3px;
}

.overlay-login .cols-25 > .col-2 {
	width:100%;
}

.flyout-content {
	border-right-width:6px;
}

.flyout-content > .link {
	line-height:50px;
	padding-left:7px !important;
	padding-right:7px !important;
}

.menu .title-h3 {
	margin-top:45px;
	padding-bottom:8px;
}

.menu .search {
	margin-top:10px;
}

.menu .b-listing-2 .b-entry:nth-child(odd) {
	padding-left:0;
}

.menu .b-listing-2 .b-entry:nth-child(even) {
	padding-right:0;
}

.menu .b-listing .b-e-content {
	margin-top:0;
	margin-bottom:0;
}

.header .navigation .language-selector {
	margin-right:10px;
}

.header .navigation .language-selector .link {
	padding-left:10px !important;
}

.page-brand .header .menu-toggler {
	left:25px;
}

.brand-header-navigation-wrapper {
	margin-right:25px;
	top:-6px;
}

.brand-navigation-language .language-selector {
	right:0px;
	flex-direction:column;
	padding-top:0;
	padding-right:25px;
	padding-bottom:25px;
	padding-left:25px;
	background-color:#FFFFFF;
}

.brand-navigation-language a {
	max-width:unset;
	max-height:0px;
}

.brand-navigation-language a.active {
	max-width:unset;
	max-height:50px;
}

.brand-navigation-language .language-selector.open {
	gap:5px;
}

.brand-navigation-language .language-selector.open a {
	max-width:unset;
	max-height:200px;
}
}

/* b-contactform @media Mobile */
@media only screen and (max-width : 685px) {

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.form .align-with-input {
	padding-left:0;
}
}

/* b-section @media Mobile */
@media only screen and (max-width : 685px) {

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.d-box-rd23 .section.section-fluid {
	padding-top:14vw;
}

.section.box-padding-s-mobile {
	padding:25px;
}

.section-height-50 {
	min-height:calc(50vh - 100px);
}

.section-height-75 {
	min-height:calc(75vh - 100px);
}

.section-height-100 {
	min-height:calc(100vh - 100px);
}

.section.section-fluid {
	padding-top:15.3vw;
	padding-right:4vw;
	padding-bottom:15.3vw;
	padding-left:4vw;
}

.section.section-fluid.section-circle-inside {
	padding-left:0;
	padding-right:0;
}

.section-circle {
	width:90vw;
	height:90vw;
}

.section.section-text-inside-multicolumn-right {
	padding-right:2.6vw !important;
	padding-left:2.6vw !important;
}

.section.section-text-inside-multicolumn-left {
	padding-left:2.6vw !important;
	padding-right:2.6vw !important;
}
}

/* h-modifier @media Mobile */
@media only screen and (max-width : 685px) {

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.mod-align-right {
	left:0;
	-webkit-transform:translateX(0);
	-ms-transform:translateX(0);
	transform:translateX(0);
}

.mod-flex-gap.big-gap {
	gap:10px;
}

.mod-flex-basis-50 > * {
	flex:1 1 100%;
}

.mod-flex-basis-50.mod-flex-gap > * {
	flex:1 1 100%;
}

.mod-flex-nowrap {
	flex-wrap:nowrap;
	flex-direction:row;
}

.mod-hide-mobile {
	display:none !important;
}

.mod-hide-tablet {
	display:none !important;
}

.mod-hide-desktop {
	display:block !important;
}

.mod-mobile-flex-wrap {
	flex-wrap:wrap;
}

.mod-no-wrap.multicolumn {
	flex-direction:row;
}

.mod-no-wrap.multicolumn .col {
	margin-bottom:0px;
	min-width:0px;
}
}

/* b-quote @media Tablet */
@media only screen and (max-width : 1040px) {

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.b-quote.section.section-large {
	padding-right:40px;
	padding-left:40px;
}
}

/* b-link @media Tablet */
@media only screen and (max-width : 1040px) {

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.page-back-link {
	top:5px !important;
}
}

/* design @media Tablet */
@media only screen and (max-width : 1040px) {

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.header .menu-toggler {
	left:15px;
}

.header .navigation .link {
	padding-top:0;
	padding-right:10px;
	padding-bottom:0;
	padding-left:10px;
}

.header .navigation .counter {
	width:55px;
}

.cookie-notice .pc3richtext p {
	height:25px;
}

.cookie-notice .richtext-wrapper {
	padding-top:4px;
}

.cookie-notice .richtext-toggler {
	padding-left:0px;
}
}

/* b-slider @media Tablet */
@media only screen and (max-width : 1040px) {

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.b-slider.has-one-slide.visible-slides-3 .swiper-slide {
	max-width:50%;
}
}

/* m-downloads @media Tablet */
@media only screen and (max-width : 1040px) {

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.m-downloads .results {
	margin-top:60px;
}

.m-downloads .results .m-archive {
	top:-40px;
}

.m-downloads .results .m-filter .form-group {
	flex-wrap:wrap;
}

.m-downloads .results .m-filter .form-input-wrapper {
	min-width:100%;
	margin-bottom:10px;
}

.m-downloads .results .m-filter .search {
	max-width:100%;
	margin-bottom:0px;
}
}

/* b-locations @media Tablet */
@media only screen and (max-width : 1040px) {

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.b-locations .addresses .address {
	max-width:350px;
}
}

/* b-productfinder @media Tablet */
@media only screen and (max-width : 1040px) {

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.m-productfinder .heading .d-button-solid {
	clear:right;
	margin-bottom:10px;
}
}

/* slider @media Tablet */
@media only screen and (max-width : 1040px) {

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.m-listing-slider .l-s-controls .l-s-c-next {
	right:0;
}

.m-listing-slider .l-s-controls .l-s-c-prev {
	left:0;
}
}

/* m-claimmanagement @media Tablet */
@media only screen and (max-width : 1040px) {

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.mod-claimmanagement #result-list {
	padding-left:20px;
	padding-right:20px;
}
}

/* m-references @media Tablet */
@media only screen and (max-width : 1040px) {

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.m-references .section.box-padding-m {
	padding-top:0;
	padding-right:25px;
	padding-bottom:25px;
	padding-left:25px;
}
}

/* navigation @media Tablet */
@media only screen and (max-width : 1040px) {

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.overlay .overlay-close {
	width:60px;
	height:60px;
}

.overlay.popup {
	padding:5vw;
}

.overlay.popup .overlay-continue {
	right:20px;
	bottom:20px;
}

.overlay-website .languages > a {
	width:27px;
	padding-top:3px;
	padding-right:0;
	padding-bottom:3px;
	padding-left:0;
}

.menu .link {
	font-size:19px;
	line-height:26px;
	padding-top:7px;
	padding-bottom:9px;
}
}

/* b-section @media Tablet */
@media only screen and (max-width : 1040px) {

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.d-box-color.d-box-title {
	padding-top:40px;
}

.section {
	max-width:calc(100vw - 2 * 20px);
}

.section.section-large {
	padding-left:0;
	padding-right:0;
}

.section-circle > div {
	max-width:290px;
}

.section-circle {
	max-width:100%;
}

.vw-overflow-fix .section.section-bleed {
	max-width:100%;
}

.vw-overflow-fix .section {
	max-width:calc(100vw - 2 * 20px - 17px);
}
}

/* h-modifier @media Tablet */
@media only screen and (max-width : 1040px) {

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.mod-hide-tablet {
	display:none !important;
}
}

/* b-image @media SmallHorizontalScreen */
@media only screen and (max-height : 600px) and (min-width:1000px) {

/* style: Hauptstil language: default / engineId: default / pseudo: default */
.image-height-100 {
	object-position:0px -17vw;
}
}