/* roboto-100 - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 100;
  src: url('../fonts/roboto-v30-latin-100.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/roboto-v30-latin-100.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-v30-latin-100.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/roboto-v30-latin-100.woff') format('woff'), /* Modern Browsers */
       url('../fonts/roboto-v30-latin-100.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/roboto-v30-latin-100.svg#Roboto') format('svg'); /* Legacy iOS */
}
/* roboto-300 - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/roboto-v30-latin-300.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/roboto-v30-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-v30-latin-300.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/roboto-v30-latin-300.woff') format('woff'), /* Modern Browsers */
       url('../fonts/roboto-v30-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/roboto-v30-latin-300.svg#Roboto') format('svg'); /* Legacy iOS */
}
/* roboto-regular - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/roboto-v30-latin-regular.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/roboto-v30-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-v30-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/roboto-v30-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/roboto-v30-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/roboto-v30-latin-regular.svg#Roboto') format('svg'); /* Legacy iOS */
}
/* roboto-700 - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/roboto-v30-latin-700.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/roboto-v30-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-v30-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/roboto-v30-latin-700.woff') format('woff'), /* Modern Browsers */
       url('../fonts/roboto-v30-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/roboto-v30-latin-700.svg#Roboto') format('svg'); /* Legacy iOS */
}

/* Beginn Basics */
:root {
  --content-width: 1440px;
  --text-indent: 70px;
  --section-space: 120px;
  --darkgreen: #244957;
  --mid-green: #B9C0B6;
  --lightgreen: #E0E1DD;
}

* { box-sizing: border-box; }

body {
  color: #202429;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  line-height: 30px;
  font-style: normal;
  font-weight: 300;
  padding: 0;
  margin: 0;
  position: relative;
  box-sizing: border-box;
  /* hyphens
  -moz-hyphens: auto;
  -o-hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  */
}

.section {
  width: 100%;
}

.img-basics {
  width: 100%;
  height: auto;
  display: block;
}

a {
  font-size: inherit;
  color: inherit;
  text-decoration: none;
  line-height: inherit;
  cursor: pointer;
}

.text-on-the-left a,
.basic-text a { text-decoration: underline; }

.bold { font-weight: 700; }
.uppercase { text-transform: uppercase; }
.txt-center { text-align: center; }
.txt-white { color: #ffffff; }
.txt-bigger { font-size: 1.1em; }
.bg-darkgreen { background-color: var(--darkgreen); }
.bg-green { background-color: var(--mid-green); }
.bg-lightgreen { background-color: var(--lightgreen); }

.mb50 { margin-bottom: 50px; }

.content-width {
  width: 100%;
  /* max-width: var(--content-width); */
}

.half-content-width {
  width: 100%;
}

.box-center {
  margin: 0 auto;
}

.flex-container {
  display: flex;
  justify-content: space-between;
}

h1 {
  font-family: Roboto;
  font-size: 72px;
  line-height: 80px;
}

h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 21px;
  line-height: 24px;
  margin-top: 0;
}

h4 {
  font-size: 15px;
  line-height: 20px;
  font-weight: normal;
  margin-block-start: 0.5em;
  margin-block-end: 0.5em;
}

h1 p,
h2 p,
h3 p,
h4 p,
h5 p { margin: 0; }

.box-text-left {
  padding-left: var(--text-indent);
}

.section-space-bottom {
  padding-bottom: var(--section-space);
}

.section-space-top {
  padding-top: var(--section-space);
}

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

.txt-left {
  text-align: left;
}

.inline-block {
  display: inline-block;
  vertical-align: top;
}

.flex-elem-50 {
  width: 50%;
}

.basic-img-wrapper {
  width: 100%;
}

.height100 {
  height: 100%;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.hide-it {
  visibility: hidden;
}

.row-rev {
  flex-direction: row-reverse;
}

.fit-it {
  width: fit-content;
}

.b-lazy,
.c-lazy {
  -webkit-transition: opacity 500ms ease-in-out;
  -moz-transition: opacity 500ms ease-in-out;
  -o-transition: opacity 500ms ease-in-out;
  transition: opacity 500ms ease-in-out;
  max-width: 100%;
  opacity: 0;
}

.b-loaded {
  opacity: 1;
}

.show-more-wrapper {
  position: relative;
  display: block;
  margin-top: 25px;
}

.show-more-btn {
  margin: auto;
  cursor: pointer;
  color: #000;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 300ms ease-in-out;
  border: 0;
  background: transparent;
  letter-spacing: 6px;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  line-height: 36px;
  padding: 0;
}
.show-more-btn:hover {
  color: #5c5c5c;
}

.show-more-btn:hover,
.txt-white .show-more-btn { color: #000; }

.bg-darkgreen .show-more-btn:hover,
.bg-darkgreen .show-more-btn { color: #FFF; }

.hidden {
  display: none;
}

.ajax-progress,
.ajax-progress-throbber,
.ajax-progress-fullscreen {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  opacity: 1;
  background: rgba(255, 255, 255, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  overflow: hidden;
  text-indent: -99999em;
}
 
.ajax-progress-throbber:before,
.ajax-progress-fullscreen:before {
  content: " ";
  display: block;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 0.8s infinite linear;
  animation: spin 0.8s infinite linear;
  border-radius: 120px;
  border-width: 10px;
  border-style: solid;
  border-color: #D6232F transparent #D6232F transparent;
  overflow: hidden;
  text-indent: -99999em;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
 
@-webkit-keyframes spin {
  to {
    transform: rotate(360deg); 
  }
}
 
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.anker {
  position: absolute;
  top: -90px;
}

/* End Basics */

/* Beginn Header */

header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
}

.toolbar-fixed .fixed-menu-wrapper,
.toolbar-fixed header { top: 79px; }

.menu-bg {
  width: 100%;
  height: 90px;
  background-color: #000;
  /* background-image: url('../img/logo-schloss-moerlbach.png');
  background-size: 176px;*/
  background-image: url('../img/logo-header-schloss-moerlbach.png');
  background-repeat: no-repeat;
  background-size: 170px;
  background-position: 20px 10px;
  position: relative;
  z-index: 0;
  /* top: -90px; */
  transition: all 1s ease 0s;
  opacity: 1;
}

.frontpage .menu-bg { background-color: rgba(0, 0, 0, 0); }
.frontpage .menu-bg.show { background-color: rgba(0, 0, 0, 60%); }

.toggle .menu-bg { opacity: 0; }

#tofront {
  width: 210px;
  height: 90px;
  display: inline-block;
  position: absolute;
  z-index: 99;
}

.menu-bg.show {
  top: 0;
  background-color: rgba(0, 0, 0, 60%);
  background-size: 145px;
  background-position: 20px center;
}

.nav-bar .booking a {
  letter-spacing: 5px;
  height: 30px;
  font-weight: 400;
  font-size: 16px;
}

.nav-bar .booking a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #FFF;
    transition: width .3s;
}

.nav-bar .booking a:hover::after {
    width: 100%;
}

.mail {
  height: 25px;
  width: 30px;
  background-image: url('../img/envelope.png');
  background-repeat: no-repeat;
  background-size: 30px;
  background-position: center center;
}
.mail a {
  display: inline-block;
  height: 100%;
  width: 100%;
}
.call {
  height: 25px;
  width: 30px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='512.076' height='512.039' viewBox='0 0 512.076 512.039'%3e%3cg id='Gruppe_4' data-name='Gruppe 4' transform='translate(-1 -1.018)'%3e%3cg id='Gruppe_3' data-name='Gruppe 3'%3e%3cg id='Gruppe_2' data-name='Gruppe 2'%3e%3cpath id='Pfad_1' data-name='Pfad 1' d='M499.639%2c396.039l-103.646-69.12a30.251%2c30.251%2c0%2c0%2c0-40.508%2c6.579l-30.191%2c38.818a12.9%2c12.9%2c0%2c0%2c1-16.546%2c3.482l-5.743-3.166c-19.038-10.377-42.726-23.3-90.453-71.04s-60.672-71.45-71.049-90.453l-3.149-5.743a12.92%2c12.92%2c0%2c0%2c1%2c3.413-16.606l38.792-30.182a30.268%2c30.268%2c0%2c0%2c0%2c6.588-40.508L118.027%2c14.454A30.094%2c30.094%2c0%2c0%2c0%2c77.461%2c5.323L34.12%2c31.358A61.136%2c61.136%2c0%2c0%2c0%2c6.242%2c67.539C-9.365%2c124.4%2c2.376%2c222.547%2c146.948%2c367.136c115%2c114.995%2c200.619%2c145.92%2c259.465%2c145.92a151.182%2c151.182%2c0%2c0%2c0%2c40.107-5.239A61.079%2c61.079%2c0%2c0%2c0%2c482.7%2c479.939l26.061-43.315A30.1%2c30.1%2c0%2c0%2c0%2c499.639%2c396.039Zm-5.581%2c31.829-26%2c43.341a44.1%2c44.1%2c0%2c0%2c1-26.027%2c20.173c-52.5%2c14.413-144.213%2c2.475-283.008-136.32S8.29%2c124.559%2c22.7%2c72.054A44.169%2c44.169%2c0%2c0%2c1%2c42.9%2c45.993l43.341-26a13.056%2c13.056%2c0%2c0%2c1%2c17.6%2c3.959l37.547%2c56.371%2c31.514%2c47.266a13.134%2c13.134%2c0%2c0%2c1-2.85%2c17.579l-38.8%2c30.182a29.866%2c29.866%2c0%2c0%2c0-7.91%2c38.332l3.081%2c5.6c10.906%2c20%2c24.465%2c44.885%2c73.967%2c94.379s74.377%2c63.053%2c94.37%2c73.958l5.606%2c3.089A29.867%2c29.867%2c0%2c0%2c0%2c338.7%2c382.8l30.182-38.8a13.141%2c13.141%2c0%2c0%2c1%2c17.579-2.85L490.1%2c410.264A13.047%2c13.047%2c0%2c0%2c1%2c494.058%2c427.868Z' fill='white'/%3e%3cpath id='Pfad_2' data-name='Pfad 2' d='M291.161%2c86.39A145.23%2c145.23%2c0%2c0%2c1%2c436.228%2c231.457a8.533%2c8.533%2c0%2c1%2c0%2c17.066%2c0A162.311%2c162.311%2c0%2c0%2c0%2c291.161%2c69.324a8.533%2c8.533%2c0%2c0%2c0%2c0%2c17.066Z' fill='white'/%3e%3cpath id='Pfad_3' data-name='Pfad 3' d='M291.161%2c137.59a93.978%2c93.978%2c0%2c0%2c1%2c93.867%2c93.867%2c8.533%2c8.533%2c0%2c1%2c0%2c17.066%2c0A111.061%2c111.061%2c0%2c0%2c0%2c291.161%2c120.524a8.533%2c8.533%2c0%2c0%2c0%2c0%2c17.066Z' fill='white'/%3e%3cpath id='Pfad_4' data-name='Pfad 4' d='M291.161%2c188.79a42.719%2c42.719%2c0%2c0%2c1%2c42.667%2c42.667%2c8.533%2c8.533%2c0%2c1%2c0%2c17.066%2c0%2c59.8%2c59.8%2c0%2c0%2c0-59.733-59.733%2c8.533%2c8.533%2c0%2c1%2c0%2c0%2c17.066Z' fill='white'/%3e%3c/g%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 25px;
  background-position: center center;
  position: relative;
}

.call a {
  display: inline-block;
  position: relative;
  height: 100%;
  width: 100%;
  text-indent: -999999px;
}

.call:hover:before {
  content: '';
  width: 10px;
  height: 10px;
  position: absolute;
  background-color: #FFF;
  transform: rotate(45deg);
  top: 30px;
  left: 15px;
} 
.call:hover:after {
  content: '+49 (0) 8178-997 507-0';
  background-color: #FFF;
  border-radius: 5px;
  padding: 5px 15px;
  color: #000;
  width: 200px;
  position: absolute;
  display: inline-block;
  right: -40px;
  bottom: -50px;
  text-align: center;
} 

.fixed-menu-wrapper {
  background-color: transparent;
  position: fixed;
  top: 0px;
  right: 0px;
  display: flex;
  justify-content: space-between;
  column-gap: 15px;
  padding: 30px 40px 0px 0px;
  border-radius: 0px;
  align-items: center;
  transition: 0.3s ease;
  z-index: 1;
}

.toggle-menu {
  width: 40px;
  height: 35px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 2px 2px 2px 3px;
  border-radius: 5px;
  cursor: pointer;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.line {
  width: 100%;
  height: 1px;
  border-radius: 0px;
  background-color: #fff;
  transform-origin: center center;
  transition: transform 0.2s ease-out;
  -webkit-transition: transform 0.2s ease-out;
  -moz-transition: transform 0.2s ease-out;
  -ms-transition: transform 0.2s ease-out;
  -o-transition: transform 0.2s ease-out;
}

.toggle .line1 {
  transform: translateY(10px) rotateZ(-45deg) scale(0.9);
}

.toggle .line2 {
  visibility: hidden;
}

.toggle .line3 {
  transform: translateY(-10px) rotateZ(45deg) scale(0.9);
}

.booking {
  letter-spacing: 2px;
  line-height: 38px;
  padding: 0 0 0 5px;
  border-radius: 5px;
  margin: 0 auto;
}

.toggle .nav-list-wrapper {
  display: block;
  opacity: 1;
  right: 0;
  text-align: center;
  overflow: scroll;
  padding: 0 20px;
}

.nav-list {
  display: inline-block;
  list-style: none;
  margin: 0 auto;
  max-width: 600px;
  padding-top: 20px;
  margin-top: 90px;
  text-align: left;
}

.nav-list-wrapper {
  display: block;
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  background-image: url('../img/menu-bg.png');
  background-position: center center;
  background-size: cover;
  height: 100vh;
  width: 100%;
  z-index: -1;
  -webkit-box-shadow: -10px 2px 33px 5px rgb(0 0 0 / 41%);
  box-shadow: -10px 2px 33px 5px rgb(0 0 0 / 41%);
  transition: 0.3s ease;
  text-align: center;
  overflow: scroll;
  padding: 0 20px;
}

.nav-list-wrapper ul {
  padding: 0;
  padding-top: 40px;
  padding-bottom: 100px;
}

.nav-list-wrapper ul li ul {
  padding-top: 0px;
  padding-bottom: 0px;
}

.nav-list li {
  list-style: none;
  list-style-image: none;
}

.nav-list li ul { margin-bottom: 10px; }
.nav-list li ul li { padding-left: 0px; }

.nav-list li a {
  display: block;
  padding: 5px 0;
  font-size: 16px;
  padding-left: 0px;
  margin-left: 0px;
  margin-right: 20px;
  margin-bottom: 0;
  line-height: 18px;
  letter-spacing: 1px;
  transition: all 0.3s ease-in-out;
}

.nav-list li a:hover {
  text-decoration: underline;
  padding-left: 10px;
}

.nav-list li span {
  font-weight: bold;
  text-transform: uppercase;
}

.nav-list li:last-child {
  margin-bottom: 0;
}

.toggle .nav-list-wrapper {
  visibility: visible;
  opacity: 1;
  right: 0;
}

/* LANGUAGE */
.lng {
  align-self: center;
  height: 25px;
}
.lng ul, .lng ul li {
  padding: 0;
  margin: 0;
  list-style: none;
  list-style-image: none;
  list-style-type: none;
}
.language-link {
  overflow: hidden;
  height: 25px;
  width: 25px;
  line-height: 25px;
  display: inline-block;
  color: #FFF;
  text-transform: uppercase;
}
/*
.country-de a {
  background-image: url("data:image/svg+xml,%3csvg id='fi_197571' enable-background='new 0 0 512 512' viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='m15.923 345.043c36.171 97.484 130.006 166.957 240.077 166.957s203.906-69.473 240.077-166.957l-240.077-22.26z' fill='%23ffda44'%3e%3c/path%3e%3cpath d='m256 0c-110.071 0-203.906 69.472-240.077 166.957l240.077 22.26 240.077-22.261c-36.171-97.484-130.006-166.956-240.077-166.956z'%3e%3c/path%3e%3cpath d='m15.923 166.957c-10.29 27.733-15.923 57.729-15.923 89.043s5.633 61.31 15.923 89.043h480.155c10.29-27.733 15.922-57.729 15.922-89.043s-5.632-61.31-15.923-89.043z' fill='%23d80027'%3e%3c/path%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3c/svg%3e");
}
.country-en a {
  background-image: url("data:image/svg+xml,%3csvg id='fi_197374' enable-background='new 0 0 512 512' viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='256' cy='256' fill='%23f0f0f0' r='256'%3e%3c/circle%3e%3cg fill='%230052b4'%3e%3cpath d='m52.92 100.142c-20.109 26.163-35.272 56.318-44.101 89.077h133.178z'%3e%3c/path%3e%3cpath d='m503.181 189.219c-8.829-32.758-23.993-62.913-44.101-89.076l-89.075 89.076z'%3e%3c/path%3e%3cpath d='m8.819 322.784c8.83 32.758 23.993 62.913 44.101 89.075l89.074-89.075z'%3e%3c/path%3e%3cpath d='m411.858 52.921c-26.163-20.109-56.317-35.272-89.076-44.102v133.177z'%3e%3c/path%3e%3cpath d='m100.142 459.079c26.163 20.109 56.318 35.272 89.076 44.102v-133.176z'%3e%3c/path%3e%3cpath d='m189.217 8.819c-32.758 8.83-62.913 23.993-89.075 44.101l89.075 89.075z'%3e%3c/path%3e%3cpath d='m322.783 503.181c32.758-8.83 62.913-23.993 89.075-44.101l-89.075-89.075z'%3e%3c/path%3e%3cpath d='m370.005 322.784 89.075 89.076c20.108-26.162 35.272-56.318 44.101-89.076z'%3e%3c/path%3e%3c/g%3e%3cg fill='%23d80027'%3e%3cpath d='m509.833 222.609h-220.44-.001v-220.442c-10.931-1.423-22.075-2.167-33.392-2.167-11.319 0-22.461.744-33.391 2.167v220.44.001h-220.442c-1.423 10.931-2.167 22.075-2.167 33.392 0 11.319.744 22.461 2.167 33.391h220.44.001v220.442c10.931 1.423 22.073 2.167 33.392 2.167 11.317 0 22.461-.743 33.391-2.167v-220.44-.001h220.442c1.423-10.931 2.167-22.073 2.167-33.392 0-11.317-.744-22.461-2.167-33.391z'%3e%3c/path%3e%3cpath d='m322.783 322.784 114.236 114.236c5.254-5.252 10.266-10.743 15.048-16.435l-97.802-97.802h-31.482z'%3e%3c/path%3e%3cpath d='m189.217 322.784h-.002l-114.235 114.235c5.252 5.254 10.743 10.266 16.435 15.048l97.802-97.804z'%3e%3c/path%3e%3cpath d='m189.217 189.219v-.002l-114.236-114.237c-5.254 5.252-10.266 10.743-15.048 16.435l97.803 97.803h31.481z'%3e%3c/path%3e%3cpath d='m322.783 189.219 114.237-114.238c-5.252-5.254-10.743-10.266-16.435-15.047l-97.802 97.803z'%3e%3c/path%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3c/svg%3e");
}
*/

/* End Header */

/* Tabs */

/* (A) HIDE CHECKBOX & CONTENT, SHOW ON CHECKED */
.tabbox { display: none; }
.tab-wrapper * { -webkit-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; }
.tab-wrapper .tab-content .links li { opacity: 0; }
.tab-wrapper .tab-content .links li { order: 2; }
.tab-wrapper .tab-content .links li.is-active { opacity: 1; order: 1; }
.tab-wrapper .tab-content .links { display: flex; flex-wrap: wrap; width: 30px; }
.tab-wrapper input:checked ~ .tab-content .links li { opacity: 1; }
.tab-wrapper input ~ label h3 {
    margin-bottom: 0;
    margin-top: 0;
    display: inline-block;
    overflow: hidden;
    text-indent: -100vw;
    width: 25px;
    height: 25px;
}
.tab-wrapper { display: inline-block; position: relative; }
.tab-content { position: absolute; top: 0; z-index: 99; }
.tab-wrapper label {
  position: relative;
  display: inline-block;
  z-index: 100;
}
.tab-wrapper label:hover { cursor: pointer; }

/* Ende Tabs */

/* Admin */

#block-moerlbach-primary-local-tasks {
    position: fixed;
    top: 550px;
    left: 0;
    background-color: #FFF;
    padding: 20px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    z-index: 9999;
    -webkit-box-shadow: 0 5px 7px -1px rgb(0 0 0 / 32%);
    -moz-box-shadow: 0 5px 7px -1px rgba(0,0,0,.32);
    box-shadow: 0 5px 7px -1px rgb(0 0 0 / 32%);
}

#block-moerlbach-primary-local-tasks ul, #block-moerlbach-primary-local-tasks li {
    list-style: none;
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

/* end Admin */

/* Beginn Main */
/* Beginn Section fullwidth-slider */

.main-notfront #block-moerlbach-content { padding-top: 90px; }

.fullwidth-slider {
  line-height: 0;
}

.fullwidth-slider-bg-img {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center !important;
  height: 100vh;
}

.small-slider .fullwidth-slider-bg-img { height: auto; }

/* End Section fullwidth-slider */
/* Beginn Section Headline */

.h2-headline-section {
  padding: 15px 0;
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 130px;
  line-height: 135px;
  padding-right: var(--text-indent);
}

.h2-headline-section p {
  margin-block-start: 0;
  margin-block-end: 0;
}

/* End Section Headline */
/* Beginn Section Text-left-Pic-right */

.text-on-the-left {
  text-align: right;
}

.inner-width-pos-wrapper {
  display: inline-block;
  /* width: calc(100% - var(--text-indent)); */
  text-align: left;
}

.paragraph--type--banner-text .inner-width-pos-wrapper {
  width: calc(100% - var(--text-indent));
}

.flex-text-wrapper {
  width: 50%;
}

.text-on-the-left .flex-text-wrapper {
  padding-top: 100px;
  padding-left: 30px;
  padding-right: 30px;
}

.flex-img-wrapper {
  width: 50%;
  padding-bottom: 60px;
}

.text-on-the-left .h3 {
  padding-right: var(--text-indent);
  padding-left: 30px;
}

.moerlbach-h3 {
  margin: 0;
  padding-top: 65px;
}

.section-zimmer-wohnungen { position: relative; }
.section-zimmer-wohnungen .inline-block {
  vertical-align: top;
}

.section-zimmer-wohnungen .smaller-img-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
}

.section-zimmer-wohnungen .txt-right { position: relative; }

.section-zimmer-wohnungen .smaller-img-wrapper img {
  display: block;
}

/* End Section Text-left-Pic-right */
/* Beginn Section Text-right-Pic-left */
.section-with-bg-img {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.text-on-the-right {
  text-align: left;
}

.text-on-the-right .flex-container {
  flex-direction: row-reverse;
}

.flex-thin-h2 {
  /* font-family: "Roboto Mono"; */
  font-weight: 100;
  font-size: 70px;
  font-style: normal;
  line-height: 70px;
  margin: 0;
  margin-block-start: 0;
  margin-block-end: 0;
  /*
  -moz-hyphens: auto;
  -o-hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  */
}

.ltrb .txt-left .text-wrapper {
  padding-bottom: 20px;
}

.text-on-the-right .basic-text {
  padding-top: 20px;
  padding-bottom: 0;
}

.basic-text p:first-child {
  margin-block-start: 0;
}

.basic-text p:last-child {
  margin-block-end: 0;
}

.tag {
  letter-spacing: 3px;
}

.paragraph--type--headline-left-big-and-small-imag .basic-text { padding-bottom: 20px; }
.section-zimmer-wohnungen .txt-left .text-wrapper { padding-bottom: 20px; }

/* End Section Text-right-Pic-left */

/* Beginn Video Section */

.video-wrapper {
  padding: 30px 0;
  color: #fff;
  overflow: hidden;
  position: relative;
  height: 30vw;
}
.video {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  width: 100%;
  transform: translate(-50%, -50%);
  opacity: 1;
}
.video::-webkit-media-controls {
  display: none !important;
}

/* End Video Section */

/* Begin Just Text */

.content {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 20px;
}

/* End Just Text */

/* Beginn Section Flexbox-2Bilder-2Texte */

.flex-elem-50.txt-right .thin-h2-mg {
  margin-right: 30px;
  margin-left: var(--text-indent);
}

.flex-elem-50.txt-left .thin-h2-mg {
  margin-right: var(--text-indent);
  margin-left: 30px;
}

.flex-elem-50 .smaller-img-wrapper {
  width: 62%;
  padding-top: 120px;
}

.flex-elem-50.txt-left .text-wrapper {
  padding-left: 30px;
  padding-right: var(--text-indent);
}

.paragraph--type--left-bg-image-right-headline-txt .flex-elem-50.txt-left .text-wrapper {
  margin-left: 0px;
}

.flex-elem-50.txt-right .text-wrapper {
  margin-right: 30px;
  margin-left: var(--text-indent);
}

.flex-elem-50 .text-wrapper {
  padding-top: 30px;
}

.section-headline-text .text-wrapper {
  padding-top: 0;
}

/* End Section Flexbox-2Bilder-2Texte */

/* Left Pic Right Headline Text */

.lprht .flex-elem-50.txt-left .text-wrapper { padding-bottom: 20px; }

/* Beginn Fullwidth Buidl */

.fullwidth-bg-img {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

/* Das Haus */

.paragraph--type--left-headline-and-text-right-pic .flex-container {
  align-items: center;
}

.paragraph--type--left-headline-and-text-right-pic .txt-elem {
  width: 50%;
}
.paragraph--type--left-headline-and-text-right-pic .img-elem {
  align-self: stretch;
  width: 50%;
}

.image-title {
  font-size: 16px;
  position: absolute;
  bottom: 70px;
  padding-left: 10px;
}

/* End Fullwidth Buidl */

.on-side-aligned-img-wrapper {
  padding-top: 15%;
  padding-bottom: 60px;
  width: 72%;
}

.h2-gastgeber {
  padding-top: 30px;
}

.h2-dashaus {
  padding-top: 7%;
  color: #FFF;
}

.bgimage {
  background-size: cover;
  background-position: center center;
}

.flex-elem-50 .text-wrapper,
.text-on-the-right .flex-text-wrapper {
  margin-bottom: 5%;
  padding-right: 30px;
}

.flex-elem-50 .text-wrapper { margin-bottom: 0; }

.text-on-the-right .flex-text-wrapper {
  padding-left: 30px;
  align-self: center;
}

.mgl-and-mgr-wrapper {
  width: calc(100% - 2 * var(--text-indent));
  margin-left: var(--text-indent);
  margin-right: var(--text-indent);
}

.comments-headline-wrapper {
  width: 100%;
}

.comments-headline {
  letter-spacing: 9px;
  font-size: 24px;
  width: 66%;
}

.comments-headline-wrapper::before {
  content: "";
  position: absolute;
  width: 17%;
  left: 0;
  border-top: 1px solid black;
  height: 100%;
  transform: translateY(calc(50% + 2px));
}

.comments-headline-wrapper::after {
  content: "";
  position: absolute;
  width: 17%;
  right: 0;
  border-top: 1px solid black;
  height: 100%;
  transform: translateY(calc(50% + 2px));
}

.comments-end-line {
  border-bottom: 1px solid black;
  width: 100%;
  padding-top: 40px;
  font-weight: 100;
  text-align: center;
  padding-bottom: 20px;
  line-height: 40px;
  font-size: 20px;
  letter-spacing: 2px;
}

.comments-end-line a {
  text-decoration: underline;
  font-weight: 600;
}

.comment {
  width: 66%;
  line-height: 40px;
  font-size: 20px;
  letter-spacing: 2px;
  font-weight: 100;
}

.slideshow-image img { width: 100%; }

.comments-slider .slick-slide {
  height: auto;
}

.slick-arrow::before {
  content: "";
}

.slick-arrow {
  width: 40px;
  height: 40px;
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  transform-origin: center center;
  z-index: 10;
}

.comments-slider .slick-arrow {
  border-top: 1px solid #999;
  border-right: 1px solid #999;
}

.slick-prev {
  transform: translate(100%, -50%) rotate(-135deg);
}

.slick-next {
  transform: translate(-100%, -50%) rotate(45deg);
}

.row-rev .flex-elem-50.txt-right {
  text-align: left;
}

.row-rev .flex-elem-50.txt-left {
  text-align: right;
}

.row-rev .half-content-width.txt-right {
  text-align: left;
}

.row-rev .flex-container { flex-direction: row-reverse; }
/* End Main */
/* Beginn Footer */

.footer-logo-flexelem > div {
  margin-bottom: 30px;
}

.footer-logo-wrapper {
  max-width: 390px;
  text-align: center;
  padding: 0 20px;
  display: inline-block;
}

.footer-card-wrapper {
  align-self: flex-end;
  width: 100%;
}

.footer-logo-flexelem .fit-it {
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: right;
}

.footer-card-wrapper img {
  width: 100%;
  max-width: 800px;
  height: auto;
}

.footer-navlist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-flex-container {
  column-gap: 80px;
  row-gap: 80px;
  margin-right: var(--text-indent);
}

.data-paragraph {
  margin-bottom: 30px;
}

.data-paragraph:last-child {
  margin-bottom: 0;
}

.footer-navlist li {
  padding-bottom: 15px;
}

.footer-navlist li:last-child {
  margin-bottom: 0;
}

.a-basics:hover { text-decoration: underline; }
.devider {
  border-bottom: 1px solid rgb(255 255 255 / 26%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.flyer {
  padding-left: 25px;
  background-image: url("data:image/svg+xml,%3csvg id='fi_5116380' enable-background='new 0 0 512 512' fill='white' height='512' viewBox='0 0 512 512' width='512' xmlns='http://www.w3.org/2000/svg'%3e%3cg%3e%3cpath d='m487.001 62.13h-131.445v-47.13c0-8.284-6.716-15-15-15h-315.557c-8.284 0-15 6.716-15 15v440.58c0 8.284 6.716 15 15 15h131.446v26.42c0 8.284 6.716 15 15 15h315.557c8.284 0 15-6.716 15-15v-419.87c-.001-8.284-6.717-15-15.001-15zm-231.231 0 69.786-25.638v25.638zm-215.771 378.45v-410.58h216.231l-89.958 33.05c-5.903 2.169-9.827 7.791-9.827 14.08v363.45zm432.002 41.42h-285.556v-389.87h285.557v389.87z'%3e%3c/path%3e%3cpath d='m359.225 242.062h66.174c8.284 0 15-6.716 15-15v-60.004c0-8.284-6.716-15-15-15h-66.174c-8.284 0-15 6.716-15 15v60.004c0 8.284 6.716 15 15 15zm15-60.004h36.174v30.004h-36.174z'%3e%3c/path%3e%3cpath d='m233.047 242.062h66.174c8.284 0 15-6.716 15-15s-6.716-15-15-15h-66.174c-8.284 0-15 6.716-15 15s6.716 15 15 15z'%3e%3c/path%3e%3cpath d='m233.047 182.058h66.174c8.284 0 15-6.716 15-15s-6.716-15-15-15h-66.174c-8.284 0-15 6.716-15 15s6.716 15 15 15z'%3e%3c/path%3e%3cpath d='m233.047 302.064h192.352c8.284 0 15-6.716 15-15s-6.716-15-15-15h-192.352c-8.284 0-15 6.716-15 15s6.716 15 15 15z'%3e%3c/path%3e%3cpath d='m233.047 362.068h192.352c8.284 0 15-6.716 15-15s-6.716-15-15-15h-192.352c-8.284 0-15 6.716-15 15s6.716 15 15 15z'%3e%3c/path%3e%3cpath d='m233.047 422.072h192.352c8.284 0 15-6.716 15-15s-6.716-15-15-15h-192.352c-8.284 0-15 6.716-15 15s6.716 15 15 15z'%3e%3c/path%3e%3c/g%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 20px;
}

/* End Footer */ 

/* 360 Grad View */

.google-map {
  height: calc(70vh);
}
.google-map iframe {
  border: none;
  width: 100%;
  height: calc(70vh);
  pointer-events:none;
}

/* End 360 Grad View */

.presse-slider { margin-top: 30px; }

@media only screen and (max-width: 1280px) {
  /*
  .flex-thin-h2 {
    font-size: 10vw;
    line-height: 9vw;
  }
  */

  .h2-headline-section {
    font-size: 12vw;
    line-height: 11vw;
  }
  
  .footer .txt-left {
    display: block;
    width: 100%;
    text-align: center
  }
  
  .footer-flex-break {
    display: block;
    width: 100%;
  }
  
  .footer-menu-flexelem { margin-top: 20px; }

  .footer-logo-flexelem {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }

  .footer-logo-flexelem > div {
    width: 100%;
    text-align: center;
  }
}

@media only screen and (max-width: 1000px) {
  .flex-thin-h2 {
    font-size: 55px;
    line-height: 55px;
  }
}

@media only screen and (max-width: 830px) {
  
  body {
    -moz-hyphens: none;
    -o-hyphens: none;
    -webkit-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
  }
  
  /* Video */
  .video-wrapper {
    height: 60vw;
  }
  .video {
    width: auto;
    height: 100%;
  }
  /* Co-Living */
  .paragraph--type--picture-left-headline-and-text-r.section-space-bottom { padding-bottom: 0px; }
  
  /* Zimmer und Wohnungen */
  .paragraph--type--headline-left-big-and-small-imag .txt-right {
    padding-bottom: 20px;
  }
  
  /* Das Haus */
  .paragraph--type--left-pic-right-headline-text-pic .bgimage {
    height: 100vw;
    min-height: 300px;
  }
  
  /* Der Garten */
  
  .paragraph--type--headline-and-text .txt-left .text-wrapper { padding-bottom: 0; }
  
  .flex-thin-h2 {
    -moz-hyphens: none;
    -o-hyphens: none;
    -webkit-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
  }
  
  .text-on-the-right .mobile-flex-break {
    flex-wrap: wrap;
  }

  .text-on-the-left .mobile-flex-break {
    flex-wrap: wrap-reverse;
  }
  
  .paragraph--type--banner-text .inner-width-pos-wrapper,
  .inner-width-pos-wrapper {
    width: 100%;
  }

  .flex-elem-50.txt-left .text-wrapper,
  .flex-elem-50.txt-right .text-wrapper,
  .flex-elem-50.txt-right .thin-h2-mg,
  .text-on-the-left .h3,
  .h2-headline-section,
  .flex-text-wrapper {
    width: calc(100% - 60px);
    padding-left: 30px;
    padding-right: 30px;
  }

  .moerlbach-h3 {
    padding-top: 6%;
    letter-spacing: 2px;
  }

  .flex-img-wrapper {
    width: 100%;
    padding-bottom: 0px;
  }

  .flex-elem-50 .smaller-img-wrapper { display: none; }
  
  .flex-elem-50 .text-wrapper,
  .text-on-the-right .basic-text,
  .text-on-the-left .flex-text-wrapper {
    padding-top: 30px;
    padding-right: 20px;
  }

  .flex-elem-50 .text-wrapper,
  .text-on-the-right .flex-text-wrapper {
    margin-bottom: 0;
    padding-bottom: 10%;
  }

  .flex-thin-h2 {
    font-size: 50px;
    line-height: 70px;
  }

  .mobile-flex-break-2 {
    display: block;
  }

  .mobile-flex-break-2 .flex-elem-50 {
    width: 100%;
  }

  .mobile-flex-break-2 .txt-right {
    text-align: left;
  }

  .flex-elem-50.txt-right .text-wrapper,
  .flex-elem-50.txt-right .thin-h2-mg,
  .flex-elem-50.txt-left .text-wrapper {
    margin: 0;
  }
  
  .row-rev .flex-elem-50.txt-right .thin-h2-mg { margin-top: 40px; }

  .half-content-width {
    max-width: unset;
  }

  .h2-gastgeber,
  .section-space-top {
    padding-top: 40px;
  }
  
  .section-with-bg-img { background-position: top right; }

  .row-rev .h2-gastgeber {
    padding-top: 0;
  }

  .section-space-bottom {
    padding-bottom: 40px;
  }

  .fullwidth-bg-img {
    padding: 60px 0;
  }

  .on-side-aligned-img-wrapper {
    display: block;
    margin: 0 auto;
  }

  .mgl-and-mgr-wrapper {
    width: calc(100% - 60px);
    margin-left: 30px;
    margin-right: 30px;
  }

  .comments-headline-wrapper::before,
  .comments-headline-wrapper::after {
    width: 15%;
  }

  .fullwidth-slider .fullwidth-slider-bg-img {
    height: 75vh;
  }
  .small-slider .fullwidth-slider-bg-img { height: auto; }
  
  .presse-slider .slick-slide img {
    width: 100%;
    height: auto;
  }
}

@media only screen and (max-width: 666px) {
  .footer-flex-container > div {
    width: 100%;
  }

  .footer-flex-container {
    margin-right: 0;
  }

  .footer-logo-flexelem > div {
    margin: 0 auto;
  }

  .footer-data-flexelem,
  .footer-menu-flexelem {
    text-align: center;
  }
}

@media only screen and (max-width: 555px) {
  
  .main-notfront #block-moerlbach-content { padding-top: 60px; }
  
  /* Der Gastgeber */
  .paragraph--type--left-headline-and-text-right-pic .on-side-aligned-img-wrapper { padding-bottom: 0px; padding-top: 0px; }
  .image-title {
    bottom: 10px;
    font-size: 14px;
  }
  
  /* Video */
  .video-wrapper {
    height: 90vw;
  }
  
  .show-more-btn,
  body {
    font-size: 16px;
    line-height: 25px;
  }
  
  .flex-thin-h2 {
    font-size: 35px;
    line-height: 35px;
  }
  
  .fixed-menu-wrapper {
    padding: 10px 10px 0px 0px;
    column-gap: 8px;
  }
  
  .nav-bar .booking a {
    letter-spacing: 3px;
    font-size: 16px;
  }
  
  .menu-bg {
    height: 60px;
    background-size: 115px;
    background-position: 10px 5px;
  }
  
  .menu-bg.show {
    background-size: 100px;
    background-position: 10px center;
  }
  
  .anker {
    position: absolute;
    top: -60px;
  }
  
  #tofront {
    height: 60px;
  }

  .flex-elem-50.txt-right .thin-h2-mg,
  .flex-elem-50.txt-left .text-wrapper,
  .flex-elem-50.txt-right .text-wrapper,
  .text-on-the-left .h3,
  .h2-headline-section,
  .flex-text-wrapper {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .mgl-and-mgr-wrapper {
    width: calc(100% - 40px);
    margin-left: 20px;
    margin-right: 20px;
  }

  .comments-headline {
    font-size: 20px;
    letter-spacing: 2px;
    line-height: 24px;
  }

  .comment {
    font-size: 16px;
    line-height: 25px;
    width: 95%;
  }
  
  .comments-end-line {
    font-size: 16px;
    line-height: 25px;
  }

  .comments-slider .slick-dots li::before {
    content: "";
    display: block;
    position: relative;
    top: 0;
    left: 5.5px;
    width: 9px;
    height: 9px;
    background: #303030;
    -moz-border-radius: 4.5px;
    -webkit-border-radius: 4.5px;
    border-radius: 4.5px;
    transform: translate(-50%, -50%);
  }

  .comments-slider .slick-dots .slick-active::after {
    content: "";
    position: absolute;
    top: 0;
    left: 5.5px;
    width: 21px;
    height: 21px;
    -moz-border-radius: 10.5px;
    -webkit-border-radius: 10.5px;
    border-radius: 10.5px;
    border: 1px solid #303030;
    transform: translate(-50%, -50%);
  }

  .comments-slider .slick-dots {
    bottom: -50px;
  }

  .on-side-aligned-img-wrapper {
    width: 100%;
  }
  
  .footer-logo-flexelem img { max-width: 60%; }
  .footer-logo-flexelem .footer-card-wrapper img { max-width: 100%; }
}
