@import 'fonts.css';
body {
  background-color: #202720;
  font-family: 'figtree', 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #fff;
  padding: 0;
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
.wrapper.flex {
  display: flex;
}
.wrapper.small {
  max-width: 800px;
}
.wrapper.spaced {
  padding: 60px 0;
}
.spacer {
  height: 20px;
  width: 100%;
  display: block;
}
.spacer.double {
  height: 40px;
}
.sidebar-wrapper {
  margin-right: 40px;
}
.sidebar-wrapper .sidebar-content {
  position: sticky;
  top: 140px;
  min-width: 240px;
  background-color: #dbe6db;
  border-radius: 6px;
  padding: 40px;
  color: #202720;
}
@media (max-width: 1200px) {
  .wrapper {
    max-width: 800px;
  }
}
@media (max-width: 820px) {
  .wrapper {
    max-width: 760px;
    padding: 0 20px !important;
  }
  .wrapper.flex.spaced {
    flex-direction: column;
  }
  .wrapper.flex.spaced .sidebar-wrapper {
    margin-right: 0;
    margin-top: 20px;
  }
  .wrapper.flex.spaced .sidebar-wrapper .sidebar-content {
    padding: 20px;
  }
  .wrapper.flex.spaced .sidebar-wrapper .sidebar-content h1 {
    margin-top: 0;
    margin-bottom: 10px;
  }
}
.main-content {
  flex-grow: 1;
}
.main-content.inverted {
  background-color: #fff;
  color: #202720;
}
@media (max-width: 820px) {
  body.single .main-content {
    padding: 0 20px;
  }
}
#header {
  background-color: #4DAD48;
  padding: 20px 0;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  font-family: 'crimson_regular', sans-serif;
  font-weight: 400;
}
#header .wrapper {
  align-items: center;
}
#header .logo svg {
  height: 30px;
  width: 100%;
  display: block;
}
#header .burger {
  display: none;
}
#header .navigation {
  display: flex;
  flex-grow: 1;
  justify-content: flex-end;
}
#header .navigation ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
#header .navigation .navlinks {
  display: flex;
}
#header .navigation .navlinks > li {
  display: flex;
  align-items: center;
}
#header .navigation .navlinks > li a {
  display: block;
  padding: 0 10px;
  line-height: 35px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  transition: all 500ms;
}
#header .navigation .navlinks > li a:hover {
  border-bottom-color: #ffffff87;
}
#header .navigation .navlinks > li.current-menu-item a {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
#header .navigation .sub-menu {
  display: none;
}
#header .navigation .header-contact {
  margin-left: 40px;
  font-size: 14px;
}
#header .navigation .header-contact a {
  display: block;
  padding: 2px;
  line-height: 1;
}
.admin-bar #header {
  top: 32px;
}
@media (max-width: 820px) {
  #header .logo {
    padding-left: 10px;
  }
  #header .logo svg {
    height: 24px;
  }
  #header .burger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 9px 14px;
  }
  #header .burger span {
    background-color: #fff;
    width: 30px;
    border-radius: 4px;
    display: block;
    height: 4px;
  }
  #header .burger span:nth-of-type(1) {
    margin-top: 10px;
  }
  #header .burger span:nth-of-type(3) {
    margin-bottom: 10px;
  }
  #header .navigation {
    position: fixed;
    top: 64px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    background-color: #4DAD48;
    padding: 20px;
    flex-direction: column;
    justify-content: space-between;
    transform: translateX(100%);
    transition: transform 300ms;
  }
  #header .navigation .navlinks {
    display: block;
  }
  #header .navigation .navlinks li {
    justify-content: center;
    margin-top: 20px;
  }
  #header .navigation .header-contact {
    margin-left: 0;
    font-size: inherit;
    display: flex;
    justify-content: space-between;
  }
  #header.menu_open .navigation {
    transform: translateX(0);
  }
}
.page-title {
  margin-top: 60px;
  margin-left: 40px;
  font-size: 45px;
}
@media (max-width: 820px) {
  .page-title {
    margin-top: 20px;
    margin-left: 20px;
  }
}
#footer {
  background-color: #4DAD48;
  padding: 80px 0 40px 0;
}
#footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
#footer .footer-links {
  flex-grow: 1;
  columns: 2;
}
#footer .footer-links a {
  text-transform: uppercase;
  padding: 5px 0;
  display: block;
  font-family: 'figtree_medium', sans-serif;
  font-style: normal;
}
#footer .footer-contact {
  text-align: right;
}
#footer .footer-contact .footer-logo {
  margin-bottom: 20px;
}
#footer .footer-contact .footer-contact-data {
  font-size: 13px;
  line-height: 1.4;
}
#footer .legal-menu {
  display: flex;
  gap: 10px;
  margin-right: 10px;
}
#footer .legal-menu a {
  text-decoration: underline;
}
#footer_note {
  margin-top: 40px;
  font-size: 13px;
  align-items: flex-end;
}
#iata_logo {
  flex-grow: 1;
  text-align: right;
}
#iata_logo svg {
  height: 50px;
}
#iata_logo svg path {
  fill: #fff;
}
@media (max-width: 820px) {
  #footer {
    padding: 20px 0;
  }
  #footer .wrapper.flex {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 20px;
  }
  #footer .footer-links {
    order: 2;
  }
  #footer .footer-links a {
    font-size: 12px;
    line-height: 1.4;
  }
  #footer .footer-contact {
    text-align: left;
    order: 1;
    margin-bottom: 40px;
  }
  #footer .footer-contact .footer-logo {
    margin-top: 20px;
    margin-bottom: 40px;
  }
  #footer .menu-footer-legal-infos-container {
    width: 100%;
    margin-bottom: 20px;
  }
  #footer .legal-menu {
    flex-direction: column;
    margin-bottom: 20px;
  }
  #footer .legal-menu a {
    display: block;
    line-height: 1.2;
  }
  #iata_logo {
    margin: 20px auto 10px auto;
  }
}
.angebotsblock {
  background-color: #fff;
  padding: 20px;
  display: flex;
  gap: 20px;
  border-radius: 6px;
  color: #202720;
  margin-bottom: 20px;
}
.angebotsblock .offer-image-link {
  width: 200px;
  padding-top: 200px;
  -webkit-background-size: cover !important;
  background-size: cover !important;
}
.angebotsblock .offer-info {
  flex-basis: 75%;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.angebotsblock .offer-info .angebot_title {
  font-family: 'crimson_regular', sans-serif;
  font-size: 30px;
  margin-top: -8px;
  margin-bottom: 10px;
  line-height: 1.4;
}
.angebotsblock .offer-info a {
  color: #202720;
}
.angebotsblock .offer-info .offer-excerpt {
  flex-basis: fit-content;
}
.angebotsblock .offer-description {
  display: flex;
  gap: 40px;
  flex-grow: 1;
  justify-content: space-between;
}
.angebotsblock .offer-description .mehr-infos {
  display: block;
  margin-top: 20px;
  color: #4DAD48;
}
.angebotsblock .offer-data {
  width: 150px;
  justify-content: flex-end;
  display: flex;
  flex-direction: column;
}
.angebotsblock .offer-data .offer-reisezeit strong {
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  display: block;
}
.angebotsblock .offer-data .offer-reisedaten {
  font-size: 12px;
  line-height: 1.3;
}
.angebotsblock .offer-data .offer-price a {
  text-decoration: none;
  font-size: 20px;
  white-space: nowrap;
  margin-top: 10px;
  background-color: #4DAD48;
  padding: 0 10px;
  border-radius: 6px;
  color: #fff;
  display: block;
}
@media (max-width: 820px) {
  .angebotsblock {
    flex-direction: column;
    border-radius: 0;
    margin-bottom: 20px;
  }
  .angebotsblock .offer-image-link {
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-top: -20px;
  }
  .angebotsblock .offer-info .angebot_title {
    line-height: 1.2;
  }
  .angebotsblock .offer-description {
    flex-direction: column;
  }
  .angebotsblock .offer-description .offer-data {
    width: 100%;
    flex-direction: row;
    gap: 10px;
  }
  .angebotsblock .offer-description .offer-data .offer-price {
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
  }
}
#region_filter {
  margin-right: 20px;
  font-size: 16px;
}
#zeitraum_submit {
  background-color: #4DAD48;
  color: #fff;
  padding: 2px 20px;
  margin-left: 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 300ms;
}
#zeitraum_submit:hover {
  background-color: #202720;
}
.dropdown {
  position: relative;
  color: #202720;
}
.dropdown .dropdown-label {
  border: 1px solid #e2e2e2;
  background-color: #f9f9f9;
  padding: 0 16px;
  display: inline-block;
  line-height: 32px;
  white-space: nowrap;
  padding-left: 20px;
  user-select: none;
  cursor: pointer;
}
.dropdown .dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 989;
  border: 1px solid #e2e2e2;
  background-color: #fff;
  padding: 8px 20px;
  min-width: 450px;
  box-shadow: 0px 2px 6px rgba(193, 193, 193, 0.3);
}
.dropdown .dropdown-header {
  border-bottom: 1px solid #e2e2e2;
  margin-bottom: 5px;
  padding-bottom: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dropdown .dropdown-filters {
  display: flex;
  flex-wrap: wrap;
}
.dropdown .dropdown-filters fieldgroup {
  width: 150px;
}
.dropdown .dropdown-filters fieldgroup input[type="checkbox"] {
  margin-right: 10px;
}
.dropdown.open .dropdown-content {
  display: block;
}
#budget {
  margin-left: 20px;
}
#budget .range-slider-container {
  position: relative;
  height: 60px;
}
#budget input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  height: 10px;
  top: 10px;
  border-radius: 4px;
  width: 100%;
  position: absolute;
  background-color: #202720;
  pointer-events: none;
}
#budget input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  pointer-events: all;
  width: 24px;
  height: 24px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #C6C6C6;
  cursor: pointer;
}
#budget input[type=range]::-moz-range-thumb {
  -webkit-appearance: none;
  pointer-events: all;
  width: 24px;
  height: 24px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #C6C6C6;
  cursor: pointer;
}
#budget #budget_range_min input[type=range]::-webkit-slider-thumb,
#budget #budget_range_min input[type=range]::-moz-range-thumb {
  transform: translateX(-50%);
}
#budget #budget_range_max input[type=range]::-webkit-slider-thumb,
#budget #budget_range_max input[type=range]::-moz-range-thumb {
  transform: translateX(50%);
}
#budget #budget_range_min {
  z-index: 1;
}
#budget .budget-min-holder,
#budget .budget-max-holder {
  position: absolute;
  top: 34px;
  transform: translateX(-50%);
}
.acf-map {
  width: 100%;
  height: 30vw;
  position: relative;
  margin-bottom: 20px;
}
.acf-map img {
  max-width: inherit !important;
}
.acf-map .marker {
  display: none;
}
.acf-map .address {
  color: #202720;
  font-size: 18px;
  margin-bottom: 0;
  margin-top: 0;
}
.acf-map a {
  color: #202720;
}
.acf-map .load-map-dummy {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent url('../imgs/zuklin_map.png') no-repeat center center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.acf-map .load-map-dummy .load-map-title {
  font-size: 25px;
  margin-bottom: 20px;
  background-color: #fff;
  border-radius: 6px;
  color: #4DAD48;
  padding: 2px 20px;
  cursor: pointer;
}
.acf-map .load-map-dummy .load-map-explanation {
  font-size: 14px;
  text-align: center;
  max-width: 75%;
}
.acf-map .load-map-dummy .load-map-explanation a {
  color: #fff;
  text-decoration: underline;
}
@media (max-width: 820px) {
  .acf-map {
    height: 30vh;
  }
  .acf-map.archive {
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + 40px);
  }
  .acf-map .load-map-dummy .load-map-title {
    font-size: 15px;
    padding-top: 6px;
    padding-bottom: 6px;
  }
  .acf-map .load-map-dummy .load-map-explanation {
    font-size: 12px;
    line-height: 1.2;
  }
  #map_filters {
    padding: 0 !important;
  }
  #region_filter {
    margin-right: 0 !important;
    width: 50%;
  }
  .dropdown .dropdown-content {
    min-width: unset;
    left: calc(-50vw + 40px);
  }
}
.pagination {
  display: flex;
  margin-bottom: 20px;
  background-color: #fff;
  border-radius: 6px;
  width: 100%;
  justify-content: center;
}
.pagination a {
  color: #4DAD48;
  padding: 2px 10px;
}
.pagination a.current {
  background-color: #4DAD48;
  color: #fff;
  pointer-events: none;
}
.pagination .nav-next,
.pagination .nav-previous {
  flex-basis: 50%;
  flex-grow: 1;
  padding: 5px;
}
.pagination .nav-previous {
  text-align: right;
}
body.single-post .main-content .wrapper {
  padding-left: 40px;
  padding-right: 40px;
}
body.single-post .main-content h1 {
  margin-top: 40px;
  text-transform: uppercase;
}
body.single-post .main-content .wp-block-image {
  margin-left: -40px;
  margin-right: -40px;
  margin-bottom: 40px;
}
body.single-post .main-content .wp-block-image img {
  width: 100%;
  display: block;
  border-radius: 6px;
}
body.single-post .main-content .wp-block-columns {
  margin-left: -40px;
  margin-right: -40px;
  margin-top: 40px;
}
body.single-post .main-content .wp-block-columns .wp-block-column .wp-block-image {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
}
body.single-post .acf-map {
  margin-bottom: 0;
}
@media (max-width: 820px) {
  body.single-post .main-content .wp-block-columns .wp-block-column .wp-block-image img {
    border-radius: 0;
  }
}
.faq-type-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.faq-link {
  display: inline-block;
  clear: both;
  margin-bottom: 10px;
  text-transform: uppercase;
  padding: 5px 15px;
  margin-left: -15px;
  transition: all 300ms;
  cursor: pointer;
  font-family: 'figtree_medium', sans-serif;
  font-style: normal;
}
.faq-link:hover {
  background-color: #4DAD48;
  color: #fff;
  border-radius: 6px;
}
.faq-header {
  border-top: 1px solid #4c4c4c;
}
.faq-header:first-of-type {
  border: none;
  margin-top: 0;
}
.faq-header:first-of-type h2 {
  margin-top: 0;
}
.faq-container {
  padding-left: 40px;
  margin-bottom: 80px;
}
.faq-container a {
  text-decoration: underline;
}
@media (max-width: 820px) {
  .faq-type-list .faq-link {
    margin-bottom: 0;
  }
  .faq-header h2 {
    font-size: 34px;
    margin-top: 1em !important;
  }
  .faq-container {
    padding-left: 10px;
    margin-bottom: 40px;
  }
}
#contact_page {
  margin-bottom: 160px;
}
#contact_page .header-image {
  height: 60vh;
  width: 100%;
  background-size: cover;
  background-position: center top;
  position: relative;
  z-index: 5;
  margin-bottom: -40vh;
}
#contact_page .wrapper {
  position: relative;
  z-index: 10;
  gap: 1px;
  margin-bottom: 1px;
  justify-content: center;
}
#contact_page .wrapper .left-wrap {
  width: 480px;
}
#contact_page .wrapper .right-wrap {
  width: 480px;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
#contact_page .contact-info,
#contact_page .contact-reach,
#contact_page .contact-form,
#contact_page .contact-tour {
  padding: 40px;
}
#contact_page .contact-form {
  background-color: #DBE6DB;
  color: #202720;
  margin-top: 1px;
}
#contact_page .contact-reach {
  flex-grow: 1;
}
#contact_page .contact-reach,
#contact_page .contact-info {
  background-color: #F5F8F5;
  color: #202720;
}
#contact_page .contact-reach address,
#contact_page .contact-info address {
  font-style: normal;
  margin-bottom: 1em;
}
#contact_page .contact-reach a,
#contact_page .contact-info a {
  color: #202720;
}
#contact_page .contact-flex-dummy {
  height: 40vh;
}
#contact_page .contact-map {
  background: transparent url('../imgs/zuklin-contact-map.png') no-repeat center center;
  background-size: cover;
  flex-grow: 1;
  max-width: 480px;
}
#contact_page .contact-tour {
  background: transparent url('../imgs/zuklin-contact-tour.jpg') no-repeat center center;
  background-size: cover;
  padding: 0;
  padding-top: 100%;
  width: 480px;
}
@media (max-width: 820px) {
  #contact_page .wrapper.flex {
    display: block;
  }
  #contact_page .wrapper .left-wrap,
  #contact_page .wrapper .right-wrap {
    width: auto;
  }
  #contact_page .contact-flex-dummy {
    height: 1px;
  }
  #contact_page .contact-map {
    max-width: unset;
    height: 40vh;
  }
  #contact_page .contact-tour {
    width: unset;
  }
}
form .required {
  position: relative;
  display: block;
}
form .required:after {
  content: '*';
  position: absolute;
  right: 10px;
  top: 10px;
  color: #4DAD48;
  font-family: 'figtree_mdeium';
  font-size: 20px;
  line-height: 1;
}
form textarea {
  resize: none;
}
form input[type="text"],
form input[type="number"],
form input[type="email"],
form input[type="date"],
form input[type="tel"],
form textarea {
  padding: 10px;
  border: none;
  border-radius: 4px;
  font-family: 'crimson_regular';
  font-size: 18px;
  transition: all 300ms;
  width: calc(100% - 20px);
}
form input[type="text"]:focus-visible,
form input[type="number"]:focus-visible,
form input[type="email"]:focus-visible,
form input[type="date"]:focus-visible,
form input[type="tel"]:focus-visible,
form textarea:focus-visible,
form input[type="text"]:focus,
form input[type="number"]:focus,
form input[type="email"]:focus,
form input[type="date"]:focus,
form input[type="tel"]:focus,
form textarea:focus {
  outline: none;
  box-shadow: 0 0 4px #858f85;
}
form input[type="submit"] {
  width: 100%;
  border-radius: 6px;
  color: #fff;
  text-align: center;
  background-color: #4DAD48;
  padding: 15px 10px;
  border: none;
  font-size: 16px;
  text-transform: uppercase;
  font-family: 'figtree_medium';
  cursor: pointer;
  transition: all 300ms;
}
form input[type="submit"]:hover {
  background-color: #459b41;
}
form input[type="submit"]:focus-visible,
form input[type="submit"]:focus {
  outline: none;
  box-shadow: 0 0 4px #858f85;
}
form .wpcf7-spinner {
  margin-top: -36px;
  display: block;
  left: 50%;
  margin-left: -20px;
}
form .wpcf7-acceptance {
  padding-left: 10px;
  font-size: 12px;
}
form .wpcf7-acceptance input {
  margin-left: -20px;
}
form .wpcf7-acceptance a {
  color: #202720;
  text-decoration: underline;
}
.urlaub-form {
  background-color: #202720;
  padding: 40px 20px;
}
.urlaub-form form {
  max-width: 600px;
  margin: 0 auto;
}
.urlaub-form .wpcf7-response-output,
.urlaub-form label {
  color: #fff;
}
.urlaub-form select {
  height: 44px;
  width: 100%;
  border-radius: 6px;
}
.urlaub-form .hotel-stars {
  margin-bottom: 20px;
  display: block;
}
.urlaub-form .hotel-stars input {
  display: none;
}
.urlaub-form .hotel-stars .wpcf7-list-item {
  margin-left: 0;
  margin-right: 10px;
}
.urlaub-form .hotel-stars .wpcf7-list-item span {
  font-weight: bold;
  background: transparent url('../imgs/star-bg-border.svg') no-repeat center center;
  background-size: contain;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  color: #74bd70;
  line-height: 44px;
  text-align: center;
  cursor: pointer;
  font-size: 11px;
  transition: all 300ms;
  padding-top: 3px;
}
.urlaub-form .hotel-stars .wpcf7-list-item.filled span {
  background: transparent url('../imgs/star-bg.svg') no-repeat center center;
  color: #000;
  font-size: 16px;
}
