@font-face {
  font-family: 'Avenir-Medium';
  src: url(https://www.wiltmann.de/typo3conf/ext/wiltmann/Resources/Public/Fonts/webFonts/AvenirLTPro-Medium/font.woff2) format("woff2"), url(https://www.wiltmann.de/typo3conf/ext/wiltmann/Resources/Public/Fonts/webFonts/AvenirLTPro-Medium/font.woff) format("woff");
}
@font-face {
  font-family: 'Avenir-Heavy';
  src: url(https://www.wiltmann.de/typo3conf/ext/wiltmann/Resources/Public/Fonts/webFonts/AvenirLTPro-Heavy/font.woff2) format("woff2"), url(https://www.wiltmann.de/typo3conf/ext/wiltmann/Resources/Public/Fonts/webFonts/AvenirLTPro-Heavy/font.woff) format("woff");
}
@font-face {
  font-family: 'Avenir-Light';
  src: url(https://www.wiltmann.de/typo3conf/ext/wiltmann/Resources/Public/Fonts/webFonts/AvenirLTPro-Light/font.woff2) format("woff2"), url(https://www.wiltmann.de/typo3conf/ext/wiltmann/Resources/Public/Fonts/webFonts/AvenirLTPro-Light/font.woff) format("woff");
}
@font-face {
  font-family: 'Avenir-Book';
  src: url(https://www.wiltmann.de/typo3conf/ext/wiltmann/Resources/Public/Fonts/webFonts/AvenirLTPro-Book/font.woff2) format("woff2"), url(https://www.wiltmann.de/typo3conf/ext/wiltmann/Resources/Public/Fonts/webFonts/AvenirLTPro-Book/font.woff) format("woff");
}
/**
 * adds resets for buttons that are not covered by reset-and-normalize base
 */
[role='button'],
input[type='button'],
input[type='reset'],
input[type='submit'],
button {
  -webkit-appearance: button;
     -moz-appearance: button;
          appearance: button;
  background: none;
  border: 0;
  font: inherit;
  font-size: 100%;
  padding: 0;
  text-align: inherit;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
[role='button']:-moz-focusring,
input[type='button']:-moz-focusring,
input[type='reset']:-moz-focusring,
input[type='submit']:-moz-focusring,
button:-moz-focusring {
  outline: none;
}
[role='button']:focus,
input[type='button']:focus,
input[type='reset']:focus,
input[type='submit']:focus,
button:focus {
  outline: none;
}

/**
 * adds resets for links that are not covered by reset-and-normalize base
 */
a {
  color: inherit;
  text-decoration: none;
}
a:-moz-focusring, a:focus {
  outline: none;
}

/**
 * Based on
 *
 *  - reset.css 2.0 by Eric Meyer
      (public domain)
 *    http://meyerweb.com/eric/tools/css/reset/
 *
 *  - normalize.css 8.0.1 by Nicolas Gallagher and Jonathan Neal
 *    (licensed under MIT)
 *    https://github.com/necolas/normalize.css
 *
 *  - Based on Reboot from Bootstrap 4.2.1
 *    (licensed under MIT)
 *    https://github.com/twbs/bootstrap
 */
/**
 * IE10+ doesn't honor `<meta name='viewport'>` in some cases
 */
@-ms-viewport {
  width: device-width;
}
/**
 * general reset
 */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
main {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

/**
 * HTML5 display-role reset for older browsers
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main,
summary {
  display: block;
}

/**
 * inherit box model for all elements
 */
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

/**
 * html root rules
 * 1. set border-box for inheritance
 * 2. avoid 300ms click delay on touch devices that support the `touch-action`
 *    CSS property
 * 3. Prevent adjustments of font size after orientation changes in IE, on
 *    Windows Phone and iOS.
 * 4. Setting @viewport causes scrollbars to overlap content in IE11 and Edge,
 *    so we force a non-overlapping, non-auto-hiding scrollbar to counteract.
 * 5. Change the default tap highlight to be completely transparent in iOS.
 */
html {
  /* 1 */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 2 */
  /* 3 */
  /* 4 */
  /* 5 */
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

/**
 * body rules
 * 3. Set an explicit initial text-align value so that we can later use the
 *    `inherit` value on things like `<th>` elements.
 */
body {
  text-align: left;
}

/**
 * Lists
 */
ol,
ul {
  list-style: none;
}

/**
 * Quotes
 */
blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

/**
 * Tables
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  caption-side: bottom;
}

/**
 * Table Headers
 * 1. Matches default `<td>` alignment by inheriting from the `<body>`, or the
 *    closest parent with a set `text-align`.
 */
th {
  /* 1 */
  text-align: inherit;
}

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

/**
 * Preformatted Text
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Don't allow content to break outside
 * 3. We have @viewport set which causes scrollbars to overlap content in IE11
 *    and Edge, so we force a non-overlapping, non-auto-hiding scrollbar to
 *    counteract.
 */
pre,
code,
kbd,
samp {
  /* 1 */
  font-family: monospace, monospace;
}

pre {
  /* 2 */
  overflow: auto;
  /* 3 */
  -ms-overflow-style: scrollbar;
}

/**
 * Links
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  /* 1 */
  background-color: transparent;
  /* 2 */
  -webkit-text-decoration-skip: objects;
}

/**
 * 1. Remove the bottom border in Chrome 57- and Firefox 39-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 * 3. Add explicit cursor to indicate changed behavior.
 * 4. Prevent the text-decoration to be skipped.
 */
abbr[title] {
  /* 1 */
  /*border-bottom: none;*/
  cursor: help;
  /* 2 */
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 3 */
  /* 4 */
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

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

/**
 * 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;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

/**
 * Hide SVG overflow in IE
 */
svg:not(:root) {
  overflow: hidden;
}

/**
 * Remove the default `border-radius` that macOS Chrome adds.
 * Details at https://github.com/twbs/bootstrap/issues/24093
 */
button {
  border-radius: 0;
}

/**
 * Work around a Firefox/IE bug where the transparent `button` background
 * results in a loss of the default `button` focus styles.
 * Credit: https://github.com/suitcss/base/
 */
button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

/**
 * form element resets
 * 1. Remove the margin in Firefox and Safari
 * 2. inherit font rules
 */
input,
button,
select,
optgroup,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type='reset'],
[type='submit'],
[type='button'] {
  /* 2 */
  -webkit-appearance: button;
}

/**
 * Remove the default appearance of temporal inputs to avoid a Mobile Safari
 * bug where setting a custom line-height prevents text from being vertically
 * centered within the input.
 * See https://bugs.webkit.org/show_bug.cgi?id=139848
 * and https://github.com/twbs/bootstrap/issues/11266
 */
input[type='date'],
input[type='time'],
input[type='datetime-local'],
input[type='month'] {
  -webkit-appearance: listbox;
}

/**
 * 1. Remove the default vertical scrollbar in IE.
 * 2. Textareas should really only resize vertically so they don't break their
 *    (horizontal) containers.
 */
textarea {
  overflow: auto;
  resize: vertical;
}

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

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

/**
 * Remove the inheritance of word-wrap in Safari.
 * See https://github.com/twbs/bootstrap/issues/24990
 */
select {
  word-wrap: normal;
}

/**
 * Remove inner border and padding from Firefox, but don't restore the outline
 * like Normalize.
 */
button::-moz-focus-inner,
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

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

/**
 * Suppress the focus outline on elements that cannot be accessed via keyboard.
 * This prevents an unwanted focus outline from appearing around elements that
 * might still respond to pointer events.
 * Credit: https://github.com/suitcss/base
 */
[tabindex='-1']:focus {
  outline: 0 !important;
}

/**
 * Browsers set a default `min-width: min-content` on fieldsets,
 * unlike e.g. `<div>`s, which have `min-width: 0` by default.
 * So we reset that to ensure fieldsets behave more like a standard block element.
 * See https://github.com/twbs/bootstrap/issues/12359
 * and https://html.spec.whatwg.org/multipage/#the-fieldset-and-legend-elements
 */
fieldset {
  min-width: 0;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Set display to block for all browsers
 */
legend {
  /* 2 */
  color: inherit;
  /* 3 */
  display: block;
  /* 1 */
  max-width: 100%;
  white-space: normal;
}

/**
 * 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'] {
  /* 1 */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 2 */
  padding: 0;
}

/**
 * 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'] {
  /* 1 */
  -webkit-appearance: textfield;
  /* 2 */
  outline-offset: -2px;
}

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type='search']::-webkit-search-cancel-button,
[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 {
  /* 1 */
  -webkit-appearance: button;
  /* 2 */
  font: inherit;
}

/**
 * Correct element display for output
 */
output {
  display: inline-block;
}

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

[hidden] {
  display: none;
}

/* stylelint-disable */
/****
****  font-family und font-faces
****
 */
/* stylelint-enable */
/*
* Ab hier sind nur noch Funktionen, Mixins, oder Generation von Klassen
*
 */
@font-face {
  font-family: "Source Sans Pro";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("/resources/fonts/source-serif-pro-v10-latin/source-serif-pro-v10-latin-regular.eot");
  /* IE9 Compat Modes */
  src: local(""),url("/resources/fonts/source-serif-pro-v10-latin/source-serif-pro-v10-latin-regular.eot") format("embedded-opentype"),url("/resources/fonts/source-serif-pro-v10-latin/source-serif-pro-v10-latin-regular.woff2") format("woff2"),url("/resources/fonts/source-serif-pro-v10-latin/source-serif-pro-v10-latin-regular.woff") format("woff"),url("/resources/fonts/source-serif-pro-v10-latin/source-serif-pro-v10-latin-regular.ttf") format("ttf"),url("/resources/fonts/source-serif-pro-v10-latin/source-serif-pro-v10-latin-regular.svg#Source Sans Pro") format("svg");
}
@font-face {
  font-family: "Source Sans Pro Semi";
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url("/resources/fonts/source-serif-pro-v10-latin/source-serif-pro-v10-latin-600.eot");
  /* IE9 Compat Modes */
  src: local(""),url("/resources/fonts/source-serif-pro-v10-latin/source-serif-pro-v10-latin-600.eot") format("embedded-opentype"),url("/resources/fonts/source-serif-pro-v10-latin/source-serif-pro-v10-latin-600.woff2") format("woff2"),url("/resources/fonts/source-serif-pro-v10-latin/source-serif-pro-v10-latin-600.woff") format("woff"),url("/resources/fonts/source-serif-pro-v10-latin/source-serif-pro-v10-latin-600.ttf") format("ttf"),url("/resources/fonts/source-serif-pro-v10-latin/source-serif-pro-v10-latin-600.svg#Source Sans Pro Semi") format("svg");
}
.row__inner {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 15px;
  position: relative;
}

.row__inner--sm {
  margin: 0 auto;
  max-width: 750px;
}
@media (min-width: 125em) {
  .row__inner--sm {
    margin: 0 auto;
    max-width: 80%;
  }
}

.row__inner--tw {
  margin: 0 auto;
  max-width: 1500px;
}

.row__inner--lg {
  margin: 0 auto;
  max-width: 750px;
}

/*
.col-1{
  width:span(12);
  @include breakpoint(small){
    width:span(10);
  }
  @include breakpoint(medium){
    width:susy-span(6 of 12);
    width: percentage(2/12);
  }
  @include breakpoint(lg){
    width:span(2);
  }
}*/
/*
* Ab hier sind nur noch Funktionen, Mixins, oder Generation von Klassen
*
 */
*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: "Avenir-Book, sans-serif";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

/*
* Ab hier sind nur noch Funktionen, Mixins, oder Generation von Klassen
*/
:root {
  --color-black: #000000;
}

.c-black {
  color: #000000;
  color: var(--color-black);
}

.bg-black {
  background-color: #000000;
  background-color: var(--color-black);
}

/* Hide for both screenreaders and browsers
css-discuss.incutio.com/wiki/Screenreader_Visibility */
/* Hide only visually, but have it available for screenreaders
www.webaim.org/techniques/css/invisiblecontent/  &  j.mp/visuallyhidden  */
/* Hide visually and from screenreaders, but maintain layout */
.block {
  display: block;
  height: auto;
  width: 100%;
}

body {
  line-height: 1.38;
  font-family: Avenir-Book, sans-serif;
  font-size: min(max(1rem, 0.859375vw), 1.375rem);
  font-size: clamp(1rem, 0.859375vw, 1.375rem);
  font-family: Avenir-Book, Arial;
}
@media (min-width: 125em) {
  body {
    line-height: 1.36;
  }
}
.noclamp body {
  font-size: 16px;
}
@media (min-width: 125em) {
  .noclamp body {
    font-size: 22px;
  }
}

h1 {
  padding-bottom: .75em;
}

.t-h1 {
  line-height: 1.27;
  font-family: Avenir-Heavy, sans-serif;
  font-size: min(max(1.875rem, 1.953125vw), 3.125rem);
  font-size: clamp(1.875rem, 1.953125vw, 3.125rem);
}
@media (min-width: 48em) {
  .t-h1 {
    line-height: 1.16;
  }
}
@media (min-width: 48em) {
  .t-h1 {
    font-size: min(max(3.125rem, 1.953125vw), 3.125rem);
    font-size: clamp(3.125rem, 1.953125vw, 3.125rem);
  }
}
.noclamp .t-h1 {
  font-size: 30px;
}
@media (min-width: 48em) {
  .noclamp .t-h1 {
    font-size: 50px;
  }
}
@media (min-width: 125em) {
  .noclamp .t-h1 {
    font-size: false;
  }
}
.t-h2 {
  padding-bottom: .5em;
  padding-top: 1em;
}
.t-bold {
  font-weight: bold;
}
.t-year {
  line-height: 1.13;
  font-family: Avenir-Light, sans-serif;
  font-size: min(max(3.75rem, 3.515625vw), 5.625rem);
  font-size: clamp(3.75rem, 3.515625vw, 5.625rem);
  color: #e42313;
}
@media (min-width: 48em) {
  .t-year {
    line-height: 1.07;
  }
}
@media (min-width: 48em) {
  .t-year {
    font-size: min(max(5.625rem, 3.515625vw), 5.625rem);
    font-size: clamp(5.625rem, 3.515625vw, 5.625rem);
  }
}
.noclamp .t-year {
  font-size: 60px;
}
@media (min-width: 48em) {
  .noclamp .t-year {
    font-size: 90px;
  }
}
@media (min-width: 125em) {
  .noclamp .t-year {
    font-size: false;
  }
}

.main {
  margin: 0 auto;
  max-width: 1200px;
  width: 80%;
}

.header img {
  display: block;
  width: 100%;
  margin: 0 auto;
}

.btn {
  width: auto;
}

.logout {
  background: red;
  border: 1px solid red;
  color: white;
  cursor: pointer;
  display: inline-block;
  margin: 2em 0;
  padding: .25em;
}
.logout:hover, .logout:focus {
  background: white;
  color: red;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

.event {
  padding-bottom: 5em;
  position: relative;
}
@media (min-width: 48em) {
  .event {
    top: -1em;
  }
}
@media (min-width: 125em) {
  .event {
    top: -4em;
  }
}
.event__content {
  padding-bottom: 1em;
}
.event__teilnehmerliste {
  padding-top: 1em;
}
.event__weitere-teilnehmer {
  list-style: decimal;
  padding-bottom: 1em;
}
.event__weitere-teilnehmer li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: .35em;
}
.event__weitere-teilnehmer li:nth-child(odd) {
  background: #eee;
}
.event__remove {
  background: red;
  border: 1px solid red;
  color: white;
  cursor: pointer;
  display: inline-block;
  padding: .25em;
}
.event__remove:hover, .event__remove:focus {
  background: white;
  color: red;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}
.event form div.field {
  padding-bottom: 1em;
}
.event form input.text {
  border: 1px solid #eee;
  min-width: 300px;
  padding: .25em;
}
.event form input.action {
  background: green;
  border: 1px solid green;
  color: white;
  cursor: pointer;
  padding: .25em .5em .25em;
}
.event form input.action:hover, .event form input.action:focus {
  background: white;
  color: green;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

/*
.ei11 {
}
 */

/*# sourceMappingURL=screen.css.map */