@charset "UTF-8";
/* atkinson-hyperlegible-next-300italic - 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: "AtkinsonHyperlegibleNext";
  font-style: italic;
  font-weight: 300;
  src: url("/assets/fonts/atkinson-hyperlegible-next-v7-latin-300italic.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* atkinson-hyperlegible-next-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: "AtkinsonHyperlegibleNext";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/fonts/atkinson-hyperlegible-next-v7-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* atkinson-hyperlegible-next-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "AtkinsonHyperlegibleNext";
  font-style: normal;
  font-weight: 500;
  src: url("/assets/fonts/atkinson-hyperlegible-next-v7-latin-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* atkinson-hyperlegible-next-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "AtkinsonHyperlegibleNext";
  font-style: normal;
  font-weight: 600;
  src: url("/assets/fonts/atkinson-hyperlegible-next-v7-latin-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* atkinson-hyperlegible-next-700 - 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: "AtkinsonHyperlegibleNext";
  font-style: normal;
  font-weight: 700;
  src: url("/assets/fonts/atkinson-hyperlegible-next-v7-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* ================= Anzeige der aktuellen Laufzeitumgebung ================= */
/* --- Base Badge --- */
.env-badge {
  position: fixed;
  right: 16px;
  bottom: 32px;
  z-index: 99999;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  user-select: none;
  cursor: default;
  /* weicher Schatten */
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  /* angenehme Animation bei Hover */
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

/* Icon etwas „badge-mäßiger“ */
.env-badge__icon {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1;
}

/* Hover: minimal anheben */
.env-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
}

/* --- Glass-Optik (Profi) --- */
.env-badge {
  background: rgba(20, 20, 20, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Fallback, falls backdrop-filter nicht greift: immer noch ok */
@supports not ((backdrop-filter: blur(10px)) or (-webkit-backdrop-filter: blur(10px))) {
  .env-badge {
    background: rgba(20, 20, 20, 0.85);
  }
}
/* --- Farbschemata je Umgebung --- */
/* TEST: klar warnend */
.env-badge.test {
  background: linear-gradient(135deg, rgba(198, 40, 40, 0.85), rgba(229, 57, 53, 0.7));
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.env-badge.test .env-badge__icon {
  background: rgba(255, 255, 255, 0.18);
}

/* DEV: warm */
.env-badge.dev {
  background: linear-gradient(135deg, rgba(255, 152, 0, 0.85), rgba(255, 183, 77, 0.65));
  border-color: rgba(0, 0, 0, 0.1);
  color: #1a1a1a;
}

/* Klaus: blau, „edel“ */
.env-badge.klaus {
  background: linear-gradient(135deg, rgba(21, 101, 192, 0.88), rgba(30, 136, 229, 0.65));
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.env-badge.klaus .env-badge__icon {
  background: rgba(255, 255, 255, 0.16);
}

/* --- Subtiler Puls (nur DEV) --- */
@keyframes envSubtlePulse {
  0% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.06);
  }
  100% {
    filter: brightness(1);
  }
}
.env-badge.dev,
.env-badge.klaus {
  animation: envSubtlePulse 4s ease-in-out infinite;
}

/* TEST soll NICHT pulsen (lieber statisch/warnend) */
.env-badge.test {
  animation: none;
}

/* Optional: auf sehr kleinen Screens etwas kompakter */
@media (max-width: 480px) {
  .env-badge {
    right: 10px;
    bottom: 10px;
    padding: 8px 10px;
    border-radius: 12px;
    font-size: 11px;
  }
  .env-badge__icon {
    width: 22px;
    height: 22px;
    border-radius: 9px;
  }
}
.content .form-group {
  position: relative;
  margin-bottom: 16px;
}
.content .form-group label {
  position: absolute;
  color: #005ca9;
  top: 8px;
  left: 16px;
  font-size: 12px;
}
.content .form-group input.text, .content .form-group textarea, .content .form-group input[type=date] {
  border: 1px solid #005ca9;
  border-radius: 8px;
  color: #5e6366;
  background-color: #fff;
  padding: 30px 16px 8px;
  width: 100%;
  font-size: 16px;
  height: 62px;
  appearance: none;
  -webkit-appearance: none;
}
.content .form-group input.text:focus, .content .form-group textarea:focus, .content .form-group input[type=date]:focus {
  box-shadow: 0 0 0 3px rgba(0, 92, 169, 0.15), 0 2px 6px rgba(0, 92, 169, 0.12);
  outline: none !important;
}
.content .form-group textarea {
  height: 148px;
}
.content .btn-wrapper {
  text-align: center;
}
.content .btn-wrapper.right {
  text-align: right;
}
.content .btn-wrapper.right button {
  margin-left: 12px;
}
.content .btn-wrapper {
  margin-bottom: 20px;
}
.content button[type=submit], .content button.button, .content a.button {
  background-color: #005ca9;
  border: 1px solid #005ca9;
  border-radius: 6px;
  color: #fff !important;
  padding: 12px 20px 12px;
  margin-top: 16px;
  transition: 0.4s ease all;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}
.content button[type=submit].back, .content button.button.back, .content a.button.back {
  margin-top: 0;
}
.content button[type=submit].min-width, .content button.button.min-width, .content a.button.min-width {
  min-width: 280px;
}
.content button[type=submit]:hover, .content button.button:hover, .content a.button:hover {
  background-color: #fff;
  color: #005ca9 !important;
}
.content button[type=submit].weiss, .content button.button.weiss, .content a.button.weiss {
  border: 1px solid #005ca9;
  background-color: #fff;
  color: #005ca9 !important;
}
.content button[type=submit].icon, .content button.button.icon, .content a.button.icon {
  padding-right: 68px;
  background-repeat: no-repeat;
  background-position: calc(100% - 7px) center;
}
.content button[type=submit].icon.export, .content button.button.icon.export, .content a.button.icon.export {
  background-image: url(/assets/images/btn-export.svg);
}
.content button[type=submit].icon.speichern, .content button.button.icon.speichern, .content a.button.icon.speichern {
  background-image: url(/assets/images/btn-speichern.svg);
}
.content .error {
  font-size: 14px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  color: #ff3f3f;
  margin: 12px 0 20px;
}
.content .error a {
  color: #ff3f3f !important;
}
.content p.success {
  color: #51ae32;
}
.content .checkbox-widget label,
.content .radio-widget label {
  font-size: 14px;
  line-height: 24px;
}
.content .checkbox-widget.chk-block {
  margin-bottom: 20px;
}
.content .checkbox-widget.chk-block label {
  width: calc(100% - 20px);
}
.content .checkbox-widget input,
.content .radio-widget input {
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.content .checkbox-widget label {
  cursor: pointer;
}
.content .checkbox-widget.readonly {
  cursor: not-allowed;
  opacity: 0.4;
}
.content .checkbox-widget input + label::before,
.content .radio-widget input + label::before {
  width: 24px;
  height: 24px;
  display: block;
  content: "";
  float: left;
  margin-right: 6px;
  background-image: url(/assets/images/checkbox.svg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  pointer-events: none;
}
.content .checkbox-widget input:checked + label::before {
  background-image: url(/assets/images/checkbox-checked.svg);
}

.checkbox-widget.inline {
  display: inline-block;
  margin-right: 16px;
  margin-bottom: 16px;
}

.checkbox-widget.switch {
  background-image: url(/assets/images/chk-switch-background.svg);
  background-repeat: no-repeat;
  background-position: 0 center;
  height: 24px;
  position: relative;
  margin-top: 8px;
}
.checkbox-widget.switch input + label::before {
  float: none;
  position: absolute;
  left: 0;
  top: 2px;
  transition: all 0.4s ease;
  width: 20px;
  height: 20px;
  background-image: url(/assets/images/chk-switch-box.svg);
  pointer-events: none;
}
.checkbox-widget.switch input:checked + label::before {
  left: 20px;
  background-image: url(/assets/images/chk-switch-box-checked.svg);
}
.checkbox-widget.switch input + label {
  padding-left: 56px;
  cursor: pointer;
  width: calc(100% - 56px);
}

.checkbox-list .checkbox-element {
  margin-bottom: 8px;
}

.pflichtfeld {
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #202224;
}

.chosen-container {
  height: 62px;
}
.chosen-container .chosen-single {
  border: 1px solid #005ca9 !important;
  border-radius: 8px;
  color: #5e6366;
  padding: 30px 16px 8px;
  width: 100%;
  font-size: 16px;
  height: 62px;
  background: none !important;
}
.chosen-container .chosen-single div {
  top: calc(50% - 4px);
  right: 20px;
  height: 12px;
}
.chosen-container.chosen-container-active {
  background: #f9f9f9 !important;
}
.chosen-container .chosen-drop {
  border: 1px solid #005ca9 !important;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  overflow: hidden;
}

select.nav-tab-select {
  padding: 9px 18.6px 9px 28.5px;
  border-radius: 17px;
  background-color: #005ca9;
  color: #fff;
  width: 60%;
  appearance: none;
  -webkit-appearance: none;
  background-image: url(/assets/images/select-pfeil-tabnav.svg);
  background-repeat: no-repeat;
  background-position: right 20px center;
  border: none;
  margin-top: 16px;
}

select.no-chosen {
  border: 1px solid #005ca9 !important;
  border-radius: 8px;
  color: #5e6366;
  padding: 30px 16px 8px;
  width: 100%;
  font-size: 16px;
  height: 62px;
  background-color: #fff;
}

select.no-chosen, .kombobox {
  appearance: none;
  -webkit-appearance: none;
  background-image: url(/assets/images/select-pfeil.svg);
  background-repeat: no-repeat;
  background-position: right 20px center;
  padding-right: 40px;
}

.chosen-container-single .chosen-single div {
  transition: 0.1s ease all;
}
.chosen-container-single .chosen-single div b {
  height: 12px;
  width: 14px;
  background-image: url(/assets/images/select-pfeil.svg) !important;
  background-size: contain !important;
  background-position: center center !important;
  background-repeat: no-repeat;
}

.chosen-container-active.chosen-with-drop .chosen-single div {
  transform: rotate(180deg);
}

#main select:focus + .chosen-container-single, #main .chosen-single:focus, #main .chosen-container-active {
  box-shadow: none !important;
}

ul.chosen-results {
  margin: 0 !important;
  padding: 0 !important;
}
ul.chosen-results li.active-result {
  padding: 8px 20px;
}
ul.chosen-results li.active-result.highlighted {
  background: #005ca9 !important;
  color: #fff;
}

.chosen-search-input {
  border: 0.6px solid #d5d5d5;
}

.form-group.pre-select .chosen-container {
  border-radius: 0;
  width: 100% !important;
}
.form-group.pre-select .chosen-container .chosen-single {
  border-radius: 0;
  border: 0.6px solid #d5d5d5 !important;
  background: #fcfdfd !important;
  padding: 21px 16px 27px 32px;
}
.form-group.pre-select .chosen-container .chosen-single > span {
  font-weight: bold;
}
.form-group.pre-select .chosen-container .chosen-drop {
  border: 0.6px solid #d5d5d5 !important;
  border-radius: 0 !important;
}
.form-group.pre-select .chosen-container ul.chosen-results li.active-result {
  padding-left: 32px;
}
.form-group.pre-select .chosen-container .chosen-single div b {
  background-image: url(/assets/images/select-pfeil-preselect.svg) !important;
}
.form-group.pre-select label {
  display: none;
}
@media screen and (max-width: 480px) {
  .form-group.pre-select button {
    max-width: 100%;
  }
  .form-group.pre-select .content button[type=submit].min-width, .form-group.pre-select .content button.button.min-width, .form-group.pre-select .content a.button.min-width {
    min-width: 100%;
  }
}

.chkbox-box {
  border-radius: 6px;
  background-color: rgba(233, 238, 241, 0.5);
  padding: 20px 22px;
  margin-bottom: 30px;
}

select, input, textarea {
  transition: 0.4s ease all;
}
select:disabled, input:disabled, textarea:disabled {
  opacity: 0.5 !important;
}

#nav-main, .nav-main {
  margin-top: 80px;
}
#nav-main ul, .nav-main ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
#nav-main ul li, .nav-main ul li {
  position: relative;
}
#nav-main ul li a, .nav-main ul li a {
  padding: 12px 20px 12px 22px;
  display: block;
  transition: 0.8s ease all;
  border-radius: 6px;
  color: #202224;
  font-size: 15px;
  text-decoration: none;
}
#nav-main ul li a.active, .nav-main ul li a.active {
  background: #005ca9;
  color: #fff !important;
  font-weight: bold;
  padding: 14px 20px 14px 22px;
  height: 50px;
  text-decoration: none !important;
}
#nav-main ul li .nav-aktiv, .nav-main ul li .nav-aktiv {
  position: absolute;
  left: -24px;
  top: 0;
  height: 50px;
  width: 4px;
  background-color: #005ca9;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
#nav-main ul li .nav-hover, .nav-main ul li .nav-hover {
  opacity: 0;
  transition: 0.4s ease all;
  position: absolute;
  left: -24px;
  top: 2px;
  height: 40px;
  width: 4px;
  background-color: #005ca9;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
#nav-main ul li:hover .nav-hover, .nav-main ul li:hover .nav-hover {
  opacity: 1;
}

#nav-foot {
  margin-top: 40px;
}

.nav-tab-select {
  display: none;
}

.nav-tab {
  margin: 20px 0;
}
.nav-tab button {
  color: #202224;
  background: #fff;
  border: 1px solid #202224;
  transition: 0.4s ease all;
  margin-right: 10px;
  margin-top: 8px;
  margin-bottom: 8px;
  padding: 8px 28px;
  font-size: 14px;
  line-height: normal;
  border-radius: 17px;
}
.nav-tab button.active, .nav-tab button:hover {
  color: #fff;
  background: #005ca9;
  border: 1px solid #005ca9;
}
.nav-tab button:last-child {
  margin-right: 0;
}

#tab-content {
  margin-top: 40px;
}

body {
  font-family: "AtkinsonHyperlegibleNext";
  font-size: 18px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.06px;
  text-align: left;
  color: rgba(32, 34, 36, 0.8);
  margin: 0;
  overflow-x: hidden;
  background: rgba(222, 222, 222, 0.3);
}

a, a:hover {
  color: #202224 !important;
  text-decoration: underline;
}

div.invisible {
  display: none;
}

.hover-info {
  cursor: help;
}

.ca-overlay {
  display: none;
}

#logo {
  margin-bottom: 80px;
}

#wrapper {
  display: flex;
  gap: 0;
  min-height: 100vh;
}

#left {
  width: 240px;
  position: fixed;
  padding: 32px 24px;
  background: #fff;
  flex-shrink: 0;
  height: 100vh;
}

#header {
  height: 70px;
  background: #fff;
  width: calc(100% - 240px);
  position: fixed;
  z-index: 20;
}
#header .logo, #header .nav-toggle, #header .nav-drawer {
  display: none;
}
#header .inside {
  padding: 12px 32px;
  text-align: right;
}
#header .inside .logout {
  display: inline-block;
  margin-left: 48px;
  font-size: 15px;
  padding: 12px;
  margin-right: -12px;
  text-decoration: none;
  color: #e9eef1;
}
#header .inside .logout:hover {
  text-decoration: underline;
}
#header .header-name {
  position: absolute;
  top: 12px;
  right: 220px;
}
#header .kuerzel {
  float: left;
  margin-right: 10px;
}
#header .name {
  padding-top: 6px;
  float: left;
  font-size: 12px;
  display: block;
  text-align: left;
}
#header .name strong {
  font-size: 14px;
  display: block;
}

.kuerzel {
  height: 44px;
  width: 44px;
  font-size: 20px;
  line-height: 44px;
  letter-spacing: 1px;
  color: #fff;
  background: #cc1316;
  border-radius: 50%;
  text-align: center;
}

#container {
  background-color: #e9eef1;
  height: calc(100vh - 70px);
  margin-top: 70px;
}
#container h1 {
  padding: 24px 32px;
  font-size: 32px;
  font-weight: 600;
  margin: 0;
}
#container .inside .content {
  background: #fff;
  border-radius: 14px;
  min-height: calc(100vh - 140px);
  margin: 0 32px 32px;
  padding: 40px;
  max-width: 1280px;
}
#container .inside .content .intro {
  font-size: 16px;
}

#main {
  background: #fff;
  flex: 1;
  margin-left: 240px;
}

.block {
  padding: 16px 20px 16px;
  border-radius: 5px;
  margin-bottom: 16px;
  position: relative;
}

.row.margin-top, div.margin-top {
  margin-top: 24px;
}

h1, h2.h1 {
  font-size: 32px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.11px;
  text-align: left;
  color: #202224;
  margin: 0 0 12px;
}

h2 {
  font-size: 16px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  text-align: left;
  margin: 0;
}

.no-margin-bottom {
  margin-bottom: 2px !important;
}

.margin-bottom-40 {
  margin-bottom: 40px;
}

.margin-bottom-20 {
  margin-bottom: 20px;
}

.voransicht {
  border-radius: 6px;
  background-color: #f1ede5;
  color: #202224;
  padding: 12px 24px;
  font-size: 16px;
  margin-top: 16px;
}
.voransicht.aktiv form {
  padding: 32px 0 12px;
}
.voransicht.aktiv {
  opacity: 1 !important;
}
.voransicht.inaktiv {
  opacity: 0.5;
}

button.icon {
  background: none;
  border: none;
  appearance: none;
  -moz-appearance: none;
}
button.icon:focus {
  outline: none;
}
button.icon:focus-visible {
  outline: 2px solid #000;
  outline-offset: 2px;
}

.block h2 {
  font-size: 16px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  text-align: left;
  margin-bottom: 24px;
}

h3 {
  font-size: 16px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.37;
  letter-spacing: 1.28px;
  text-align: left;
  color: #000;
  margin-top: 0;
  margin-bottom: 12px;
}

.opaque {
  font-size: 14px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.37;
  letter-spacing: 1.4px;
  text-align: left;
  color: rgba(0, 0, 0, 0.4);
}

p.opaque {
  margin: -2px 0 0 0;
}

p.last {
  margin-bottom: 0;
}

.block table {
  width: 100%;
  margin: -8px 0 0;
}

.block table tr > td:first-child {
  padding-right: 18px;
  width: 24%;
  background-position: left 4px;
}

.block table tr > td {
  padding-top: 3px;
  padding-bottom: 3px;
}

.block table td {
  /*
    font-size: 18px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.37;
    letter-spacing: 1.44px;
    text-align: left;*/
}

.block.bright table td, dt, dd {
  font-size: 16px;
}

tr.vmiddle td {
  vertical-align: center;
}

dl {
  width: 100%;
}

dt {
  font-weight: bold;
  display: inline-block;
}

dt.first {
  min-width: 128px;
}

dd {
  display: inline-block;
  margin: 0 8px 0 0;
}

dt, dl {
  padding-top: 4px;
  padding-bottom: 4px;
}

dt.strong {
  padding-right: 4px;
}

table td.icon, dt.icon, div.icon strong, strong.icon,
.checkbox-widget.icon {
  padding-left: 22px;
  background-repeat: no-repeat;
  background-position: left center;
  vertical-align: middle;
}

strong.icon {
  display: inline-block;
}

table td.icon.info, div.icon.info {
  padding-left: 22px;
}

dt.icon {
  vertical-align: top;
}

div.icon strong {
  display: block;
}

div.icon {
  line-height: 1.7;
}

table td.icon {
  padding-left: 32px;
}

strong, b, td.strong, .block td.strong {
  font-weight: 600;
}

table td.icon.mitglied {
  background-image: url(/assets/images/icons/mitglied.svg);
}

table td.icon.zeitraum {
  background-image: url(/assets/images/icons/zeitraum.svg);
}

table td.icon.veranstaltung {
  background-image: url(/assets/images/icons/veranstaltung.svg);
}

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

.float-right {
  float: right;
}

div.clear {
  clear: both;
}

a.inactive {
  cursor: not-allowed;
  opacity: 0.2;
}

.block.green table td {
  border-bottom: 8px solid transparent;
}

hr {
  height: 0;
  border: none;
  border-top: 1px solid #005ca9;
  margin: 48px 0 32px;
  opacity: 1 !important;
}

div.error, div.success, .save-error {
  font-weight: bold;
  display: none;
  margin: -20px 0 20px;
}

.save-error {
  display: block;
}

p.veranstaltungsort {
  background-image: url(/assets/images/icons/ort.svg);
  background-repeat: no-repeat;
  background-position: left 4px;
  padding-left: 30px;
}

.icon.info {
  position: relative;
}

div.infobox {
  background-image: url(/assets/images/icons/info.svg);
  background-repeat: no-repeat;
  background-position: center center;
  cursor: help;
  width: 15px;
  height: 15px;
  position: absolute;
  left: 0;
  top: 6px;
}

.block.dark div.infobox {
  background-image: url(/assets/images/icons/info-white.svg);
}

.inv > div.infobox {
  opacity: 0;
}

dt.icon.inv {
  padding-left: 0;
}

.margin-bottom {
  margin-bottom: 32px;
}

dl.further, dl.first-of-further {
  display: inline-block;
  width: auto;
}

.further.margin-left {
  margin-left: 60px;
}

.help {
  cursor: help;
}

#mitgliedsname {
  float: right;
  font-size: 15px;
  margin-top: 12px;
  padding-left: 44px;
  background-image: url(/assets/images/icons/user.svg);
  background-size: 32px;
  background-position: left center;
  background-repeat: no-repeat;
  line-height: 22px;
}

#mitgliedsname a {
  display: block;
}

#mitgliedsname .kennung {
  font-size: 13px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 1.12px;
  text-align: left;
  color: rgba(0, 0, 0, 0.4);
  line-height: 18px;
}

.bold {
  font-weight: bold !important;
}

#mitgliedsname .kennung.bold {
  color: #000;
}

#mitgliedsname a.logout {
  background-image: url(/assets/images/icons/logout.svg);
  background-repeat: no-repeat;
  background-position: left center;
  display: block;
  padding-left: 20px;
  font-size: 13px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 22px;
  letter-spacing: 0.84px;
  text-align: left;
  color: #f18800 !important;
  text-decoration: none;
}

.checkbox-widget, .radio-wrapper {
  transition: all 1s ease;
}

.checkbox-widget.disabled, .radio-wrapper.disabled, #upload.disabled {
  opacity: 0.2;
}

/*
td.small, td.small textarea {
  font-size: 12px !important;
  line-height: 1.3 !important;
}

td.small textarea {
  margin-top: 0;
  height: 400px;
}

#kursaenderung-tbody input.text {
  width: 100%;
}*/
div.success, div.save-error, div.error {
  font-weight: bold;
  color: #fff;
  background: #86BC25;
  padding: 32px 40px 30px 72px;
  background-image: url(/assets/images/icons/success.svg);
  background-repeat: no-repeat;
  background-position: 20px center;
  margin-top: 0;
}

div.success, div.save-error {
  display: block;
}

div.save-error, div.error {
  background: #ff3f3f;
  background-image: url(/assets/images/icons/error.svg);
  background-repeat: no-repeat;
  background-position: 20px center;
}

.float-left {
  float: left;
  max-width: 60%;
  text-align: left;
}

input[type=radio]:focus,
input[type=checkbox]:focus {
  outline: none !important;
}

.btn.icon.upload:focus,
.btn:focus,
.dok-icon:focus,
select:focus + .chosen-container-single, .chosen-single:focus,
.chosen-container-active {
  box-shadow: 3px 3px 2px 1px rgba(0, 0, 0, 0.4) !important;
}

.chosen-container-single .chosen-single {
  padding-left: 14px;
}

.margin-bottom {
  margin-bottom: 40px;
}

div.print-link {
  background-image: url(/assets/images/icons/print.svg);
  background-position: left center;
  background-repeat: no-repeat;
  padding-left: 24px;
  line-height: 28px;
}

a.print-link {
  background-image: url(/assets/images/icons/print.svg);
  width: 28px;
  height: 28px;
  position: absolute;
  top: 16px;
  right: 20px;
  background-position: left center;
  background-repeat: no-repeat;
}

div.right {
  text-align: right;
}

div.margin-light {
  margin-top: 8px;
}

pre {
  margin: 20px 0 !important;
  font-size: 9px;
  background: #f9f9f9;
  border: 1px solid #6a1a21;
  color: #6a1a21;
  border-radius: 6px;
  padding: 8px;
}

.smaller {
  font-size: 12px;
}

h1 + .filter {
  margin-top: 20px;
}

.filter .option {
  /*display: inline-block;*/
  float: left;
  margin-right: 36px;
  width: auto;
}

.filter .SumoSelect {
  width: 100%;
}

div.clear.margin-top {
  padding-top: 24px;
}

div.margin-top-40 {
  margin-top: 40px;
}

.filter.short .option {
  margin-right: 12px;
}

.filter .option:last-child {
  margin-right: 0;
}

.filter .option.short {
  width: 264px;
}

.option.short.suche-halbjahr {
  width: 128px;
}

.filter .option.long {
  width: 600px;
}

.filter div.icon strong {
  padding-left: 0;
}

.filter .col-12 {
  margin-bottom: 12px;
}

.filter .icon.info {
  padding-left: 24px;
}

.filter button#submit {
  margin-top: 6px !important;
}

.filter .icon.info div.infobox {
  top: 24px;
}

.filter .icon.info.padding-top div.infobox {
  top: 6px;
}

#ergebnis {
  transition: 0.4s ease all;
}

#ergebnis.inactive {
  opacity: 0.1;
}

#ergebnis table, table.ergebnis {
  width: 100%;
  border: 0;
}

.tablesorter-header-inner {
  padding-left: 18px;
}

.sorter-false .tablesorter-header-inner {
  padding-left: 0;
}

#ergebnis thead tr th,
table.ergebnis thead tr th,
table.ergebnis tr.pseudo-head td {
  font-weight: 600;
  background-color: #f1ede5 !important;
  background-position: 0 center !important;
  color: #202224;
  padding: 15px 6px;
  border: none !important;
  font-size: 14px;
  text-align: left;
}

#ergebnis thead tr th:first-child,
table.ergebnis thead tr th:first-child,
table.ergebnis tr.pseudo-head td:first-child {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  background-position: 6px center !important;
}
#ergebnis thead tr th:first-child .tablesorter-header-inner,
table.ergebnis thead tr th:first-child .tablesorter-header-inner,
table.ergebnis tr.pseudo-head td:first-child .tablesorter-header-inner {
  padding-left: 30px;
}

#ergebnis tr td:first-child, table.ergebnis tr td:first-child {
  padding-left: 12px;
}

#ergebnis thead tr th:last-child,
table.ergebnis thead tr th:last-child,
table.ergebnis tr.pseudo-head td:last-child {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

#ergebnis thead tr th.tablesorter-header,
table.ergebnis thead tr th.tablesorter-header {
  padding-left: 0;
}

#ergebnis thead tr th.tablesorter-header.sorter-false,
table.ergebnis thead tr th.tablesorter-header.sorter-false {
  padding-left: 0;
}

#ergebnis tr td,
table.ergebnis tr td {
  padding: 24px 6px;
  font-size: 14px;
  border-bottom: solid 0.9px #e0e0e0;
}
#ergebnis tr td.status,
table.ergebnis tr td.status {
  vertical-align: middle;
  padding-top: 2px;
  padding-bottom: 2px;
}
#ergebnis tr td.komma-getrennt .status-text::before,
table.ergebnis tr td.komma-getrennt .status-text::before {
  content: ", ";
}
#ergebnis tr td.komma-getrennt .status-text:first-child::before,
table.ergebnis tr td.komma-getrennt .status-text:first-child::before {
  content: "";
}
#ergebnis tr td.icons,
table.ergebnis tr td.icons {
  vertical-align: middle;
  padding-top: 2px;
  padding-bottom: 2px;
  padding-right: 0 !important;
}

table td.right {
  text-align: right;
  padding-right: 20px !important;
}

#ergebnis td span.inactive,
table.ergebnis td span.inactive {
  opacity: 0.2;
  filter: grayscale(50%);
  display: block;
  text-align: right;
}

td.nowrap {
  white-space: nowrap;
}

.innenflaeche {
  margin-top: 20px;
}

.innenflaeche.statistik {
  padding-left: 0;
}

.innenflaeche h2 {
  margin-bottom: 32px;
}

.innenflaeche dt {
  font-weight: normal;
}

.innenflaeche hr {
  border: none !important;
  height: 0;
  margin: 24px 0;
}

.innenflaeche hr.minimal {
  margin: 12px 0;
}

.innenflaeche .SumoSelect, .innenflaeche select {
  width: 100%;
}

h1.margin-top {
  margin-top: 24px;
}

#ergebnis tr.inaktiv td.name,
#ergebnis tr.inaktiv td.ort,
#ergebnis tr.inaktiv td.themen,
#ergebnis tr.inaktiv td.status {
  opacity: 0.4;
}

.margin-bottom-20 {
  margin-bottom: 20px !important;
}

/*
#ergebnis tr.inaktiv td.name {
  background-image: url(/assets/images/icons/inaktiv.svg);
  background-repeat: no-repeat;
  background-position: 24px 27px;
  padding-left: 48px !important;
  background-size: 18px;
}*/
td.center-content {
  white-space: nowrap;
}

td.center-content img {
  display: inline-block;
  vertical-align: middle;
}

td .table-icon {
  height: 24px;
  line-height: 24px;
  display: block;
  float: left;
  margin-right: 4px;
  background-position: center center;
  background-size: contain;
  width: 24px;
  background-repeat: no-repeat;
  cursor: help;
}

td.nr, th.nr {
  text-align: right;
}

td.filter-link, th.filter-link {
  text-align: center;
}

a.filter-link {
  padding: 6px 8px 6px 28px;
  background-image: url(/assets/images/pfeil-rechts-weiss.svg);
  background-position: 8px center;
  background-repeat: no-repeat;
  color: #fff;
  background-color: #51ae32;
  font-size: 16px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.37;
  letter-spacing: 1.6px;
  display: inline-block;
  margin-top: -6px;
  margin-bottom: -6px;
  text-align: right;
  border-radius: 5px;
}

a.filter-link.gelb {
  background-color: #f08700;
  color: #fff !important;
}

a.filter-link.rot {
  background-color: #ff3e3e;
  color: #fff !important;
}

a.filter-link.blau {
  background-color: #0096BE;
  color: #fff !important;
}

table.ergebnis tr.inactive {
  display: none;
}

div.center {
  text-align: center;
}

td .table-icon.txt {
  width: auto;
}

td .table-icon.kein-nrw {
  width: 32px;
}

td .table-icon.inaktiv {
  width: 20px;
}

.innenflaeche.statistik table tr:nth-child(odd) td {
  background-color: #ffffff;
}

.innenflaeche.statistik table tr:nth-child(even) td {
  background-color: #f9f9f9;
}

#pwd-feld {
  display: none;
}

#pwd-feld.active {
  display: block;
}

.submit-btns-top {
  margin: 20px 0;
}

.submit-btns-top button {
  margin-left: 0;
}

td.icons {
  vertical-align: middle;
  white-space: nowrap;
}

td.icons span.icon {
  margin-left: 4px;
  margin-right: 4px;
  width: 38px;
  display: inline-block;
  text-align: center;
}

.aufklappbar {
  background-image: url(/assets/images/aufklappen.svg);
  background-position: left center;
  background-repeat: no-repeat;
  text-decoration: underline;
  cursor: pointer;
  padding-left: 20px;
}

.aufklappbar.active {
  background-image: url(/assets/images/zuklappen.svg);
  background-position: left 6px;
}

.aufklappbar + div.klappbereich {
  height: 0;
  overflow: hidden;
}

.aufklappbar.active + div.klappbereich {
  height: auto;
  padding: 20px 0;
}

#leeres-ergebnis {
  padding: 20px 0 40px;
}

.kurs #lfdnr {
  width: auto;
}

.filter .option.shorter {
  width: 148px;
}

.filter.eingabe .option {
  margin-top: 12px;
  margin-bottom: 12px;
}

.border-right {
  border-right: 1px solid #ccc;
}

.clickable {
  cursor: pointer;
}

#modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  z-index: 300;
  display: none;
}

#modal .inner {
  background: #fff;
  margin: 0 auto;
  border-radius: 5px;
  padding: 32px;
  min-width: 300px;
  width: 520px;
  max-width: 80%;
  position: relative;
  max-height: 80vh;
  overflow: auto;
}

#modal.news .inner {
  width: 720px;
}

#modal.video .inner {
  width: 80% !important;
}

#modal .inner h1 {
  margin-top: 0;
}

#modal.video .video-element {
  margin-top: 15px;
  margin-bottom: 30px;
}
#modal.video .video-element img {
  max-width: none;
  width: 100%;
}
#modal.video .video-element .title {
  margin: 6px 0 0;
}

#close-modal {
  position: absolute;
  top: 32px;
  right: 32px;
  background-image: url(/assets/images/icons/close-schwarz.svg);
  width: 20px;
  height: 20px;
  background-size: contain;
  cursor: pointer;
  z-index: 4;
}

.ort .submit-btns, .person .submit-btns {
  margin-bottom: 20px;
}

#nav-btn {
  width: 24px;
  position: absolute;
  top: 20px;
  right: 0;
  z-index: 100;
  background-image: url(/assets/images/hamburger.svg);
  background-size: cover;
  cursor: pointer;
  height: 20px;
  display: none;
}

table td.nr, table td.nr a, table td.nr span {
  font-family: "Roboto Mono";
  letter-spacing: 0 !important;
  color: #555;
}

.download .filetype {
  height: 32px;
  background-position: left center;
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  padding-top: 2px;
  padding-left: 36px;
  margin: 6px 0 6px -2px;
}

.empty-result {
  margin-top: 72px;
}

table.ergebnis tr td.border-right, table.ergebnis tr th.border-right {
  border-right: 2px solid #aaa !important;
  padding-right: 18px !important;
}

table.ergebnis tr th:last-child,
table.ergebnis tr td:last-child {
  padding-right: 22px;
}

h2.h1 span {
  font-size: 16px;
}

.table-wrapper {
  overflow-x: auto;
}

.table-outer {
  min-width: 1080px;
}

#erfassungsstatus-outer .table-outer {
  min-width: 740px;
}

body .innenflaeche :invalid {
  border: 1px solid red !important;
}

.rueckmeldung dl > dt,
.pruefung dl > dt {
  padding-top: 4px;
}

.rueckmeldung div.icon strong {
  padding-left: 0;
}

.hidePasswort input {
  opacity: 0;
  position: relative;
  z-index: 0;
  transition: 0.4s ease all;
}

.hidePasswort input.active {
  z-index: 2;
  opacity: 1;
}

.hidePasswort a {
  margin: 15px 0 0;
  font-weight: bold;
  display: block;
}

.hidePasswort a.inactive {
  display: none;
}

.img-kursfreigabe {
  cursor: pointer;
  opacity: 1;
  transition: all 0.4s ease;
}

.img-kursfreigabe.inactive {
  opacity: 0;
}

a.visited img.icon {
  opacity: 1;
  filter: grayscale(100%);
}

a.visited img.icon:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.ui-datepicker .ui-datepicker-title select {
  font-size: 0.7rem !important;
}

.pointer {
  cursor: pointer;
}

@media screen and (max-width: 960px) {
  #left {
    display: none;
  }
  #main {
    margin-left: 0;
  }
  .nav-tab {
    display: none;
  }
  .nav-tab-select {
    display: block;
  }
  #container .inside .content {
    width: auto;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    margin-left: 32px;
    margin-right: 0;
    padding: 32px;
    min-height: calc(100vh - 200px);
  }
  #container h1 {
    font-size: 25px;
    padding: 24px 32px 14px;
  }
  #header {
    height: 80px;
    width: 100%;
  }
  #header .inside {
    padding: 20px 32px;
  }
  #header .logo, #header .hamburger {
    display: block;
  }
  #header .nav-toggle {
    position: absolute;
    right: 32px;
    top: 16px;
    display: block;
  }
  #header a.logout {
    display: none !important;
  }
  #header .header-name {
    display: none;
  }
  /* Toggle Button */
  .nav-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
  }
  .nav-toggle img {
    width: 18px;
    height: 14px;
  }
  /* Overlay */
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 100;
  }
  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  /* Drawer */
  .nav-drawer {
    display: block !important;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 101;
    padding: 24px;
    box-shadow: -4px 0 16px rgba(0, 0, 0, 0.15);
  }
  .nav-drawer .header-name {
    display: block !important;
    position: relative !important;
    top: auto !important;
    right: auto !important;
    margin-bottom: 40px;
  }
  .nav-drawer ul {
    margin-top: 64px !important;
  }
  .nav-main {
    margin-top: 0 !important;
  }
  #header .nav-drawer .logout {
    display: block !important;
    margin-top: 48px;
    font-size: 15px;
    padding: 12px 20px 12px 22px;
  }
  .nav-drawer.active {
    transform: translateX(0);
  }
  /* Close Button */
  .nav-close {
    background: none;
    border: none;
    cursor: pointer;
    display: block;
    margin-left: auto;
    margin-bottom: -12px !important;
    padding: 4px;
  }
  .nav-close img {
    width: 18px;
    height: 18px;
  }
  /* Navigation Links */
  .nav-drawer ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .nav-drawer ul a {
    text-decoration: none;
    display: block;
    padding: 4px 0;
  }
  .nav-drawer ul a:hover {
    color: #000;
  }
  .form-group.pre-select .chosen-container {
    max-width: calc(100vw - 96px);
  }
}
@media screen and (max-width: 767px) {
  .ergebnis td, .ergebnis th {
    font-size: 12px !important;
  }
  .ergebnis .icons img {
    width: 32px;
    height: auto;
  }
  .content button[type=submit], .content button.button, .content a.button {
    font-size: 14px;
    padding: 10px 16px;
    background-size: 24% !important;
  }
  .form-group.pre-select .chosen-container .chosen-single {
    padding-left: 16px;
  }
}
@media screen and (max-width: 540px) {
  #container .inside .content {
    width: calc(100vw - 32px);
  }
  .content .btn-wrapper.right button {
    margin-left: 2px;
  }
}
@media screen and (max-width: 480px) {
  body {
    font-size: 16px;
  }
  h1, h2.h1 {
    font-size: 24px;
  }
  .ergebnis td {
    font-size: 11px !important;
  }
  .ergebnis .icons img {
    width: 32px;
    height: auto;
  }
}
body.mobile .form-group.pre-select label {
  display: block !important;
}
