body,form,figure{margin:0;padding:0}img{border:0}header,footer,nav,section,aside,article,figure,figcaption{display:block}body{font-size:100.01%}select,input,textarea{font-size:99%}#container,.inside{position:relative}#main,#left,#right{float:left;position:relative}#main{width:100%}#left{margin-left:-100%}#right{margin-right:-100%}#footer{clear:both}#main .inside{min-height:1px}.ce_gallery>ul,.content-gallery>ul{margin:0;padding:0;overflow:hidden;list-style:none}.ce_gallery>ul li,.content-gallery>ul li{float:left}.ce_gallery>ul li.col_first,.content-gallery>ul li.col_first{clear:left}.float_left,.media--left>figure{float:left}.float_right,.media--right>figure{float:right}.block{overflow:hidden}.media{display:flow-root}.clear,#clear{height:.1px;font-size:.1px;line-height:.1px;clear:both}.invisible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.custom{display:block}#container:after,.custom:after{content:"";display:table;clear:both}
@media (max-width:767px){#wrapper{margin:0;width:auto}#container{padding-left:0;padding-right:0}#main,#left,#right{float:none;width:auto}#left{right:0;margin-left:0}#right{margin-right:0}}img{max-width:100%;height:auto}.audio_container audio{max-width:100%}.video_container video{max-width:100%;height:auto}.aspect,.responsive{position:relative;height:0}.aspect iframe,.responsive iframe{position:absolute;top:0;left:0;width:100%;height:100%}.aspect--16\:9,.responsive.ratio-169{padding-bottom:56.25%}.aspect--16\:10,.responsive.ratio-1610{padding-bottom:62.5%}.aspect--21\:9,.responsive.ratio-219{padding-bottom:42.8571%}.aspect--4\:3,.responsive.ratio-43{padding-bottom:75%}.aspect--3\:2,.responsive.ratio-32{padding-bottom:66.6666%}
/**
 * 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 */

#colorbox,#cboxOverlay,#cboxWrapper{position:absolute;top:0;left:0;z-index:9999;overflow:hidden;-webkit-transform:translate3d(0,0,0)}#cboxWrapper{max-width:none}#cboxOverlay{position:fixed;width:100%;height:100%}#cboxMiddleLeft,#cboxBottomLeft{clear:left}#cboxContent{position:relative}#cboxLoadedContent{overflow:auto;-webkit-overflow-scrolling:touch}#cboxTitle{margin:0}#cboxLoadingOverlay,#cboxLoadingGraphic{position:absolute;top:0;left:0;width:100%;height:100%}#cboxPrevious,#cboxNext,#cboxClose,#cboxSlideshow{cursor:pointer}.cboxPhoto{float:left;margin:auto;border:0;display:block;max-width:none;-ms-interpolation-mode:bicubic}.cboxIframe{width:100%;height:100%;display:block;border:0;padding:0;margin:0}#colorbox,#cboxContent,#cboxLoadedContent{box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box}#cboxOverlay{background:#000;opacity:.9;filter:alpha(opacity = 90)}#colorbox{outline:0}#cboxContent{margin-top:20px;background:#000}.cboxIframe{background:#fff}#cboxError{padding:50px;border:1px solid #ccc}#cboxLoadedContent{border:5px solid #000;background:#fff}#cboxTitle{position:absolute;top:-20px;left:0;color:#ccc}#cboxCurrent{position:absolute;top:-20px;right:0;color:#ccc}#cboxLoadingGraphic{background:url(../../assets/colorbox/images/loading.gif) no-repeat center center}#cboxPrevious,#cboxNext,#cboxSlideshow,#cboxClose{border:0;padding:0;margin:0;overflow:visible;width:auto;background:0 0}#cboxPrevious:active,#cboxNext:active,#cboxSlideshow:active,#cboxClose:active{outline:0}#cboxSlideshow{position:absolute;top:-20px;right:90px;color:#fff}#cboxPrevious{position:absolute;top:50%;left:5px;margin-top:-32px;background:url(../../assets/colorbox/images/controls.png) no-repeat top left;width:28px;height:65px;text-indent:-9999px}#cboxPrevious:hover{background-position:bottom left}#cboxNext{position:absolute;top:50%;right:5px;margin-top:-32px;background:url(../../assets/colorbox/images/controls.png) no-repeat top right;width:28px;height:65px;text-indent:-9999px}#cboxNext:hover{background-position:bottom right}#cboxClose{position:absolute;top:5px;right:5px;display:block;background:url(../../assets/colorbox/images/controls.png) no-repeat top center;width:38px;height:19px;text-indent:-9999px}#cboxClose:hover{background-position:bottom center}
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */

/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */

html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/**
 * Remove default margin.
 */

body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

audio,
canvas,
progress,
video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */

[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */

/**
 * Remove the gray background color from active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */

a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */

/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */

abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */

b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */

dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */

mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

img {
  border: 0;
  vertical-align: bottom;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address margin not present in IE 8/9 and Safari.
 */

figure {
  margin: 0;
}

/**
 * Address differences between Firefox and other browsers.
 */

hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */

/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */

/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */

button,
input,
optgroup,
select,
textarea {
  color: inherit; /* 1 */
  font: inherit; /* 2 */
  margin: 0; /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */

button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */

button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */

button,
html input[type="button"], /* 1 */
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */

button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */

input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */

input[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box; /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */

fieldset {
  border: none;
  margin: 0;
  padding: 0;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */

legend {
  border: 0; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */

textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */

optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */

/**
 * Remove most spacing between table cells.
 */

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}
/* open-sans-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: 'Open Sans';
  font-style: normal;
  font-weight: normal;
  src: url('../../files/private/fonts/open-sans-v43-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../../files/private/fonts/open-sans-v43-latin-regular.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}

/* open-sans-italic - latin */
@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: normal;
  src: url('../../files/private/fonts/open-sans-v43-latin-italic.woff2') format('woff2'),
       url('../../files/private/fonts/open-sans-v43-latin-italic.ttf') format('truetype');
}

/* open-sans-700 - latin */
@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: bold;
  src: url('../../files/private/fonts/open-sans-v43-latin-700.woff2') format('woff2'),
       url('../../files/private/fonts/open-sans-v43-latin-700.ttf') format('truetype');
}



/* Farben */
html {
    --rot: #cc1e1c;    /*Caritas-Rot*/
    --hellrot: #eb2422;
    --grau: #a7a7a7;
    --hellgrau: #e8eced;
}



/* ALLGEMEIN */

html {
	font-family: 'Open Sans';
	font-style: normal;
	font-size: 17px;
	line-height: 1.4;
	-moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}

p {margin: 0.8em 0;}

a {color: var(--rot); font-weight: bold; text-decoration: none;}
a:hover {color: black;}

h1 {font-size: 2em; margin-top: 0;}
h2 {font-size: 1.2em;}
h3 {}

.content-text ul {margin: 0.5em 0 1.2em;}

#cboxPrevious, #cboxNext {outline: 0;} /*Lightbox*/
.content-youtube {margin: 1em 0;}
iframe {border: none;}

#main, #left, #right {float: none;}

.overflow_visible {overflow: visible;}
.overflow_visible.ce_cp_grid_start > div {overflow: visible;}
.text-align_center {text-align: center;}

.abstand_oben_0 {margin-top: 0;}
.abstand_oben,
.abstand_oben_1 {margin-top: 1em;}
.abstand_oben_2 {margin-top: 2em;}
.abstand_oben_3 {margin-top: 3em;}

.abstand_unten_0 {margin-bottom: 0;}
.abstand_unten,
.abstand_unten_1 {margin-bottom: 1em;}
.abstand_unten_2 {margin-bottom: 2em;}
.abstand_unten_3 {margin-bottom: 3em;}

.linie_oben {border-top: 1px solid var(--tuerkis); margin-top: 3em; padding-top: 3em;}
.linie_unten {border-bottom: 1px solid var(--tuerkis);}

.error {color: red; font-weight: bold;}

[class*="grid_"] > .block {margin-bottom: unset;}

.ce_cp_grid_start {display: block;}
.gap2 .grid_start {gap: 2em;}
.rowgap0 .grid_start {row-gap: 0;}

.minwidth_0 {min-width: 0;}




.logo,
header .inside nav ul.level_1,
#container .inside,
footer .inside nav ul.level_1 {
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 2em;
}



/**** HEADER ****/

header {position: sticky; top: -5.3em; margin-top: 0.6em; z-index: 1;}
.logo {display: grid; grid-template-columns: 1fr auto; margin-bottom: 0.7em;}
.logo .title1 {font-size: 2.6em; line-height: 1.2;}
.logo .title1:hover {color: var(--hellrot);}
.logo .title2 {
	color: var(--rot);
	margin-left: 0.1em;
	max-width: calc(100vw - 18em);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.logo .title2.mobile {display: none;}
.logo-cvbh img {width: 13.5em; margin-top: 0.2em;}


/* Navigation allg */
nav {font-weight: bold; text-transform: uppercase; background: var(--rot);}
nav ul {margin: 0; padding: 0;}
nav li {display: inline-block;}
nav li strong,
nav li a {
	display: block;
	padding: 0.8em;
	border-left: 1px solid var(--rot);
	border-right: 1px solid var(--rot);
}
nav li a {
	color: white;
}
nav li strong {
	color: white;
	border-color: white;
	background: var(--hellrot);
}
nav li a:hover {color: #ffcdcd;}

/* Hauptmenu */
.menu-icon {display: none;}

/* User-Menü */
.usermenu {position: absolute; right: calc(50vw - 650px); margin-top: 0.4em;} 
.usermenu .name {display: inline-block; vertical-align: middle; margin-right: 0.5em; padding-bottom: 2px; font-weight: bold; text-transform: uppercase; color: white;}
.usermenu .icon {display: inline-block; vertical-align: middle; cursor: pointer;}
.usermenu .icon img {filter: brightness(10);}
.usermenu .icon:hover img {filter: brightness(5);}
.usermenu .klapp {display: none; position: absolute; right: 0;}
.usermenu.aufklapp .klapp {display: block;}
.usermenu .klapp a {
	display: block;
	margin-top: 7px;
	padding: 0.6em 1em;
	color: white;
	background: var(--rot);
}
.usermenu .klapp a:hover {background: var(--hellrot);}



/**** INHALT ****/

#container {min-height: calc(100vh - 11.5em);}

#main {padding: 3em 0 5em;}
.content-text li {margin-bottom: 0.2em; line-height: 1.4;}


/* Startseite mit Login-Maske */
.start #container {
	height: calc(100vh - 11.5em);
	max-height: 55em;
	display: grid;
	align-items: end;
	background: url('../../files/private/img/caritasstelle.jpg') no-repeat;
	background-size: cover;
}
.start .mod_article {
	max-width: 30em;
	margin: auto;
	padding: 2em 3em;
	background: #fffc;
	backdrop-filter: blur(6px);
}
.mod_login h2 {text-align: center;}
.mod_login .widget-submit {text-align: right;}

.mod_registrationNotificationCenter form {padding-top: 3em !important;}


/* News Liste */
.mod_newslist .layout_latest {border-bottom: 1px solid var(--grau); margin-bottom: 1em; padding-bottom: 2em;}
.mod_newslist .layout_latest .info {display: grid; grid-template-columns: auto auto auto;}
.mod_newslist .layout_latest .comments img {width: 1.4em;}
.mod_newslist .layout_latest h2 a {color: black;}
.mod_newslist .layout_latest .lang p:last-child::after {content:'...';}



/* Kalender: Liste */

.mod_eventlist .layout_list {
	display: grid;
	grid-template-columns: 4.5em 1fr;
	grid-gap: 2em;
}

.mod_eventlist .box_wrapper {text-align: center;}
.mod_eventlist .box {padding-bottom: 0.6em; border-top: 0.7em solid var(--rot); background: var(--hellgrau);}
  
.mod_eventlist .box .day {font-size: 1.6em; font-weight: bold; line-height: 1.2;}
.mod_eventlist .box .month {font-size: 0.9em; line-height: 1; text-transform: uppercase;}




/* Kalender: Startseite */
.mod_eventlist .layout_upcoming a {
	margin-bottom: 1em;
	display: grid;
	grid-template-columns: 4em 1fr;
	grid-gap: 1em;
	font-weight: normal;
	color: black;
}
.mod_eventlist .layout_upcoming a:hover {color: var(--rot);}
.mod_eventlist .layout_upcoming .box_wrapper {align-content: center;}

.mod_eventlist .layout_upcoming h2 {margin: 0.4em 0 0; font-size: 1rem;}
.mod_eventlist .layout_upcoming .location {margin: 0.3em 0;}

/*
.mod_eventlist .layout_upcoming .location {
	width: 310px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: calc(100vw - 4em);
}
*/


.aktuelles .more {display: block; font-weight: normal; text-align: right;}


/* Kalender: Unterseite "Kalender" */
.mod_eventlist .layout_list {
	border-bottom: 1px solid var(--grau);
	margin-bottom: 1em;
	padding-bottom: 2em;
}
.mod_eventlist .layout_list .box_wrapper {margin-top: 0.5em;}
.mod_eventlist .layout_list .box {padding: 0.3em 0 0.8em;}

.mod_eventlist .layout_list h2 {margin: 0 0 0.6em;}

.mod_eventlist .layout_list .info {display: grid; grid-template-columns: 4.5em 1fr;}
.mod_eventlist .layout_list .info .label {font-weight: bold;}


/* Kalender: Detailansicht */
.mod_eventreader h1 {text-align: center;}
.mod_eventreader .spalten {display: grid; grid-template-columns: 27em 1fr; gap: 0 3em; align-items: start;}
.mod_eventreader .info {display: grid; grid-template-columns: 4.5em 1fr; gap: 0.4em; margin: 1em 0 1.5em; padding: 0.8em 1em; background: var(--hellgrau);}
.mod_eventreader .info .label {font-weight: bold;}


/* Downloads */
.ce_hofff_recursive-download-folder ul.level_1 {padding-left: 0;}

.ce_hofff_recursive-download-folder .formbody {display: grid; grid-template-columns: 1fr 7em; grid-gap: 0 0.5em; max-width: 30em;}
.ce_hofff_recursive-download-folder .formbody .widget-text {display: block;}
.ce_hofff_recursive-download-folder .formbody .widget-submit {margin-top: 0;}
.ce_hofff_recursive-download-folder .formbody .widget-submit button.submit {margin: 0; padding: 0.7em 1.5em;}

li.download-element.folder {margin-bottom: 0.5em; list-style: none;}
li.download-element.folder-open {margin-bottom: 1em;}
li.download-element.folder > ul { margin-top: 0.4em;}
li.download-element.folder a {font-weight: normal; color: black;}
li.download-element.folder a:hover {color: var(--rot);}
li.download-element.folder > a:before,
li.download-element.folder > span:before {
	content: '►';
	width: 1em;
	height: 1em;
	margin: 0 0.3em -0.1em 0;
	display: inline-block;
	line-height: 1;
	transition: 0.5s;
}
li.download-element.folder-open > a:before,
li.download-element.folder-open > a:hover::before {transform: rotate(90deg);}

li.download-element.folder > span:after {content: ' (leer)'; font-weight: normal;}

li.download-element.folder .size {font-size: 0.8em; padding-left: 0.5em;}






/* Buttons */
.button a,
.back a,
button.submit {
	display: inline-block;
	margin: 0.5em 0;
	padding: 0.5em 1.5em;
	color: white;
	font-weight: bold;
	text-transform: uppercase;
	border: 1px solid var(--rot);
	background: var(--rot);	
}
.button a:hover,
.back a:hover,
button.submit:hover {color: var(--rot); background: white;}

.back a {margin-top: 2em;}


/* Rahmen grau */
.rahmen_grau h2 {
	margin-bottom: 0;
	padding: 0.5rem 1.5rem;
	color: white;
	background: var(--rot); 
}
.rahmen_grau > *:not(h2) {
  border: 1px solid var(--grau);
  padding: 0.5em 1.5em 1em;
  background: var(--hellgrau);
}

/* Formular */
form .widget-text,
form .widget-textarea,
form .widget-password {
	display: grid;
	grid-template-columns: 8em auto;
}

form .widget-text label,
form .widget-textarea label,
.mod_login label {
	padding-top: 0.7em;
}
form .widget-text input,
form .widget-textarea textarea,
form .widget-password input {
	width: calc(100% - 1.4em - 2px);
	padding: 0.7em;
	border: 1px solid var(--grau);
	color: black;
	background: white;
}
form .widget-calendar input {width: calc(100% - 6em);}

form .widget-text input,
.mod_login input {margin-bottom: 0.7em;}

form .widget-checkbox {margin: 2em 0 1em;}
form .widget-checkbox legend {font-weight: bold; margin-bottom: 0.5em;}
form .widget-checkbox span {display: block; margin-bottom: 3px;}

form .widget-radio {margin: 2em 0 1em;}
form .widget-radio legend {font-weight: bold; margin-bottom: 0.5em;}
form .widget-radio span {display: block; margin-bottom: 3px;}
form .widget-radio span label {margin-left: 5px;}

form .widget-submit {margin-top: 2em;}


/* Figcaption */
.content-image figure {position: relative;}
.content-image figcaption {position: absolute; bottom: 0; color: white; text-shadow: 0 0 3px black; font-size: 0.7em; right: 3px;}



/**** FOOTER ****/

#footer {background: var(--hellblau);}
#footer .inside {margin: 0 auto;}
footer nav {text-align: right; font-size: 0.8em;}
footer ul {padding: 0; list-style: none;}
footer li {display: inline-block; margin-right: 1em;}
footer li:last-child {margin-right: 0;}
footer li a {color: white;}
footer li a:hover {color: black;}




/*********** RESPONSIV ***********/
/*********** RESPONSIV ***********/
/*********** RESPONSIV ***********/
/*********** RESPONSIV ***********/


/*********** DESKTOP MITTEL ***********/
@media (max-width:1370px) {

.usermenu {right: 2em;}
.usermenu .icon img {width: 36px;}


} /* Ende Desktop breit */



/*********** DESKTOP SCHMAL ***********/
@media (max-width:991px) {

html {font-size: 16px;}

.mod_eventreader .spalten {grid-template-columns: 1fr 1fr;}


} /* Ende Desktop schmal */




/*********** TABLET 1 ***********/
@media (max-width:850px) {

html {font-size: 15px;}

.usermenu .nachname {display: none;}


} /* Ende Tablet 1 */




/*********** MOBIL 1 ***********/
@media (max-width:767px) {

.logos {grid-template-columns: 4fr 5fr; gap: 1em; padding: 1em 0 1.2em;}
.logo {grid-row: 1 / 3;}

.logo .title2.desktop {display: none;}
.logo .title2.mobile {display: block;}

.hauptmenu {}
.hauptmenu a, .hauptmenu strong {padding-left: 0.5rem; padding-right: 0.5rem;}

#container {display: block; margin-top: 0;}
#main .inside {padding-top: 1.5em;}

.mod_newslist img {width: 100%;}
.mod_eventlist {margin-top: 2.5em;}
.mod_eventreader .spalten {grid-template-columns: 1fr;}


} /* Ende Mobil 1 */




/*********** MOBIL 2 ***********/
@media (max-width:650px) {

.logo .title2.mobile {max-width: 157px; text-overflow: clip;}

.usermenu .name {width: 0; padding: 0.1em 0; background: var(--hellrot); overflow: hidden; text-align: right; white-space: nowrap; transition: 1s;}
.usermenu.aufklapp .name {width: 20em; max-width: calc(100vw - 8em); padding: 0.1em 0.5em}
.usermenu .nachname {display: inline-block;}

} /* Ende Mobil 2 */




/*********** MOBIL 3 ***********/
@media (max-width:500px) {

.logo,
header .inside nav ul.level_1,
#container .inside,
footer .inside nav ul.level_1 {padding: 0 1em;}

.logo {grid-template-columns: 1fr 1fr; grid-gap: 0.7em;}
.logo .title {font-size: 3.7vw;}
.logo .title2.mobile {max-width: 39vw;}

.mod_navigation {}
#header .menu-icon {
	display: block;
	width: 1.6em;
	margin: 0.85em 1.1em;
	color: white;
	cursor: pointer;
	transition: 1s;
}
.mod_navigation ul {display: none; padding-top: 1em !important; padding-bottom: 1em !important; font-size: 1.2em; border-bottom: 1px solid white;}
.mod_navigation li {display: block; border-top: 1px solid var(--hellgrau);}
.mod_navigation li:last-child {border-bottom: 1px solid var(--hellgrau);}
.mod_navigation li a,
.mod_navigation li strong {padding: 8px;}

.usermenu {right: 1.1em;}




} /* Ende Mobil 3 */




/*********** MOBIL 4 ***********/
@media (max-width:375px) {
	

} /* Ende Mobil 4 */




/********* TOUCHSCREENS *********/
@media (hover: none) {


} /* Ende Touchscreens */
