@charset "UTF-8";
/* Braun */
/* Grün */
/* Rot */
@import 'normalize.css';
/* Gebrauch von Mixins:    
    @include border;
*/
/*
------------------------------------------------------------------
functions, mixins
------------------------------------------------------------------
*/
/*
------------------------------------------------------------------
general styling
------------------------------------------------------------------
*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*html {
    overflow-y: scroll;
}*/
html, body {
  font-family: "Catamaran", sans-serif;
  height: 100%;
  position: relative;
  margin: 0;
  padding: 0;
  background-color: #dbc9c0;
}

.float_left, .align_left {
  float: left;
}

.float_right, .align_right {
  float: right;
}

.zentriert, .align_center {
  text-align: center;
}

.clear, #clear {
  height: 0.1px;
  font-size: 0.1px;
  line-height: 0.1px;
  clear: both;
}

.invisible {
  width: 0;
  height: 0;
  left: -1000px;
  top: -1000px;
  position: absolute;
  overflow: hidden;
}

/*
------------------------------------------------------------------
structure
------------------------------------------------------------------
*/
main {
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.4);
  position: relative;
  margin: 0 auto; /* standardkonforme horizontale Zentrierung */
  width: 100%;
  max-width: 980px;
  min-width: 220px;
  background-color: white;
}
.main_content, footer {
  padding: 0 25px 0 50px;
}
@media (max-width: 750px) {
  .main_content, footer {
    padding: 0 12.5px 0 25px;
  }
}

.content {
  float: left;
  max-width: 720px;
  width: calc(100% - 210px);
  padding-right: 50px;
}
@media (max-width: 750px) {
  .content {
    float: none;
    width: 100%;
    padding: 0;
  }
}

aside#right {
  font-size: 0.9rem;
  line-height: 1.35rem;
  float: right;
  width: 210px;
}
@media (max-width: 750px) {
  aside#right {
    float: none;
    width: 100%;
    margin-top: 40px;
  }
}
aside#right .info a {
  border: none;
}
aside#right .info p ~ h2, aside#right .info p ~ h3, aside#right .info p ~ h4, aside#right .info p ~ .ui-accordion-header {
  margin-top: -20px;
}

header, footer {
  /*@include border;*/
  margin: 0 auto;
  text-align: center;
}

header {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  height: auto;
  width: 90vw;
  padding-top: 10px;
  max-width: 280px;
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 510px) {
  header {
    width: 45vw;
  }
}
header a {
  border: none;
}

.hero {
  position: relative;
  height: auto;
  min-height: 200px;
  margin-bottom: 20px;
  text-align: center;
}
.hero img {
  max-width: 100%;
}

.hero_element {
  width: 100%;
  display: inline-block;
}

footer {
  position: relative;
  left: 0;
  right: 0;
  margin-top: 40px;
  color: white;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #a3755f;
  font-size: 0.9rem;
  clear: both;
}
footer a {
  color: white;
}

/*
------------------------------------------------------------------
logo
------------------------------------------------------------------
*/
.logo a {
  border: none;
  text-decoration: none;
}
.logo a:before {
  content: none;
}
.logo img {
  display: inline-block; /* damit verlinktes Logo nicht über die gesamte Breite geht */
  max-width: 86vw;
  width: 250px;
}
@media (max-width: 510px) {
  .logo img {
    max-width: 40vw;
  }
}

/*
------------------------------------------------------------------
text
------------------------------------------------------------------
*/
*::-moz-selection {
  background-color: #bfd07f;
}

*::selection {
  background-color: #bfd07f;
}

@font-face {
  font-family: "Catamaran";
  src: url("../fonts/Catamaran-Regular.ttf");
  font-weight: normal;
  font-style: normal;
}
body {
  font-size: 1.1rem;
  line-height: 1.65rem;
  font-family: "Catamaran", sans-serif;
  color: #555;
}

h1, h3, h4, .ui-accordion-header, h2 {
  font-size: 1.35rem;
  line-height: 2.025rem;
  margin-top: 10px;
  margin-bottom: 20px;
  font-family: "Catamaran", sans-serif;
  color: #a3755f;
  font-weight: bold;
}

h2 {
  font-size: 1.35rem;
  line-height: 2.025rem;
  margin-top: 1.35rem;
  margin-bottom: 1.35rem;
  font-family: "Fjalla One", sans-serif;
  color: #cd022c;
}

h3, h4, .ui-accordion-header {
  font-size: 1.1rem;
  line-height: 1.65rem;
  margin-bottom: 0.4rem;
}

h4, .ui-accordion-header {
  font-size: 0.9rem;
  line-height: 1.35rem;
  font-weight: bold;
}

a {
  color: #555;
  text-decoration: none;
  display: inline-block;
  border-bottom: 2px #a1b944 solid;
}
a.no_link_decoration {
  border: none;
  text-decoration: none;
}
a.no_link_decoration:before {
  content: none;
}

p {
  margin-top: 0rem;
  margin-bottom: 20px;
  color: #555;
}
p a {
  line-height: 16px;
}

.main_content ul {
  margin-top: 0px;
  margin-bottom: 0.6rem;
  padding-left: 1.6rem;
  list-style-type: none;
  text-indent: -0.7rem;
}
.main_content ul li:before {
  content: "▪";
  margin-left: 0;
  margin-right: 0.4rem;
  color: #a3755f;
}
.main_content ul li ul li:before {
  color: #ede5e1;
}
.main_content ul a {
  text-indent: 0;
  line-height: 16px;
}
.main_content ol {
  margin-top: 0px;
  margin-bottom: 0.6rem;
  padding-left: 0.8rem;
  counter-reset: item;
}
.main_content ol li {
  display: block;
}
.main_content ol li:before {
  content: counter(item) ". ";
  counter-increment: item;
  color: #a3755f;
}
.main_content img {
  max-width: 100%;
  height: auto;
}

img {
  border: 0;
}

figure {
  display: table;
  margin: 0;
}
figure.float_left {
  padding-right: 10px;
}
figure.float_left figcaption {
  padding-right: 10px;
}
figure.float_right {
  padding-left: 10px;
}
figure.float_right figcaption {
  padding-left: 10px;
}

figcaption {
  display: table-caption;
  width: 100%;
  caption-side: bottom;
  font-size: 0.9rem;
}

/*
------------------------------------------------------------------
navigation
------------------------------------------------------------------
*/
/*Navi top*/
.topnav {
  /*@include border;*/
  max-height: 0;
  overflow: hidden;
  color: #555;
  font-family: "Catamaran", sans-serif;
  font-size: 0.9rem;
  font-weight: bold;
  text-transform: uppercase;
  -webkit-transition: max-height 0.5s 0s ease;
  transition: max-height 0.5s 0s ease;
}
.topnav.show-nav {
  max-height: 1000px;
  -webkit-transition: max-height 0.5s 0s ease;
  transition: max-height 0.5s 0s ease;
}
.topnav a {
  border: none;
  text-decoration: none;
  display: block;
  color: #555;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.topnav a:before {
  content: none;
}
.topnav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.topnav ul li {
  padding: 0 0 16px 0;
  /*cursor: default;*/
  /*second level*/
}
.topnav ul li:nth-child(n+2):nth-child(-n+6) {
  font-size: 1.2rem;
}
.topnav ul li:nth-child(5) {
  font-size: 0.9rem !important;
}
.topnav ul li:hover {
  color: #555;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.topnav ul li:hover > a {
  color: #a3755f;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.topnav ul li:hover ul {
  visibility: visible;
  opacity: 1;
  max-height: 1000px;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  /*transition: visibility 0s linear, opacity 0.2s linear;*/
  /* Chrome-Bug (Submenüitems verschwinden nach Fadein)
  http://help.dimsemenov.com/discussions/problems/858-weird-bug-in-chrome */
  /*-webkit-backface-visibility: hidden;*/
  -webkit-transform: translateZ(0);
  -webkit-transition: max-height 0.5s 0s ease;
  transition: max-height 0.5s 0s ease;
}
.topnav ul li:hover ul li {
  max-height: 1000px;
  -webkit-transition: max-height 0.5s 0s ease;
  transition: max-height 0.5s 0s ease;
}
.topnav ul li.active, .topnav ul li.trail, .topnav ul li.current {
  color: #a3755f;
}
.topnav ul li.active > a, .topnav ul li.trail > a, .topnav ul li.current > a {
  color: #a3755f;
}
.topnav ul li:focus ul {
  display: block;
}
.topnav ul li ul {
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  opacity: 0.01;
  /* Visibility muss verzögert werden, damit die Opacity-Transformation sichtbar ist*/
  /* Transition wird aktiv, wenn wieder weggehovered wird */
  -webkit-transition: visibility 0s linear 0.3s, opacity 0.3s linear;
  transition: visibility 0s linear 0.3s, opacity 0.3s linear; /*Eigenschaft Zeit_f_Trans Trans_Funktion Delay*/
  -webkit-transition: max-height 0.9s ease;
  transition: max-height 0.9s ease;
  /*                eigenen Stacking-Kontext erzeugen
                  https://philipwalton.com/articles/what-no-one-told-you-about-z-index/*/
  /*opacity: .99;*/
  z-index: 5;
}
.topnav ul li ul a {
  color: #a3755f;
}
.topnav ul li ul li {
  max-height: 0;
  white-space: nowrap;
}
.secondNav {
  display: inline-block;
  margin-bottom: 20px;
  width: 100%;
  color: #555;
  font-size: 0.9rem;
  font-weight: bold;
}
.secondNav a {
  border: none;
  text-decoration: none;
  color: #555;
}
.secondNav a:before {
  content: none;
}
.secondNav ul {
  display: block;
  list-style: none;
  margin-bottom: 20px;
  padding: 0;
}
.secondNav ul li {
  float: left;
  padding-right: 20px;
  text-indent: 0;
}
.secondNav ul li.current, .secondNav ul li.current a {
  color: #a3755f;
}
.secondNav ul li::before {
  content: none;
}

.footer_nav {
  display: inline-block;
}
.footer_nav ul li {
  float: left;
}
.footer_nav ul li::after {
  content: "|";
  padding-right: 4px;
}
.footer_nav ul li:last-child::after {
  content: none;
}

/*
------------------------------------------------------------------
transformicons
------------------------------------------------------------------
*/
.menu-button {
  position: relative;
  margin-top: 10px;
  background-color: transparent;
  background-image: none;
  color: #a3755f;
}
@media (max-width: 510px) {
  .menu-button {
    margin-bottom: -8px;
  }
}

/* ====================== jom: Wort 'Menü' ==================================================*/
.menu {
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-transform: uppercase;
  text-align: center;
  width: 2.5rem;
  font-size: 0.8333333333rem;
  font-weight: bold;
}

/* ====================== lines button ==================================================*/
.lines-button {
  padding: 1.3888888889rem 0.625rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /* */
}
.lines-button:hover {
  opacity: 1;
}
.lines-button:active {
  -webkit-transition: 0;
  transition: 0;
}

.lines {
  display: inline-block;
  width: 2.5rem;
  height: 0.3125rem;
  background: #a3755f;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}
.lines:before, .lines:after {
  display: inline-block;
  width: 2.5rem;
  height: 0.3125rem;
  background: #a3755f;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  left: 0;
  content: "";
  -webkit-transform-origin: 0.1785714286rem center;
  transform-origin: 0.1785714286rem center;
}
.lines:before {
  top: 0.625rem;
}
.lines:after {
  top: -0.625rem;
}

.lines-button:hover .lines:before {
  top: 0.7142857143rem;
}
.lines-button:hover .lines:after {
  top: -0.7142857143rem;
}

.lines-button.x2 .lines {
  -webkit-transition: background 0.3s 0.1s ease;
  transition: background 0.3s 0.1s ease;
}
.lines-button.x2 .lines:before, .lines-button.x2 .lines:after {
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transition: top 0.3s 0.1s ease, -webkit-transform 0.3s ease;
  transition: top 0.3s 0.1s ease, -webkit-transform 0.3s ease;
  transition: top 0.3s 0.1s ease, transform 0.3s ease;
  transition: top 0.3s 0.1s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}

.lines-button.x2.close .lines {
  -webkit-transition: background 0.3s 0s ease;
  transition: background 0.3s 0s ease;
  background: transparent;
}
.lines-button.x2.close .lines:before, .lines-button.x2.close .lines:after {
  -webkit-transition: top 0.3s ease, -webkit-transform 0.3s 0.1s ease;
  transition: top 0.3s ease, -webkit-transform 0.3s 0.1s ease;
  transition: top 0.3s ease, transform 0.3s 0.1s ease;
  transition: top 0.3s ease, transform 0.3s 0.1s ease, -webkit-transform 0.3s 0.1s ease;
  top: 0;
  width: 2.5rem;
}
.lines-button.x2.close .lines:before {
  -webkit-transform: rotate3d(0, 0, 1, 45deg);
  transform: rotate3d(0, 0, 1, 45deg);
}
.lines-button.x2.close .lines:after {
  -webkit-transform: rotate3d(0, 0, 1, -45deg);
  transform: rotate3d(0, 0, 1, -45deg);
}

@media (max-width: 510px) {
  .menu-button {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
  }
}
/*
------------------------------------------------------------------
breadcrumbs
------------------------------------------------------------------
*/
.breadcrumbs {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: #a3755f;
}
.breadcrumbs a {
  border: none;
  text-decoration: none;
  color: #a3755f;
}
.breadcrumbs a:before {
  content: none;
}
.breadcrumbs ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  text-indent: 0;
}
.breadcrumbs ul li {
  display: inline-block;
}
.breadcrumbs ul li::before {
  content: "";
  margin: 0;
}
.breadcrumbs ul li::after {
  content: "»";
  margin-left: 4px;
  margin-right: 4px;
}
.breadcrumbs ul li:last-child::after {
  content: none;
}

/*
------------------------------------------------------------------
Layouts der Inhaltselemente
------------------------------------------------------------------
*/
.shariff {
  margin-top: 10px;
}

#promailer .success {
  color: #a1b944;
}
#promailer .error {
  color: #cd022c;
}

.image_text img {
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
}
.image_text .info {
  font-size: 0.9rem;
  line-height: 1.35rem;
  font-weight: bold;
}
.image_text > article {
  margin-bottom: 40px;
}
@media (max-width: 510px) {
  .image_text img {
    width: 100%;
    float: none;
    margin: 0;
  }
}

.yumpuMenu {
  width: 100%;
  height: 800px;
  max-height: 90vh;
}

button,
.button {
  border: none;
  text-decoration: none;
  margin: 0;
  padding: 10px 10px;
  color: white;
  text-align: center;
  text-decoration: none;
  font-family: "Fjalla One", sans-serif;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.1rem;
  background-image: url("../graphics/grunes_hintergrund_feld_400_2.png");
  outline: none;
}
button:before,
.button:before {
  content: none;
}
button::first-line,
.button::first-line {
  font-size: 1.1rem;
  text-transform: uppercase;
}

button {
  display: block;
}

.button {
  display: inline-block;
}

.btn-gaestezimmer {
  display: block;
  margin-bottom: 40px;
  width: 8rem;
  float: none;
}

.btn-zimmer {
  position: absolute;
  right: 0;
  top: 4rem;
  max-width: 8rem;
}
@media (max-width: 600px) {
  .btn-zimmer {
    padding: 5px;
    top: 3rem;
    max-width: 6rem;
  }
}
@media (max-width: 510px) {
  .btn-zimmer {
    top: auto;
    bottom: 4rem;
    max-width: none;
  }
}

.wrapper_tagesmenu {
  position: relative;
  margin-bottom: 2rem;
  padding: 4px;
  line-height: 0;
}
.wrapper_tagesmenu h2, .wrapper_tagesmenu h3, .wrapper_tagesmenu h4, .wrapper_tagesmenu .ui-accordion-header {
  margin: 0;
}
@media (max-width: 750px) {
  .wrapper_tagesmenu {
    display: inline-block;
    margin: 0 auto;
  }
}

.btn-tagesmenu {
  width: 9rem;
  margin-top: 10px;
}

.btn-newsletter {
  display: block;
  margin-top: -20px;
  margin-bottom: 40px;
  width: 9rem;
}

.btn-red {
  background-image: url("../graphics/rots_hintergrund_feld_400.png");
}

#thumb_tagesmenu {
  cursor: pointer;
}

.tiles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
      align-items: stretch;
  margin-top: 20px;
}
@media (max-width: 600px) {
  .tiles {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.tile {
  font-size: 0.9rem;
  line-height: 1.35rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 32%;
      flex: 0 1 32%;
  padding: 10px;
  background-color: #ede5e1;
}
@media (max-width: 600px) {
  .tile {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
        flex: 0 1 100%;
    max-width: auto;
    margin-bottom: 2%;
  }
}
.tile:last-child {
  margin-right: 0;
}

@media (max-width: 750px) {
  .info {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    width: 100%;
  }
}
@media (max-width: 420px) {
  .info {
    -webkit-columns: 1;
    -moz-columns: 1;
    columns: 1;
  }
}

.info_part {
  margin-bottom: 40px;
}
.info_part:nth-of-type(2) h3, .info_part:nth-of-type(2) h4, .info_part:nth-of-type(2) .ui-accordion-header {
  color: #cd022c;
}

.share-container {
  margin: -5px auto 0 auto;
  text-align: center;
  max-width: 18rem;
}
@media (max-width: 600px) {
  .share-container {
    margin: 0;
    text-align: right;
  }
}

ul.download_list {
  margin-bottom: 40px;
}
ul.download_list li {
  padding-left: 20px;
  white-space: nowrap;
}
ul.download_list li a {
  white-space: break-spaces;
}

.news_post .shariff ul {
  text-indent: 0;
}
.news_post .shariff ul li::before {
  content: none;
}
.news_post .shariff a {
  border: none;
  text-decoration: none;
}
.news_post .shariff a:before {
  content: none;
}

/*
------------------------------------------------------------------
accordion
------------------------------------------------------------------
*/
.ce_accordion *:focus {
  outline: none;
}
.ce_accordion a {
  border: none;
  text-decoration: none;
}
.ce_accordion a:before {
  content: none;
}
.ce_accordion img {
  padding-bottom: 3px;
  vertical-align: bottom;
}
.ce_accordion .ce_downloads,
.ce_accordion .ce_text {
  padding-left: 3.75rem;
}
.ce_accordion ul {
  padding-left: 0;
}
.ce_accordion ul li:before {
  content: none;
}

.ui-accordion-header-icon {
  display: inline-block;
  width: 2.5rem;
  height: 0.3125rem;
  background: #a3755f;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  bottom: 0.8333333333rem;
  opacity: 0.8;
}
.ui-accordion-header-icon:before {
  display: inline-block;
  width: 2.5rem;
  height: 0.3125rem;
  background: #a3755f;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.ui-accordion-header {
  cursor: pointer;
}
.ui-accordion-header:hover .ui-accordion-header-icon {
  opacity: 1;
}
.ui-accordion-header.ui-state-active .ui-accordion-header-icon {
  opacity: 0.9;
}
.ui-accordion-header.ui-state-active .ui-accordion-header-icon:before {
  -webkit-transform: rotate(0);
          transform: rotate(0);
  -webkit-transform: scale3d(0.8, 0.8, 0.8);
          transform: scale3d(0.8, 0.8, 0.8);
}

/* 
    --------------------------------------------------------
    seitenspez. Anpassungen
    --------------------------------------------------------
*/
.page_menue .glider-slide img, .page_gruppen .glider-slide img {
  border: 1px #a3755f solid;
}
.page_menue .glider-contain .glider-dots, .page_gruppen .glider-contain .glider-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}
.page_menue .glider-contain .glider-dot, .page_gruppen .glider-contain .glider-dot {
  position: relative;
  width: 8px;
  height: 8px;
  opacity: 0.6;
  background-color: #a3755f;
}
.page_menue .glider-contain .glider-dot.active, .page_gruppen .glider-contain .glider-dot.active {
  opacity: 1;
}
.page_menue #glider_0 .glider-dots, .page_gruppen #glider_0 .glider-dots {
  display: none;
}

.page_newsletter .btn-newsletter {
  display: none;
}

.page_aktuell h1, .page_aktuell h2, .page_aktuell h3, .page_aktuell h4, .page_aktuell .ui-accordion-header {
  color: #cd022c;
}
.page_aktuell h3, .page_aktuell h4, .page_aktuell .ui-accordion-header {
  color: #555;
}
.page_aktuell h4, .page_aktuell .ui-accordion-header {
  color: #a3755f;
}

/*
------------------------------------------------------------------
ce_gallery
------------------------------------------------------------------
*/
.my-gallery > ul {
  display: block;
  width: 100%;
  padding-left: 0;
  margin-top: 1.1rem;
  list-style-type: none;
}
.my-gallery > ul li {
  float: left;
  margin-right: 2%;
  width: 32%;
  line-height: 0;
  text-indent: 0;
}
.my-gallery > ul li:before {
  content: "";
}
.my-gallery > ul li.col_last {
  margin-right: 0;
}
.my-gallery > ul li.col_last + * {
  clear: both;
}
@media (max-width: 510px) {
  .my-gallery > ul li {
    width: 49%;
    margin-right: 1%;
  }
  .my-gallery > ul li.col_last {
    margin-right: 1%;
  }
  .my-gallery > ul li.col_last + * {
    clear: none;
  }
  .my-gallery > ul li:nth-child(2) {
    margin-right: 0;
  }
}
@media (max-width: 420px) {
  .my-gallery > ul li {
    width: 100%;
    margin-right: 0;
  }
  .my-gallery > ul li:nth-child(2) {
    margin-right: 1px;
  }
}
.my-gallery figure {
  margin-bottom: 3%;
  width: 100%;
  width: 30%;
  float: left;
  margin-right: 3%;
}
.my-gallery figure:nth-child(3) {
  margin-right: 0;
}
.my-gallery img {
  max-width: 100%;
  height: auto;
}
.my-gallery figcaption {
  font-size: 0.9rem;
  padding: 5px;
  width: auto;
  max-width: 100%;
  font-size: 0.9rem;
  line-height: 1rem;
}
.my-gallery a {
  border: none;
  text-decoration: none;
  line-height: 0;
}
.my-gallery a:before {
  content: none;
}
.my-gallery + * {
  clear: both;
}

#cboxTitle {
  margin-right: 6rem;
  background-color: rgba(0, 0, 0, 0.6);
}

.pagination {
  clear: both;
  margin-left: 0;
  padding-top: 10px;
}
.pagination p {
  display: none;
}
.pagination ul {
  /*@include border;*/
  position: relative;
  float: left;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
.pagination li {
  position: relative;
  float: left;
  margin-right: 10px;
  width: auto;
  height: 1rem;
  /*padding: 5px 10px;*/
  background: #fff;
  list-style: none;
}
.pagination li:before {
  content: "";
}
.pagination li.next img, .pagination li.previous img {
  width: 20px;
  margin-top: -3px;
}

/*
------------------------------------------------------------------
News
------------------------------------------------------------------
*/
.news_container {
  margin-top: 60px;
}

.news_overview h3, .news_overview .ui-accordion-header, .news_overview h4, .news_post h3, .news_post .ui-accordion-header, .news_post h4 {
  margin: 0;
  line-height: 1.3rem;
}
.news_overview p, .news_post p {
  margin-top: 20px;
  margin-bottom: 0;
}
.news_overview .datum, .news_post .datum {
  font-size: 0.9rem;
  line-height: 1.35rem;
  color: #a3755f;
  margin-top: 0;
  margin-bottom: 10px;
}
.news_overview figcaption, .news_post figcaption {
  border: none;
  text-decoration: none;
  font-weight: normal;
}
.news_overview figcaption:before, .news_post figcaption:before {
  content: none;
}

.news_post {
  margin-bottom: 10px;
  padding: 20px;
  background-color: #ede5e1;
}
.news_post figure {
  float: left;
  margin-top: 20px;
  padding-right: 25px;
}
.news_post figcaption {
  margin-bottom: 25px;
}
.news_post ul {
  display: inline-block;
  padding-left: 0;
}
.news_post ul.download_list {
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .news_post figure {
    float: none;
  }
}

.readMore {
  font-weight: bold;
  color: #a3755f;
  border: none;
}

.MarkupPagerNav {
  text-align: center;
}
.MarkupPagerNav li {
  display: inline;
  margin: 0 10px 0 0;
  padding: 0;
}
.MarkupPagerNav li::before {
  content: none !important;
}
.MarkupPagerNav li.current {
  color: #a1b944;
  font-weight: bold;
}
.MarkupPagerNav li a {
  font-weight: bold;
  color: #a3755f;
  border: none;
}

/*
------------------------------------------------------------------
Tabelle
------------------------------------------------------------------
*/
table {
  margin-top: 1.1rem;
  width: 100%;
}

th {
  padding: 2px 4px;
  border-bottom: 1px solid #ede5e1;
  font-weight: bold;
  text-align: left;
}

tbody tr:first-child {
  height: 2rem;
}

td {
  padding: 2px 4px;
  border-bottom: 1px solid #ede5e1;
  vertical-align: bottom;
}

/*Tabelle innerhalb eines Text-Blocks*/
.ce_text table td {
  padding: 2px;
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.rrssb-buttons {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  height: 36px;
  margin: 0;
  padding: 0;
  width: 100%;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-name: fade-in;
  animation-name: fade-in;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.rrssb-buttons:after {
  clear: both;
}
.rrssb-buttons:before, .rrssb-buttons:after {
  content: " ";
  display: table;
}
.rrssb-buttons li {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  height: 100%;
  line-height: 13px;
  list-style: none;
  margin: 0;
  padding: 0 2px;
}
.rrssb-buttons li.rrssb-facebook a {
  background-color: transparent;
}
.rrssb-buttons li.rrssb-facebook a:hover {
  background-color: rgba(0, 0, 0, 0);
}
.rrssb-buttons li.rrssb-instagram a {
  background-color: transparent;
}
.rrssb-buttons li.rrssb-instagram a:hover {
  background-color: rgba(0, 0, 0, 0);
}
.rrssb-buttons li a {
  background-color: #ccc;
  border-radius: 2px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-weight: bold;
  height: 100%;
  padding: 11px 7px 12px 27px;
  position: relative;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
  width: 100%;
}
.rrssb-buttons li a .rrssb-icon {
  display: block;
  left: 10px;
  padding-top: 9px;
  position: absolute;
  top: 0;
  width: 10%;
}
.rrssb-buttons li a .rrssb-icon svg {
  height: 17px;
  width: 17px;
}
.rrssb-buttons li a .rrssb-icon svg path, .rrssb-buttons li a .rrssb-icon svg circle {
  fill: white;
}
.rrssb-buttons li a .rrssb-text {
  color: white;
}
.rrssb-buttons li a:active {
  -webkit-box-shadow: inset 1px 3px 15px 0 rgba(22, 0, 0, 0.25);
  box-shadow: inset 1px 3px 15px 0 rgba(22, 0, 0, 0.25);
}
.rrssb-buttons li.small a {
  padding: 0;
}
.rrssb-buttons li.small a .rrssb-icon {
  left: auto;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  top: auto;
  width: 100%;
}
.rrssb-buttons li.small a .rrssb-text {
  visibility: hidden;
}
.rrssb-buttons.large-format {
  height: auto;
}
.rrssb-buttons.large-format li {
  height: auto;
}
.rrssb-buttons.large-format li a {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 0.2em;
  padding: 8.5% 0 8.5% 12%;
}
.rrssb-buttons.large-format li a .rrssb-icon {
  height: 100%;
  left: 7%;
  padding-top: 0;
  width: 12%;
}
.rrssb-buttons.large-format li a .rrssb-icon svg {
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
}
.rrssb-buttons.large-format li a .rrssb-text {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.rrssb-buttons.small-format {
  padding-top: 5px;
}
.rrssb-buttons.small-format li {
  height: 80%;
  padding: 0 1px;
}
.rrssb-buttons.small-format li a .rrssb-icon {
  height: 100%;
  padding-top: 0;
}
.rrssb-buttons.small-format li a .rrssb-icon svg {
  height: 48%;
  position: relative;
  top: 6px;
  width: 80%;
}
.rrssb-buttons.tiny-format {
  height: 22px;
  position: relative;
}
.rrssb-buttons.tiny-format li {
  padding-right: 7px;
}
.rrssb-buttons.tiny-format li a {
  background-color: transparent;
  padding: 0;
}
.rrssb-buttons.tiny-format li a .rrssb-icon {
  height: 100%;
}
.rrssb-buttons.tiny-format li a .rrssb-icon svg {
  height: 70%;
  width: 100%;
}
.rrssb-buttons.tiny-format li a:hover, .rrssb-buttons.tiny-format li a:active {
  background-color: transparent;
}
.rrssb-buttons.tiny-format li.rrssb-facebook a .rrssb-icon svg path {
  fill: transparent;
}
.rrssb-buttons.tiny-format li.rrssb-facebook a .rrssb-icon:hover .rrssb-icon svg path {
  fill: rgba(0, 0, 0, 0);
}
.rrssb-buttons.tiny-format li.rrssb-instagram a .rrssb-icon svg path {
  fill: transparent;
}
.rrssb-buttons.tiny-format li.rrssb-instagram a .rrssb-icon:hover .rrssb-icon svg path {
  fill: rgba(0, 0, 0, 0);
}

/*
------------------------------------------------------------------
glider
------------------------------------------------------------------
*/
.glider-contain .glider {
  overflow-x: hidden;
  width: 100%;
}
.glider-contain .glider-track {
  display: block;
}
.glider-contain .glider-prev, .glider-contain .glider-next {
  top: 50%;
  -webkit-transform: translateY(-50%) scale(0.6, 0.6);
  transform: translateY(-50%) scale(0.6, 0.6);
}
.glider-contain .glider-prev.disabled, .glider-contain .glider-next.disabled {
  opacity: 0.4;
}
.glider-contain .glider-prev {
  left: 10px;
  content: "";
  position: absolute;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='30' height='60' fill='none' stroke='%23a3755f' stroke-width='3'><path d='M25,0 L0,30 L25,60'></path></svg>") no-repeat;
  height: 60px;
  width: 30px;
}
.glider-contain .glider-next {
  right: 10px;
  content: "";
  position: absolute;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='30' height='60' fill='none' stroke='%23a3755f' stroke-width='3'><path d='M0,0 L25,30 L0,60'></path></svg>") no-repeat;
  height: 60px;
  width: 30px;
}
.glider-contain .glider-dots {
  display: none;
  -webkit-transform: translateY(-30px);
  transform: translateY(-30px);
}
.glider-contain .glider-dot {
  position: relative;
  width: 8px;
  height: 8px;
  opacity: 0.6;
  background-color: white;
}
.glider-contain .glider-dot.active {
  opacity: 1;
}
.glider-contain.content-slider .glider_item {
  float: left;
  padding-right: 10px;
}
.glider-contain.content-slider .glider-next {
  right: 1rem;
}

/*
------------------------------------------------------------------
Form
------------------------------------------------------------------
*/
form {
  width: 100%;
  padding-bottom: 20px;
}
form label, form input, form textarea {
  border: none;
}
form label {
  display: inline-block;
  width: 6rem;
}
form input, form textarea {
  width: 15rem;
  margin-right: 10px;
  background-color: #ede5e1;
}
form .textarea[name=adresse] {
  width: 10%;
  font-family: "Catamaran", sans-serif;
  font-size: small;
}
form .submit,
form button[type=submit] {
  margin-top: 10px;
  font-size: 1.1rem;
  text-transform: uppercase;
  background-color: white;
}
@media (max-width: 750px) {
  form {
    width: 100%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
        order: 1;
  }
}

/*
------------------------------------------------------------------
footer
------------------------------------------------------------------
*/
footer a {
  border: none;
  text-decoration: none;
}
footer a:before {
  content: none;
}

.footer_content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1rem;
}
@media (max-width: 600px) {
  .footer_content {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.footer_left, .footer_center, .footer_right {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}
.footer_left ul.nav, .footer_center ul.nav, .footer_right ul.nav {
  list-style: none;
  height: 1.6rem;
  margin: 0;
  padding: 0;
}
.footer_left ul.nav li, .footer_center ul.nav li, .footer_right ul.nav li {
  padding: 0;
  cursor: default;
}
.footer_left ul.nav a, .footer_center ul.nav a, .footer_right ul.nav a {
  border: none;
  text-decoration: none;
}
.footer_left ul.nav a:before, .footer_center ul.nav a:before, .footer_right ul.nav a:before {
  content: none;
}

.footer_left {
  padding-right: 10px;
  text-align: left;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
}
@media (max-width: 600px) {
  .footer_left {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }
}

.footer_center {
  padding: 0 20px;
  text-align: center;
  max-width: 28rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 10 auto;
  flex: 1 10 auto;
}
@media (max-width: 600px) {
  .footer_center {
    padding: 0;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    -webkit-box-flex: 10;
    -ms-flex: 10 10 100%;
    flex: 10 10 100%;
  }
}
.footer_center .rrssb-buttons {
  max-width: 16rem;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .footer_center .rrssb-buttons {
    margin: 0 0 5px -10px;
  }
}

.footer_right {
  padding-left: 10px;
  text-align: right;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  color: #dbc9c0;
}
@media (max-width: 600px) {
  .footer_right {
    padding: 0;
    text-align: left;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50%;
    flex: 1 1 50%;
  }
}

/*
------------------------------------------------------------------
modals
------------------------------------------------------------------
*/
/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
  /* The Close Button */
}
.modal .close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}
.modal .close:hover,
.modal .close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* Modal Content/Box */
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: 5vh auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
  width: 80vw;
  max-height: 92vh;
  max-width: 90vw;
  -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
          box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  -webkit-animation-name: animatebottom;
          animation-name: animatebottom;
  -webkit-animation-duration: 0.4s;
          animation-duration: 0.4s;
}
.modal-content img {
  max-width: 72vw;
  max-height: 78vh;
}

/* Add Animation */
@-webkit-keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
/* Add Animation */
@-webkit-keyframes animatebottom {
  from {
    bottom: -300px;
    right: -300px;
    opacity: 0;
  }
  to {
    bottom: 0;
    right: 0;
    opacity: 1;
  }
}
@keyframes animatebottom {
  from {
    bottom: -300px;
    right: -300px;
    opacity: 0;
  }
  to {
    bottom: 0;
    right: 0;
    opacity: 1;
  }
}
/*
------------------------------------------------------------------
print
------------------------------------------------------------------
*/
@media print {
  footer, #RechteSpalte, #NaviTop, .layout-BannerMain {
    display: none;
  }
  body {
    color: black;
  }
}