.mod_visitors .invisible {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    float: left;
	width:0px;
	height:0px;
}
.mobile_menu{position:fixed;z-index:100;display:none}.mobile_menu .inner{height:100%;background:#000;overflow-y:scroll}.mobile_menu.active.position_left{box-shadow:2px 0 5px 0 rgba(0,0,0,.5)}.mobile_menu.active.position_top{box-shadow:0 2px 5px 0 rgba(0,0,0,.5)}.mobile_menu.active.position_right{box-shadow:-2px 0 5px 0 rgba(0,0,0,.5)}.mobile_menu.active.position_bottom{box-shadow:0 -2px 5px 0 rgba(0,0,0,.5)}.mobile_menu.active.no_shadow{box-shadow:none!important}.mobile_menu_trigger{display:none}.mobile_menu_wrapper{position:relative;width:100%;overflow:hidden}.mobile_menu_overlay{position:fixed;top:0;left:0;width:100%;height:100vh;z-index:99}.mobile_menu_overlay.background{background:rgba(0,0,0,.5)}.mobile_menu li.submenu_hide>ul{display:none}.mobile_menu li.submenu_show>ul{display:block}body.ie8 .mobile_menu,body.ie8 .mobile_menu_trigger,body.ie9 .mobile_menu,body.ie9 .mobile_menu_trigger{display:none!important}
.sharebuttons {
	overflow:hidden;
}

.sharebuttons > ul.theme {
	list-style-type:none;
	margin:-4px;
	padding:0;
}

.sharebuttons > ul.theme:after {
	content:"";
	display:block;
	clear:both;
}

.sharebuttons > ul.theme > li {
	float:left;
}

.sharebuttons > ul.theme > li > a {
	margin:4px;
	display:block;
	white-space:nowrap;
	overflow:hidden;
	text-indent:101%;
	background-repeat:no-repeat;
	background-position:center;
}

.sharebuttons > ul.text > li > a {
	text-indent:0;
}

/* source: http://www.kplitsolutions.com/freebies.html */

.sharebuttons > ul.light > li > a {
	width:32px;
	height:32px;
	background-image:url('../../system/modules/sharebuttons/assets/light/sprites-32.png');
}

.sharebuttons > ul.light > li > a.facebook {
	background-position:-40px 0;
}

.sharebuttons > ul.light > li > a.twitter {
	background-position:-200px 0;
}

.sharebuttons > ul.light > li > a.twitter2 {
	background-position:-160px 0;
}

.sharebuttons > ul.light > li > a.gplus {
	background-position:-80px 0;
}

.sharebuttons > ul.light > li > a.linkedin {
	background-position:-120px 0;
}

.sharebuttons > ul.light > li > a.xing {
	background-position:-240px 0;
}

.sharebuttons > ul.light > li > a.mail {
	background-position:0 0;
}

.sharebuttons > ul.light > li > a.tumblr {
	background-position:-280px 0;
}

.sharebuttons > ul.light > li > a.pinterest {
	background-position:-320px 0;
}

.sharebuttons > ul.light > li > a.reddit {
	background-position:-360px 0;
}

.sharebuttons > ul.light > li > a.whatsapp {
	background-position:-400px 0;
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.3),
       only screen and (-o-min-device-pixel-ratio: 13/10),
       only screen and (min-resolution: 120dpi) 
{
	.sharebuttons > ul.light > li > a {
		background-size:auto 32px;
		background-image:url('../../system/modules/sharebuttons/assets/light/sprites-64.png');
	}
}

/**
 * CLICKPRESS CSS-Grid
 * @author: Stefan Schulz-Lauterbach
 *
 * thanks to Dinko Skopljak for co-working
 */
.justify-items-start {
  justify-items: start;
}

.justify-items-center {
  justify-items: center;
}

.justify-items-end {
  justify-items: end;
}

.justify-items-stretch {
  justify-items: stretch;
}

.content-start {
  align-content: start;
}

.content-center {
  align-content: center;
}

.content-end {
  align-content: end;
}

.items-start {
  align-items: start;
}

.items-center {
  align-items: center;
}

.items-end {
  align-items: end;
}

.items-stretch {
  align-items: stretch;
}

.items-baseline {
  align-items: baseline;
}

[class*=grid_] {
  display: grid;
  grid-gap: 1rem;
}
[class*=grid_] > .block {
  margin-bottom: 0;
}

@media (min-width: 576px) {
  .grid_mobile_100 {
    grid-template-columns: 1fr;
  }
  .grid_mobile_50_50 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid_mobile_33_33_33 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid_mobile_25_25_25_25 {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid_mobile_75_25 {
    grid-template-columns: 3fr 1fr;
  }
  .grid_mobile_25_75 {
    grid-template-columns: 1fr 3fr;
  }
  .grid_mobile_66_33 {
    grid-template-columns: 2fr 1fr;
  }
  .grid_mobile_33_66 {
    grid-template-columns: 1fr 2fr;
  }
  .grid_mobile_60_40 {
    grid-template-columns: 3fr 2fr;
  }
  .grid_mobile_40_60 {
    grid-template-columns: 2fr 3fr;
  }
  .grid_mobile_50_25_25 {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .grid_mobile_25_50_25 {
    grid-template-columns: 1fr 2fr 1fr;
  }
  .grid_mobile_25_25_50 {
    grid-template-columns: 1fr 1fr 2fr;
  }
  .grid_mobile_40_30_30 {
    grid-template-columns: 4fr 3fr 3fr;
  }
  .grid_mobile_30_40_30 {
    grid-template-columns: 3fr 4fr 3fr;
  }
  .grid_mobile_30_30_40 {
    grid-template-columns: 3fr 3fr 4fr;
  }
  .gap_mobile_0 {
    grid-gap: 0;
  }
  .gap_mobile_1 {
    grid-gap: 1rem;
  }
  .gap_mobile_2 {
    grid-gap: 2rem;
  }
  .gap_mobile_3 {
    grid-gap: 3rem;
  }
  .gap_mobile_4 {
    grid-gap: 4rem;
  }
  .gap_mobile_5 {
    grid-gap: 5rem;
  }
  .gap_mobile_6 {
    grid-gap: 6rem;
  }
  .gap_mobile_7 {
    grid-gap: 7rem;
  }
  .gap_mobile_8 {
    grid-gap: 8rem;
  }
  .gap_mobile_9 {
    grid-gap: 9rem;
  }
  .gap_mobile_10 {
    grid-gap: 10rem;
  }
  .gap_mobile_11 {
    grid-gap: 11rem;
  }
  .gap_mobile_12 {
    grid-gap: 12rem;
  }
}
@media (min-width: 768px) {
  .grid_tablet_100 {
    grid-template-columns: 1fr;
  }
  .grid_tablet_50_50 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid_tablet_33_33_33 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid_tablet_25_25_25_25 {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid_tablet_75_25 {
    grid-template-columns: 3fr 1fr;
  }
  .grid_tablet_25_75 {
    grid-template-columns: 1fr 3fr;
  }
  .grid_tablet_66_33 {
    grid-template-columns: 2fr 1fr;
  }
  .grid_tablet_33_66 {
    grid-template-columns: 1fr 2fr;
  }
  .grid_tablet_60_40 {
    grid-template-columns: 3fr 2fr;
  }
  .grid_tablet_40_60 {
    grid-template-columns: 2fr 3fr;
  }
  .grid_tablet_50_25_25 {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .grid_tablet_25_50_25 {
    grid-template-columns: 1fr 2fr 1fr;
  }
  .grid_tablet_25_25_50 {
    grid-template-columns: 1fr 1fr 2fr;
  }
  .grid_tablet_40_30_30 {
    grid-template-columns: 4fr 3fr 3fr;
  }
  .grid_tablet_30_40_30 {
    grid-template-columns: 3fr 4fr 3fr;
  }
  .grid_tablet_30_30_40 {
    grid-template-columns: 3fr 3fr 4fr;
  }
  .grid_tablet_20_40_40 {
    grid-template-columns: 1fr 2fr 2fr;
  }
  .grid_tablet_40_20_40 {
    grid-template-columns: 2fr 1fr 2fr;
  }
  .grid_tablet_40_40_20 {
    grid-template-columns: 2fr 2fr 1fr;
  }
  .gap_tablet_0 {
    grid-gap: 0;
  }
  .gap_tablet_1 {
    grid-gap: 1rem;
  }
  .gap_tablet_2 {
    grid-gap: 2rem;
  }
  .gap_tablet_3 {
    grid-gap: 3rem;
  }
  .gap_tablet_4 {
    grid-gap: 4rem;
  }
  .gap_tablet_5 {
    grid-gap: 5rem;
  }
  .gap_tablet_6 {
    grid-gap: 6rem;
  }
  .gap_tablet_7 {
    grid-gap: 7rem;
  }
  .gap_tablet_8 {
    grid-gap: 8rem;
  }
  .gap_tablet_9 {
    grid-gap: 9rem;
  }
  .gap_tablet_10 {
    grid-gap: 10rem;
  }
  .gap_tablet_11 {
    grid-gap: 11rem;
  }
  .gap_tablet_12 {
    grid-gap: 12rem;
  }
}
@media (min-width: 992px) {
  .grid_desktop_100 {
    grid-template-columns: 1fr;
  }
  .grid_desktop_50_50 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid_desktop_50_25_25 {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .grid_desktop_33_33_33 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid_desktop_75_25 {
    grid-template-columns: 3fr 1fr;
  }
  .grid_desktop_25_75 {
    grid-template-columns: 1fr 3fr;
  }
  .grid_desktop_66_33 {
    grid-template-columns: 2fr 1fr;
  }
  .grid_desktop_60_40 {
    grid-template-columns: 3fr 2fr;
  }
  .grid_desktop_40_60 {
    grid-template-columns: 2fr 3fr;
  }
  .grid_desktop_33_66 {
    grid-template-columns: 1fr 2fr;
  }
  .grid_desktop_50_25_25 {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .grid_desktop_40_30_30 {
    grid-template-columns: 4fr 3fr 3fr;
  }
  .grid_desktop_50_25_25 {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .grid_desktop_25_50_25 {
    grid-template-columns: 1fr 2fr 1fr;
  }
  .grid_desktop_25_25_50 {
    grid-template-columns: 1fr 1fr 2fr;
  }
  .grid_desktop_40_30_30 {
    grid-template-columns: 4fr 3fr 3fr;
  }
  .grid_desktop_30_40_30 {
    grid-template-columns: 3fr 4fr 3fr;
  }
  .grid_desktop_30_30_40 {
    grid-template-columns: 3fr 3fr 4fr;
  }
  .grid_desktop_20_40_40 {
    grid-template-columns: 1fr 2fr 2fr;
  }
  .grid_desktop_40_20_40 {
    grid-template-columns: 2fr 1fr 2fr;
  }
  .grid_desktop_40_40_20 {
    grid-template-columns: 2fr 2fr 1fr;
  }
  .grid_desktop_25_25_25_25 {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid_desktop_40_20_20_20 {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
  .grid_desktop_20_40_20_20 {
    grid-template-columns: 1fr 2fr 1fr 1fr;
  }
  .grid_desktop_20_20_40_20 {
    grid-template-columns: 1fr 1fr 2fr 1fr;
  }
  .grid_desktop_20_20_20_40 {
    grid-template-columns: 1fr 1fr 1fr 2fr;
  }
  .grid_desktop_20_20_20_20_20 {
    grid-template-columns: repeat(5, 1fr);
  }
  .gap_desktop_0 {
    grid-gap: 0;
  }
  .gap_desktop_1 {
    grid-gap: 1rem;
  }
  .gap_desktop_2 {
    grid-gap: 2rem;
  }
  .gap_desktop_3 {
    grid-gap: 3rem;
  }
  .gap_desktop_4 {
    grid-gap: 4rem;
  }
  .gap_desktop_5 {
    grid-gap: 5rem;
  }
  .gap_desktop_6 {
    grid-gap: 6rem;
  }
  .gap_desktop_7 {
    grid-gap: 7rem;
  }
  .gap_desktop_8 {
    grid-gap: 8rem;
  }
  .gap_desktop_9 {
    grid-gap: 9rem;
  }
  .gap_desktop_10 {
    grid-gap: 10rem;
  }
  .gap_desktop_11 {
    grid-gap: 11rem;
  }
  .gap_desktop_12 {
    grid-gap: 12rem;
  }
}

/*# sourceMappingURL=clickpress-grid.css.map */

.content-slider{overflow:hidden;visibility:hidden;position:relative}.slider-wrapper{overflow:hidden;position:relative}.slider-wrapper>*{float:left;width:100%;position:relative}.slider-control{height:30px;position:relative}.slider-control a,.slider-control .slider-menu{position:absolute;top:9px;display:inline-block}.slider-control .slider-prev{left:0}.slider-control .slider-next{right:0}.slider-control .slider-menu{top:0;width:50%;left:50%;margin-left:-25%;font-size:27px;text-align:center}.slider-control .slider-menu b{color:#bbb;cursor:pointer}.slider-control .slider-menu b.active{color:#666}
.glightbox-container{width:100%;height:100%;position:fixed;top:0;left:0;z-index:999999!important;overflow:hidden;-ms-touch-action:none;touch-action:none;-webkit-text-size-adjust:100%;-moz-text-size-adjust:100%;-ms-text-size-adjust:100%;text-size-adjust:100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;outline:0;overflow:hidden}.glightbox-container.inactive{display:none}.glightbox-container .gcontainer{position:relative;width:100%;height:100%;z-index:9999;overflow:hidden}.glightbox-container .gslider{-webkit-transition:-webkit-transform .4s ease;transition:-webkit-transform .4s ease;transition:transform .4s ease;transition:transform .4s ease,-webkit-transform .4s ease;height:100%;left:0;top:0;width:100%;position:relative;overflow:hidden;display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.glightbox-container .gslide{width:100%;position:absolute;opacity:1;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;opacity:0}.glightbox-container .gslide.current{opacity:1;z-index:99999;position:relative}.glightbox-container .gslide.prev{opacity:1;z-index:9999}.glightbox-container .gslide-inner-content{width:100%}.glightbox-container .ginner-container{position:relative;width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;max-width:100%;margin:auto;height:100vh}.glightbox-container .ginner-container.gvideo-container{width:100%}.glightbox-container .ginner-container.desc-bottom,.glightbox-container .ginner-container.desc-top{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.glightbox-container .ginner-container.desc-left,.glightbox-container .ginner-container.desc-right{max-width:100%!important}.gslide iframe,.gslide video{outline:0!important;border:none;min-height:165px;-webkit-overflow-scrolling:touch;-ms-touch-action:auto;touch-action:auto}.gslide:not(.current){pointer-events:none}.gslide-image{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.gslide-image img{max-height:100vh;display:block;padding:0;float:none;outline:0;border:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;max-width:100vw;width:auto;height:auto;-o-object-fit:cover;object-fit:cover;-ms-touch-action:none;touch-action:none;margin:auto;min-width:200px}.desc-bottom .gslide-image img,.desc-top .gslide-image img{width:auto}.desc-left .gslide-image img,.desc-right .gslide-image img{width:auto;max-width:100%}.gslide-image img.zoomable{position:relative}.gslide-image img.dragging{cursor:-webkit-grabbing!important;cursor:grabbing!important;-webkit-transition:none;transition:none}.gslide-video{position:relative;max-width:100vh;width:100%!important}.gslide-video .gvideo-wrapper{width:100%;margin:auto}.gslide-video::before{content:'';display:block;position:absolute;width:100%;height:100%;background:rgba(255,0,0,.34);display:none}.gslide-video.playing::before{display:none}.gslide-video.fullscreen{max-width:100%!important;min-width:100%;height:75vh}.gslide-video.fullscreen video{max-width:100%!important;width:100%!important}.gslide-inline{background:#fff;text-align:left;max-height:calc(100vh - 40px);overflow:auto;max-width:100%}.gslide-inline .ginlined-content{padding:20px;width:100%}.gslide-inline .dragging{cursor:-webkit-grabbing!important;cursor:grabbing!important;-webkit-transition:none;transition:none}.ginlined-content{overflow:auto;display:block!important;opacity:1}.gslide-external{display:-webkit-box;display:-ms-flexbox;display:flex;width:100%;min-width:100%;background:#fff;padding:0;overflow:auto;max-height:75vh;height:100%}.gslide-media{display:-webkit-box;display:-ms-flexbox;display:flex;width:auto}.zoomed .gslide-media{-webkit-box-shadow:none!important;box-shadow:none!important}.desc-bottom .gslide-media,.desc-top .gslide-media{margin:0 auto;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.gslide-description{position:relative;-webkit-box-flex:1;-ms-flex:1 0 100%;flex:1 0 100%}.gslide-description.description-left,.gslide-description.description-right{max-width:100%}.gslide-description.description-bottom,.gslide-description.description-top{margin:0 auto;width:100%}.gslide-description p{margin-bottom:12px}.gslide-description p:last-child{margin-bottom:0}.zoomed .gslide-description{display:none}.glightbox-button-hidden{display:none}.glightbox-mobile .glightbox-container .gslide-description{height:auto!important;width:100%;background:0 0;position:absolute;bottom:0;padding:19px 11px;max-width:100vw!important;-webkit-box-ordinal-group:3!important;-ms-flex-order:2!important;order:2!important;max-height:78vh;overflow:auto!important;background:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,0)),to(rgba(0,0,0,.75)));background:linear-gradient(to bottom,rgba(0,0,0,0) 0,rgba(0,0,0,.75) 100%);-webkit-transition:opacity .3s linear;transition:opacity .3s linear;padding-bottom:50px}.glightbox-mobile .glightbox-container .gslide-title{color:#fff;font-size:1em}.glightbox-mobile .glightbox-container .gslide-desc{color:#a1a1a1}.glightbox-mobile .glightbox-container .gslide-desc a{color:#fff;font-weight:700}.glightbox-mobile .glightbox-container .gslide-desc *{color:inherit}.glightbox-mobile .glightbox-container .gslide-desc string{color:#fff}.glightbox-mobile .glightbox-container .gslide-desc .desc-more{color:#fff;opacity:.4}.gdesc-open .gslide-media{-webkit-transition:opacity .5s ease;transition:opacity .5s ease;opacity:.4}.gdesc-open .gdesc-inner{padding-bottom:30px}.gdesc-closed .gslide-media{-webkit-transition:opacity .5s ease;transition:opacity .5s ease;opacity:1}.greset{-webkit-transition:all .3s ease;transition:all .3s ease}.gabsolute{position:absolute}.grelative{position:relative}.glightbox-desc{display:none!important}.glightbox-open{overflow:hidden}.gloader{height:25px;width:25px;-webkit-animation:lightboxLoader .8s infinite linear;animation:lightboxLoader .8s infinite linear;border:2px solid #fff;border-right-color:transparent;border-radius:50%;position:absolute;display:block;z-index:9999;left:0;right:0;margin:0 auto;top:47%}.goverlay{width:100%;height:calc(100vh + 1px);position:fixed;top:-1px;left:0;background:#000;will-change:opacity}.glightbox-mobile .goverlay{background:#000}.gclose,.gnext,.gprev{z-index:99999;cursor:pointer;width:26px;height:44px;border:none;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.gclose svg,.gnext svg,.gprev svg{display:block;width:25px;height:auto;margin:0;padding:0}.gclose.disabled,.gnext.disabled,.gprev.disabled{opacity:.1}.gclose .garrow,.gnext .garrow,.gprev .garrow{stroke:#fff}.gbtn.focused{outline:2px solid #0f3d81}iframe.wait-autoplay{opacity:0}.glightbox-closing .gclose,.glightbox-closing .gnext,.glightbox-closing .gprev{opacity:0!important}.glightbox-clean .gslide-description{background:#fff}.glightbox-clean .gdesc-inner{padding:22px 20px}.glightbox-clean .gslide-title{font-size:1em;font-weight:400;font-family:arial;color:#000;margin-bottom:19px;line-height:1.4em}.glightbox-clean .gslide-desc{font-size:.86em;margin-bottom:0;font-family:arial;line-height:1.4em}.glightbox-clean .gslide-video{background:#000}.glightbox-clean .gclose,.glightbox-clean .gnext,.glightbox-clean .gprev{background-color:rgba(0,0,0,.75);border-radius:4px}.glightbox-clean .gclose path,.glightbox-clean .gnext path,.glightbox-clean .gprev path{fill:#fff}.glightbox-clean .gprev{position:absolute;top:-100%;left:30px;width:40px;height:50px}.glightbox-clean .gnext{position:absolute;top:-100%;right:30px;width:40px;height:50px}.glightbox-clean .gclose{width:35px;height:35px;top:15px;right:10px;position:absolute}.glightbox-clean .gclose svg{width:18px;height:auto}.glightbox-clean .gclose:hover{opacity:1}.gfadeIn{-webkit-animation:gfadeIn .5s ease;animation:gfadeIn .5s ease}.gfadeOut{-webkit-animation:gfadeOut .5s ease;animation:gfadeOut .5s ease}.gslideOutLeft{-webkit-animation:gslideOutLeft .3s ease;animation:gslideOutLeft .3s ease}.gslideInLeft{-webkit-animation:gslideInLeft .3s ease;animation:gslideInLeft .3s ease}.gslideOutRight{-webkit-animation:gslideOutRight .3s ease;animation:gslideOutRight .3s ease}.gslideInRight{-webkit-animation:gslideInRight .3s ease;animation:gslideInRight .3s ease}.gzoomIn{-webkit-animation:gzoomIn .5s ease;animation:gzoomIn .5s ease}.gzoomOut{-webkit-animation:gzoomOut .5s ease;animation:gzoomOut .5s ease}@-webkit-keyframes lightboxLoader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes lightboxLoader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@-webkit-keyframes gfadeIn{from{opacity:0}to{opacity:1}}@keyframes gfadeIn{from{opacity:0}to{opacity:1}}@-webkit-keyframes gfadeOut{from{opacity:1}to{opacity:0}}@keyframes gfadeOut{from{opacity:1}to{opacity:0}}@-webkit-keyframes gslideInLeft{from{opacity:0;-webkit-transform:translate3d(-60%,0,0);transform:translate3d(-60%,0,0)}to{visibility:visible;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@keyframes gslideInLeft{from{opacity:0;-webkit-transform:translate3d(-60%,0,0);transform:translate3d(-60%,0,0)}to{visibility:visible;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@-webkit-keyframes gslideOutLeft{from{opacity:1;visibility:visible;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{-webkit-transform:translate3d(-60%,0,0);transform:translate3d(-60%,0,0);opacity:0;visibility:hidden}}@keyframes gslideOutLeft{from{opacity:1;visibility:visible;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{-webkit-transform:translate3d(-60%,0,0);transform:translate3d(-60%,0,0);opacity:0;visibility:hidden}}@-webkit-keyframes gslideInRight{from{opacity:0;visibility:visible;-webkit-transform:translate3d(60%,0,0);transform:translate3d(60%,0,0)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@keyframes gslideInRight{from{opacity:0;visibility:visible;-webkit-transform:translate3d(60%,0,0);transform:translate3d(60%,0,0)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@-webkit-keyframes gslideOutRight{from{opacity:1;visibility:visible;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{-webkit-transform:translate3d(60%,0,0);transform:translate3d(60%,0,0);opacity:0}}@keyframes gslideOutRight{from{opacity:1;visibility:visible;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{-webkit-transform:translate3d(60%,0,0);transform:translate3d(60%,0,0);opacity:0}}@-webkit-keyframes gzoomIn{from{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:1}}@keyframes gzoomIn{from{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:1}}@-webkit-keyframes gzoomOut{from{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}@keyframes gzoomOut{from{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}@media (min-width:769px){.glightbox-container .ginner-container{width:auto;height:auto;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.glightbox-container .ginner-container.desc-top .gslide-description{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.glightbox-container .ginner-container.desc-top .gslide-image,.glightbox-container .ginner-container.desc-top .gslide-image img{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.glightbox-container .ginner-container.desc-left .gslide-description{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.glightbox-container .ginner-container.desc-left .gslide-image{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.gslide-image img{max-height:97vh;max-width:100%}.gslide-image img.zoomable{cursor:-webkit-zoom-in;cursor:zoom-in}.zoomed .gslide-image img.zoomable{cursor:-webkit-grab;cursor:grab}.gslide-inline{max-height:95vh}.gslide-external{max-height:100vh}.gslide-description.description-left,.gslide-description.description-right{max-width:275px}.glightbox-open{height:auto}.goverlay{background:rgba(0,0,0,.92)}.glightbox-clean .gslide-media{-webkit-box-shadow:1px 2px 9px 0 rgba(0,0,0,.65);box-shadow:1px 2px 9px 0 rgba(0,0,0,.65)}.glightbox-clean .description-left .gdesc-inner,.glightbox-clean .description-right .gdesc-inner{position:absolute;height:100%;overflow-y:auto}.glightbox-clean .gclose,.glightbox-clean .gnext,.glightbox-clean .gprev{background-color:rgba(0,0,0,.32)}.glightbox-clean .gclose:hover,.glightbox-clean .gnext:hover,.glightbox-clean .gprev:hover{background-color:rgba(0,0,0,.7)}.glightbox-clean .gprev{top:45%}.glightbox-clean .gnext{top:45%}}@media (min-width:992px){.glightbox-clean .gclose{opacity:.7;right:20px}}@media screen and (max-height:420px){.goverlay{background:#000}}
@charset "UTF-8";
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/**
 * Correct `inline-block` display not defined in IE 8/9.
 */
audio,
canvas,
video {
  display: inline-block;
}

/* saira-condensed-regular - latin */
@font-face {
  font-family: "Saira Condensed";
  font-style: normal;
  font-weight: 400;
  src: url("/files/theme/fonts/saira-condensed-v6-latin/saira-condensed-v6-latin-regular.eot"); /* IE9 Compat Modes */
  src: local(""), url("/files/theme/fonts/saira-condensed-v6-latin/saira-condensed-v6-latin-regular.eot?#iefix") format("embedded-opentype"), url("/files/theme/fonts/saira-condensed-v6-latin/saira-condensed-v6-latin-regular.woff2") format("woff2"), url("/files/theme/fonts/saira-condensed-v6-latin/saira-condensed-v6-latin-regular.woff") format("woff"), url("/files/theme/fonts/saira-condensed-v6-latin/saira-condensed-v6-latin-regular.ttf") format("truetype"), url("/files/theme/fonts/saira-condensed-v6-latin/saira-condensed-v6-latin-regular.svg#SairaCondensed") format("svg"); /* Legacy iOS */
}
/* saira-condensed-600 - latin */
@font-face {
  font-family: "Saira Condensed";
  font-style: normal;
  font-weight: 600;
  src: url("/files/theme/fonts/saira-condensed-v6-latin/saira-condensed-v6-latin-600.eot"); /* IE9 Compat Modes */
  src: local(""), url("/files/theme/fonts/saira-condensed-v6-latin/saira-condensed-v6-latin-600.eot?#iefix") format("embedded-opentype"), url("/files/theme/fonts/saira-condensed-v6-latin/saira-condensed-v6-latin-600.woff2") format("woff2"), url("/files/theme/fonts/saira-condensed-v6-latin/saira-condensed-v6-latin-600.woff") format("woff"), url("/files/theme/fonts/saira-condensed-v6-latin/saira-condensed-v6-latin-600.ttf") format("truetype"), url("/files/theme/fonts/saira-condensed-v6-latin/saira-condensed-v6-latin-600.svg#SairaCondensed") format("svg"); /* Legacy iOS */
}
/* road-rage-regular - latin */
/* road-rage-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: "Road Rage";
  font-style: normal;
  font-weight: 400;
  src: url("/files/theme/fonts/road-rage-v7-latin/road-rage-v7-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.hidden {
  display: none !important;
  visibility: hidden;
}

.invisible, .ce_form .widget-radio .radio_container > span input,
.ctlg_form .widget-radio .radio_container > span input, .ce_form .widget-checkbox .checkbox_container > span input,
.ctlg_form .widget-checkbox .checkbox_container > span input {
  border: 0 none;
  clip: rect(0px, 0px, 0px, 0px);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.invisibleAccessible,
.sr-only {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
}

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

.buttonreset {
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  background: transparent;
  /* inherit font & color from ancestor */
  color: inherit;
  font: inherit;
  /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
  line-height: normal;
  /* Corrects font smoothing for webkit */
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  /* Corrects inability to style clickable `input` types in iOS */
  -webkit-appearance: none;
}

/*Make Contao Elements visble at all*/
/* normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/* ==========================================================================
   Typography
   ========================================================================== */
/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
/**
 * Address styling not present in Safari 5 and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address differences between Firefox and other browsers.
 */
/**
 * Correct font family set oddly in Safari 5 and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}

/**
 * Improve readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre-wrap;
}

/**
 * Set consistent quote types.
 */
q {
  quotes: "“" "”" "‘" "’";
}

/**
 * Correct overflow displayed oddly in IE 9.
 */
svg:not(:root) {
  overflow: hidden;
}

/* ==========================================================================
   Figures
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 0;
}

/* ==========================================================================
   Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/******************************************************************
CUSTOMIZED RESET VALUES
I added these extra styles as a more personalized reset. Feel free
to remove them if you like or add your own. If you want to update
the normalize styles, make sure to edit from this point up.
******************************************************************/
b, strong, .strong {
  font-weight: bold;
}

em, .em {
  font-style: italic;
}

small {
  font-size: 75%;
}

dd {
  margin: 0;
}

html {
  font-size: 100%;
  font-family: "Arial", "Droid sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
@media screen and (min-width: 42.6666666667em) {
  html {
    font-size: 100%;
  }
}
@media screen and (min-width: 66.6666666667em) {
  html {
    font-size: 100%;
  }
}

html, body {
  font-family: "Arial", "Droid sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: #1B2B21;
  overflow-x: hidden;
  font-size: 18px;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
p, li {
  font-size: 0.9rem;
  line-height: 1.4;
  color: #74787C;
  margin: 0 0 0.75em 0;
}

::-moz-selection {
  background: #95999D;
  color: #fff;
  text-shadow: none;
}

::-moz-selection,
::selection {
  background: #95999D;
  color: #fff;
  text-shadow: none;
}

span,
a,
p,
li,
strong {
  line-height: 1.4;
}

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

.top-s {
  margin-top: 0.5rem;
}

.top-m {
  margin-top: 1rem;
}

.top-l {
  margin-top: 2rem;
}

.top-xl {
  margin-top: 3rem;
}

.bottom-s {
  margin-bottom: 0.5rem;
}

.bottom-m {
  margin-bottom: 1rem;
}

.bottom-l {
  margin-bottom: 2rem;
}

.bottom-xl {
  margin-bottom: 3rem;
}

.ptop-s {
  padding-top: 0.5rem;
}

.ptop-m {
  padding-top: 1rem;
}

.ptop-l {
  padding-top: 2rem;
}

.ptop-xl {
  padding-top: 3rem;
}

.pbottom-s {
  padding-bottom: 0.5rem;
}

.pbottom-m {
  padding-bottom: 1rem;
}

.pbottom-l {
  padding-bottom: 2rem;
}

.pbottom-xl {
  padding-bottom: 3rem;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  line-height: 1.2;
  text-wrap: balance;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a,
.h1 a, .h2 a, .h3 a, .h4 a, .h5 a, .h6 a {
  text-decoration: none;
  color: inherit;
}
h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child,
.h1:first-child, .h2:first-child, .h3:first-child, .h4:first-child, .h5:first-child, .h6:first-child {
  margin-top: 0;
}

[class^=ce_] h2:first-of-type,
[class^=ce_] h3:first-of-type,
[class^=ce_] h4:first-of-type,
[class^=ce_] h5:first-of-type,
[class^=ce_] h6:first-of-type {
  margin-top: 0;
}

h1,
.h1 {
  font-family: "Saira Condensed", "Arial", "Droid sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: #5da361;
  margin: 0 0 0.5em 0;
  font-size: 1.5rem;
}
@media screen and (min-width: 42.6666666667em) {
  h1,
  .h1 {
    font-size: 1.7rem;
  }
}
@media screen and (min-width: 66.6666666667em) {
  h1,
  .h1 {
    font-size: 2rem;
  }
}

h2,
.h2 {
  font-family: "Saira Condensed", "Arial", "Droid sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: #1B2B21;
  margin: 0.75em 0 0.5em 0;
  font-size: 1.2rem;
}
@media screen and (min-width: 42.6666666667em) {
  h2,
  .h2 {
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 66.6666666667em) {
  h2,
  .h2 {
    font-size: 1.7rem;
  }
}

h3,
.h3 {
  font-family: "Saira Condensed", "Arial", "Droid sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: #5da361;
  margin: 0.75em 0 0.5em 0;
  font-size: 1.1rem;
}
@media screen and (min-width: 42.6666666667em) {
  h3,
  .h3 {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 66.6666666667em) {
  h3,
  .h3 {
    font-size: 1.4rem;
  }
}

h4,
.h4 {
  font-family: "Saira Condensed", "Arial", "Droid sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  color: #5da361;
  margin: 0.75em 0 0.5em 0;
  font-size: 1.125rem;
}
@media screen and (min-width: 42.6666666667em) {
  h4,
  .h4 {
    font-size: 1.1111111rem;
  }
}
@media screen and (min-width: 66.6666666667em) {
  h4,
  .h4 {
    font-size: 1.2rem;
  }
}

h5,
.h5 {
  font-family: "Saira Condensed", "Arial", "Droid sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  color: #1B2B21;
  margin: 0.75em 0 0.5em 0;
  font-size: 1rem;
}
@media screen and (min-width: 66.6666666667em) {
  h5,
  .h5 {
    font-size: 1.1rem;
  }
}

h6,
.h6 {
  font-family: "Saira Condensed", "Arial", "Droid sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  color: #1B2B21;
  margin: 0.75em 0 0.5em 0;
  font-size: 1rem;
}

img, picture {
  max-width: 100%;
  height: auto;
  line-height: 0;
}

figure {
  line-height: 0;
  margin: 0;
}

figcaption {
  line-height: 1.2;
  font-size: 0.8rem;
  color: #74787C;
}

/*Fix für Caption auf Bildbreite beschränken*/
figure {
  display: inline-block;
}

figure img {
  display: block;
  width: 100%;
}

figcaption {
  display: inline-block;
  caption-side: bottom;
}

/*Alle Bilder ohne Alt-Attribut kennzeichen*/
/*sollte für Production auskommentiert werden!*/
/*Behebt Probleme mit responsiven Bildern
//https://community.contao.org/de/showthread.php?81074-Problem-mit-Bildgr%C3%B6%C3%9Fen-bei-responsive-Ausgabe-(seit-Kurzem)&p=545407&viewfull=1#post545407
*/
:where(source[width][height] ~ img) {
  width: auto;
  height: auto;
}

.gslide-media {
  background-color: #fff;
}

a {
  color: #cb8718;
  text-decoration: none;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
main a:hover, main a:focus {
  text-decoration: underline;
}
p a {
  text-decoration: underline;
  color: #5b5f62;
}

:focus {
  outline: 1px dashed #56595C;
}

a[href^=tel] {
  text-decoration: none;
  color: #1B2B21;
}

main a[href^=http]:not(:has(img)):after {
  content: "";
  display: inline-block;
  height: 1em;
  width: 1em;
  padding-left: 0.1em;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiBhcmlhLWhpZGRlbj0idHJ1ZSIgcm9sZT0iaW1nIiBjbGFzcz0iaWNvbmlmeSBpY29uaWZ5LS1ldmEiIHdpZHRoPSIxZW0iIGhlaWdodD0iMWVtIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJ4TWlkWU1pZCBtZWV0IiB2aWV3Qm94PSIwIDAgMjQgMjQiPjxwYXRoIGZpbGw9IiM4ODg4ODgiIGQ9Ik0yMCAxMWExIDEgMCAwIDAtMSAxdjZhMSAxIDAgMCAxLTEgMUg2YTEgMSAwIDAgMS0xLTFWNmExIDEgMCAwIDEgMS0xaDZhMSAxIDAgMCAwIDAtMkg2YTMgMyAwIDAgMC0zIDN2MTJhMyAzIDAgMCAwIDMgM2gxMmEzIDMgMCAwIDAgMy0zdi02YTEgMSAwIDAgMC0xLTFaIj48L3BhdGg+PHBhdGggZmlsbD0iY3VycmVudENvbG9yIiBkPSJNMTYgNWgxLjU4bC02LjI5IDYuMjhhMSAxIDAgMCAwIDAgMS40MmExIDEgMCAwIDAgMS40MiAwTDE5IDYuNDJWOGExIDEgMCAwIDAgMSAxYTEgMSAwIDAgMCAxLTFWNGExIDEgMCAwIDAtMS0xaC00YTEgMSAwIDAgMCAwIDJaIj48L3BhdGg+PC9zdmc+") center center no-repeat;
}

main ul li, ol li {
  color: #1B2B21;
  max-width: 65ch;
}

main ul {
  list-style-type: disc;
}

main ol {
  list-style-type: decimal;
}

html {
  background-color: #716b56;
}

body {
  margin: 0 auto;
  background: url("/files/theme/img/so-white.png") repeat #fff;
}

.wrapper {
  max-width: 1920px;
  margin: 0 auto;
}

.wrap, .mod_breadcrumb, .mod_article:not(.full-width) .inside, #footer .inside, #header .inside {
  max-width: 1100px;
  margin: 0 auto;
}

main {
  position: relative;
}

/*
.inside {

} */
#header {
  padding: 0.5rem 2% 0 2%;
  border-bottom: 1px dotted #cb8718;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#header .inside {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#header .inside .ce_image,
#header .inside .content-image {
  margin: 0;
}
#header .inside .logo-green {
  display: none;
}
#header .inside .logo-light {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
#header .inside .logo-light img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  height: 90px;
}
@media screen and (min-width: 27.2222222222em) {
  #header .inside .mainnav {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
}
#header .inside .mod_breadcrumb {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}
#header.sticky {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  padding: 0.5rem 2% 0 2%;
  width: 96%;
  z-index: 99999;
  height: 50px;
  background: url("/files/theme/img/so-white.png") repeat #fff;
}
#header.sticky .logo-light {
  display: block;
  margin: 0;
}
#header.sticky .logo-light img {
  height: 38px;
}
#header.sticky ~ .custom .mod_breadcrumb {
  position: fixed;
  top: 50px;
  width: 100%;
  background: white;
  z-index: 999;
  display: none;
}

#footer {
  background: url("/files/theme/img/wiese_03.svg") no-repeat top;
  background-size: cover;
  color: #fff;
  padding: 6rem 1rem 1rem 1rem;
}
#footer .inside {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 5rem;
}
@media screen and (max-width: 63.8888888889em) {
  #footer .inside {
    padding: 0 2rem;
  }
}
#footer li {
  margin: 0;
}
#footer a {
  color: #fff;
  font-size: 0.9rem;
}

main .mod_article {
  padding: 2rem 0;
}
@media screen and (min-width: 50em) {
  main .mod_article {
    padding: 4rem 0;
  }
}
@media screen and (max-width: 58.3333333333em) {
  main .mod_article {
    padding: 2rem 1rem;
  }
}
.mod_article.full-width, .mod_article.nospace {
  padding: 0;
}
.mod_article.nospace-top {
  padding-top: 0;
}
.mod_article.nospace-bottom {
  padding-bottom: 0;
}
.mod_article.filter {
  margin-bottom: 3rem;
}
.mod_article.filter h1 {
  margin: 0;
}

.comingsoon .mod_article {
  line-height: 0;
}

nav ul,
.nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
nav a,
.nav a {
  display: block;
  text-decoration: none;
  color: #cb8718;
  font-family: "Saira Condensed", "Arial", "Droid sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
nav a:hover, nav a:focus, nav a.active, nav a.trail,
.nav a:hover,
.nav a:focus,
.nav a.active,
.nav a.trail {
  color: #943600;
}

@media screen and (max-width: 34.4444444444em) {
  .mainnav {
    display: none;
  }
}
.mainnav a:not(.invisible) {
  padding: 0.3rem 0.8rem;
  color: #5da361;
}
.mainnav a:not(.invisible):hover, .mainnav a:not(.invisible):focus, .mainnav a:not(.invisible).active {
  color: #943600;
}
.mainnav .level_1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.mainnav .level_1 li {
  position: relative;
  z-index: 2;
  margin: 0;
}
.mainnav .level_1 li:hover .level_2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
}
.mainnav .level_2 {
  display: none;
  position: absolute;
}

.scrollToTopBtn {
  cursor: pointer;
  font-size: 30px;
  line-height: 30px;
  position: fixed;
  bottom: 5px;
  right: 5px;
  z-index: 100;
  opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.scrollToTopBtn a:hover {
  color: #943600;
}
.scrollToTopBtn i {
  color: #5da361;
}
.scrollToTopBtn i:hover {
  color: #943600;
}

.showBtn {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@media screen and (min-width: 34.5em) {
  .mod_mobile_menu {
    display: none;
  }
}
.mod_mobile_menu svg {
  width: 50px;
  height: 50px;
}

.mobile_menu .inner {
  position: relative;
  background: url("/files/theme/img/so-white.png") repeat #fff;
  padding: 1rem;
}
.mobile_menu .mheader .logo {
  padding: 0 10vw;
  margin-right: 20px;
}
.mobile_menu .mainnav-mmenu {
  display: block;
}
.mobile_menu .mainnav-mmenu ul {
  display: block;
}
.mobile_menu .mainnav-mmenu li {
  display: block;
}
.mobile_menu .mainnav-mmenu a {
  padding: 0.8em;
  border-bottom: 1px solid #fff;
}
.mobile_menu .mod_customnav {
  text-align: center;
}
.mobile_menu .menu-close {
  position: absolute;
  right: 10px;
  top: 10px;
  color: #1B2B21;
}
.mobile_menu .menu-close svg {
  width: 50px;
  height: 50px;
}
@media screen and (max-width: 41.6666666667em) {
  .mobile_menu .social {
    display: block;
  }
}

.mod_breadcrumb {
  display: none;
  font-size: 13px;
  padding: 0.4rem auto;
}
@media screen and (min-width: 25em) {
  .mod_breadcrumb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.mod_breadcrumb .breadcrumb-name {
  color: rgba(48, 78, 57, 0.933);
}
.mod_breadcrumb ol {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 0;
  padding: 0;
}
.mod_breadcrumb li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  color: rgba(48, 78, 57, 0.933);
  font-size: 13px;
  max-width: 100%;
}
.mod_breadcrumb li.active {
  color: #943600;
}
.mod_breadcrumb li:not(.last):after {
  content: ">";
  display: inline-block;
  margin: 0 0.25rem 0.1rem 0;
}
.mod_breadcrumb a {
  color: rgba(48, 78, 57, 0.933);
  -webkit-transition: 0;
  transition: 0;
  font-family: "Arial", "Droid sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: inherit;
}
.mod_breadcrumb a:hover, .mod_breadcrumb a:focus {
  color: #cb8718;
}
.mod_breadcrumb .breadcrumb-name {
  margin-right: 0.5rem;
}
.mod_breadcrumb .navicon a:hover .icon-home, .mod_breadcrumb .navicon a:focus .icon-home {
  color: rgba(48, 78, 57, 0.933);
}
.mod_breadcrumb .icon-home {
  -webkit-transform: translateY(0.1rem);
          transform: translateY(0.1rem);
  margin-right: 0;
  height: 16px;
  width: 16px;
  color: #5da361;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

/* Contao elements */
.ce_headline,
.content_headline,
.ce_accordion,
.ce_download,
.ce_text,
.ce_image,
.content-image,
.ce_rsce_review,
.embed-container,
.ce_hyperlink,
.content-hyperlink,
.ce_youtube,
.content-youtube,
.content-gallery {
  margin-bottom: 1rem;
}

.content-headline.centered {
  text-align: center;
}

.ce_text:after,
.content-text:after {
  content: "";
  display: table;
  clear: both;
}
.ce_text.iconbox,
.content-text.iconbox {
  text-align: center;
}
.ce_download {
  display: inline-block;
}
.ce_download.full-size {
  display: block;
}
.ce_download a {
  display: block;
  padding: 0.5em 0.5em 0.5em 2.5rem;
  border: 1px solid #D7D9DA;
  background-repeat: no-repeat;
  background-position: left 0.5rem center;
  background-size: 1.5rem;
  text-decoration: none;
  background-color: #cb8718;
  color: #fff;
  border-color: #fff;
}
.ce_download a:hover, .ce_download a:focus {
  border-color: #fff;
  color: #fff;
  background-color: #943600;
}
.ce_download p {
  margin: 0;
}
.ce_download .download-element a {
  background-size: 1.5rem 1.5rem;
}
.ce_download .download-element.ext-pdf a {
  background-image: url("/files/theme/img/icons/icon-pdf.svg");
}
.ce_download .download-element.ext-docx a {
  background-image: url("/files/theme/img/icons/icon-docx.svg");
}
.ce_download .download-element.ext-doc a {
  background-image: url("/files/theme/img/icons/icon-doc.svg");
}
.ce_download .download-element.ext-odt a {
  background-image: url("/files/theme/img/icons/icon-odt.svg");
}
.ce_download .download-element.ext-jpg a {
  background-image: url("/files/theme/img/icons/icon-jpg.svg");
}
.ce_download .download-element.ext-png a {
  background-image: url("/files/theme/img/icons/icon-png.svg");
}
.ce_download .download-element.ext-gif a {
  background-image: url("/files/theme/img/icons/icon-gif.svg");
}
.ce_download .download-element.ext-tiff a {
  background-image: url("/files/theme/img/icons/icon-tiff.svg");
}
.ce_download .download-element.ext-mp3 a {
  background-image: url("/files/theme/img/icons/icon-mp3.svg");
}
.ce_download .download-element.ext-mp4 a {
  background-image: url("/files/theme/img/icons/icon-mp4.svg");
}
.ce_download .download-element.ext-ppt a {
  background-image: url("/files/theme/img/icons/icon-ppt.svg");
}
.ce_download .download-element.ext-zip a {
  background-image: url("/files/theme/img/icons/icon-zip.svg");
}
.ce_download .download-element.ext-rar a {
  background-image: url("/files/theme/img/icons/icon-rar.svg");
}
.ce_download .download-element.ext-txt a {
  background-image: url("/files/theme/img/icons/icon-txt.svg");
}
.ce_download .download-element.ext-xls a {
  background-image: url("/files/theme/img/icons/icon-xls.svg");
}
.ce_download .download-element.ext-xlsx a {
  background-image: url("/files/theme/img/icons/icon-xlsx.svg");
}
.ce_download .download-element.ext-xml a {
  background-image: url("/files/theme/img/icons/icon-xml.svg");
}
.ce_download .download-element.ext-gpx a {
  background-image: url("/files/theme/img/icons/icon-gpx.svg");
}

.ce_accordion {
  margin-bottom: 0.3em;
}
.ce_accordion .toggler {
  position: relative;
  padding: 1rem 3rem 1rem 1rem;
  background: url(/files/theme/img/wolke.svg) no-repeat;
  background-size: contain;
  background-position: left;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
  background-color: transparent;
  cursor: pointer;
}
.ce_accordion .toggler:hover, .ce_accordion .toggler:focus {
  background-position: right;
  background-color: rgba(238, 238, 238, 0.455);
  border-radius: 2em;
}
.ce_accordion .accordion {
  padding: 1rem;
}
.ce_accordion .info {
  font-size: 12px;
}

blockquote {
  padding: 0.25rem 0 1rem 0;
  margin: 0;
  font-size: 1.5rem;
  font-style: italic;
  color: #56595C;
}
blockquote p {
  margin: 0;
  color: inherit;
  font-size: inherit;
}

.ce_hyperlink.werbung::before,
.content-hyperlink.werbung::before,
a.werbung::before,
.ce_nodes.werbung::before {
  content: "Werbung";
  font-size: 0.7rem;
}
.ce_hyperlink.affiliate::before, .ce_hyperlink.amazon::before,
.content-hyperlink.affiliate::before,
.content-hyperlink.amazon::before,
a.affiliate::before,
a.amazon::before,
.ce_nodes.affiliate::before,
.ce_nodes.amazon::before {
  content: "Affiliate-Link";
  font-size: 0.7rem;
  display: block;
}
.ce_hyperlink.spende::before,
.content-hyperlink.spende::before,
a.spende::before,
.ce_nodes.spende::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiBhcmlhLWhpZGRlbj0idHJ1ZSIgcm9sZT0iaW1nIiBjbGFzcz0iaWNvbmlmeSBpY29uaWZ5LS1lbW9qaW9uZS12MSIgd2lkdGg9IjFlbSIgaGVpZ2h0PSIxZW0iIHByZXNlcnZlQXNwZWN0UmF0aW89InhNaWRZTWlkIG1lZXQiIHZpZXdCb3g9IjAgMCA2NCA2NCI+PGcgZmlsbD0iI2Y3OTQyMyI+PHBhdGggZD0iTTE1Ljc0MiAzLjc2OEMxOS41MjQgMi41NCAzMC4yNSA2Ljg5MyAzMS42MjQgOC40NTljMS4zNjUgMS41NTgtNy41NDYgMi4yMDItMTIuMzg0IDIuOTE5Yy00Ljk5Mi43NTEtOS45NzEgMS42NDgtMTEuMzMyLjA3N2MtMS4zNi0xLjU0OSA0LjA1Ny02LjQ1MSA3LjgzNC03LjY4NyI+PC9wYXRoPjxwYXRoIGQ9Ik00MS43NzIgMS4wMzhjNC4zMjItMS4yNjIgMTUuOTEyIDMuOTI4IDE3LjMxMiA1LjY5NmMxLjM4NiAxLjc5LTguNTggMi4yMzYtMTQuMDIgMi44OTNjLTUuNjMxLjY3NC0xMS4yNzEgMS41Mi0xMi42NTgtLjI2MmMtMS4zOTYtMS43NjggNS4wNTktNy4wNzggOS4zNjktOC4zMjciPjwvcGF0aD48cGF0aCBkPSJNMTYuNDA0IDguMjA3YzIuNTk3LTEuNzA4IDEzLjc3NC4wMzkgMTUuNjU4IDEuMTEyYzEuOTAyIDEuMDY0LTUuMzA1IDMuMjE5LTkuMDUgNC42OTFjLTMuODUxIDEuNTIzLTcuNjI0IDMuMTkzLTkuNTIxIDIuMTAzYy0xLjkwOS0xLjA2LjMyNy02LjE4MSAyLjkxNS03LjkwNiI+PC9wYXRoPjxwYXRoIGQ9Ik0yNi44ODIuMDljMy43ODEuMzM5IDcuNzYgNi45NTMgNy4zOTEgOC41MmMtLjM1NiAxLjU1OC03LjM0OC0uODUtMTEuNDY1LTEuOTAxYy00LjI0LTEuMDc4LTguNjE0LTIuMDMxLTguMjM2LTMuNTg5Yy4zNjUtMS41NzUgOC41Mi0zLjM2NSAxMi4zMS0zLjAzIj48L3BhdGg+PHBhdGggZD0iTTM5LjgzMiA3LjQ4NWMzLjc5NS4zMjYgNy43NyA2Ljk0NSA3LjQgOC41MDdjLS4zNjkgMS41NjctNy4zNTctLjg0Ni0xMS40NzQtMS44OTNjLTQuMjI4LTEuMDczLTguNjE1LTIuMDM5LTguMjM3LTMuNjAxYy4zNTgtMS41NjIgOC41My0zLjM0MyAxMi4zMTEtMy4wMSI+PC9wYXRoPjxwYXRoIGQ9Ik00LjcxMiA1MS42MzZjMCA5LjQzMSAxMy40NzggMTIuMTc4IDI3Ljg5NiAxMi4xNzhjMTQuNDE3IDAgMjcuOS0yLjc0NyAyNy45LTEyLjE3OGMwLTkuNDEzLTEzLjQ4Mi0zNy41MzItMjcuOS0zNy41MzJTNC43MTIgNDIuMjI0IDQuNzEyIDUxLjYzNiI+PC9wYXRoPjwvZz48cGF0aCBmaWxsPSIjODQ1OTM5IiBkPSJNNDEuMjYxIDE1LjI2M2EzLjU2OSAzLjU2OSAwIDAgMS0zLjU3MSAzLjU3MUgyNy41MjVhMy41NzEgMy41NzEgMCAwIDEgMC03LjE0MmgxMC4xNjRhMy41NzEgMy41NzEgMCAwIDEgMy41NzIgMy41NzEiPjwvcGF0aD48ZyBmaWxsPSIjMjUzMzNhIj48cGF0aCBkPSJNMzkuMTg4IDQwLjk2NmMtMS4xMDctMS4xODEtMi42MzUtMS45NzEtNC4wODYtMi42MjdjLTEuNTExLS42ODgtMy43LTEuMjQ5LTQuNjYyLTIuNzNjLS44MDctMS4yNC4zMDUtMi41NDEgMS40MzgtMi45MTljMS44MjQtLjYxMyA0LjA3NC4xMjUgNS42NzUgMS4wMjZjLjc5OC40NDYgMS42NC4wMDkgMS45NDQtLjc5Yy4zMzUtLjg4NC42Ny0xLjc2OSAxLTIuNjUyYy4yMDItLjUzNy0uMTI0LTEuMjI0LS42MDQtMS40OTRjLTEuNDU1LS44MDctMi45NzEtMS4yNDktNC41NzItMS40NTl2LTIuNzA0YzAtLjcyMS0uNjAxLTEuMzIyLTEuMzIyLTEuMzIyaC0yLjQ5NGMtLjcxNyAwLTEuMzIyLjYwMS0xLjMyMiAxLjMyMnYzLjAyYy0yLjQ2OC43MTItNC43MTcgMi4zMDEtNS41OTMgNC44MjVjLS45NzQgMi43OTQtLjM4MiA1LjY4NyAxLjY5MSA3LjgwM2MxLjExMiAxLjEzOCAyLjYxNCAxLjg4NSA0LjA0IDIuNTMyYzEuNjA5LjcyNiAzLjU4OCAxLjI0OSA0LjYyNyAyLjc5OWMxLjExMiAxLjY1Ny0uMzI2IDMuMjkyLTEuODggMy43NjFjLTIuMDg2LjYyNi00LjYxNC0uMzEzLTYuMzY2LTEuNDA0Yy0uNzY4LS40OC0xLjY2MS4wMTMtMS45NC43OWwtLjk2NiAyLjY5MWMtLjIwNi41NzUuMTM3IDEuMTg1LjYwOSAxLjQ5M2MxLjY1MyAxLjA4MiAzLjU1IDEuNjE4IDUuNDk0IDEuODQydjIuODQ2YzAgLjM4Ny4xNDIuNjgzLjM1Mi44OTNjLjAxMy4wMTQuMDI2LjAyNi4wMzQuMDM5YS4yOTYuMjk2IDAgMCAwIC4wMzkuMDM0Yy4yMS4yMTUuNTA2LjM1Ni44OTMuMzU2aDIuNTM3YTEuMzMgMS4zMyAwIDAgMCAxLjMxOC0xLjMyMnYtMy4xNDJjMi43NDMtLjc5IDQuODYzLTIuNTYyIDUuOTMyLTUuMzE0YzEuMDk2LTIuODA3LjE2NC02LjA3NC0xLjgyMy04LjE5NCI+PC9wYXRoPjxwYXRoIGQ9Ik0zOS4xODggMzkuMTRjLTEuMTA3LTEuMTc2LTIuNjM1LTEuOTY2LTQuMDg2LTIuNjIyYy0xLjUxMS0uNjg4LTMuNy0xLjI0OS00LjY2Mi0yLjczNGMtLjgwNy0xLjIzMi4zMDUtMi41MzcgMS40MzgtMi45MTljMS44MjQtLjYwOSA0LjA3NC4xMjUgNS42NzUgMS4wMjZjLjc5OC40NTEgMS42NC4wMDggMS45NDQtLjc5Yy4zMzUtLjg4NC42Ny0xLjc2NCAxLTIuNjQ4Yy4yMDItLjU0MS0uMTI0LTEuMjI4LS42MDQtMS40OTRjLTEuNDU1LS44MTEtMi45NzEtMS4yNDktNC41NzItMS40NjN2LTIuNzA0YzAtLjcxNy0uNjAxLTEuMzE4LTEuMzIyLTEuMzE4aC0yLjQ5NGMtLjcxNyAwLTEuMzIyLjYwMS0xLjMyMiAxLjMxOHYzLjAyYy0yLjQ2OC43MTMtNC43MTcgMi4zMDUtNS41OTMgNC44MjljLS45NzQgMi43OTQtLjM4MiA1LjY4NyAxLjY5MSA3Ljc5OWMxLjExMiAxLjEzOCAyLjYxNCAxLjg4OSA0LjA0IDIuNTMyYzEuNjA5LjcyNiAzLjU4OCAxLjI0OSA0LjYyNyAyLjc5OWMxLjExMiAxLjY1Ni0uMzI2IDMuMjkyLTEuODggMy43NjRjLTIuMDg2LjYyNy00LjYxNC0uMzEyLTYuMzY2LTEuNDA3Yy0uNzY4LS40NzctMS42NjEuMDE3LTEuOTQuNzlsLS45NjYgMi42OTVjLS4yMDYuNTcuMTM3IDEuMTg1LjYwOSAxLjQ5M2MxLjY1MyAxLjA3OCAzLjU1IDEuNjE4IDUuNDk0IDEuODQydjIuODQ2YzAgLjM4Mi4xNDIuNjc5LjM1Mi44OTNjLjAxMy4wMTQuMDI2LjAyNi4wMzQuMDM5YS4yOTYuMjk2IDAgMCAxIC4wMzkuMDM0Yy4yMS4yMS41MDYuMzUyLjg5My4zNTJoMi41MzdhMS4zMyAxLjMzIDAgMCAwIDEuMzE4LTEuMzE3di0zLjE0NmMyLjc0My0uNzg5IDQuODYzLTIuNTU4IDUuOTMyLTUuMzEzYzEuMDk2LTIuODA2LjE2NC02LjA3Ny0xLjgyMy04LjE5NyI+PC9wYXRoPjwvZz48L3N2Zz4=") center center no-repeat;
  background-size: contain;
  font-size: 0.7rem;
}

.mod_storelocator_list #map-wrapper {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  margin-bottom: 2rem;
}
.mod_storelocator_list .elements {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@supports (grid-area: auto) {
  .mod_storelocator_list .elements {
    display: grid;
    grid-gap: 1rem;
  }
  @media (min-width: 576px) {
    .mod_storelocator_list .elements {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (min-width: 768px) {
    .mod_storelocator_list .elements {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (min-width: 992px) {
    .mod_storelocator_list .elements {
      grid-template-columns: repeat(3, 1fr);
    }
  }
}
.mod_storelocator_list .entry {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  max-width: 320px;
  padding: 1rem 1rem 3rem 1rem;
  background: #ffffff;
  border: 1px solid #fff;
  margin-bottom: 2rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: rgba(93, 163, 97, 0.1411764706);
  border: 1px solid rgba(93, 163, 97, 0.1411764706);
}
.mod_storelocator_list .entry:target {
  border: 1px solid #cb8718;
  background: rgba(210, 158, 75, 0.168627451);
}
.mod_storelocator_list .entry:target h2 {
  color: #cb8718;
}
.mod_storelocator_list .entry:target .more a {
  color: #5da361;
}
.mod_storelocator_list h2 {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #5da361;
}
.mod_storelocator_list h2 a {
  display: block;
}
.mod_storelocator_list figure {
  height: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #fff;
  margin-bottom: 10px;
}
.mod_storelocator_list .store-image {
  margin-top: 0.6rem;
}
.mod_storelocator_list a {
  word-wrap: break-word;
}
.mod_storelocator_list .more {
  position: absolute;
  right: 0;
  bottom: 0.4rem;
  margin: 0;
}

[id^=result] {
  scroll-margin-top: 60px;
}

.cc-module {
  text-align: center;
  padding: 1rem;
}
.cc-module p {
  font-size: 14px;
  line-height: 1.4;
  position: relative;
  color: #6e6e6e;
}
.cc-module p:before {
  content: "Google Maps";
  height: 170px;
  line-height: 300px;
  font-weight: bold;
  color: #6e6e6e;
  width: 100%;
  display: block;
  text-align: center;
  background-position: center center;
  background-size: 60px;
  background-repeat: no-repeat;
  background-image: url(/bundles/contaocookiebar/images/googlemaps.png);
}
.cc-module button {
  display: inline-block;
  cursor: pointer;
  padding: 8px 14px;
  font-size: 15px;
  outline: 0 none;
  border: 1px solid #cfcfcf;
  border-radius: 4px;
  color: #444;
  background: #f5f5f5;
}

.mod_storelocator_details .opening-times {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  margin: 1rem 0;
}
.mod_storelocator_details .opening-times__entry {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 0.5rem auto;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
  padding: 0.5rem;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 4px;
}
.mod_storelocator_details .opening-times__entry:nth-child(even) {
  background-color: #f2f2f2;
}
.mod_storelocator_details .opening-times__day {
  font-weight: bold;
  color: #333;
  grid-column: 1/-1;
}
.mod_storelocator_details .opening-times__hours {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.25rem;
  color: #666;
}
.mod_storelocator_details .opening-times__time {
  display: block;
  font-size: 0.9rem;
}
@media (min-width: 768px) {
  .mod_storelocator_details .opening-times {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .mod_storelocator_details .opening-times {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}

/*Variable Werte für Grundstyle*/
/*Klassen für @extend*/
.fieldreset, .ce_form .widget-checkbox.dsgvo fieldset,
.ctlg_form .widget-checkbox.dsgvo fieldset {
  border: none;
  padding: 0;
}

/*Basic Styles*/
@supports (grid-area: auto) {
  .ce_form [class*=grid_],
  .ctlg_form [class*=grid_] {
    display: grid;
    row-gap: 0;
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
  }
  .ce_form [class*=grid_] > .block,
  .ctlg_form [class*=grid_] > .block {
    margin-bottom: 0;
  }
}
.ce_form input,
.ce_form label,
.ctlg_form input,
.ctlg_form label {
  display: block;
}
.ce_form label,
.ce_form legend,
.ctlg_form label,
.ctlg_form legend {
  color: #74787C;
  font-size: 16px;
}
.ce_form label span.mandatory,
.ce_form legend span.mandatory,
.ctlg_form label span.mandatory,
.ctlg_form legend span.mandatory {
  color: red;
}
.ce_form input,
.ce_form textarea,
.ctlg_form input,
.ctlg_form textarea {
  width: 94.6%;
  border: 1px solid #BDBFC2;
  padding: 0.6rem;
  background-color: rgba(255, 255, 255, 0.459);
  color: #56595C;
  border-radius: 0px;
}
.ce_form input:focus,
.ce_form textarea:focus,
.ctlg_form input:focus,
.ctlg_form textarea:focus {
  background: rgba(250, 250, 250, 0.459);
}
.ce_form input:valid,
.ctlg_form input:valid {
  color: #56595C;
}
.ce_form input:invalid,
.ctlg_form input:invalid {
  color: gray;
}
.ce_form fieldset,
.ctlg_form fieldset {
  border: 1px solid #BDBFC2;
  margin-bottom: 1rem;
}
.ce_form .widget,
.ctlg_form .widget {
  margin-bottom: 1em;
}
.ce_form .widget-checkbox .checkbox_container > span,
.ctlg_form .widget-checkbox .checkbox_container > span {
  display: block;
  position: relative;
}
.ce_form .widget-checkbox .checkbox_container > span label,
.ctlg_form .widget-checkbox .checkbox_container > span label {
  padding-left: 30px;
}
.ce_form .widget-checkbox .checkbox_container > span label::before,
.ctlg_form .widget-checkbox .checkbox_container > span label::before {
  content: " ";
  display: block;
  position: absolute;
  left: 0;
  height: 20px;
  width: 20px;
  border: 1px solid #BDBFC2;
  background: rgba(255, 255, 255, 0.459);
  text-align: center;
  cursor: pointer;
}
.ce_form .widget-checkbox .checkbox_container > span input:checked ~ label::before,
.ctlg_form .widget-checkbox .checkbox_container > span input:checked ~ label::before {
  content: "✔ ";
  line-height: 1;
  font-size: 20px;
}
.ce_form .widget-checkbox.dsgvo legend,
.ctlg_form .widget-checkbox.dsgvo legend {
  display: none;
}
.ce_form .widget-radio .radio_container > span,
.ctlg_form .widget-radio .radio_container > span {
  display: block;
  position: relative;
}
.ce_form .widget-radio .radio_container > span label,
.ctlg_form .widget-radio .radio_container > span label {
  padding-left: 30px;
}
.ce_form .widget-radio .radio_container > span label::before,
.ctlg_form .widget-radio .radio_container > span label::before {
  content: " ";
  display: block;
  position: absolute;
  left: 0;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  border: 1px solid #BDBFC2;
  background: rgba(255, 255, 255, 0.459);
  text-align: center;
  cursor: pointer;
}
.ce_form .widget-radio .radio_container > span input:checked ~ label::before,
.ctlg_form .widget-radio .radio_container > span input:checked ~ label::before {
  content: "✔ ";
  line-height: 1;
  font-size: 20px;
}
.ce_form .widget-submit button,
.ctlg_form .widget-submit button {
  background: rgba(255, 255, 255, 0.459);
  color: #74787C;
  padding: 0.6rem;
  border: 1px solid #74787C;
  cursor: pointer;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.ce_form .widget-submit button:hover,
.ctlg_form .widget-submit button:hover {
  background: #5da361;
  color: #fff;
}
.ce_form .widget-select,
.ce_form .ctlg_form_field.select,
.ctlg_form .widget-select,
.ctlg_form .ctlg_form_field.select {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.ce_form .widget-select::after,
.ce_form .ctlg_form_field.select::after,
.ctlg_form .widget-select::after,
.ctlg_form .ctlg_form_field.select::after {
  content: "▼";
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 0.5rem 0.2em;
  cursor: pointer;
  pointer-events: none;
  -webkit-transition: 0.25s all ease;
  transition: 0.25s all ease;
  color: #BDBFC2;
}
.ce_form .widget-select label,
.ce_form .ctlg_form_field.select label,
.ctlg_form .widget-select label,
.ctlg_form .ctlg_form_field.select label {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}
.ce_form .widget-select select,
.ce_form .ctlg_form_field.select select,
.ctlg_form .widget-select select,
.ctlg_form .ctlg_form_field.select select {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  width: 100%;
  padding: 0.6rem;
  border: 2px solid #BDBFC2;
  background: rgba(255, 255, 255, 0.459);
  color: #BDBFC2;
  cursor: pointer;
  border-radius: 0px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
.ce_form .widget-select select option,
.ce_form .ctlg_form_field.select select option,
.ctlg_form .widget-select select option,
.ctlg_form .ctlg_form_field.select select option {
  padding: 0.6rem;
  color: #BDBFC2;
}
.ce_form .error,
.ctlg_form .error {
  color: red;
}
.ce_form .qq-upload-button,
.ctlg_form .qq-upload-button {
  display: block;
  width: 100px;
  padding: 1em;
  text-align: center;
  background: none;
  border: 1px solid #323232;
  color: #FFF;
  height: 7em;
}
.ce_form .qq-upload-button:before,
.ctlg_form .qq-upload-button:before {
  content: "Per Drag and Drop oder durch Auswahl per Klick";
  font-size: 14px;
  text-align: center;
  color: silver;
  height: 100%;
}

form[id^=tl_member_] .widget_avatar_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
form[id^=tl_member_] .widget_avatar_container .ajax_container {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30%;
          flex: 0 0 30%;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}
form[id^=tl_member_] .widget_avatar_container .upload_container {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 68%;
          flex: 0 0 68%;
  margin-bottom: 1rem;
}
form[id^=tl_member_] .widget_avatar_container .avatar_container {
  text-align: center;
}
form[id^=tl_member_] .widget_avatar_container .delete_link {
  display: block;
  text-align: center;
  font-size: 14px;
  color: silver;
}
form[id^=tl_member_] .widget_avatar_container .delete_link:hover, form[id^=tl_member_] .widget_avatar_container .delete_link:focus {
  color: #943600;
}

.centered {
  text-align: center;
}

.bg-dark {
  background-color: #4a834d;
}
.bg-dark * {
  color: #fff;
}

.bg-light {
  background-color: #dfede0;
}
.bg-light * {
  color: #fff;
}

.bg-farbe-1 {
  background-color: rgba(36, 38, 9, 0.5019607843);
}
.bg-farbe-1 * {
  color: #fff;
}

.bg-farbe-2 {
  background-color: rgba(112, 137, 113, 0.6117647059);
}
.bg-farbe-2 * {
  color: #fff;
}

.bg-farbe-3 {
  background-color: rgba(9, 22, 10, 0.65);
}
.bg-farbe-3 * {
  color: #fff;
}

@-webkit-keyframes MOVE-BG {
  from {
    -webkit-transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-110%);
  }
}
.bg-wolke-anim-1 {
  position: relative;
}
.bg-wolke-anim-1 .inside {
  position: relative;
  z-index: 2;
}
.bg-wolke-anim-1:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url("/files/theme/img/wolke.svg") left top no-repeat;
  background-size: contain;
  z-index: 0;
  -webkit-animation-name: MOVE-BG;
  -webkit-animation-duration: 50s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
}

.full-width {
  width: 100%;
}

.wolke {
  padding: 3rem;
  background: url(/files/theme/img/wolke.svg) no-repeat;
  background-size: contain;
}
.wolke a {
  text-decoration: none;
  word-wrap: break-word;
}
.wolke a:hover, .wolke a:focus {
  text-decoration: none;
}

.button {
  display: inline-block;
}
.button.block {
  display: block;
}
.button a {
  display: block;
  padding: 0.5rem;
  text-align: center;
  border: 1px solid #74787C;
  text-decoration: none;
  background: none;
  color: #1B2B21;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.button a:hover, .button a:focus {
  border: 1px solid #426a51;
  color: #426a51;
  background: inherit;
}
.button.cta, .ce_text.iconbox p:last-child a.button,
.content-text.iconbox p:last-child a.button {
  position: relative;
  padding: 0.3rem 0.5rem;
  background: url(/files/theme/img/wolke.svg) no-repeat;
  background-size: contain;
  background-position: left;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
  background-color: transparent;
  cursor: pointer;
}
.button.cta:hover, .ce_text.iconbox p:last-child a.button:hover,
.content-text.iconbox p:last-child a.button:hover, .button.cta:focus, .ce_text.iconbox p:last-child a.button:focus,
.content-text.iconbox p:last-child a.button:focus {
  background-position: right;
  background-color: rgba(238, 238, 238, 0.455);
  border-radius: 2em;
}
.button.cta a, .ce_text.iconbox p:last-child a.button a,
.content-text.iconbox p:last-child a.button a {
  text-decoration: none;
  display: inline-block;
}
.button.cta a:hover, .ce_text.iconbox p:last-child a.button a:hover,
.content-text.iconbox p:last-child a.button a:hover, .button.cta a:focus, .ce_text.iconbox p:last-child a.button a:focus,
.content-text.iconbox p:last-child a.button a:focus {
  text-decoration: none;
}
.button.button-hell a {
  background: none;
  color: #fff;
  border-color: #fff;
}
.button.button-hell a:hover, .button.button-hell a:focus {
  border-color: #fff;
  color: #fff;
  background: #943600;
}

.inlinebutton, .ce_text.iconbox p:last-child a,
.content-text.iconbox p:last-child a {
  display: inline-block;
  padding: 0.5rem;
  text-align: center;
  border: 1px solid #1B2B21;
  text-decoration: none;
  background: none;
  color: #1B2B21;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.inlinebutton:hover, .ce_text.iconbox p:last-child a:hover,
.content-text.iconbox p:last-child a:hover, .inlinebutton:focus, .ce_text.iconbox p:last-child a:focus,
.content-text.iconbox p:last-child a:focus {
  border: 1px solid #426a51;
  color: #426a51;
  background: inherit;
}
.inlinebutton.cta, .ce_text.iconbox p:last-child a,
.content-text.iconbox p:last-child a {
  background: #cb8718;
  color: #fff;
  border-color: #fff;
}
.inlinebutton.cta:hover, .ce_text.iconbox p:last-child a:hover,
.content-text.iconbox p:last-child a:hover, .inlinebutton.cta:focus, .ce_text.iconbox p:last-child a:focus,
.content-text.iconbox p:last-child a:focus {
  border-color: #fff;
  color: #fff;
  background: #943600;
}
.inlinebutton.wolke, .ce_text.iconbox p:last-child a.wolke,
.content-text.iconbox p:last-child a.wolke {
  position: relative;
  padding: 0.3rem 0.5rem;
  background: url(/files/theme/img/wolke.svg) no-repeat;
  background-size: contain;
  background-position: left;
  -webkit-transition: all 0.9s linear;
  transition: all 0.9s linear;
  background-color: transparent;
  cursor: pointer;
}
.inlinebutton.wolke:hover, .ce_text.iconbox p:last-child a.wolke:hover,
.content-text.iconbox p:last-child a.wolke:hover, .inlinebutton.wolke:focus, .ce_text.iconbox p:last-child a.wolke:focus,
.content-text.iconbox p:last-child a.wolke:focus {
  background-position: right;
  background-color: rgba(238, 238, 238, 0.455);
  border-radius: 2em;
}

.back {
  position: relative;
  padding: 0.3rem 0.5rem;
  background: url(/files/theme/img/wolke.svg) no-repeat;
  background-size: contain;
  background-position: right;
  -webkit-transition: all 0.9s linear;
  transition: all 0.9s linear;
  background-color: transparent;
  cursor: pointer;
  text-align: right;
}
.back:hover, .back:focus {
  background-position: left;
  background-color: rgba(238, 238, 238, 0.455);
  border-radius: 2em;
  text-decoration: none;
}
.back a {
  text-decoration: none;
}

.ce_swiperStart {
  position: relative;
  line-height: 0;
}
.ce_swiperStart .swiper-pagination .swiper-pagination-bullet {
  height: 12px;
  width: 12px;
  background: rgba(255, 255, 255, 0.7);
  opacity: 1 !important;
}
.ce_swiperStart .swiper-pagination .swiper-pagination-bullet-active {
  background: rgba(148, 54, 0, 0.9);
}
.ce_swiperStart .slider-prev,
.ce_swiperStart .slider-next {
  display: none;
}

.ce_rsce_slider {
  position: relative;
}
.ce_rsce_slider .slidertext {
  position: absolute;
  top: 20%;
  left: 0;
  right: 0;
  text-align: center;
  padding: 2rem 0 2rem 0;
}
@media screen and (min-width: 38.9444444444em) and (max-width: 54.4444444444em) {
  .ce_rsce_slider .slidertext {
    top: 3%;
  }
}
.ce_rsce_slider .sliderheading {
  font-family: "Road Rage", "Saira Condensed", "Arial", "Droid sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(1rem, 5vw, 2rem);
}
.ce_rsce_slider .sliderheading span {
  display: inline-block;
  padding: 0 0.8rem;
  color: #fff;
  text-shadow: 6px 5px 3px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 22.2222222222em) {
  .ce_rsce_slider .sliderheading {
    font-size: 1rem;
  }
}
.ce_rsce_slider .slidersubheading {
  font-family: "Road Rage", "Saira Condensed", "Arial", "Droid sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  text-align: center;
}
@media screen and (max-width: 22.2222222222em) {
  .ce_rsce_slider .slidersubheading {
    font-size: 1.4rem;
  }
}
.ce_rsce_slider .slidersubheading span {
  display: inline-block;
  padding: 0 0.8rem;
  color: #fff;
  text-shadow: 6px 5px 3px rgba(0, 0, 0, 0.25);
}
.ce_rsce_slider .more {
  display: inline-block;
  margin: 1rem auto 0 auto;
  background-color: rgba(238, 238, 238, 0.703);
  border-radius: 2em;
}
.ce_rsce_slider .more a {
  display: inline-block;
  padding: 0.5rem;
  color: rgb(0, 0, 0);
}

.ce_gallery ul,
.content-gallery ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.ce_gallery.center ul,
.content-gallery.center ul {
  justify-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ce_gallery.nogap,
.content-gallery.nogap {
  margin: 0;
  line-height: 0;
}
.ce_gallery.nogap ul,
.content-gallery.nogap ul {
  grid-gap: 0 !important;
}
.ce_gallery.nogap *,
.content-gallery.nogap * {
  line-height: inherit;
}
@supports (grid-area: auto) {
  .ce_gallery.content-gallery--cols-2 ul,
  .content-gallery.content-gallery--cols-2 ul {
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: 1fr 1fr;
  }
  @media screen and (min-width: 36.6666666667em) {
    .ce_gallery.content-gallery--cols-2 ul,
    .content-gallery.content-gallery--cols-2 ul {
      grid-gap: 1.5rem;
      grid-template-columns: 1fr 1fr;
    }
  }
  .ce_gallery.content-gallery--cols-2 ul li,
  .content-gallery.content-gallery--cols-2 ul li {
    margin: 0;
  }
}
@supports (grid-area: auto) {
  .ce_gallery.content-gallery--cols-3 ul,
  .content-gallery.content-gallery--cols-3 ul {
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: 1fr 1fr;
  }
  @media screen and (min-width: 36.6666666667em) {
    .ce_gallery.content-gallery--cols-3 ul,
    .content-gallery.content-gallery--cols-3 ul {
      grid-gap: 1.5rem;
      grid-template-columns: 1fr 1fr 1fr;
    }
  }
  .ce_gallery.content-gallery--cols-3 ul li,
  .content-gallery.content-gallery--cols-3 ul li {
    margin: 0;
  }
}
.ce_gallery.content-gallery--cols-4 ul li,
.content-gallery.content-gallery--cols-4 ul li {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(25% - 1rem);
      flex-basis: calc(25% - 1rem);
  margin: 0 1rem 1rem 0;
}
@supports (grid-area: auto) {
  .ce_gallery.content-gallery--cols-4 ul,
  .content-gallery.content-gallery--cols-4 ul {
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: 1fr 1fr;
  }
  @media screen and (min-width: 36.6666666667em) {
    .ce_gallery.content-gallery--cols-4 ul,
    .content-gallery.content-gallery--cols-4 ul {
      grid-gap: 1.5rem;
      grid-template-columns: 1fr 1fr 1fr 1fr;
    }
  }
  .ce_gallery.content-gallery--cols-4 ul li,
  .content-gallery.content-gallery--cols-4 ul li {
    margin: 0;
  }
}
@supports (grid-area: auto) {
  .ce_gallery.content-gallery--cols-5 ul,
  .content-gallery.content-gallery--cols-5 ul {
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: 1fr 1fr;
  }
  @media screen and (min-width: 36.6666666667em) {
    .ce_gallery.content-gallery--cols-5 ul,
    .content-gallery.content-gallery--cols-5 ul {
      grid-gap: 1.5rem;
      grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    }
  }
  .ce_gallery.content-gallery--cols-5 ul li,
  .content-gallery.content-gallery--cols-5 ul li {
    margin: 0;
  }
}
@supports (grid-area: auto) {
  .ce_gallery.content-gallery--cols-6 ul,
  .content-gallery.content-gallery--cols-6 ul {
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: 1fr 1fr;
  }
  @media screen and (min-width: 36.6666666667em) {
    .ce_gallery.content-gallery--cols-6 ul,
    .content-gallery.content-gallery--cols-6 ul {
      grid-gap: 1.5rem;
      grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    }
  }
  .ce_gallery.content-gallery--cols-6 ul li,
  .content-gallery.content-gallery--cols-6 ul li {
    margin: 0;
  }
}
@supports (grid-area: auto) {
  .ce_gallery.content-gallery--cols-7 ul,
  .content-gallery.content-gallery--cols-7 ul {
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: 1fr 1fr;
  }
  @media screen and (min-width: 36.6666666667em) {
    .ce_gallery.content-gallery--cols-7 ul,
    .content-gallery.content-gallery--cols-7 ul {
      grid-gap: 1.5rem;
      grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }
  }
  .ce_gallery.content-gallery--cols-7 ul li,
  .content-gallery.content-gallery--cols-7 ul li {
    margin: 0;
  }
}
@supports (grid-area: auto) {
  .ce_gallery.content-gallery--cols-8 ul,
  .content-gallery.content-gallery--cols-8 ul {
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: 1fr 1fr;
  }
  @media screen and (min-width: 36.6666666667em) {
    .ce_gallery.content-gallery--cols-8 ul,
    .content-gallery.content-gallery--cols-8 ul {
      grid-gap: 1.5rem;
      grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }
  }
  .ce_gallery.content-gallery--cols-8 ul li,
  .content-gallery.content-gallery--cols-8 ul li {
    margin: 0;
  }
}
@supports (grid-area: auto) {
  .ce_gallery.content-gallery--cols-9 ul,
  .content-gallery.content-gallery--cols-9 ul {
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: 1fr 1fr;
  }
  @media screen and (min-width: 36.6666666667em) {
    .ce_gallery.content-gallery--cols-9 ul,
    .content-gallery.content-gallery--cols-9 ul {
      grid-gap: 1.5rem;
      grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }
  }
  .ce_gallery.content-gallery--cols-9 ul li,
  .content-gallery.content-gallery--cols-9 ul li {
    margin: 0;
  }
}
@supports (grid-area: auto) {
  .ce_gallery.content-gallery--cols-10 ul,
  .content-gallery.content-gallery--cols-10 ul {
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: 1fr 1fr;
  }
  @media screen and (min-width: 36.6666666667em) {
    .ce_gallery.content-gallery--cols-10 ul,
    .content-gallery.content-gallery--cols-10 ul {
      grid-gap: 1.5rem;
      grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }
  }
  .ce_gallery.content-gallery--cols-10 ul li,
  .content-gallery.content-gallery--cols-10 ul li {
    margin: 0;
  }
}
@supports (grid-area: auto) {
  .ce_gallery.content-gallery--cols-11 ul,
  .content-gallery.content-gallery--cols-11 ul {
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: 1fr 1fr;
  }
  @media screen and (min-width: 36.6666666667em) {
    .ce_gallery.content-gallery--cols-11 ul,
    .content-gallery.content-gallery--cols-11 ul {
      grid-gap: 1.5rem;
      grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }
  }
  .ce_gallery.content-gallery--cols-11 ul li,
  .content-gallery.content-gallery--cols-11 ul li {
    margin: 0;
  }
}
@supports (grid-area: auto) {
  .ce_gallery.content-gallery--cols-12 ul,
  .content-gallery.content-gallery--cols-12 ul {
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: 1fr 1fr;
  }
  @media screen and (min-width: 36.6666666667em) {
    .ce_gallery.content-gallery--cols-12 ul,
    .content-gallery.content-gallery--cols-12 ul {
      grid-gap: 1.5rem;
      grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }
  }
  .ce_gallery.content-gallery--cols-12 ul li,
  .content-gallery.content-gallery--cols-12 ul li {
    margin: 0;
  }
}
.ce_gallery ul,
.content-gallery ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.ce_gallery ul li,
.content-gallery ul li {
  max-width: 100%;
}
.ce_gallery ul.cols_2 li,
.content-gallery ul.cols_2 li {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(50% - 1rem);
      flex-basis: calc(50% - 1rem);
  margin: 0 1rem 1rem 0;
}
@supports (grid-area: auto) {
  .ce_gallery ul.cols_2,
  .content-gallery ul.cols_2 {
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: 1fr 1fr;
  }
  @media screen and (min-width: 36.6666666667em) {
    .ce_gallery ul.cols_2,
    .content-gallery ul.cols_2 {
      grid-gap: 1.5rem;
      grid-template-columns: 1fr 1fr;
    }
  }
  .ce_gallery ul.cols_2 li,
  .content-gallery ul.cols_2 li {
    margin: 0;
  }
}
.ce_gallery ul.cols_3 li,
.content-gallery ul.cols_3 li {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(33% - 1rem);
      flex-basis: calc(33% - 1rem);
  margin: 0 1rem 1rem 0;
}
@supports (grid-area: auto) {
  .ce_gallery ul.cols_3,
  .content-gallery ul.cols_3 {
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: 1fr 1fr;
  }
  @media screen and (min-width: 36.6666666667em) {
    .ce_gallery ul.cols_3,
    .content-gallery ul.cols_3 {
      grid-gap: 1.5rem;
      grid-template-columns: 1fr 1fr 1fr;
    }
  }
  .ce_gallery ul.cols_3 li,
  .content-gallery ul.cols_3 li {
    margin: 0;
  }
}
.ce_gallery ul.cols_4 li,
.content-gallery ul.cols_4 li {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(25% - 1rem);
      flex-basis: calc(25% - 1rem);
  margin: 0 1rem 1rem 0;
}
@supports (grid-area: auto) {
  .ce_gallery ul.cols_4,
  .content-gallery ul.cols_4 {
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: 1fr 1fr;
  }
  @media screen and (min-width: 36.6666666667em) {
    .ce_gallery ul.cols_4,
    .content-gallery ul.cols_4 {
      grid-gap: 1.5rem;
      grid-template-columns: 1fr 1fr 1fr 1fr;
    }
  }
  .ce_gallery ul.cols_4 li,
  .content-gallery ul.cols_4 li {
    margin: 0;
  }
}
.ce_gallery ul.cols_5 li,
.content-gallery ul.cols_5 li {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(20% - 1rem);
      flex-basis: calc(20% - 1rem);
  margin: 0 1rem 1rem 0;
}
@supports (grid-area: auto) {
  .ce_gallery ul.cols_5,
  .content-gallery ul.cols_5 {
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: 1fr 1fr;
  }
  @media screen and (min-width: 36.6666666667em) {
    .ce_gallery ul.cols_5,
    .content-gallery ul.cols_5 {
      grid-gap: 1.5rem;
      grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    }
  }
  .ce_gallery ul.cols_5 li,
  .content-gallery ul.cols_5 li {
    margin: 0;
  }
}
.ce_gallery ul.cols_6 li,
.content-gallery ul.cols_6 li {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(16.6666% - 1rem);
      flex-basis: calc(16.6666% - 1rem);
  margin: 0 1rem 1rem 0;
}
@supports (grid-area: auto) {
  .ce_gallery ul.cols_6,
  .content-gallery ul.cols_6 {
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: 1fr 1fr;
  }
  @media screen and (min-width: 36.6666666667em) {
    .ce_gallery ul.cols_6,
    .content-gallery ul.cols_6 {
      grid-gap: 1.5rem;
      grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    }
  }
  .ce_gallery ul.cols_6 li,
  .content-gallery ul.cols_6 li {
    margin: 0;
  }
}
.ce_gallery ul.cols_7 li,
.content-gallery ul.cols_7 li {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(14.28% - 1rem);
      flex-basis: calc(14.28% - 1rem);
  margin: 0 1rem 1rem 0;
}
@supports (grid-area: auto) {
  .ce_gallery ul.cols_7,
  .content-gallery ul.cols_7 {
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: 1fr 1fr;
  }
  @media screen and (min-width: 36.6666666667em) {
    .ce_gallery ul.cols_7,
    .content-gallery ul.cols_7 {
      grid-gap: 1.5rem;
      grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }
  }
  .ce_gallery ul.cols_7 li,
  .content-gallery ul.cols_7 li {
    margin: 0;
  }
}
.ce_gallery ul.cols_8 li,
.content-gallery ul.cols_8 li {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(12.5% - 1rem);
      flex-basis: calc(12.5% - 1rem);
  margin: 0 1rem 1rem 0;
}
@supports (grid-area: auto) {
  .ce_gallery ul.cols_8,
  .content-gallery ul.cols_8 {
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: 1fr 1fr;
  }
  @media screen and (min-width: 36.6666666667em) {
    .ce_gallery ul.cols_8,
    .content-gallery ul.cols_8 {
      grid-gap: 1.5rem;
      grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }
  }
  .ce_gallery ul.cols_8 li,
  .content-gallery ul.cols_8 li {
    margin: 0;
  }
}
.ce_gallery ul.cols_9 li,
.content-gallery ul.cols_9 li {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(11.1111111% - 1rem);
      flex-basis: calc(11.1111111% - 1rem);
  margin: 0 1rem 1rem 0;
}
@supports (grid-area: auto) {
  .ce_gallery ul.cols_9,
  .content-gallery ul.cols_9 {
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: 1fr 1fr;
  }
  @media screen and (min-width: 36.6666666667em) {
    .ce_gallery ul.cols_9,
    .content-gallery ul.cols_9 {
      grid-gap: 1.5rem;
      grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }
  }
  .ce_gallery ul.cols_9 li,
  .content-gallery ul.cols_9 li {
    margin: 0;
  }
}
.ce_gallery ul.cols_10 li,
.content-gallery ul.cols_10 li {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(10% - 1rem);
      flex-basis: calc(10% - 1rem);
  margin: 0 1rem 1rem 0;
}
@supports (grid-area: auto) {
  .ce_gallery ul.cols_10,
  .content-gallery ul.cols_10 {
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: 1fr 1fr;
  }
  @media screen and (min-width: 36.6666666667em) {
    .ce_gallery ul.cols_10,
    .content-gallery ul.cols_10 {
      grid-gap: 1.5rem;
      grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }
  }
  .ce_gallery ul.cols_10 li,
  .content-gallery ul.cols_10 li {
    margin: 0;
  }
}
.ce_gallery ul.cols_11 li,
.content-gallery ul.cols_11 li {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(9.09% - 1rem);
      flex-basis: calc(9.09% - 1rem);
  margin: 0 1rem 1rem 0;
}
@supports (grid-area: auto) {
  .ce_gallery ul.cols_11,
  .content-gallery ul.cols_11 {
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: 1fr 1fr;
  }
  @media screen and (min-width: 36.6666666667em) {
    .ce_gallery ul.cols_11,
    .content-gallery ul.cols_11 {
      grid-gap: 1.5rem;
      grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }
  }
  .ce_gallery ul.cols_11 li,
  .content-gallery ul.cols_11 li {
    margin: 0;
  }
}
.ce_gallery ul.cols_12 li,
.content-gallery ul.cols_12 li {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(8.333331% - 1rem);
      flex-basis: calc(8.333331% - 1rem);
  margin: 0 1rem 1rem 0;
}
@supports (grid-area: auto) {
  .ce_gallery ul.cols_12,
  .content-gallery ul.cols_12 {
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: 1fr 1fr;
  }
  @media screen and (min-width: 36.6666666667em) {
    .ce_gallery ul.cols_12,
    .content-gallery ul.cols_12 {
      grid-gap: 1.5rem;
      grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }
  }
  .ce_gallery ul.cols_12 li,
  .content-gallery ul.cols_12 li {
    margin: 0;
  }
}

.ce_gallery.clickgallery li:not(:first-child),
.content-gallery.clickgallery li:not(:first-child) {
  display: none;
}
.ce_gallery.clickgallery li:first-child,
.content-gallery.clickgallery li:first-child {
  position: relative;
}
.ce_gallery.clickgallery li:first-child picture:after,
.content-gallery.clickgallery li:first-child picture:after {
  content: "";
  display: block;
  height: 30px;
  width: 30px;
  background: url("/files/theme/img/gallery-icon.svg") center center no-repeat;
  background-size: cover;
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.ce_gallery.clickgallery li:first-child:hover picture:after,
.content-gallery.clickgallery li:first-child:hover picture:after {
  height: 40px;
  width: 40px;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 2rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pagination p {
  margin: 0;
  display: none;
}
.pagination ul {
  margin: 0;
}
.pagination li {
  display: inline-block;
  margin-right: 0.3rem;
  margin-bottom: 0.3em;
}
.pagination a,
.pagination .active {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  background: #F2F2F3;
  border: 1px solid #D7D9DA;
  text-align: center;
  text-decoration: none;
  color: #1B2B21;
  line-height: 2.5rem;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.pagination .active {
  background: #56595C;
  border: 1px solid #56595C;
  color: #F2F2F3;
}
.pagination a.next,
.pagination a.previous,
.pagination a.first,
.pagination a.last {
  width: auto;
  padding: 0 0.5em;
}
.pagination a:hover,
.pagination a:focus {
  background: #56595C;
  border: 1px solid #56595C;
  color: #fff;
}

.mod_newslist .ce_text,
.mod_newslist .content-text {
  margin: 0.5rem 0;
}
.mod_newslist h2[itemprop=name] {
  line-height: 1.3;
  color: #612300;
  font-size: 1.3rem;
}
.mod_newslist h2[itemprop=name] a {
  line-height: inherit;
  color: inherit;
}
.mod_newslist .meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mod_newslist .meta .info {
  max-width: 80%;
}
.mod_newslist .categories a:hover img {
  -webkit-filter: invert(20%);
          filter: invert(20%);
}

.layout_latest_startseite [class*=grid_] {
  grid-gap: 0;
}
.layout_latest_startseite .column {
  line-height: 0;
}
.layout_latest_startseite .column.content {
  padding: 2rem;
  position: relative;
}
.layout_latest_startseite .column.content h2 {
  margin-top: 0.8rem;
}
.layout_latest_startseite .column.image figure {
  width: 100%;
}
.layout_latest_startseite .column.image picture {
  line-height: 0;
}
.layout_latest_startseite .column.image a {
  line-height: 0;
}
.layout_latest_startseite .column.image a:hover, .layout_latest_startseite .column.image a:focus {
  background: none;
}
.layout_latest_startseite .info {
  margin: 0;
  font-size: 0.8em;
}
.layout_latest_startseite .imagebox {
  position: relative;
}
.layout_latest_startseite .imagebox .categories {
  position: absolute;
  bottom: 0;
  left: 0;
}
.layout_latest_startseite .imagebox .categories li {
  padding: 0.1rem;
  background: rgba(255, 255, 255, 0.7);
}
.layout_latest_startseite .imagebox .categories li a {
  color: silver;
  text-decoration: none;
}
@media screen and (min-width: 42.6666666667em) {
  .layout_latest_startseite:nth-child(even) .column.image {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.layout_latest_alle_2-2-1 .image-container,
.layout_latest_alle_4-2-1 .image-container {
  position: relative;
}
.layout_latest_alle_2-2-1 .image-container .categories,
.layout_latest_alle_4-2-1 .image-container .categories {
  position: absolute;
  bottom: 0;
  left: 0;
}
.layout_latest_alle_2-2-1 .image-container .categories li,
.layout_latest_alle_4-2-1 .image-container .categories li {
  padding: 0.1rem;
  background: rgba(255, 255, 255, 0.7);
}
.layout_latest_alle_2-2-1 .image-container .categories li a,
.layout_latest_alle_4-2-1 .image-container .categories li a {
  color: silver;
  text-decoration: none;
}
.layout_latest_alle_2-2-1 .info,
.layout_latest_alle_4-2-1 .info {
  margin: 0;
  font-size: 0.8em;
}

.mod_newsreader .layout_full {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.7);
}
.mod_newsreader .layout_full .imagebox {
  position: relative;
}
.mod_newsreader .layout_full .imagebox .categories {
  position: absolute;
  bottom: 0;
  left: 0;
}
.mod_newsreader .layout_full .imagebox .categories li {
  padding: 0.1rem;
  background: rgba(255, 255, 255, 0.7);
}
.mod_newsreader .layout_full .imagebox .categories li a {
  color: silver;
  text-decoration: none;
}
.mod_newsreader .layout_full .info {
  margin: 0;
  font-size: 0.8em;
}
.mod_newsreader .layout_full .ce_cp_grid_start {
  margin-top: 2rem;
}
.mod_newsreader .layout_full .ce_text {
  margin-top: 0;
}
.mod_newsreader .layout_full .blogitem-fazit {
  background-color: rgba(218, 218, 218, 0.5490196078);
  padding: 1rem;
  border-radius: 5px;
}

.more {
  position: relative;
  padding: 0.3rem 0.5rem;
  background: url(/files/theme/img/wolke.svg) no-repeat;
  background-size: contain;
  background-position: left;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
  background-color: transparent;
  cursor: pointer;
}
.more:hover, .more:focus {
  background-position: right;
  background-color: rgba(238, 238, 238, 0.455);
  border-radius: 2em;
}
.more a {
  text-decoration: none;
  display: block;
}
.more a:hover, .more a:focus {
  text-decoration: none;
}
.more.centered {
  display: block;
  text-align: center;
  background: none;
  -webkit-transition: none;
  transition: none;
}
.more.centered a {
  display: inline-block;
  position: relative;
  padding: 0.3rem 0.5rem;
  background: url(/files/theme/img/wolke.svg) no-repeat;
  background-size: contain;
  background-position: left;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
  background-color: transparent;
  cursor: pointer;
}
.more.centered a:hover, .more.centered a:focus {
  background-position: right;
  background-color: rgba(238, 238, 238, 0.455);
  border-radius: 2em;
}

.categories {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.categories li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
}
.categories a {
  display: block;
  padding: 0.2rem;
  text-decoration: none;
}
.categories img {
  max-height: 20px;
  width: 20px;
}

.mod_newscategories_cumulative {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 1rem;
  margin-bottom: 1rem;
}
.mod_newscategories_cumulative ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.mod_newscategories_cumulative li:not(.reset-link) {
  font-size: 0.7rem;
  position: relative;
}
@media screen and (max-width: 44.4444444444em) {
  .mod_newscategories_cumulative li:not(.reset-link) {
    height: 40px;
    width: 40px;
    margin-right: 5px;
    margin-bottom: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .mod_newscategories_cumulative li:not(.reset-link) .name {
    display: none;
  }
}
.mod_newscategories_cumulative li {
  margin: 0 2px 0 0;
}
.mod_newscategories_cumulative li,
.mod_newscategories_cumulative li a {
  display: block;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  border-radius: 0;
}
.mod_newscategories_cumulative li .name,
.mod_newscategories_cumulative li a .name {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.mod_newscategories_cumulative li img,
.mod_newscategories_cumulative li a img {
  height: 20px;
  width: 20px;
}
.mod_newscategories_cumulative li .quantity,
.mod_newscategories_cumulative li a .quantity {
  display: block;
  position: absolute;
  right: -15px;
  top: -15px;
  border: 1px solid #95999D;
  border-radius: 50%;
  height: 20px;
  width: 20px;
  background-color: #fff;
  line-height: 20px;
}
.mod_newscategories_cumulative li.active img,
.mod_newscategories_cumulative li a.active img {
  -webkit-filter: drop-shadow(1px 1px #5da361);
          filter: drop-shadow(1px 1px #5da361);
}
.mod_newscategories_cumulative li {
  border-radius: 3px;
  border: 1px solid silver;
  padding: 0.3rem;
}
.mod_newscategories_cumulative li.active {
  background: rgba(255, 255, 255, 0.2);
}
.mod_newscategories_cumulative strong {
  display: block;
  font-weight: normal;
  font-size: 0.7rem;
}
.mod_newscategories_cumulative p {
  font-size: 0.7rem;
}
@media screen and (max-width: 44.4444444444em) {
  .mod_newscategories_cumulative .inactive-categories {
    padding: 0;
  }
}
.mod_newscategories_cumulative .reset-link {
  padding: 0;
}
.mod_newscategories_cumulative .reset-link a {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: rgb(8, 8, 8);
  color: #cb8718;
  aspect-ratio: 1;
  background: rgba(93, 163, 97, 0.4509803922);
}
.mod_newscategories_cumulative .reset-link a svg {
  height: 100%;
  height: 20px;
  width: 20px;
}
.mod_newscategories_cumulative .reset-link a:hover, .mod_newscategories_cumulative .reset-link a:focus {
  color: #5da361;
}
@media screen and (max-width: 44.4444444444em) {
  .mod_newscategories_cumulative .reset-link {
    height: 40px;
    width: 40px;
    margin-right: 5px;
    margin-bottom: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.catheadline {
  font-size: 1.2rem;
  font-weight: 600;
}

.mod_faqlist ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mod_faqlist li {
  margin: 1rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30%;
          flex: 0 0 30%;
}
.mod_faqlist li.wolke {
  background-size: contain;
}
.mod_faqlist a {
  display: block;
  text-decoration: none;
  text-align: center;
  font-size: 16px;
}

.video_container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  display: block;
}
.video_container:hover {
  cursor: pointer;
}

.video_container iframe,
.video_container object,
.video_container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.review {
  padding: 1rem;
  background: rgba(93, 163, 97, 0.15);
  border-radius: 5px;
}
.review .review-item {
  color: #74787C;
}
.review .review-item .title {
  color: #1B2B21;
  display: inline-block;
  padding-left: 1rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30%;
          flex: 0 0 30%;
  font-size: 14px;
}
.review [class*=leafes-] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.review .values {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 65%;
          flex: 0 0 65%;
  text-align: right;
}
.review .values svg {
  width: 16%;
}
.review .leafes-1 .values svg:nth-child(-n+1) {
  color: #5da361;
}
.review .leafes-2 .values svg:nth-child(-n+2) {
  color: #5da361;
}
.review .leafes-3 .values svg:nth-child(-n+3) {
  color: #5da361;
}
.review .leafes-4 .values svg:nth-child(-n+4) {
  color: #5da361;
}
.review .leafes-5 .values svg:nth-child(-n+5) {
  color: #5da361;
}

.tl_confirm {
  background-color: #4a834d;
  color: #fff;
  padding: 0.3rem;
}

.embed-container,
.content-youtube figure {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  width: 100%;
}
.embed-container.square,
.content-youtube figure.square {
  padding-bottom: 100%;
}
.embed-container.komoot-container,
.content-youtube figure.komoot-container {
  padding-bottom: 600px;
}
.embed-container.komoot-container.profile,
.content-youtube figure.komoot-container.profile {
  padding-bottom: 700px;
}
.embed-container iframe,
.embed-container object,
.embed-container embed,
.content-youtube figure iframe,
.content-youtube figure object,
.content-youtube figure embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.mod_catalogUniversalView.listview.memberview .itemlist {
  margin-top: 2rem;
}
.mod_catalogUniversalView.listview.memberview .itemlist .item {
  margin-top: 2rem;
}
.mod_catalogUniversalView.listview.memberview .member-item-status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  list-style: none;
  padding: 0;
  margin: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid #BDBFC2;
  margin-top: 0.5rem;
}
.mod_catalogUniversalView.listview.memberview .member-item-status li {
  padding-right: 0.3rem;
  margin: 0;
}
.mod_catalogUniversalView.listview.memberview .member-item-status li a {
  height: 32px;
  display: block;
}
.mod_catalogUniversalView.listview.memberview .member-item-status li svg {
  height: 30px;
}
.mod_catalogUniversalView.listview.memberview h3 {
  margin: 0;
}
.mod_catalogUniversalView.listview.memberview .new-operator {
  display: inline-block;
}
.mod_catalogUniversalView.listview.memberview .new-operator a {
  display: block;
  padding: 0.5rem;
  text-align: center;
  border: 1px solid #D7D9DA;
  text-decoration: none;
  background: #fff;
  color: #1B2B21;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 3px;
}
.mod_catalogUniversalView.listview.memberview .new-operator a:hover, .mod_catalogUniversalView.listview.memberview .new-operator a:focus {
  border: 1px solid #426a51;
  color: #fff;
  background: #5da361;
}
.mod_catalogUniversalView.listview.memberview .ctlg_table table {
  background: #F2F2F3;
  -webkit-text-emphasis: left;
          text-emphasis: left;
}
.mod_catalogUniversalView.listview.memberview .ctlg_table tr {
  border-bottom: 1px solid red;
  padding: 0.5rem 0;
}
.mod_catalogUniversalView.listview.memberview .ctlg_table th {
  font-size: 0.8rem;
}
.mod_catalogUniversalView.listview.memberview .ctlg_table th,
.mod_catalogUniversalView.listview.memberview .ctlg_table td {
  padding: 0.2rem 0.4rem;
}
.mod_catalogUniversalView.listview.memberview .ctlg_table td.bb_proofed,
.mod_catalogUniversalView.listview.memberview .ctlg_table td.bb_shown {
  text-align: center;
  position: relative;
  text-indent: -999999px;
}
.mod_catalogUniversalView.listview.memberview .ctlg_table td.bb_proofed:after,
.mod_catalogUniversalView.listview.memberview .ctlg_table td.bb_shown:after {
  content: "✓";
  position: absolute;
  left: 50%;
  top: 40%;
  font-size: 1.4rem;
  text-indent: 0;
}
.mod_catalogUniversalView.listview.memberview .ctlg_table td.bb_proofed:empty:after,
.mod_catalogUniversalView.listview.memberview .ctlg_table td.bb_shown:empty:after {
  content: "X";
}
.mod_catalogUniversalView.listview.memberview .ctlg_table .odd {
  background: #F2F2F3;
}

.video_container[scaleme^="/cookiebar"] {
  display: none;
}
.content-hyperlink.affiliate::before {
  content: "Affiliate-Link";
  font-size: 0.7rem;
  display: block;
}

.contao-cookiebar {
    --ccb-detail-clr: #000;
}

.content-player {
  display: flex;
  justify-content: center;
  padding: 1rem;
  box-sizing: border-box;
}

/* Figure dient als responsiver Rahmen */
.content-player figure {
  width: 100%;
  max-width: 1200px;           /* optional: maximale Breite */
  aspect-ratio: 16 / 9;        /* Seitenverhältnis anpassen, z. B. 4 / 3 */
  position: relative;
  overflow: hidden;
  background: #000;            /* Hintergrund während des Ladens */
  border-radius: 12px;         /* optional, für weiche Ecken */
  margin: 0;                   /* figure default margins entfernen */
}

/* Video füllt den Container aus */
.content-player figure video {
  width: 100%;
  height: 100%;
  object-fit: cover;           /* "cover" füllt den Rahmen, "contain" zeigt alles */
  display: block;
  border: 0;
}
