@charset "UTF-8";
/** 1200px oder schmaler */
/** 992px oder schmaler */
/** 768px oder schmaler */
/** 576px oder schmaler */
/** Breakpoints */
/* Browser zurücksetzen */
* {
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  /* TODO: Sinnvollere Stelle finden */
  text-decoration: none;
}

html {
  font-family: Verdana, Arial, Helvetica, sans-serif;
  background-color: #B22222;
  text-size-adjust: none;
}

.icon {
  fill: #DE6F65;
  height: 2rem;
}

.body {
  background-color: #BBD9A7;
  color: #000000;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
@media screen and (min-width: 48rem) {
  .body {
    max-width: 62rem;
    margin-top: 0.75rem;
    box-shadow: 0 0 1rem #000000;
    border-radius: 0.3rem;
    min-height: auto;
  }
}

.header {
  background-color: #BBD9A7;
  width: 100%;
  border-radius: 0.3rem 0.3rem 0 0;
}

.header__container {
  display: flex;
  flex-direction: column;
  max-width: 75rem;
  margin: 0px auto;
}
.header__container::after {
  display: block;
  clear: both;
  content: "";
}
.header__heading-logo {
  margin-right: 0;
  margin-left: 0;
  padding: 0.1rem 0.2rem;
}

.header__heading {
  background-color: #DDDDDD;
  margin-right: 0;
  margin-left: 0;
  padding: 0.2rem 0.5rem;
}

/*
@media screen and (min-width: $breakpoint-sm) {
    .header__container {
        display: flex;
        flex-direction: column;
        // Freien Platz zwischen den Elementen, bringt die Elemente nach außen.
        justify-content: space-between;
        // Bringt das Menü nach unten.
        align-items: stretch;
    }
}
*/
.section {
  display: flex;
  flex-direction: column;
  flex: 1;
}
@media screen and (min-width: 48rem) {
  .section {
    flex-direction: row;
  }
}

.section__container {
  background-color: #FFFFFF;
  max-width: 75rem;
  margin: 0px auto;
  flex: 1;
}
.section__container::after {
  display: block;
  clear: both;
  content: "";
}
.section__information {
  margin: 0.5rem 0.5rem;
}

.section__heading {
  color: #336699;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.section__heading--info {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  background-color: #BBD9A7;
}

.section__img {
  display: none;
}
@media screen and (min-width: 48rem) {
  .section__img {
    display: block;
    width: 100%;
  }
}

.section__heading-info {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.section__paragraph {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.section__hr {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.section__deco {
  display: none;
}
@media screen and (min-width: 48rem) {
  .section__deco {
    background-image: url(../../additional/pictures/fussabdruckkurz.png);
    display: inline;
  }
}

@media screen and (min-width: 48rem) {
  .section__notice {
    display: none;
  }
}
.section__notice-img {
  height: 1rem;
}

.navigation {
  margin-right: 0;
  margin-left: 0;
}
@media screen and (min-width: 48rem) {
  .navigation {
    position: absolute;
    top: 15rem;
  }
}

.navigation__hackbox-input {
  display: none;
}

.navigation__hackbox-label {
  position: fixed;
  top: 0;
  right: 0;
  cursor: pointer;
  text-align: right;
  display: block;
  background: #DE6F65;
  width: 51px;
  height: 34px;
  border-radius: 2.72px 0 2.72px 2.72px;
}
.navigation__hackbox-input:checked ~ .navigation__hackbox-label {
  border-radius: 0;
}
@media screen and (min-width: 48rem) {
  .navigation__hackbox-label {
    display: none;
  }
}
.section__paragraph > .navigation__hackbox-label {
  position: static;
  width: 25.5px;
  height: 17px;
  border-radius: 2.72px;
}

.navigation__hackbox-line {
  position: absolute;
  left: 6.79999983px;
  height: 2.72px;
  width: 37.40000034px;
  margin: 0;
  background: #000000;
  border-radius: 1.36px;
  display: block;
  transition: 0.5s;
  transform-origin: center;
}
.navigation__hackbox-line:nth-child(1) {
  top: 8.16px;
}
.navigation__hackbox-line:nth-child(2) {
  top: 16.32px;
}
.navigation__hackbox-line:nth-child(3) {
  top: 24.48px;
}
.navigation__hackbox-input:checked + .navigation__hackbox-label .navigation__hackbox-line:nth-child(1) {
  transform: translateY(8.16px) rotate(-45deg);
}
.navigation__hackbox-input:checked + .navigation__hackbox-label .navigation__hackbox-line:nth-child(2) {
  opacity: 0;
}
.navigation__hackbox-input:checked + .navigation__hackbox-label .navigation__hackbox-line:nth-child(3) {
  transform: translateY(-8.16px) rotate(45deg);
}
.section__paragraph > .navigation__hackbox-line {
  position: static;
}

@keyframes translating {
  0% {
    transform: translate(200px, -100px);
  }
  100% {
    top: 34px;
    right: 0;
  }
}
.navigation__list {
  display: none;
  list-style: none inside none;
}
.navigation__hackbox-input:checked ~ .navigation__list {
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  top: 34px;
  right: 0;
  color: #000000;
  background-color: #DE6F65;
  z-index: 10;
  box-shadow: 0 0 1rem #000000;
  border-radius: 0.3rem 0 0.3rem 0.3rem;
  animation: translating 0.5s linear;
}
.navigation__hackbox-input:checked ~ .navigation__list .navigation__list {
  display: block;
}
@media screen and (min-width: 48rem) {
  .navigation__list {
    display: block;
    margin-top: 0;
    margin-bottom: 0;
    border-width: 0;
    padding: 0;
    text-align: center;
    margin-left: 1rem;
  }
}

.navigation__list-item {
  padding-bottom: 0.36rem;
}
@media screen and (min-width: 48rem) {
  .navigation__list-item {
    padding: 0;
    color: #000000;
    padding: 0 0 5px 0;
    margin: 0;
  }
}

.navigation__list-item-link,
.navigation__list2-item-link {
  color: #000000;
  font-size: 1.35rem;
  line-height: 2.244rem;
  padding: 0.66rem 0.924rem;
}
.navigation__list-item-link[aria-current=page],
.navigation__list2-item-link[aria-current=page] {
  color: #000000;
}
@media screen and (min-width: 48rem) {
  .navigation__list-item-link,
.navigation__list2-item-link {
    line-height: normal;
    width: 9.2rem;
    padding: 2px 20px 2px 20px;
    font-size: 1.2rem;
    display: block;
    color: #000000;
    background-color: #D0E4C2;
    border: 1px solid black;
    font-weight: bold;
    text-decoration: none;
    text-align: left;
  }
  .navigation__list-item-link:hover,
.navigation__list2-item-link:hover {
    color: white;
    background-color: #D6463A;
  }
  .navigation__list-item-link[aria-current=page],
.navigation__list2-item-link[aria-current=page] {
    color: white;
    background-color: #DE6F65;
  }
}

.navigation__list2-item-link {
  padding-left: 1.75rem;
}
@media screen and (min-width: 48rem) {
  .navigation__list2-item-link {
    width: 8rem;
  }
}

.footer__container {
  max-width: 75rem;
  margin: 0px auto;
  margin: 0.15rem 0.5rem;
}
.footer__container::after {
  display: block;
  clear: both;
  content: "";
}
.footer__navigation {
  position: fixed;
  bottom: 0.5rem;
  right: 0.5rem;
  z-index: 900;
  transition: opacity 0.25s ease;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 48rem) {
  .footer__navigation {
    position: fixed;
    bottom: 2vh;
    right: 25%;
  }
}

/* Formatierung herausnehmen, da sie auf dem iPad zu einem Link auf dem gesamten Bildschirm wird.
 * Überarbeitung erforderlich.

.index__event {
    background-color: $color-navi-background;
    color: $color-navi-text;
    cursor: pointer;
    position: relative;
}

.index__event-span {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}
*/
.guides__pictures {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  margin: 0 0.5rem;
}
@media screen and (min-width: 48rem) {
  .guides__pictures {
    flex-direction: row;
    justify-content: space-evenly;
  }
}

.guides__pictures-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
@media screen and (min-width: 48rem) {
  .guides__pictures-item {
    flex: 1 1 25%;
    max-width: 23%;
    padding-right: 0.25rem;
  }
}

.guides__pictures-img {
  width: 100%;
}
.guides__pictures-img_small {
  width: 35%;
  vertical-align: top;
}
@media screen and (min-width: 48rem) {
  .guides__pictures-img_small {
    width: 15%;
  }
}

@media screen and (min-width: 48rem) {
  .tours__table {
    display: table;
    border-collapse: collapse;
    margin-top: 0.2rem;
    margin-bottom: 0.2rem;
  }
}

.tours__month {
  background-color: #BBD9A7;
  margin-top: 0.5rem;
}
@media screen and (min-width: 48rem) {
  .tours__month {
    display: table-row;
  }
}

.tours__month-heading {
  border: 0.15rem solid #83BA5F;
  padding: 0.2rem;
  padding-left: 0.35rem;
  background-color: #BBD9A7;
}

.tours__event {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 48rem) {
  .tours__event {
    display: table-row;
    vertical-align: top;
  }
}

.tours__event-date {
  border: 0.15rem solid #83BA5F;
  padding: 0.2rem;
  order: 1;
  flex: 7;
  padding-left: 0.35rem;
  white-space: nowrap;
  background-color: #BBD9A7;
}
@media screen and (min-width: 48rem) {
  .tours__event-date {
    display: table-cell;
    vertical-align: top;
  }
}

.tours__event-descripiton {
  border: 0.15rem solid #83BA5F;
  padding: 0.2rem;
  order: 3;
  flex: auto;
  padding-left: 0.35rem;
  width: 100%;
  margin-bottom: 0.5rem;
  background-color: #BBD9A7;
}
@media screen and (min-width: 48rem) {
  .tours__event-descripiton {
    display: table-cell;
    vertical-align: top;
    order: 2;
  }
}
.tours__event-descripiton > h4 {
  font-style: italic;
}

.tours__event-length, .index__event-info {
  border: 0.15rem solid #83BA5F;
  padding: 0.2rem;
  order: 2;
  flex: 1;
  text-align: right;
  background-color: #BBD9A7;
}
@media screen and (min-width: 48rem) {
  .tours__event-length, .index__event-info {
    display: table-cell;
    vertical-align: top;
    white-space: nowrap;
    order: 3;
  }
}

.tours__event-canceled {
  color: red;
  margin-bottom: 0.5rem;
}

.guide,
.tours__event-information {
  font-weight: bold;
  color: #F09600;
}

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