/* Fonts ------------------------------------------------------------------- */
/* outfit-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/outfit-v10-latin-300.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+ */
       url('../fonts/outfit-v10-latin-300.woff') format('woff'); /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* outfit-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/outfit-v10-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+ */
       url('../fonts/outfit-v10-latin-regular.woff') format('woff'); /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* outfit-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/outfit-v10-latin-500.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+ */
       url('../fonts/outfit-v10-latin-500.woff') format('woff'); /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* outfit-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/outfit-v10-latin-600.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+ */
       url('../fonts/outfit-v10-latin-600.woff') format('woff'); /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* Basics ------------------------------------------------------------------------- */

:root {

  --tabletBreakPoint: 990px;
  --mobileBreakPoint: 600px;


  --sliderDotSize: 12px;
  --sliderDotBorderRadius: 6px;
  --sliderDotColor: #FFFFFF;
  --sliderDotOpacity: 0.7;
  --sliderDotActiveColor: #FFFFFF;
  --sliderDotActiveOpacity: 1;

  --burgerMenuTextTransform: none;
  --burgerMenuFontWeight: 400;
  --burgerMenuSwitchColor: #C1001F;
  --burgerMenuBackButtonBackground: #C1001F;
  --burgerMenuBackButtonColor: #FFFFFF;
  --burgerMenuBackButtonTextTransform: none;
  --burgerMenuLinkColor: #000000;
  --burgerMenuLinkActiveColor: #C1001F;

  --headerHeight: 0;

}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  margin: 0 auto 0;
  font-size: 100%;
}

body {
  position: relative;
  padding: 0;
  margin: 0;
  line-height: 120%;
  background: #FFFFFF;
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 300;
  color: #464B4D;
}
body.template-newsdetail {
  background: #F2F2F2;
}
body.template-animation {
background: #1E1E1E;
}

form, h1, h2, h3, h4, h5, h6, img, p {
  padding: 0;
  margin: 0;
}

img, svg {
  max-width: 100%;
  height: auto;
  max-height: 100%;
  vertical-align: bottom;
  object-fit: contain;
}

span[style*="font-size"] {
  line-height: 120%;
}

b, strong, span[style*="bold"] {
  font-weight: 500 !important;
}

div {
  position: relative;
}

hr {
  margin: 2rem 0;
  border: 0;
  padding: 0;
}
hr::before {
  display: inline-block;
  width: 152px;
  height: 3px;
  background: #D7D7D7;
  content: '';
}


/* Default Hyperlinks ------------------------------------------------------------------------- */

a {
  color: currentColor;
  transition: 300ms;
  overflow: hidden;
  pointer-events: all;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 2px;
  text-decoration-color: #E1871A;
}
a:hover {
  color: currentColor;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 2px;
  text-decoration-color: currentColor;
}




/* BEGIN -------------------------------------------- HEADLINES */

.headline1 {
  font-size: 2.625rem;
  font-weight: 500;
  color: #000000;
  line-height: 120%;
  margin-bottom: 0.5em;
}
.headline1 a, .headline1 a:hover {
  text-decoration: none;
  text-decoration-color: transparent;
}
.headline1 + hr {
  margin-top: 1rem;
}

.headline2 {
  font-size: 1.375rem;
  font-weight: 600;
  color: #000000;
  line-height: 120%;
  margin-bottom: 0.5em;
}
.headline2 a, .headline2 a:hover {
  text-decoration: none;
  text-decoration-color: transparent;
}

.headline3 {
  font-size: 0.875rem;
  font-weight: 400;
  color: #464B4D;
  line-height: 170%;
  margin-bottom: 0.5em;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
  text-decoration-color: #E1871A;
  overflow: hidden;
  text-overflow: ellipsis;
}
.headline3 a, .headline3 a:hover {
  text-decoration: none;
  text-decoration-color: transparent;
}

.headline4 {
  font-size: 20px;
  font-weight: 600;
  color: #2B3431;
  line-height: 35px;
  letter-spacing: 2px;
}
.headline4 a, .headline4 a:hover {
  text-decoration: none;
  text-decoration-color: transparent;
}

.headline5 {
  font-size: 1.2rem;
  font-weight: 400;
  color: #464B4D;
}

.headline6 {
  font-size: 1rem;
  font-weight: 600;
  color: #464B4D;
}


/* END -------------------------------------------- HEADLINES */




div.inner {
  margin: 0 auto 0;
  padding: 0 100px;
  width: calc( 100% - 200px );
  max-width: 1500px;
}

div.inner-flex {
  display: flex;
  margin: 0 auto 0;
  padding: 0 100px;
  width: calc( 100% - 200px );
  max-width: 1500px;
  flex-wrap: wrap;
  justify-content: space-between;
}




/* BEGIN -------------------------------------------- HEADER */

header.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0;
  z-index: 900;
  color: #000000;
}
header.header a, header.header a:hover {
  color: #CC0000;
  text-decoration: none;
}
header.header a:hover {
  color: #AA001C;
  text-decoration: none;
}

div.header-inner {
  position: relative;
  margin: 0 auto 0;
}

div.header-logo {
  position: absolute;
  top: 0;
  left: 100px;
  width: fit-content;
  padding: 128px 10px 20px 20px;
  background: #464B4D;
  box-shadow: 0 0 25px rgba(0,0,0,0.4);
  transition: 300ms;
}
body.scrolled div.header-logo {
  padding: 20px 10px 20px 20px;
}

div.header-language {
  padding-right: 50px;
  padding-left: 30px;
  border-left: 1px solid rgba(0,0,0,0.2);
}

div.header-mainmenu {
  position: relative;
  margin-top: 43px;
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.8);
  text-align: right;
  transition: 300ms;
  display: flex;
  justify-content: end;
  align-items: center;
  padding-right: calc( ( 100% - 1500px ) / 2 )
}
body.scrolled div.header-mainmenu {
  margin-top: 0;
  background: rgba(255,255,255,0.97);
  box-shadow: 0 0 25px rgba(0,0,0,0.1);
}
div.header-mainmenu strong, div.header-mainmenu a, div.header-mainmenu a:hover {
  display: inline-block;
  padding: 12px 0 9px 0;
  color: #000000;
  text-decoration: none;
  text-underline-offset: 2px;
  text-decoration-thickness: 2px;
  text-decoration-color: #E1871A;
}
div.header-mainmenu a:hover, div.header-mainmenu strong, div.header-mainmenu li.marked a {
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 2px;
  text-decoration-color: #E1871A;
}
div.header-mainmenu strong {
  font-weight: 400 !important;

}
div.header-mainmenu ul {
  display: flex;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0 50px;
  max-width: 1500px;
  list-style: none;
  justify-content: end;
  column-gap: 73px;
}
div.header-mainmenu li {
  margin: 0;
  padding: 0;
}
div.header-mainmenu ul li ul {
  display: none;
}

#menu-switch{
display: none;
  width:45px;
  height:45px;
  margin: 5px 20px 5px 0;
  position:relative;
  transform:rotate(0);
  transition:.5s ease-in-out;
  cursor:pointer;
  vertical-align:bottom;
}
#menu-switch span{
display:block;
position:absolute;
height:3px;
width:100%;
background:#FFF;
opacity:1;
left:0;
transform:rotate(0);
transition:.25s ease-in-out
}
#menu-switch span:nth-child(1){top:10px;transform-origin:left center}
#menu-switch span:nth-child(2){top:21px;transform-origin:left center}
#menu-switch span:nth-child(3){top:31px;transform-origin:left center}

body.menu-shown #menu-switch span:nth-child(1){transform:rotate(45deg);width: 30px;top:11px;left:11px}

body.menu-shown #menu-switch span:nth-child(2){width:0;opacity:0}

body.menu-shown #menu-switch span:nth-child(3){transform:rotate(-45deg);width: 30px;top:32px;left:11px}
#menu-switch span {
  background: #464B4D;
}

/* END -------------------------------------------- HEADER */




/* BEGIN ---------------------------------------- FOOTER */

footer.footer {
  position: relative;
  color: #FFFFFF;
  font-size: 20px;
  line-height: 140%;
  padding: 100px 0;
  background: #464B4D;
}
footer.footer .headline1, footer.footer .headline2, footer.footer .headline3, footer.footer .headline4, footer.footer .headline5, footer.footer .headline6, footer.footer a, footer.footer a:hover {
  color: #FFFFFF;
}
footer.footer a {
  text-decoration: none;
}
footer.footer a:hover {
  text-decoration: underline;
}

div.footer-inner {
  display: flex;
  width: calc( 100% - 200px );
  margin: 0 auto 0;
  padding: 0 100px;
  max-width: 1500px;
  column-gap: 40px;
  justify-content: space-between;
}

div.footer-inner div:nth-child(1) {
  display: flex;
  column-gap: 20px;
}

/* END -------------------------------------------- FOOTER */




/* BEGIN -------------------------------------------- HERO */

div.hero-container {
  z-index: 5;
}

div.hero {
  width: 100%;
  min-height: 160px;
}
div.hero-container[lang="de"] div[lang="de"] {
  display: block;
}
div.hero-container[lang="de"] div[lang="en"] {
  display: none;
}
div.hero-container[lang="en"] div[lang="en"] {
  display: block;
}
div.hero-container[lang="en"] div[lang="de"] {
  display: none;
}
body.template-newsoverview div.hero, body.template-newsdetail div.hero {
  min-height: 200px;
}
div.hero-item-container {
  background: #1E1E1E;
  overflow: hidden;
}
div.hero-item-container::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  content: '';
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(30,30,30,1) 70%);
  z-index: 10;
}
body.template-newsoverview div.hero-item-container::after, body.template-newsdetail div.hero-item-container::after {
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(30,30,30,0.7) 90%);
}
div.hero-item-container > img {
  width: 100%;
  max-height: 90vh;
  aspect-ratio: 1920 / 1080;
  object-fit: cover;
  object-position: center center;
}
body.template-default div.hero-item-container > img {
  aspect-ratio: auto;
  max-height: 600px;
  min-height: 400px;
}
body.template-newsoverview div.hero-item-container > img, body.template-newsdetail div.hero-item-container > img {
  aspect-ratio: auto;
  max-height: 400px;
  min-height: 400px;
}
body.template-newsdetail div.hero-item-container > img.hero-news-detailimage {
  filter: blur( 20px );
  transform: scale(1.2);
}
body.template-animation div.hero-item-container > img {
  max-height: calc(100vh - 16px);
}
/*body.template-product div.hero-item-container > img {
  aspect-ratio: auto;
  max-height: 90vh;
  min-height: 400px;
}*/
div.hero-item-container-text {
  position: absolute;
  padding: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 1.25rem;
  line-height: 120%;
  color: #FFFFFF;
  z-index: 11;
}
body.template-product div.hero-item-container-text {
  position: relative;
  margin-top: calc(17% * -1);
  bottom: auto;
  left: auto;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(30,30,30,1) 70%);
}
body.template-newsoverview div.hero-item-container-text, body.template-newsdetail div.hero-item-container-text {
    padding: 0 20px;
    left: 50%;
    width: calc( 100% - 40px );
    max-width: 1500px;
    height: auto;
    transform: translate(-50%,0);
}

div.hero-item-container-text .headline1, div.hero-item-container-text .headline2, div.hero-item-container-text .headline3, div.hero-item-container-text .headline4, div.hero-item-container-text .headline5, div.hero-item-container-text .headline6 {
  color: #FFFFFF;
}
div.hero-item-container-text a, div.hero-item-container-text a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 2px;
  text-decoration-color: #FFFFFF;
  color: #FFFFFF;
}
div.hero-item-container-text a:hover {
  text-decoration-color: #E1871A;
}
div.hero-item-container-text div.style1 a {
  border: 2px solid #FFFFFF;
  color: #FFFFFF;
}
div.hero-item-container-text div.style1 a:hover {
  border-color: #E1871A;
  text-decoration: none;
}
div.hero-item-container-text div[lang] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
div.hero-item-container-text .grid-row {
  height: calc( 100% - 430px );
  margin-top: 150px;
  margin-bottom: 0;
}
body.template-product div.hero-item-container-text .grid-row {
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 95px;
  row-gap: 40px;
}
body.template-default div.hero-item-container-text .grid-row {
  height: calc( 100% - 150px );
  margin-top: 150px;
  margin-bottom: 0;
}

div.hero-navigation {
  display: grid;
  position: absolute;
  left: 50%;
  max-width: 1500px;
  width: calc( 100% - 100px );
  padding: 0 50px;
  margin: 0 auto 0;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  column-gap: 35px;
  transform: translate(-50%,-100%);
}

div.hero-navigation-item {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 120%;
  color: #FFFFFF;
  padding: 20px;
  text-align: center;
  background: rgb(42,45,46);
  background: linear-gradient(180deg, rgba(42,45,46,1) 0%, rgba(70,75,77,1) 100%);
  transform: translate(0, 15px);
  transition: 300ms;
  cursor: pointer;
}
div.hero-navigation-item img, div.hero-navigation-item svg {
  margin: 0 0 10px 0;
  transition: 300ms;
}
div.hero-navigation-item.active {
  transform: translate(0,0);
}
div.hero-navigation-item:not(.active):hover {
  transform: translate(0,10px);
}
div.hero-navigation-item.active::after {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 2px;
  background: #C98B25;
  content: '';
  animation: 6.5s hero-navigation-active linear forwards;
}
body.template-animation div.hero-navigation-item.active::after {
  animation: 10s hero-navigation-active linear forwards;
}
@keyframes hero-navigation-active {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* END -------------------------------------------- HERO */




/* BEGIN -------------------------------------------- CONTENTBEREICH */

main {
  margin: 0 auto 0;
  line-height: 140%;
}

/* END -------------------------------------------- CONTENTBEREICH */




/* BEGIN -------------------------------------------- HAMBURGER MENÃœ */

div.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 899;
  background: transparent;
}
div.menu-container {
  position: fixed;
  display: block;
  width: fit-content;
  top: calc( var(--menuPositionY) );
  left: var(--menuPositionX) !important;
  max-width: 100%;
  height: calc( 100% - var(--menuPositionY) );
  max-height: calc( 100% - var(--menuPositionY) );
  margin: 0;
  z-index: 102;
  transform: translate(-50%,0);
  transition: opacity 300ms;
  opacity: 0;
  overflow: hidden;
}
body.menu-shown div.menu-container {
  opacity: 1;
}

#menu {
  position: relative;
  width: 300px;
  height: calc( 100% - 40px );
  overflow: hidden;
  box-sizing: border-box;
  white-space: nowrap;
  transition: 400ms;
}
#menu .col {
  display: inline-block;
  position: relative;
  width: fit-content;
  min-width: 300px;
  max-height: 100%;
  overflow: hidden;
  overflow-y: auto;
  box-sizing: border-box;
  background: #464B4D;
  transition: margin-left 400ms;
  vertical-align: top;
  border: 0;
}
#menu .col:empty {
  border: 0;
}
#menu ul, #menu li {
  position: relative;
  padding: 0;
  margin: 0;
  list-style: none;
  background: none;
}
#menu ul {
  padding: 0;
}
#menu ul li {
  white-space: normal;
  margin: 0 10px;
}
#menu ul li + li {
  border-top: 1px solid #444;
}
#menu ul li a, #menu ul li strong {
  display: block;
  line-height: 110%;
  font-size: 1rem;
  font-weight: 400 !important;
  padding: 14px 15px 14px 15px;
  margin: 0;
  color: #FFFFFF;
  text-decoration: none;
  text-underline-offset: 2px;
  text-decoration-thickness: 2px;
  text-decoration-color: #E1871A;
}
#menu ul li a:hover, #menu ul li strong, #menu ul li.hasSub:hover, #menu ul li.active, #menu ul li.marked, #menu ul li.active a, #menu ul li.marked a, #menu ul li a.menu-list-marked {
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 2px;
  text-decoration-color: #E1871A;
}
#menu ul li ul {
  display: none;
}

#menu ul li.hasSub a:after {
  display: block;
  position: absolute;
  top: calc( 50% - 6px );
  right: 20px;
  width: 7px;
  height: 7px;
  cursor: pointer;
  font-weight: bold;
  transition: 150ms;
  border: 2px solid transparent;
  border-top-color: #999;
  border-right-color: #999;
  content: '';
  transform: rotate(45deg);
}
#menu ul li.hasSub.active a:after, #menu ul li.hasSub a:hover::after {
  border-top-color: orange;
  border-right-color: orange;
}

div.menu-container-back {
  position: relative;
  width: 100%;
  padding: 0 10px 0 25px;
  height: 40px;
  max-height: 40px;
  cursor: pointer;
  z-index: 110;
  background: #444444;
  line-height: 42px;
  box-sizing: border-box;
  border-radius: 3px;
  color: #FFFFFF;
  font-size: 1.125rem;
  font-weight: 400;
  z-index: 700;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-decoration: none;
  text-underline-offset: 2px;
  text-decoration-thickness: 2px;
  text-decoration-color: #E1871A;
}
div.menu-container-back:before {
  display: block;
  position: absolute;
  top: calc( 50% - 6px );
  left: 10px;
  width: 7px;
  height: 7px;
  cursor: pointer;
  font-weight: bold;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-right-color: currentColor;
  content: '';
  transform: rotate(-135deg);
}

div.menu-container-back:empty:before, div.menu-container-back:empty:after {
  content: none;
}

/* END -------------------------------------------- HAMBURGER MENÃœ */




/* BEGIN -------------------------------------------- STYLE-BEFEHLE */

div.style1 {
  display: inline-block;
}
div.style1 a {
  display: inline-block;
  padding: 0.6em 1.5em;
  margin: 0.4em 0;
  border: 2px solid #D0D0D0;
  border-radius: 200px;
  font-size: 0.9em;
  font-weight: 500;
  color: #464B4D;
  background: transparent;
  text-decoration: none;
}
div.style1 a:hover {
  color: #464B4D;
  border-color: #E0861A;
  text-decoration: none;
}

div.style2 {
  display: inline-block;
}
div.style2 a {
  display: inline-block;
  padding: 0.6em 1.5em;
  margin: 0 0 5px 0;
  border: 2px solid #E0861A;
  border-radius: 200px;
  font-size: 0.9em;
  font-weight: 500;
  color: #FFFFFF;
  background: #E0861A;
  text-decoration: none;
}
div.style2 a:hover {
  text-decoration: none;
  background: #ab6613;
  border-color: #ab6613;
}

/* END -------------------------------------------- STYLE-BEFEHLE */




/* BEGIN -------------------------------------------- BILDVERGRÖßERUNG */

.mfp-bg,.mfp-wrap{position:fixed;left:0;top:0}.mfp-bg,.mfp-container,.mfp-wrap{height:100%;width:100%}.mfp-container:before,.mfp-figure:after{content:''}.mfp-bg{z-index:1040;overflow:hidden;background:#FFFFFFF0;opacity:.9;filter:alpha(opacity=90)}.mfp-wrap{z-index:1042;outline:0!important;-webkit-backface-visibility:hidden}.mfp-container{text-align:center;position:absolute;left:0;top:0;padding:0 8px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mfp-container:before{display:inline-block;height:100%;vertical-align:middle}.mfp-align-top .mfp-container:before{display:none}.mfp-content{position:relative;display:inline-block;vertical-align:middle;margin:0 auto;text-align:left;z-index:943}.mfp-close,.mfp-preloader{text-align:center;position:absolute}.mfp-ajax-holder .mfp-content,.mfp-inline-holder .mfp-content{width:100%;cursor:auto}.mfp-ajax-cur{cursor:progress}.mfp-zoom-out-cur,.mfp-zoom-out-cur .mfp-image-holder .mfp-close{cursor:-moz-zoom-out;cursor:-webkit-zoom-out;cursor:zoom-out}.mfp-zoom{cursor:pointer;cursor:-webkit-zoom-in;cursor:-moz-zoom-in;cursor:zoom-in}.mfp-auto-cursor .mfp-content{cursor:auto}.mfp-arrow,.mfp-close,.mfp-counter,.mfp-preloader{-webkit-user-select:none;-moz-user-select:none;user-select:none}.mfp-loading.mfp-figure{display:none}.mfp-hide{display:none!important}.mfp-preloader{color:#CCC;top:50%;width:auto;margin-top:-.8em;left:8px;right:8px;z-index:944}.mfp-preloader a{color:#CCC}.mfp-close,.mfp-preloader a:hover{color:#FFF}.mfp-s-error .mfp-content,.mfp-s-ready .mfp-preloader{display:none}button.mfp-arrow,button.mfp-close{overflow:visible;cursor:pointer;background:0 0;border:0;-webkit-appearance:none;display:block;outline:0;padding:0;z-index:946;-webkit-box-shadow:none;box-shadow:none}button::-moz-focus-inner{padding:0;border:0}.mfp-close{width:44px;height:44px;line-height:44px;right:0;top:0;text-decoration:none;opacity:.65;filter:alpha(opacity=65);padding:0 0 18px 10px;font-style:normal;font-size:28px;font-family:Arial,Baskerville,monospace}.mfp-close:focus,.mfp-close:hover{opacity:1;filter:alpha(opacity=100)}.mfp-close:active{top:1px}.mfp-close-btn-in .mfp-close{color:#333}.mfp-iframe-holder .mfp-close,.mfp-image-holder .mfp-close{color:#FFF;right:-6px;text-align:right;padding-right:6px;width:100%}.mfp-counter{position:absolute;top:0;right:0;color:#CCC;font-size:12px;line-height:18px;white-space:nowrap}.mfp-figure,img.mfp-img{line-height:0;}.mfp-arrow{position:absolute;opacity:.65;filter:alpha(opacity=65);margin:-55px 0 0;top:50%;padding:0;width:90px;height:110px;-webkit-tap-highlight-color:transparent}.mfp-arrow:active{margin-top:-54px}.mfp-arrow:focus,.mfp-arrow:hover{opacity:1;filter:alpha(opacity=100)}.mfp-arrow .mfp-a,.mfp-arrow .mfp-b,.mfp-arrow:after,.mfp-arrow:before{content:'';display:block;width:0;height:0;position:absolute;left:0;top:0;margin-top:35px;margin-left:35px;border:inset transparent}.mfp-arrow .mfp-a,.mfp-arrow:after{border-top-width:13px;border-bottom-width:13px;top:8px}.mfp-arrow .mfp-b,.mfp-arrow:before{border-top-width:21px;border-bottom-width:21px;opacity:.7}.mfp-arrow-left{left:0}.mfp-arrow-left .mfp-a,.mfp-arrow-left:after{border-right:17px solid #FFF;margin-left:31px}.mfp-arrow-left .mfp-b,.mfp-arrow-left:before{margin-left:25px;border-right:27px solid #3F3F3F}.mfp-arrow-right{right:0}.mfp-arrow-right .mfp-a,.mfp-arrow-right:after{border-left:17px solid #FFF;margin-left:39px}.mfp-arrow-right .mfp-b,.mfp-arrow-right:before{border-left:27px solid #3F3F3F}.mfp-iframe-holder{padding-top:40px;padding-bottom:40px}.mfp-iframe-holder .mfp-content{line-height:0;width:100%;max-width:900px}.mfp-image-holder .mfp-content,img.mfp-img{max-width:100%}.mfp-iframe-holder .mfp-close{top:-40px}.mfp-iframe-scaler{width:100%;height:0;overflow:hidden;padding-top:56.25%}.mfp-iframe-scaler iframe{position:absolute;display:block;top:0;left:0;width:100%;height:100%;box-shadow:0 0 8px rgba(0,0,0,.6);background:#000}.mfp-figure:after,img.mfp-img{width:auto;height:auto;display:block}img.mfp-img{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:40px 0;margin:0 auto}.mfp-figure:after{position:absolute;left:0;top:40px;bottom:40px;right:0;z-index:-1;box-shadow:0 0 8px rgba(0,0,0,.6);background:#FFF}.mfp-figure small{color:#BDBDBD;display:block;font-size:12px;line-height:14px}.mfp-figure figure{margin:0}.mfp-bottom-bar{margin-top:-36px;position:absolute;top:100%;left:0;width:100%;cursor:auto}.mfp-title{margin-top: 5px;text-align:center;line-height:18px;color:#333333;word-wrap:break-word;}.mfp-gallery .mfp-image-holder .mfp-figure{cursor:pointer}@media screen and (max-width:800px) and (orientation:landscape),screen and (max-height:300px){.mfp-img-mobile .mfp-image-holder{padding-left:0;padding-right:0}.mfp-img-mobile img.mfp-img{padding:0}.mfp-img-mobile .mfp-figure:after{top:0;bottom:0}.mfp-img-mobile .mfp-figure small{display:inline;margin-left:5px}.mfp-img-mobile .mfp-bottom-bar{background:rgba(0,0,0,.6);bottom:0;margin:0;top:auto;padding:3px 5px;position:fixed;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mfp-img-mobile .mfp-bottom-bar:empty{padding:0}.mfp-img-mobile .mfp-counter{right:5px;top:3px}.mfp-img-mobile .mfp-close{top:0;right:0;width:35px;height:35px;line-height:35px;background:rgba(0,0,0,.6);position:fixed;text-align:center;padding:0}}@media all and (max-width:900px){.mfp-arrow{-webkit-transform:scale(.75);transform:scale(.75)}.mfp-arrow-left{-webkit-transform-origin:0;transform-origin:0}.mfp-arrow-right{-webkit-transform-origin:100%;transform-origin:100%}.mfp-container{padding-left:6px;padding-right:6px}}.mfp-ie7 .mfp-img{padding:0}.mfp-ie7 .mfp-bottom-bar{width:600px;left:50%;margin-left:-300px;margin-top:5px;padding-bottom:5px}.mfp-ie7 .mfp-container{padding:0}.mfp-ie7 .mfp-content{padding-top:44px}.mfp-ie7 .mfp-close{top:0;right:0;padding-top:0}
.mfp-img img {
  background:#FFF
}
.mfp-counter {
  display: none;
}
.mfp-iframe-holder .mfp-close, .mfp-image-holder .mfp-close {
  color: var(--colorBlue);
}
.mfp-bg {
  opacity: 0;
  transition: opacity 300ms;
}
.mfp-bg.mfp-ready {
  opacity: 1;
}
.mfp-bg.mfp-removing {
  opacity: 0;
}
.mfp-wrap {
  transition: 300ms;
  opacity: 0;
  transform: scale(0.8);
}
.mfp-wrap.mfp-ready {
  transform: scale(1);
    opacity: 1;
}
.mfp-wrap.mfp-removing {
  transform: scale(0.8);
    opacity: 0;
}

/* END -------------------------------------------- BILDVERGRÖßERUNG */




/* BEGIN -------------------------------------------- SLIDER */

.slick-list,.slick-slider,.slick-track{position:relative;display:block}.slick-slider{box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}.slick-list{overflow:hidden;margin:0;padding:0}.slick-list:focus{outline:0}.slick-list.dragging{cursor:pointer;cursor:hand}.slick-slider .slick-list,.slick-slider .slick-track{-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.slick-track{top:0;left:0;margin-left:auto;margin-right:auto}.slick-track:after,.slick-track:before{display:table;content:''}.slick-track:after{clear:both}.slick-loading .slick-slide,.slick-loading .slick-track{visibility:hidden}.slick-slide{display:none;float:left;height:100%;min-height:1px}[dir=rtl] .slick-slide{float:right}.slick-initialized .slick-slide,.slick-slide img{display:block}.slick-arrow.slick-hidden,.slick-slide.slick-loading img{display:none}.slick-slide.dragging img{pointer-events:none}.slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent}

.slick-dots {
  display: flex;
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translate(-50%,0);
  list-style: none;
  margin: 0;
  padding: 0;
  column-gap: 10px;
}
.slick-dots li {
  padding: 0;
  margin: 0;
}
.slick-dots li button {
  display: block;
  border: 1px solid #e1871a;
  padding: 0;
  margin: 0;
  width: var(--sliderDotSize);
  height: var(--sliderDotSize);
  border-radius: var(--sliderDotBorderRadius);
  background: var(--sliderDotColor);
  overflow: hidden;
  color: transparent;
  opacity: var(--sliderDotOpacity);
  transform: scale(0.8);
}
.slick-dots li.slick-active button {
  opacity: var(--sliderDotActiveOpacity);
  background: var(--sliderDotActiveColor);
  transform: scale(1);
}

/* END -------------------------------------------- SLIDER */




/* BEGIN -------------------------------------------- NEWS */

div.news-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 100px auto 100px;
  padding: 0 20px;
  max-width: 1500px;
  column-gap: 34px;
  row-gap: 60px;
}

div.news-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1100px;
  margin: -90px auto 150px;
  padding: 40px 30px;
  box-shadow: 0 0 15px rgba(0,0,0,0.15);
  background: #FFFFFF;
  column-gap: 40px;
  row-gap: 40px;
  z-index: 10;
}
div.news-detail div:first-child {
  display: flex;
  flex-direction: column;
  justify-content: end;
  font-weight: 500;
}
div.news-detail div:nth-child(3) {
  grid-column: span 2;
}

div.news {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: calc( 100% - 30px );
  margin: 0;
  padding: 0;
  box-shadow: 0 0 15px rgba(0,0,0,0.15);
  margin: 15px;
  align-items: center;
}
div.news-overview div.news {
  grid-template-columns: 1fr;
  margin: 0;
  width: 100%;
  align-items: start;
}

div.news-overview div.news:first-child {
  grid-template-columns: 1fr 1fr;
  grid-column: span 2;
  align-items: center;
  border-bottom: 4px solid #E08700;
}

div.news-image {
  position: relative;
  width: 100%;
}
div.news-overview div.news:first-child div.news-image {
  order: 2;
}
div.news-overview div.news-image {
  align-self: normal;
}
div.news-image img {
  margin: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
div.news-date {
  position: absolute;
  top: 0;
  left: 30px;
  padding: 8px 20px;
  background: #E08700;
  color: #FFFFFF;
  font-size: 1.125rem;
  text-transform: uppercase;
  text-align: center;
  z-index: 10;
}
div.news-overview div.news:first-child div.news-date {
  left: 50%;
  transform: translate(-50%,0);
}

div.news-date b, div.news-date strong, div.news-date span[style*="bold"] {
  display: block;
  font-size: 2.375rem;
}
div.news-content {
  padding: 30px 40px;
  margin: 0;
}
div.news-overview div.news:first-child div.news-content {
  order: 1;
}
h2.news-headline {
  font-size: 2.625rem;
  font-weight: 500;
  color: #000000;
  line-height: 120%;
  margin-bottom: 0;
  text-decoration: none;
}
a h2.news-headline, h2.news-headline a {
  color: #443235;
  text-decoration: none;
}
a:hover h2.news-headline, h2.news-headline a:hover {
  color: #443235;
  text-decoration: none;
}
h2.news-headline + hr {
  margin: 0.5rem 0 1.2rem 0;
}
div.news-teaser {
  padding: 0 0 1.2rem 0;
}

div.newsdetail {
  max-width: 1000px;
  margin: 60px auto 100px;
}
div.newsdetail-teaser {
  margin: 20px 0;
  color: #666;
  font-style: italic;
}

/* END -------------------------------------------- NEWS */




/* BEGIN -------------------------------------------- MODUL-NAVIGATION */

div.modul-navigation {
  grid-column: span 2;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  row-gap: 10px;
  column-gap: 20px;
}


.modul-navigation-button {
  position: relative;
  display: block;
  min-width: 20px;
  height: 50px;
  padding: 0 15px;
  line-height: 50px;
  border: 2px solid #464B4D;
  border-radius: 50px;
  text-align: center;
  color: #464B4D;
  text-decoration: none;
}
.modul-navigation-button.inactive {
  opacity: 0.2;
}
.modul-navigation-button:not(.inactive):hover {
  border-color: #E1871A;
  background: #E1871A;
  text-decoration: none;
  color: #FFFFFF;
}
.modul-navigation-button::after {
  display: inline-block;
  width: 9px;
  height: 9px;
  border: 2px solid transparent;
  border-top-color: #464B4D;
  border-left-color: #464B4D;
  border-radius: 2px;
  transform-origin: center center;
}
.modul-navigation-button:not(.inactive):hover::after  {
  border-top-color: #FFFFFF;
  border-left-color: #FFFFFF;
}
.modul-navigation-button.prev::after {
  transform: translate(3px,0) rotate(-45deg);
  content: '';
}
.modul-navigation-button.next::after {
  transform: translate(-3px,0) rotate(135deg);
  content: '';
}

.modul-detail-navigation {
  position: absolute;
  top: 15px;
  display: block;
  min-width: 20px;
  height: 50px;
  padding: 0 15px;
  line-height: 50px;
  border: 2px solid #FFFFFF;
  border-radius: 50px;
  text-align: center;
  color: #FFFFFF;
  text-decoration: none;
}
.modul-detail-navigation.inactive {
  opacity: 0.2;
}
.modul-detail-navigation:not(.inactive):hover {
  border-color: #E1871A;
  background: #E1871A;
  text-decoration: none;
  color: #FFFFFF;
}
.modul-detail-navigation::after {
  display: inline-block;
  width: 9px;
  height: 9px;
  border: 2px solid transparent;
  border-top-color: #FFF;
  border-left-color: #FFF;
  border-radius: 2px;
  transform-origin: center center;
}
.modul-detail-navigation.overview {
  top: 15px;
  left: -140px;
  padding: 16px 13px;
  height: auto;
  line-height: 100%;
}
.modul-detail-navigation.overview span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 3px 0;
  background: #FFFFFF;
}
.modul-detail-navigation.prev {
  left: -70px;
}
.modul-detail-navigation.prev::after {
  transform: translate(3px,0) rotate(-45deg);
  content: '';
}
.modul-detail-navigation.next::after {
  transform: translate(-3px,0) rotate(135deg);
  content: '';
}
.modul-detail-navigation.next {
  right: -70px;
}

/* END -------------------------------------------- MODUL-NAVIGATION */


/* BEGIN -------------------------------------------- DEFAULT-STYLES */

div.image   {
  min-width:  100px;
  margin-top: 7px;
  margin-bottom: 4px;
  margin-left:  5px;
  margin-right:  14px;
  overflow: hidden;
}
div.image-left   {
  min-width:  100px;
  margin-top: 7px;
  margin-bottom: 4px;
  margin-left:  0;
  margin-right:  14px;
  float: left;
  overflow: hidden;
}
div.image-right   {
  min-width:  100px;
  margin-top: 7px;
  margin-bottom: 4px;
  margin-left:  9px;
  margin-right:  0;
  float: right;
  overflow: hidden;
}
div.image-center   {
  width:  100%;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 7px;
  overflow: hidden;
}
div.image img, div.image-left img, div.image-right img, div.image-center img {
  margin: 0;
  padding: 0;
  vertical-align: bottom;
  transition: 1500ms;
}
div.image a:hover img, div.image-left a:hover img, div.image-right a:hover img, div.image-center a:hover img {
  transform: scale(1.05);
}
div.image-comment {
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc( 100% - 30px );
  padding: 14px 10px 14px 20px;
  color: #FFFFFF;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(30,30,30,0.7) 70%);
}
div.image-comment a {
  color: #FFFFFF;
}
.slick-slide div.image-comment {
  padding: 14px 10px 24px 20px;
}
ul {
  margin: 0;
  margin-top: 10px;
  margin-left: 10px;
  margin-bottom: 5px;
  padding: 0;
  list-style: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAALCAYAAACprHcmAAAAAXNSR0IArs4c6QAAABlJREFUKFNjfNDO8J+BSMA4qhgppIZiaAAAoWwabnxkxbkAAAAASUVORK5CYII=');
}
ol {
  margin: 0;
  margin-top: 10px;
  margin-left: 20px;
  margin-bottom: 5px;
  padding: 0;
}
li {
  margin: 20px 0;
  margin-left: 15px;
  margin-bottom: 2px;
  padding: 0 0 0 5px;
}

div.iframe, div.iframe > div, iframe {
  max-width: 100%;
  border: 0;
  box-sizing: border-box;
}
div.iframe > div {
  height: 100%;
  background-size: cover !important;
}
div.iframe > div > svg {
  width: 100%;
  height: 100%;
  margin: 0;
  background: #FFF;
  opacity: 0.7;
  filter: grayscale(0.4);
}

div[id^="iframeyt"] {
  height: auto !important;
  min-height: 240px;
  aspect-ratio: 16 / 9;
  background-color: transparent !important;
}

div[id^="iframeyt"] > div::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  background: transparent;
  background: linear-gradient(0deg, rgba(0,0,0,0.48363095238095233) 19%, rgba(0,0,0,0.2) 100%);
}
div[id^="iframeyt"] > div > div:first-child > a svg {
  display: none;
}
div[id^="iframeyt"] > div > div:first-child > a {
  position: relative;
  display: inline-block;
  width: 70px;
  height: 48px;
  margin-bottom: 10px;
  border-radius: 3px;
  background: rgb(1,71,134);
  background: linear-gradient(90deg, rgba(0,85,159,1) 0%, rgba(1,71,134,1) 100%);
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
div[id^="iframeyt"] > div > div:first-child > a:hover {
  box-shadow: 0 2px 6px #002e58;
}
div[id^="iframeyt"] > div > div:first-child > a::after {
  display: block;
  position: absolute;
  top: calc(50% - 10px);
  left: calc(50% - 10px);
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-left: 20px solid #FFF;
  content: '';
}
div[id^="iframeyt"] > div > div:first-child > span {
  border-radius: 3px;
  font-size: 12px !important;
  background-color: rgba(255,255,255,0.5) !important;
}
div[id^="iframeyt"] > div > div:last-child {
  width: fit-content !important;
  padding: 5px 8px !important;
  font-size: 12px !important;
  background-color: rgba(255,255,255,0.5) !important;
}

a[rel*="imagezoom"] {
  position: relative;
  display: inline-block;
  overflow: hidden;
}
a[rel*="imagezoom"]::before, a[rel*="imagezoom"]::after {
  display: block;
  position: absolute;
  bottom: 7px;
  right: 14px;
  width: 3px;
  height: 15px;
  background: #666;
  content: '';
  opacity: 0;
  z-index: 10;
  transition: 400ms;
}
a[rel*="imagezoom"]:hover::after {
  transform-origin: center center;
  transform: rotate(90deg);
}
a[rel*="imagezoom"]:hover::before, a[rel*="imagezoom"]:hover::after {
  opacity: 1;
}
/* END -------------------------------------------- DEFAULT-STYLES */


.unsichtbar,dfn{position:absolute;left:-1000px;top:-1000px;width:0;height:0;overflow:hidden;display:inline}

@media all and (min-width: 2560px) {
  body.template-product div.hero-item-container-text {
    margin-top: -40vh;
  }
}

@media all and (max-width:  1600px ) {
  div.hero-item-container-text .grid-row {
    height: calc( 100% - 350px );
  }
  div.news-overview {
    column-gap: 40px;
    row-gap: 40px;
  }
}

@media all and (max-width:  1500px ) {
  div.news-detail {
    margin-left: 160px;
    margin-right: 90px;
  }
}

@media all and (max-width:  1300px ) {
  div.hero-item-container > img {
    aspect-ratio: 4 / 3;
  }
}

@media all and (max-width: 1200px ) {
  div.header-language {
    border-left: 0;
  }
  div.hero {
    min-height: 120px;
  }
  div.header-logo {
    left: 50px;
    padding: 78px 10px 20px 20px;
  }
  div.menu-overlay {
    background: rgba(0,0,0,0.3);
  }
  div.menu-container {
    width: 50%;
    background: #464B4D;
  }
  #menu {
    width: 100%;
  }
  #menu .col {
    width: 100%;
    background: transparent;
  }
  #menu ul li a, #menu ul li strong {
    font-size: 1.125rem;
    padding: 19px 15px 19px 15px;
  }
  div.header-mainmenu > ul {
    display: none;
  }
  #menu-switch {
    display: inline-block;
  }
  div.menu-container {
    top: 55px;
    height: calc(100% - 55px);
    max-height: calc(100% - 55px);
    left: auto !important;
    right: 0;
    transform: none;
  }
  body.menu-shown div.header-logo {
    padding: 20px 10px 20px 20px;
  }
  body.menu-shown div.header-mainmenu {
    margin-top: 0;
    background: rgba(255,255,255,0.97);
    box-shadow: 0 0 25px rgba(0,0,0,0.1);
  }

}

@media all and (max-width: 1000px ) {
  div.hero {
    min-height: 180px;
  }
  div.news-detail {
    margin-left: 20px;
    margin-right: 20px;
  }
  div.hero-navigation {
    display: none;
  }
  div.hero-item-container-text .grid-row {
    height: calc( 100% - 200px );
  }
  div.hero-item-container > img {
    max-height: 100vh;
  }
  div.news-overview div.news {
    grid-template-columns: 1fr 1fr;
    grid-column: span 2;
    align-items: center;
  }
  .modul-detail-navigation {
    top: -70px;
  }
  .modul-detail-navigation.overview {
    top: -70px;
    left: 50%;
    transform: translate(-50%,0);
  }
  .modul-detail-navigation.prev {
    left: 0;
  }
  .modul-detail-navigation.next {
    right: 0;
  }
}

@media all and (max-width: 990px ) {
  div.footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: calc( 100% - 100px );
    padding: 0 50px;
    column-gap: 40px;
    row-gap: 40px;
  }
}

@media all and (max-width:  900px ) {
  div.hero {
    min-height: 100px;
  }
  div.header-mainmenu {
    margin-top: 20px;
  }
  div.header-logo {
    left: 20px;
    width: 150px;
    padding: 20px 10px 20px 20px;
  }
  div.news {
    grid-template-columns: 1fr;
  }
  div.hero-item-container > img, body.template-product div.hero-item-container > img {
    aspect-ratio: auto;
    min-height: 600px;
  }
  body.template-newsoverview div.hero-item-container > img, body.template-newsdetail div.hero-item-container > img {
    min-height: 300px;
  }
  div.footer-inner {
    grid-template-columns: 1fr;
  }
  div.hero-item-container-text {
    font-size: 1rem;
  }
  body {
    font-size: 1.125rem;
  }
  div.menu-container {
    border-top: 70px solid #444444;
  }
  div.menu-container, #menu, #menu .col {
    width: 100%;
  }
  .headline1, h2.news-headline {
    font-size: 2rem;
  }
  .headline1 + hr {
    margin-top: 0.7rem;
  }
  .headline2 {
    font-size: 1.375rem;
  }
  .headline3 {
    font-size: 0.875rem;
  }
  .headline4 {
    font-size: 1rem;
  }
  hr {
    margin: 1.5rem 0;
  }

}

@media all and (max-width: 800px) {
  div.news-overview {
    grid-template-columns: 1fr;
  }
  div.news-overview > div.news, div.news-overview > div.news:first-child {
    grid-template-columns: 1fr;
    grid-column: auto;
    align-items: center;
  }
  div.news-overview > div.news:first-child  div.news-image {
    order: 1;
  }
  div.news-overview > div.news:first-child  div.news-content {
    order: 2;
  }
  div.news-overview > div.news:first-child div.news-date {
    transform: none;
    left: 30px;
  }
  div.news-detail {
    grid-template-columns: 1fr;
  }
  div.news-detail > div:nth-child(3) {
    grid-column: span 1;
  }
  footer.footer {
    padding: 40px 0;
  }
  div.footer-inner div:nth-child(1) div {
    width: 100%;
  }
}

@media all and (max-width: 600px) {
    div.hero {
    min-height: 40px;
  }
}

@media all and (max-width:  500px ) {
    div.header-logo {
    left: 20px;
    width: 120px;
    padding: 20px 10px 20px 20px;
  }
}


span.editor-kopf-modus a.editor-kopf:link, span.editor-kopf-modus a.editor-kopf:visited, span.editor-kopf-modus a.editor-kopf:hover, span.editor-kopf-modus a.editor-kopf:active, span.editor-kopf-modus a.editor-kopf-marked:link, span.editor-kopf-modus a.editor-kopf-marked:visited, span.editor-kopf-modus a.editor-kopf-marked:hover, span.editor-kopf-modus a.editor-kopf-marked:active,
#editor-kopf-slotlist a.editor-kopf:link, #editor-kopf-slotlist a.editor-kopf:visited, #editor-kopf-slotlist a.editor-kopf:hover, #editor-kopf-slotlist a.editor-kopf:active {
  text-decoration: none;
}
