h1, h2, h3, h4, h5, h6 {
  font-family: "Signika", sans-serif;
  color: rgb(2, 45, 29);
}

h1 {
  font-size: 2.2rem;
}

h2 {
  font-size: 1.75rem;
}

h3 {
  font-size: 1.5rem;
}

.highlighted {
  color: red !important;
  font-size: 1.25rem !important;
}

html {
  font-size: 16px;
}
@media screen and (max-width: 850px) {
  html {
    font-size: 14px;
  }
}

body, p, a {
  font-family: "Lato", sans-serif;
  color: rgb(2, 45, 29);
}

#background {
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 500px;
}

#prefooter {
  background-image: url("../img/footer.png");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: contain;
  height: 290px;
}

#content .alert {
  border: none;
  margin-bottom: 1.25rem;
  margin-top: 0;
  border-left: 1px solid;
  padding: 0.7rem;
  border-radius: 0;
  background-image: none;
}
#content .alert-warning {
  color: #96830C;
  background-color: #FFFEE0;
  border-color: #F7F700;
}
#content .alert-success {
  color: #356635;
  background-color: #cde0c4;
  border-color: #8ac38b;
}
#content .alert-danger {
  color: #ff0000;
  background-color: #ffdddd;
  border-color: #ed4337;
}
#content [data-title]:hover:after {
  visibility: visible;
}
#content [data-title]:after {
  content: attr(data-title);
  background-color: #1a1a1a;
  color: #ffffff;
  font-size: 10px;
  position: absolute;
  padding: 4px 8px 4px 8px;
  visibility: hidden;
  margin-right: 20px;
  border-radius: 3px;
  right: 0;
  z-index: 1000;
}
#content a {
  color: rgb(2, 45, 29);
  text-decoration: none;
}
#content a:hover:not(.icon):not(.btn):not(.btn-small) {
  text-decoration: underline;
}
#content a.delete {
  color: red;
}
#content a.info {
  color: #17a2b8;
}
#content hr {
  border-top: 1px dotted #536346;
  margin-bottom: 1.5rem;
}
#content hr.solid {
  border-top-style: solid;
}
#content .show {
  display: block;
}
#content .hide {
  display: none;
}
#content #aside a.btn {
  display: block;
  background-color: rgb(2, 55, 35);
  color: white;
  width: 100%;
  margin: 0.7rem 0 0 0;
  padding: 0.2rem 1rem;
  font-family: "Signika", sans-serif;
}
#content #aside a.btn:hover {
  text-decoration: none;
  font-family: "Signika", sans-serif;
}
#content form label {
  width: 100%;
}
#content form label span:not([class^=note-]), #content form label span:not([class^=select2-]) {
  display: block;
  padding-left: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgb(2, 55, 35);
  font-size: 0.9rem;
}
#content form input:not(.btn):not([type=radio]), #content form select, #content form textarea {
  background: rgba(0, 0, 0, 0.1);
  border: 1px solid white;
  color: rgb(2, 55, 35);
  width: 100%;
  outline: none;
  border-radius: 4px;
  padding: 0.5rem 1rem;
}
#content form input:not(.btn):not([type=radio]) {
  box-sizing: border-box;
  transition: 0.3s ease;
}
#content form input:not(.btn):not([type=radio]):disabled {
  cursor: not-allowed;
}
#content form select {
  cursor: pointer;
  padding: 0.5rem 0.8rem;
  height: 40px;
}
#content form select option {
  color: #777777;
}
#content form input[type=checkbox].checkbox {
  position: absolute;
  z-index: -1000;
  left: -1000px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}
#content form input[type=checkbox].checkbox + label.checkbox {
  padding-left: 3rem;
  min-height: 30px;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: 0 0;
  vertical-align: middle;
  cursor: pointer;
}
#content form input[type=checkbox].checkbox:checked + label.checkbox {
  background-image: url("/img/checkbox-checked.png");
}
#content form input[type=checkbox].input-error + label.checkbox,
#content form input[type=checkbox].input-error + label.checkbox p {
  color: red !important;
}
#content form label.checkbox + ul {
  display: none;
}
#content form label.checkbox {
  background-image: url("/img/checkbox-unchecked.png");
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
#content form .radio fieldset {
  margin: 7px 0;
}
#content form .radio fieldset label {
  margin-left: 20px;
  margin-right: 20px;
  width: auto;
  float: right;
}
#content form .radio fieldset label:first-child {
  margin-right: 0;
}
#content form .radio fieldset legend {
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #555555;
  font-size: 0.9rem;
  float: left;
  width: auto;
}
#content form .input-error {
  border: 1px solid red !important;
}
#content form div.event-error {
  display: none;
}
#content form .select2 {
  background: rgba(0, 0, 0, 0.1);
  border: 1px solid white;
  color: #023723;
  width: 100%;
  outline: none;
  border-radius: 4px;
  padding: 5px 5px 5px 1px;
  cursor: pointer;
  height: 40px;
}
#content form .select2-container--default .select2-selection--single {
  background-color: transparent !important;
  border: none !important;
}
#content form .select2-selection__rendered {
  text-transform: none !important;
  color: black !important;
  font-size: 14px !important;
}
#content form .select2-selection__arrow {
  margin-top: 5px !important;
}
#content form ul {
  list-style: none;
  padding: 0 1rem;
  margin-bottom: 0;
}
#content form ul > li {
  color: red;
  font-size: 0.8rem;
}
#content form button.dropdown-toggle::after {
  display: none;
}
#content form .note-editing-area {
  font-family: "Lato", sans-serif;
}
#content form .note-editing-area ul {
  list-style-type: disc;
  margin-top: 0;
  margin-bottom: 1rem;
}
#content form .note-editing-area ul > li {
  color: rgb(2, 55, 35);
  font-size: 1rem;
}
#content .desktop {
  display: block;
}
@media screen and (max-width: 768px) {
  #content .desktop {
    display: none;
  }
}
#content .mobile {
  display: none;
}
@media screen and (max-width: 768px) {
  #content .mobile {
    display: block;
  }
}
#content .mobile-inline {
  display: none;
}
@media screen and (max-width: 768px) {
  #content .mobile-inline {
    display: inline-block;
  }
}
#content .btn {
  color: white;
  background-color: rgb(2, 55, 35);
  border-radius: 2px;
  border: 1px solid rgb(2, 55, 35);
  padding: 5px 15px;
  transition: all ease-in-out 0.3s;
}
#content .btn:hover {
  color: rgb(2, 45, 29);
  background-color: white;
}
#content .btn-small {
  color: white;
  background-color: rgb(2, 55, 35);
  border-radius: 2px;
  border: 1px solid rgb(2, 55, 35);
  height: 1.5rem;
  padding: 0.1rem 1rem;
  font-size: 0.75rem;
  transition: all ease-in-out 0.3s;
}
#content .btn-small:hover {
  color: rgb(2, 45, 29);
  background-color: white;
}
#content table {
  width: 100%;
}
#content table.table-sm tr.deleted {
  background-color: #FFCCCC;
}
#content table.table-sm tr th {
  padding: 0.3em;
  font-size: 0.9em;
}
#content table.table-sm tr td {
  padding: 0.3em;
  font-size: 0.9em;
}
#content table .icon {
  margin-left: 2px;
  position: relative;
}
#content table .badge-finished {
  background-color: #5BDA78;
}
#content table .badge-success, #content table .badge-info, #content table .badge-finished {
  color: #000000;
}
#content .detail h2 {
  display: table;
  white-space: nowrap;
}
#content .detail h2:before, #content .detail h2:after {
  border-top: 1px solid rgb(2, 45, 29);
  content: "";
  display: table-cell;
  position: relative;
  top: 0.5em;
  width: 45%;
}
#content .detail h2:before {
  right: 1.5%;
}
#content .detail h2:after {
  left: 1.5%;
}
#content .pagination-nav {
  text-align: center;
}
#content nav ul.pagination {
  display: inline-block;
}
#content nav ul.pagination li {
  padding: 0 2px;
  display: inline-block;
}
#content span.label {
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #023723;
  font-size: 0.9rem;
}

.hamburger {
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
.hamburger .line {
  opacity: 1;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.line:nth-child(1) {
  transform-origin: left center;
}

.line:nth-child(2) {
  transform-origin: left center;
}

.line:nth-child(3) {
  transform-origin: left center;
}

.hamburger.open .line:nth-child(1) {
  transform: rotate(45deg);
}

.hamburger.open .line:nth-child(2) {
  width: 0%;
  opacity: 0;
}

.hamburger.open .line:nth-child(3) {
  transform: rotate(-45deg);
}

#nav {
  background-color: rgba(2, 55, 35, 0.8);
  color: white;
  width: 100%;
  margin: 0 auto;
  position: fixed;
  z-index: 1000;
  height: 3.625rem;
  font-size: 1.2rem;
}
#nav .hamburger {
  display: none;
}
#nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#nav ul li {
  padding: 0.9rem 2rem 0.9rem 0;
  float: left;
}
#nav ul li a {
  font-family: "Signika", sans-serif;
  color: white;
}
#nav ul li a:hover {
  font-family: "Signika", sans-serif;
  text-decoration: none;
}
#nav a:hover {
  text-decoration: none;
  color: white;
  font-family: "Signika", sans-serif;
}
#nav a.button {
  float: right;
  display: block;
  background-color: white;
  color: rgb(2, 45, 29);
  margin: 0.7rem 0 0 0;
  padding: 0.2rem 1rem;
  font-family: "Signika", sans-serif;
}
#nav a.button:hover {
  color: rgb(2, 45, 29);
}
#nav #language {
  padding: 0.9rem 2rem;
  text-align: right;
  display: inline-block;
  float: right;
}
#nav #language a {
  font-size: 1rem;
  color: white;
}
#nav #language a:hover {
  text-decoration: underline;
  font-weight: initial;
  font-family: "Lato", sans-serif;
}

@media screen and (max-width: 1200px) {
  #nav nav {
    display: none;
    background-color: rgba(2, 55, 35, 0.8);
    margin: 0;
    position: absolute;
    top: 3.625rem;
    right: 0;
    padding: 0 2rem 1.5rem 2rem;
  }
  #nav nav ul {
    padding: 0;
    margin: 1rem 0.5rem;
  }
  #nav nav ul li {
    float: none;
    display: block;
    padding: 0;
    margin: 0 0 0.6rem 0;
    height: auto;
  }
  #nav nav .main-nav .button {
    display: block;
    padding: 0.4rem 0.8rem 0 0.8rem;
    margin: 0;
    color: #022d1d;
    float: none;
    text-align: center;
  }
  .hamburger {
    float: right;
    display: block !important;
    margin-top: 0.4375rem;
    padding: 0.5rem 1rem;
    position: relative;
    cursor: pointer;
  }
  .line {
    width: 1.6rem;
    height: 0.25rem;
    background-color: white;
    display: block;
    margin: 0.32rem auto;
  }
}
@media screen and (max-width: 1000px) {
  .container, .container-md, .container-sm {
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .nbsp {
    display: none;
  }
  #background {
    min-height: 300px;
  }
}
#aside {
  margin-top: 2rem;
}
#aside ul {
  list-style: none;
}
#aside ul li a {
  color: rgb(2, 45, 29);
  margin-top: 0.1rem !important;
}
#aside ul li a:hover, #aside ul li a.active {
  text-decoration: none;
  color: white;
}

.card {
  border: 1px solid rgb(2, 55, 35);
  border-radius: 0.5rem;
  padding: 0.75rem;
}

article {
  padding: 1.25rem 1.25rem 0.5rem 1.25rem;
  margin-bottom: 2rem;
  margin-top: 1.5rem;
  border: 2px solid rgb(2, 55, 35);
  background-color: #e7e7e7;
}

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  width: 100%;
  height: auto;
}
.embed-container iframe {
  position: absolute;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 900px) {
  .hr-ueberuns {
    visibility: hidden;
  }
}

@media screen and (max-width: 900px) {
  .vorstand tr {
    display: block;
    margin-bottom: 20px;
    border-bottom: 1px solid #dddddd;
  }
}
.vorstand tr th {
  padding: 5px;
}
@media screen and (max-width: 900px) {
  .vorstand tr th {
    display: none;
  }
}
.vorstand tr td {
  padding: 5px;
}
@media screen and (max-width: 900px) {
  .vorstand tr td {
    display: block;
    border: none;
    border-bottom: 1px solid #dddddd;
    position: relative;
    padding-left: 25% !important;
    min-height: 33px;
  }
  .vorstand tr td:before {
    position: absolute;
    top: 5px;
    left: 6px;
    width: 25%;
    padding-right: 10px;
    white-space: nowrap;
    content: attr(data-content);
    font-weight: bold;
  }
}

#footer {
  background-color: rgb(2, 55, 35);
  color: white !important;
}
#footer a {
  color: white !important;
}
#footer p {
  color: white !important;
}
#footer ul {
  list-style: none;
}

@media screen and (max-width: 574px) {
  #background {
    min-height: 225px;
  }
  #aside {
    margin-top: 2rem;
  }
  #aside div {
    text-align: center;
  }
  #aside p img {
    width: 75% !important;
  }
  .div-step1 {
    height: 2.31rem !important;
    margin-bottom: 15rem;
  }
  #footer ul li, #footer p {
    text-align: center !important;
  }
  #footer img {
    margin: 0 !important;
  }
  #footer ul {
    padding: 0;
  }
}
.table-downloads tr {
  border: 1px solid #dddddd;
}
.table-downloads td {
  padding: 5px;
}

.payment-symbol {
  height: auto;
  width: 5rem;
  border: 1px solid #dddddd;
  margin-right: 5px;
}

/** for Lightbox */
.lb-nav a.lb-prev {
  background-image: url("/img/lightbox/prev.png");
}

.lb-nav a.lb-next {
  background-image: url("/img/lightbox/next.png");
}

.lb-data .lb-close {
  background-image: url("/img/lightbox/close.png");
}

.lb-cancel {
  background-image: url("/img/lightbox/loading.gif");
}

/** for Google Maps Labels **/
.googleMapsLabel {
  font-family: "Signika", sans-serif;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 0.1rem;
  border-radius: 0.2rem;
}

/** for Fullcalendar **/
.eventManagement .fc-daygrid-dot-event, .calendarPopup .fc-daygrid-dot-event {
  cursor: pointer;
}

.fc-event.exclusive .fc-daygrid-event-dot, .fc-event.exclusive .fc-list-event-dot {
  border-color: #ed4337;
}

.fc-event.non-exclusive .fc-daygrid-event-dot, .fc-event.non-exclusive .fc-list-event-dot {
  border-color: rgb(2, 55, 35);
}

.eventManagement .fc-event.has-assignments .fc-event-title {
  background-color: rgb(227, 227, 227);
  border-radius: 3px !important;
}

.fc-daygrid-event .fc-event-title {
  float: left;
  white-space: normal !important;
  margin: 0 4px !important;
  padding: 0 4px !important;
}

.fc-daygrid-event-harness:before {
  content: none !important;
}

.fc-daygrid-dot-event {
  display: inline !important;
}

.fc-daygrid-event-dot {
  float: left;
  margin-top: 6px !important;
}

.fc-event-time {
  float: left;
}/*# sourceMappingURL=style.css.map */