/*!*******************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/scss/main.scss ***!
  \*******************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
.da__form-field {
  display: flex;
  flex-direction: column;
}
.da__form-field label {
  display: flex;
  flex-direction: column;
}
.da__form-field .error__msg {
  color: red;
  font-size: 12px;
  margin-top: 5px;
  line-height: 15px;
}
.da__form-field .da__form-required {
  color: red;
  margin-left: 2px;
}
.da__form-field.da__form-field-checkbox-single label {
  flex-direction: row;
}
.da__form-field.da__form-field-checkbox-single label input {
  margin-right: 10px;
  align-self: flex-start;
}
.da__form-field .da__form-radio label {
  flex-direction: row;
}
.da__form-field .da__form-radio label input {
  margin-right: 10px;
}
.da__form-field .da__form-checkbox label {
  flex-direction: row;
}
.da__form-field .da__form-checkbox label input {
  margin-right: 10px;
}
.da__form-input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.5s;
  outline: none;
}
.da__form-input.error {
  border: 1px solid red;
}
.da__form-input:focus, .da__form-input:active {
  border: 1px solid var(--wp--preset--color--da-green);
}
.da__form button.da__form-btn,
.da__form .da__form-submit-input {
  background-color: var(--wp--preset--color--da-green-light);
  border-radius: 0.3rem;
  color: var(--wp--preset--color--da-green-darker);
  font-family: var(--wp--preset--font-family--open-sans);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  padding-top: 14px;
  padding-right: 22px;
  padding-bottom: 14px;
  padding-left: 22px;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  outline: none;
}
.da__form button.da__form-btn:hover,
.da__form .da__form-submit-input:hover {
  background: var(--wp--preset--color--da-green-darkest);
  color: var(--wp--preset--color--da-white);
}

.da__spinner {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.da__spinner svg {
  width: 150px;
  height: 150px;
}

.da__form-message p {
  font-size: 14px;
  color: var(--wp--preset--color--okopunktemarkt-green);
}
.da__form-message p.error {
  color: red;
}
.da__form-message p.success {
  color: var(--wp--preset--color--okopunktemarkt-green);
  font-size: 20px;
  font-weight: 600;
}

#da__user-edit {
  display: flex;
  align-items: center;
  line-height: 1;
  font-size: 14px;
}
#da__user-edit svg {
  width: 20px;
  height: 20px;
  margin-left: 10px;
}

.da__form-wrapper-stepped fieldset {
  display: none;
  border: none;
  padding: 20px;
}
.da__form-wrapper-stepped fieldset.current {
  display: block;
}

.da__form-user fieldset {
  display: none;
  border: none;
  padding: 0;
}
.da__form-user fieldset.current {
  display: block;
}

.da__form-kaufer-wrapper fieldset {
  display: none;
  border: none;
  padding: 20px;
}
.da__form-kaufer-wrapper fieldset.current {
  display: block;
}

.grid-row {
  display: grid;
  grid-gap: 25px;
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .grid-row.col-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.radio__UI {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.radio__UI .da__form-radio label {
  position: relative;
}
.radio__UI .da__form-radio label input {
  visibility: hidden;
  position: absolute;
  width: 0;
  height: 0;
}
.radio__UI .da__form-radio label span {
  position: relative;
  padding-left: 30px;
}
.radio__UI .da__form-radio label span::before {
  box-sizing: border-box;
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid #ccc;
  border-radius: 50%;
  margin-right: 10px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.radio__UI .da__form-radio label input:checked + span::before {
  border-color: var(--wp--preset--color--da-green-olive);
}
.radio__UI .da__form-radio label input:checked + span::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--wp--preset--color--da-green-olive);
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
}

.checkbox_UI-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.checkbox_UI label {
  position: relative;
}
.checkbox_UI label input {
  visibility: hidden;
  position: absolute;
  width: 0;
  height: 0;
}
.checkbox_UI label .label__text {
  position: relative;
  padding-left: 30px;
}
.checkbox_UI label .label__text::before {
  content: "";
  box-sizing: border-box;
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-right: 10px;
  position: absolute;
  left: 0;
  top: 0;
}
.checkbox_UI label input:checked + span::before {
  border-color: var(--wp--preset--color--da-green-olive);
}
.checkbox_UI label input:checked + .label__text::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: var(--wp--preset--color--da-green-olive);
  position: absolute;
  left: 5px;
  top: 5px;
}

.da__slider {
  margin-bottom: 50px;
  margin-top: 15px;
}
.da__slider .noUi-tooltip {
  bottom: -40px !important;
}

.leaflet-container .okopunkt__interested {
  background-color: var(--wp--preset--color--da-green-light) !important;
  border-radius: 0.3rem !important;
  color: var(--wp--preset--color--da-green-darker) !important;
  font-family: var(--wp--preset--font-family--open-sans) !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  padding-top: 7px !important;
  padding-right: 10px !important;
  padding-bottom: 7px !important;
  padding-left: 10px !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  cursor: pointer !important;
  transition: all 0.3s !important;
  border: none !important;
  outline: none !important;
}
.leaflet-container .okopunkt__interested:hover {
  background: var(--wp--preset--color--da-green-darker) !important;
  color: #fff !important;
}

.wpcf7-form-control.wpcf7-submit {
  background-color: var(--wp--preset--color--da-green);
  border-radius: 0.3rem;
  color: var(--wp--preset--color--da-white);
  font-family: var(--wp--preset--font-family--open-sans);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  padding-top: 14px;
  padding-right: 22px;
  padding-bottom: 14px;
  padding-left: 22px;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  outline: none;
}
.wpcf7-form-control.wpcf7-submit:hover {
  background: var(--wp--preset--color--da-green-dark);
}

.da__form-wrapper .spinner {
  display: flex;
  justify-content: center;
  align-items: center;
}
.da__form-wrapper .spinner svg {
  width: 75px;
  height: 75px;
}
.da__form-wrapper .da__form-message h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}
.da__form-wrapper .da__form-message p {
  font-size: 18px;
  margin-bottom: 10px;
}
.da__form-wrapper .add-row {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--wp--preset--color--da-green-light);
  color: var(--wp--preset--color--da-green-darker);
  border-radius: 5px;
  padding: 10px 15px;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  line-height: 1;
  border: none;
}
.da__form-wrapper .add-row:hover {
  background: var(--wp--preset--color--da-green-darkest);
  color: var(--wp--preset--color--da-white);
}
.da__form-wrapper .form__field-row {
  display: flex;
  gap: 10px;
  align-items: center;
}
.da__form-wrapper .form__field-row .edit__row {
  flex: 0 0 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 18px;
}
.da__form-wrapper .form__field-row .edit__row span {
  cursor: pointer;
  background: #283C24;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
}

.da__contact-form textarea[name=message] {
  min-height: 150px;
}

.width--400 {
  max-width: 400px !important;
}

.width--450 {
  max-width: 450px !important;
}

.width--500 {
  max-width: 500px !important;
}

.width--550 {
  max-width: 550px !important;
}

.width--600 {
  max-width: 600px !important;
}

.width--650 {
  max-width: 650px !important;
}

.width--700 {
  max-width: 700px !important;
}

.width--750 {
  max-width: 750px !important;
}

.width--800 {
  max-width: 800px !important;
}

.width--825 {
  max-width: 825px !important;
}

.width--850 {
  max-width: 850px !important;
}

.width--900 {
  max-width: 900px !important;
}

.width--950 {
  max-width: 950px !important;
}

.width--1000 {
  max-width: 1000px !important;
}

.width--1150 {
  max-width: 1150px !important;
}

.width--1200 {
  max-width: 1200px !important;
}

.w--100p {
  width: 100% !important;
}

.height--400 {
  min-height: 400px !important;
}

.height--450 {
  min-height: 450px !important;
}

.height--500 {
  min-height: 500px !important;
}

.height--550 {
  min-height: 550px !important;
}

.height--600 {
  min-height: 600px !important;
}

.height--650 {
  min-height: 650px !important;
}

.height--700 {
  min-height: 700px !important;
}

.height--750 {
  min-height: 750px !important;
}

.height--800 {
  min-height: 800px !important;
}

.height--825 {
  min-height: 825px !important;
}

.height--850 {
  min-height: 850px !important;
}

.height--900 {
  min-height: 900px !important;
}

.height--950 {
  min-height: 950px !important;
}

.height--1000 {
  min-height: 1000px !important;
}

.height--1200 {
  min-height: 1200px !important;
}

.height--1400 {
  min-height: 1400px !important;
}

.height--1600 {
  min-height: 1600px !important;
}

.height--1800 {
  min-height: 1800px !important;
}

.height--2000 {
  min-height: 2000px !important;
}

.h--100p {
  height: 100% !important;
}

.mb--0 {
  margin-bottom: 0px !important;
}

.mt--0 {
  margin-top: 0px !important;
}

.mb--5 {
  margin-bottom: 5px !important;
}

.mt--5 {
  margin-top: 5px !important;
}

.mb--10 {
  margin-bottom: 10px !important;
}

.mt--10 {
  margin-top: 10px !important;
}

.mb--15 {
  margin-bottom: 15px !important;
}

.mt--15 {
  margin-top: 15px !important;
}

.mb--20 {
  margin-bottom: 20px !important;
}

.mt--20 {
  margin-top: 20px !important;
}

.mb--25 {
  margin-bottom: 25px !important;
}

.mt--25 {
  margin-top: 25px !important;
}

.mb--30 {
  margin-bottom: 30px !important;
}

.mt--30 {
  margin-top: 30px !important;
}

.mb--35 {
  margin-bottom: 35px !important;
}

.mt--35 {
  margin-top: 35px !important;
}

.mb--40 {
  margin-bottom: 40px !important;
}

.mt--40 {
  margin-top: 40px !important;
}

.mb--45 {
  margin-bottom: 45px !important;
}

.mt--45 {
  margin-top: 45px !important;
}

.mb--50 {
  margin-bottom: 50px !important;
}

.mt--50 {
  margin-top: 50px !important;
}

.mb--55 {
  margin-bottom: 55px !important;
}

.mt--55 {
  margin-top: 55px !important;
}

.mb--60 {
  margin-bottom: 60px !important;
}

.mt--60 {
  margin-top: 60px !important;
}

.mb--65 {
  margin-bottom: 65px !important;
}

.mt--65 {
  margin-top: 65px !important;
}

.mb--70 {
  margin-bottom: 70px !important;
}

.mt--70 {
  margin-top: 70px !important;
}

.mb--75 {
  margin-bottom: 75px !important;
}

.mt--75 {
  margin-top: 75px !important;
}

.mb--80 {
  margin-bottom: 80px !important;
}

.mt--80 {
  margin-top: 80px !important;
}

.mb--85 {
  margin-bottom: 85px !important;
}

.mt--85 {
  margin-top: 85px !important;
}

.mb--90 {
  margin-bottom: 90px !important;
}

.mt--90 {
  margin-top: 90px !important;
}

.mb--95 {
  margin-bottom: 95px !important;
}

.mt--95 {
  margin-top: 95px !important;
}

.mb--100 {
  margin-bottom: 100px !important;
}

.mt--100 {
  margin-top: 100px !important;
}

.p--padding {
  padding: 0px !important;
}

.pb--0 {
  padding-bottom: 0px !important;
}

.pt--0 {
  padding-top: 0px !important;
}

.pl--0 {
  padding-left: 0px !important;
}

.pr--0 {
  padding-right: 0px !important;
}

@media (max-width: 768px) {
  .p-m--0 {
    padding: 0px !important;
  }
  .pb-m--0 {
    padding-bottom: 0px !important;
  }
  .pt-m--0 {
    padding-top: 0px !important;
  }
  .pl-m--0 {
    padding-left: 0px !important;
  }
  .pr-m--0 {
    padding-right: 0px !important;
  }
}
.p--padding {
  padding: 10px !important;
}

.pb--10 {
  padding-bottom: 10px !important;
}

.pt--10 {
  padding-top: 10px !important;
}

.pl--10 {
  padding-left: 10px !important;
}

.pr--10 {
  padding-right: 10px !important;
}

@media (max-width: 768px) {
  .p-m--10 {
    padding: 10px !important;
  }
  .pb-m--10 {
    padding-bottom: 10px !important;
  }
  .pt-m--10 {
    padding-top: 10px !important;
  }
  .pl-m--10 {
    padding-left: 10px !important;
  }
  .pr-m--10 {
    padding-right: 10px !important;
  }
}
.p--padding {
  padding: 15px !important;
}

.pb--15 {
  padding-bottom: 15px !important;
}

.pt--15 {
  padding-top: 15px !important;
}

.pl--15 {
  padding-left: 15px !important;
}

.pr--15 {
  padding-right: 15px !important;
}

@media (max-width: 768px) {
  .p-m--15 {
    padding: 15px !important;
  }
  .pb-m--15 {
    padding-bottom: 15px !important;
  }
  .pt-m--15 {
    padding-top: 15px !important;
  }
  .pl-m--15 {
    padding-left: 15px !important;
  }
  .pr-m--15 {
    padding-right: 15px !important;
  }
}
.p--padding {
  padding: 20px !important;
}

.pb--20 {
  padding-bottom: 20px !important;
}

.pt--20 {
  padding-top: 20px !important;
}

.pl--20 {
  padding-left: 20px !important;
}

.pr--20 {
  padding-right: 20px !important;
}

@media (max-width: 768px) {
  .p-m--20 {
    padding: 20px !important;
  }
  .pb-m--20 {
    padding-bottom: 20px !important;
  }
  .pt-m--20 {
    padding-top: 20px !important;
  }
  .pl-m--20 {
    padding-left: 20px !important;
  }
  .pr-m--20 {
    padding-right: 20px !important;
  }
}
.p--padding {
  padding: 25px !important;
}

.pb--25 {
  padding-bottom: 25px !important;
}

.pt--25 {
  padding-top: 25px !important;
}

.pl--25 {
  padding-left: 25px !important;
}

.pr--25 {
  padding-right: 25px !important;
}

@media (max-width: 768px) {
  .p-m--25 {
    padding: 25px !important;
  }
  .pb-m--25 {
    padding-bottom: 25px !important;
  }
  .pt-m--25 {
    padding-top: 25px !important;
  }
  .pl-m--25 {
    padding-left: 25px !important;
  }
  .pr-m--25 {
    padding-right: 25px !important;
  }
}
.p--padding {
  padding: 30px !important;
}

.pb--30 {
  padding-bottom: 30px !important;
}

.pt--30 {
  padding-top: 30px !important;
}

.pl--30 {
  padding-left: 30px !important;
}

.pr--30 {
  padding-right: 30px !important;
}

@media (max-width: 768px) {
  .p-m--30 {
    padding: 30px !important;
  }
  .pb-m--30 {
    padding-bottom: 30px !important;
  }
  .pt-m--30 {
    padding-top: 30px !important;
  }
  .pl-m--30 {
    padding-left: 30px !important;
  }
  .pr-m--30 {
    padding-right: 30px !important;
  }
}
.p--padding {
  padding: 35px !important;
}

.pb--35 {
  padding-bottom: 35px !important;
}

.pt--35 {
  padding-top: 35px !important;
}

.pl--35 {
  padding-left: 35px !important;
}

.pr--35 {
  padding-right: 35px !important;
}

@media (max-width: 768px) {
  .p-m--35 {
    padding: 35px !important;
  }
  .pb-m--35 {
    padding-bottom: 35px !important;
  }
  .pt-m--35 {
    padding-top: 35px !important;
  }
  .pl-m--35 {
    padding-left: 35px !important;
  }
  .pr-m--35 {
    padding-right: 35px !important;
  }
}
.p--padding {
  padding: 40px !important;
}

.pb--40 {
  padding-bottom: 40px !important;
}

.pt--40 {
  padding-top: 40px !important;
}

.pl--40 {
  padding-left: 40px !important;
}

.pr--40 {
  padding-right: 40px !important;
}

@media (max-width: 768px) {
  .p-m--40 {
    padding: 40px !important;
  }
  .pb-m--40 {
    padding-bottom: 40px !important;
  }
  .pt-m--40 {
    padding-top: 40px !important;
  }
  .pl-m--40 {
    padding-left: 40px !important;
  }
  .pr-m--40 {
    padding-right: 40px !important;
  }
}
.p--padding {
  padding: 45px !important;
}

.pb--45 {
  padding-bottom: 45px !important;
}

.pt--45 {
  padding-top: 45px !important;
}

.pl--45 {
  padding-left: 45px !important;
}

.pr--45 {
  padding-right: 45px !important;
}

@media (max-width: 768px) {
  .p-m--45 {
    padding: 45px !important;
  }
  .pb-m--45 {
    padding-bottom: 45px !important;
  }
  .pt-m--45 {
    padding-top: 45px !important;
  }
  .pl-m--45 {
    padding-left: 45px !important;
  }
  .pr-m--45 {
    padding-right: 45px !important;
  }
}
.p--padding {
  padding: 50px !important;
}

.pb--50 {
  padding-bottom: 50px !important;
}

.pt--50 {
  padding-top: 50px !important;
}

.pl--50 {
  padding-left: 50px !important;
}

.pr--50 {
  padding-right: 50px !important;
}

@media (max-width: 768px) {
  .p-m--50 {
    padding: 50px !important;
  }
  .pb-m--50 {
    padding-bottom: 50px !important;
  }
  .pt-m--50 {
    padding-top: 50px !important;
  }
  .pl-m--50 {
    padding-left: 50px !important;
  }
  .pr-m--50 {
    padding-right: 50px !important;
  }
}
.p--padding {
  padding: 55px !important;
}

.pb--55 {
  padding-bottom: 55px !important;
}

.pt--55 {
  padding-top: 55px !important;
}

.pl--55 {
  padding-left: 55px !important;
}

.pr--55 {
  padding-right: 55px !important;
}

@media (max-width: 768px) {
  .p-m--55 {
    padding: 55px !important;
  }
  .pb-m--55 {
    padding-bottom: 55px !important;
  }
  .pt-m--55 {
    padding-top: 55px !important;
  }
  .pl-m--55 {
    padding-left: 55px !important;
  }
  .pr-m--55 {
    padding-right: 55px !important;
  }
}
.p--padding {
  padding: 60px !important;
}

.pb--60 {
  padding-bottom: 60px !important;
}

.pt--60 {
  padding-top: 60px !important;
}

.pl--60 {
  padding-left: 60px !important;
}

.pr--60 {
  padding-right: 60px !important;
}

@media (max-width: 768px) {
  .p-m--60 {
    padding: 60px !important;
  }
  .pb-m--60 {
    padding-bottom: 60px !important;
  }
  .pt-m--60 {
    padding-top: 60px !important;
  }
  .pl-m--60 {
    padding-left: 60px !important;
  }
  .pr-m--60 {
    padding-right: 60px !important;
  }
}
.p--padding {
  padding: 65px !important;
}

.pb--65 {
  padding-bottom: 65px !important;
}

.pt--65 {
  padding-top: 65px !important;
}

.pl--65 {
  padding-left: 65px !important;
}

.pr--65 {
  padding-right: 65px !important;
}

@media (max-width: 768px) {
  .p-m--65 {
    padding: 65px !important;
  }
  .pb-m--65 {
    padding-bottom: 65px !important;
  }
  .pt-m--65 {
    padding-top: 65px !important;
  }
  .pl-m--65 {
    padding-left: 65px !important;
  }
  .pr-m--65 {
    padding-right: 65px !important;
  }
}
.p--padding {
  padding: 70px !important;
}

.pb--70 {
  padding-bottom: 70px !important;
}

.pt--70 {
  padding-top: 70px !important;
}

.pl--70 {
  padding-left: 70px !important;
}

.pr--70 {
  padding-right: 70px !important;
}

@media (max-width: 768px) {
  .p-m--70 {
    padding: 70px !important;
  }
  .pb-m--70 {
    padding-bottom: 70px !important;
  }
  .pt-m--70 {
    padding-top: 70px !important;
  }
  .pl-m--70 {
    padding-left: 70px !important;
  }
  .pr-m--70 {
    padding-right: 70px !important;
  }
}
.p--padding {
  padding: 75px !important;
}

.pb--75 {
  padding-bottom: 75px !important;
}

.pt--75 {
  padding-top: 75px !important;
}

.pl--75 {
  padding-left: 75px !important;
}

.pr--75 {
  padding-right: 75px !important;
}

@media (max-width: 768px) {
  .p-m--75 {
    padding: 75px !important;
  }
  .pb-m--75 {
    padding-bottom: 75px !important;
  }
  .pt-m--75 {
    padding-top: 75px !important;
  }
  .pl-m--75 {
    padding-left: 75px !important;
  }
  .pr-m--75 {
    padding-right: 75px !important;
  }
}
.p--padding {
  padding: 80px !important;
}

.pb--80 {
  padding-bottom: 80px !important;
}

.pt--80 {
  padding-top: 80px !important;
}

.pl--80 {
  padding-left: 80px !important;
}

.pr--80 {
  padding-right: 80px !important;
}

@media (max-width: 768px) {
  .p-m--80 {
    padding: 80px !important;
  }
  .pb-m--80 {
    padding-bottom: 80px !important;
  }
  .pt-m--80 {
    padding-top: 80px !important;
  }
  .pl-m--80 {
    padding-left: 80px !important;
  }
  .pr-m--80 {
    padding-right: 80px !important;
  }
}
.p--padding {
  padding: 85px !important;
}

.pb--85 {
  padding-bottom: 85px !important;
}

.pt--85 {
  padding-top: 85px !important;
}

.pl--85 {
  padding-left: 85px !important;
}

.pr--85 {
  padding-right: 85px !important;
}

@media (max-width: 768px) {
  .p-m--85 {
    padding: 85px !important;
  }
  .pb-m--85 {
    padding-bottom: 85px !important;
  }
  .pt-m--85 {
    padding-top: 85px !important;
  }
  .pl-m--85 {
    padding-left: 85px !important;
  }
  .pr-m--85 {
    padding-right: 85px !important;
  }
}
.p--padding {
  padding: 90px !important;
}

.pb--90 {
  padding-bottom: 90px !important;
}

.pt--90 {
  padding-top: 90px !important;
}

.pl--90 {
  padding-left: 90px !important;
}

.pr--90 {
  padding-right: 90px !important;
}

@media (max-width: 768px) {
  .p-m--90 {
    padding: 90px !important;
  }
  .pb-m--90 {
    padding-bottom: 90px !important;
  }
  .pt-m--90 {
    padding-top: 90px !important;
  }
  .pl-m--90 {
    padding-left: 90px !important;
  }
  .pr-m--90 {
    padding-right: 90px !important;
  }
}
.p--padding {
  padding: 95px !important;
}

.pb--95 {
  padding-bottom: 95px !important;
}

.pt--95 {
  padding-top: 95px !important;
}

.pl--95 {
  padding-left: 95px !important;
}

.pr--95 {
  padding-right: 95px !important;
}

@media (max-width: 768px) {
  .p-m--95 {
    padding: 95px !important;
  }
  .pb-m--95 {
    padding-bottom: 95px !important;
  }
  .pt-m--95 {
    padding-top: 95px !important;
  }
  .pl-m--95 {
    padding-left: 95px !important;
  }
  .pr-m--95 {
    padding-right: 95px !important;
  }
}
.p--padding {
  padding: 100px !important;
}

.pb--100 {
  padding-bottom: 100px !important;
}

.pt--100 {
  padding-top: 100px !important;
}

.pl--100 {
  padding-left: 100px !important;
}

.pr--100 {
  padding-right: 100px !important;
}

@media (max-width: 768px) {
  .p-m--100 {
    padding: 100px !important;
  }
  .pb-m--100 {
    padding-bottom: 100px !important;
  }
  .pt-m--100 {
    padding-top: 100px !important;
  }
  .pl-m--100 {
    padding-left: 100px !important;
  }
  .pr-m--100 {
    padding-right: 100px !important;
  }
}
.overflow__hidden {
  overflow: hidden !important;
}

.display__flex {
  display: flex !important;
}

.justify__center {
  justify-content: center !important;
}

.space__between {
  justify-content: space-between !important;
}

.align__center {
  align-items: center !important;
}

.flex-column {
  flex-direction: column !important;
}

.hide {
  display: none !important;
}

.lp-container.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}

.img__object-position--center-top {
  -o-object-position: center top;
     object-position: center top;
}
.img__object-position--center-top img {
  -o-object-position: center top;
     object-position: center top;
}

.object-fit--cover img {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.row-gap-0 {
  row-gap: 0 !important;
}

.da__modal {
  display: none;
  margin: 0 !important;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  max-width: 100% !important;
  background: rgba(0, 0, 0, 0.3);
  padding: 20px;
  z-index: 99999;
}
.da__modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  width: 80vw;
  max-height: 70vh;
}
.da__modal-inner {
  max-height: 70vh;
  overflow: auto;
}
.da__modal-inner-wrapper {
  padding: 40px 20px;
  background: #fff;
  box-shadow: 0px 4px 50px 0px rgba(0, 0, 0, 0.2);
  border-radius: 16px;
}
.da__modal-inner-content {
  height: 100%;
}
.da__modal-close-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 32px;
  height: 32px;
  background: #283C24;
  color: #fff;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  border-radius: 100%;
  transform: translate(50%, -50%);
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.da__modal-close-btn svg {
  width: 35px;
  height: 35px;
}
.da__modal.active {
  display: block;
}

body.wp-admin .wp-block-da-blocks-modal {
  display: block;
  position: relative;
  z-index: initial;
}

body.da__modal-open {
  overflow: hidden;
}

.recommendation__list-item-edits-message-modal textarea {
  width: auto !important;
}

.doe__modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  padding: 20px;
}

.doe__modal {
  background-color: #fff;
  padding: 10px;
  width: 100%;
  position: relative;
  border-radius: 16px;
  max-width: 800px;
  max-height: 80vh;
  display: flex;
  flex-direction: column; /* Needed for inner scroll to work */
}

.doe__modal-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 35px;
  height: 35px;
  background: #283C24;
  color: #fff;
  cursor: pointer;
  font-size: 15px;
  line-height: 1;
  border-radius: 100%;
  transform: translate(50%, -50%);
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.doe__modal-content {
  flex: 1; /* Fills remaining space in modal */
  overflow-y: auto;
  min-height: 0; /* Ensures scroll behaves correctly */
  padding: 20px 14px 20px 20px;
  position: relative;
  min-height: 350px;
}
.doe__modal-content .spinner {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.doe__modal-content .spinner svg {
  width: 50px;
  height: 50px;
}

.doe__modal-content::-webkit-scrollbar {
  width: 6px;
}

.doe__modal-content::-webkit-scrollbar-thumb {
  background-color: var(--wp--preset--color--da-green-mid-1);
  border-radius: 3px;
}

.messageForm {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.messageForm textarea {
  width: 100%;
  height: 100px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  resize: none;
}
.messageForm br {
  display: none;
}
.messageForm button {
  background-color: var(--wp--preset--color--da-green-light);
  border-radius: 0.3rem;
  color: var(--wp--preset--color--da-green-darker);
  font-family: var(--wp--preset--font-family--open-sans);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  padding-top: 14px;
  padding-right: 22px;
  padding-bottom: 14px;
  padding-left: 22px;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background-color 0.3s;
}
.messageForm button:hover {
  background-color: var(--wp--preset--color--da-green-darker);
  color: #fff;
}

.messageBoardHeader {
  border-bottom: 1px solid #ccc;
  padding: 10px;
  margin-bottom: 20px;
  display: flex;
  gap: 20px;
}
.messageBoardHeader .listing_owner {
  display: flex;
  gap: 5px;
  font-size: 14px;
  color: #000;
}
.messageBoardHeader .listing_owner span {
  display: block;
}
.messageBoardHeader .listing_owner span:nth-child(2) {
  font-weight: bold;
}
.messageBoardHeader .listing_postalcode {
  display: flex;
  gap: 5px;
  font-size: 14px;
  color: #000;
}
.messageBoardHeader .listing_postalcode span {
  display: block;
}
.messageBoardHeader .listing_postalcode span:nth-child(2) {
  font-weight: bold;
}

.messageBoardWrapper .default__message {
  padding: 10px;
  background-color: #f9f9f9;
  margin-bottom: 15px;
}

.messageBoardWrapper-content {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  gap: 10px;
}

.messageBoard {
  width: 45%;
  display: flex;
  flex-direction: column;
  background-color: #f9f9f9;
  border-radius: 15px;
  gap: 15px;
}
.messageBoard.da-message-right {
  margin-left: auto;
}
.messageBoard p:empty {
  display: none;
}
.messageBoard .message__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 16px;
  padding: 20px;
}
.messageBoard .message__posted-meta {
  margin-bottom: 0;
  line-height: 1;
}
.messageBoard .message__posted-time {
  font-size: 15px;
  color: #666;
}
.messageBoard .message__posted-author {
  font-size: 15px;
  color: #333;
}

.da__modal-content-message {
  max-height: -moz-fit-content;
  max-height: fit-content;
}
.da__modal-content-message .da__modal-inner {
  max-height: none;
  overflow: hidden;
}
.da__modal-content-message .da__modal-inner-content {
  height: 70vh;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
}
.da__modal-content-message .da__modal-inner-content .messageBoardWrapper {
  height: calc(100% - 150px);
  overflow-y: auto;
}
.da__modal-content-message .da__modal-inner-content .messageForm {
  height: 125px;
  padding: 0;
  margin: 0;
}

.no__recommendation-found {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #666;
  background-color: #f9f9f9;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 20px;
}

.recommendation__list-item-edits-message {
  position: relative;
}
.recommendation__list-item-edits-message .unread-badge {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-flex;
  background-color: red;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 12px;
  align-items: center;
  justify-content: center;
}

.members__menu .members__menu-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: #FF0000;
  color: #FFF;
  font-family: Poppins;
  font-size: 6px;
  font-weight: 700;
  font-style: normal;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 10px;
  height: 10px;
  line-height: 1;
}

.okopunkt__recommendation__content-archived-posts {
  text-align: right;
}

header .wp-block-navigation__container li {
  margin: 8px 14px !important;
}
header .wp-block-navigation__container li .wp-block-navigation__submenu-icon {
  margin-left: 8px !important;
}
header .wp-block-navigation__container li a {
  color: var(--wp--preset--color--da-green-olive) !important;
}
header .wp-block-navigation__container li a:hover {
  color: var(--wp--preset--color--da-green-87-be-42) !important;
}
header .wp-block-navigation__container li a:hover + .wp-block-navigation__submenu-icon svg path {
  stroke: var(--wp--preset--color--da-green-87-be-42) !important;
}
header .wp-block-navigation__container li .wp-block-navigation__submenu-container li {
  border-radius: 4px !important;
  margin: 0 !important;
}
header .wp-block-navigation__container li .wp-block-navigation__submenu-container li a {
  padding: 8px 12px 8px 10px !important;
  transition: all 0.2s ease-in-out;
}
header .wp-block-navigation__container li .wp-block-navigation__submenu-container li:hover {
  background: #E0FFC9 !important;
}
header .wp-block-navigation__container li .wp-block-navigation__submenu-container li:hover a {
  color: var(--wp--preset--color--da-green-olive) !important;
}
header .wp-block-navigation__container li .wp-block-navigation__submenu-container li:hover a svg path {
  fill: var(--wp--preset--color--da-green-olive) !important;
}
header .wp-block-navigation__container li .wp-block-navigation__submenu-container li:hover a:hover {
  color: var(--wp--preset--color--da-green-olive) !important;
}
header .wp-block-navigation__container li .wp-block-navigation__submenu-container li:hover a:hover svg path {
  fill: var(--wp--preset--color--da-green-olive) !important;
}
header .wp-block-navigation__container li .wp-block-navigation__submenu-container li > .wp-block-navigation__submenu-container {
  left: calc(100% + 15px) !important;
}
header .wp-block-navigation__container li .wp-block-navigation__submenu-container li > .wp-block-navigation__submenu-container::after {
  content: "";
  position: absolute !important;
  top: 0 !important;
  left: -18px !important;
  width: 18px !important;
  height: 100% !important;
  background: transparent !important;
}
@media (min-width: 1300px) {
  header .wp-block-navigation__container li .wp-block-navigation__submenu-container {
    padding: 8px !important;
    border-radius: 8px !important;
    background: #FFF !important;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.2) !important;
    min-width: 260px !important;
  }
}
@media (min-width: 1300px) {
  header .wp-block-navigation__container > li.current-menu-item, header .wp-block-navigation__container > li.current-menu-ancestor {
    border-bottom: 2px solid var(--wp--preset--color--da-green-mid-1) !important;
  }
}

@media (min-width: 1300px) {
  header ul.wp-block-navigation__container > li.has-child {
    position: relative;
  }
  header ul.wp-block-navigation__container > li.has-child:hover::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    display: block;
    height: 14px;
  }
  header ul.wp-block-navigation__container > li.has-child:hover > .wp-block-navigation__submenu-container.wp-block-navigation-submenu {
    top: calc(100% + 14px);
  }
}
@media (max-width: 1299px) {
  header ul li a {
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px; /* 169.231% */
  }
  header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container {
    width: 100% !important;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: relative;
  }
  header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation__submenu-icon {
    position: absolute;
    right: 0;
    top: 19px;
    transform: translate(-100%, -50%);
  }
  header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container li {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container li a {
    padding: 8px 10px !important;
  }
  header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .has-child .wp-block-navigation__submenu-container {
    padding: 10px !important;
  }
  header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .has-child .wp-block-navigation__submenu-container {
    display: none;
  }
  header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__submenu-icon {
    display: block;
  }
  header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__submenu-icon svg {
    stroke: #000 !important;
  }
}

body .wp-block-navigation__responsive-container-open:not(.always-shown) {
  display: block !important;
}

body .wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) {
  display: none !important;
}

@media (min-width: 1300px) {
  body .wp-block-navigation__responsive-container-open:not(.always-shown) {
    display: none !important;
  }
  body .wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) {
    display: block !important;
  }
}
html {
  scroll-behavior: smooth;
}

.entry-content {
  margin-top: 0;
}

ol, ul {
  padding-left: 15px;
}
ol li, ul li {
  margin-left: 10px;
}

ul {
  list-style: disc;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
}

footer {
  margin-top: 0;
}
@media (max-width: 781px) {
  footer .copyright {
    text-align: center;
  }
  footer .footer__menu {
    justify-content: center;
  }
}

footer .footer__breadcrumb a {
  transition: all 0.2s ease-in-out;
}
footer .footer__breadcrumb a:hover {
  color: var(--wp--preset--color--da-green-87-be-42) !important;
}
footer .wp-block-navigation-item__content {
  transition: all 0.2s ease-in-out;
}
footer .wp-block-post-title a {
  transition: all 0.2s ease-in-out;
}
footer .wp-block-navigation-item__content:hover {
  color: var(--wp--preset--color--da-green-87-be-42) !important;
}
footer .wp-block-post-title a {
  transition: all 0.2s ease-in-out;
}
footer .wp-block-post-title a:hover {
  color: var(--wp--preset--color--da-green-87-be-42) !important;
}

.has-global-padding {
  padding-left: 15px;
  padding-right: 15px;
}
.has-global-padding .has-global-padding {
  padding-left: 0;
  padding-right: 0;
}

.wp-block-cover .has-global-padding {
  padding-left: 0;
  padding-right: 0;
}

.has-global-padding .wp-block-cover {
  padding-left: 0;
  padding-right: 0;
}

.wp-block-da-blocks-responsive-spacer {
  margin: 0;
}

.leaflet-popup-content .marker__popup-item {
  margin-bottom: 10px;
}
.leaflet-popup-content .marker__popup-item-content {
  display: flex;
  gap: 15px;
}
.leaflet-popup-content .marker__popup-item-content-desc {
  flex: 1 1 100%;
}
.leaflet-popup-content .marker__popup-item-cta {
  flex: 1 1 110px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.leaflet-popup-content .marker__popup-item:last-of-type + hr {
  display: none !important;
}
.leaflet-popup-content .marker__popup-item-heading {
  font-weight: bold;
  margin-bottom: 5px;
}
.leaflet-popup-content .group__heading {
  font-size: 18px;
}

/* Functional styling;
 * These styles are required for noUiSlider to function.
 * You don't need to change these rules to apply your design.
 */
.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  touch-action: none;
  -moz-user-select: none;
  user-select: none;
  box-sizing: border-box;
}

.noUi-target {
  position: relative;
}

.noUi-base,
.noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

/* Wrapper for all connect elements.
 */
.noUi-connects {
  overflow: hidden;
  z-index: 0;
}

.noUi-connect,
.noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  -webkit-transform-style: preserve-3d;
  transform-origin: 0 0;
  transform-style: flat;
}

/* Offset direction
 */
.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
  left: 0;
  right: auto;
}

/* Give origins 0 height/width so they don't interfere with clicking the
 * connect elements.
 */
.noUi-vertical .noUi-origin {
  top: -100%;
  width: 0;
}

.noUi-horizontal .noUi-origin {
  height: 0;
}

.noUi-handle {
  backface-visibility: hidden;
  position: absolute;
}

.noUi-touch-area {
  height: 100%;
  width: 100%;
}

.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  transition: transform 0.3s;
}

.noUi-state-drag * {
  cursor: inherit !important;
}

/* Slider size and handle placement;
 */
.noUi-horizontal {
  height: 18px;
}

.noUi-horizontal .noUi-handle {
  width: 34px;
  height: 28px;
  right: -17px;
  top: -6px;
}

.noUi-vertical {
  width: 18px;
}

.noUi-vertical .noUi-handle {
  width: 28px;
  height: 34px;
  right: -6px;
  bottom: -17px;
}

.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
  left: -17px;
  right: auto;
}

/* Styling;
 * Giving the connect element a border radius causes issues with using transform: scale
 */
.noUi-target {
  background: #FAFAFA;
  border-radius: 4px;
  border: 1px solid #D3D3D3;
  box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB;
}

.noUi-connects {
  border-radius: 3px;
}

.noUi-connect {
  background: var(--wp--preset--color--da-green);
}

/* Handles and cursors;
 */
.noUi-draggable {
  cursor: ew-resize;
}

.noUi-vertical .noUi-draggable {
  cursor: ns-resize;
}

.noUi-handle {
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #FFF;
  cursor: default;
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #EBEBEB, 0 3px 6px -3px #BBB;
}

.noUi-active {
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #DDD, 0 3px 6px -3px #BBB;
}

/* Handle stripes;
 */
.noUi-handle:before,
.noUi-handle:after {
  content: "";
  display: block;
  position: absolute;
  height: 14px;
  width: 1px;
  background: #E8E7E6;
  left: 14px;
  top: 6px;
}

.noUi-handle:after {
  left: 17px;
}

.noUi-vertical .noUi-handle:before,
.noUi-vertical .noUi-handle:after {
  width: 14px;
  height: 1px;
  left: 6px;
  top: 14px;
}

.noUi-vertical .noUi-handle:after {
  top: 17px;
}

/* Disabled state;
 */
[disabled] .noUi-connect {
  background: #B8B8B8;
}

[disabled].noUi-target,
[disabled].noUi-handle,
[disabled] .noUi-handle {
  cursor: not-allowed;
}

/* Base;
 *
 */
.noUi-pips,
.noUi-pips * {
  box-sizing: border-box;
}

.noUi-pips {
  position: absolute;
  color: #999;
}

/* Values;
 *
 */
.noUi-value {
  position: absolute;
  white-space: nowrap;
  text-align: center;
}

.noUi-value-sub {
  color: #ccc;
  font-size: 10px;
}

/* Markings;
 *
 */
.noUi-marker {
  position: absolute;
  background: #CCC;
}

.noUi-marker-sub {
  background: #AAA;
}

.noUi-marker-large {
  background: #AAA;
}

/* Horizontal layout;
 *
 */
.noUi-pips-horizontal {
  padding: 10px 0;
  height: 80px;
  top: 100%;
  left: 0;
  width: 100%;
}

.noUi-value-horizontal {
  transform: translate(-50%, 50%);
}

.noUi-rtl .noUi-value-horizontal {
  transform: translate(50%, 50%);
}

.noUi-marker-horizontal.noUi-marker {
  margin-left: -1px;
  width: 2px;
  height: 5px;
}

.noUi-marker-horizontal.noUi-marker-sub {
  height: 10px;
}

.noUi-marker-horizontal.noUi-marker-large {
  height: 15px;
}

/* Vertical layout;
 *
 */
.noUi-pips-vertical {
  padding: 0 10px;
  height: 100%;
  top: 0;
  left: 100%;
}

.noUi-value-vertical {
  transform: translate(0, -50%);
  padding-left: 25px;
}

.noUi-rtl .noUi-value-vertical {
  transform: translate(0, 50%);
}

.noUi-marker-vertical.noUi-marker {
  width: 5px;
  height: 2px;
  margin-top: -1px;
}

.noUi-marker-vertical.noUi-marker-sub {
  width: 10px;
}

.noUi-marker-vertical.noUi-marker-large {
  width: 15px;
}

.noUi-tooltip {
  display: block;
  position: absolute;
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #fff;
  color: #000;
  padding: 5px;
  text-align: center;
  white-space: nowrap;
}

.noUi-horizontal .noUi-tooltip {
  transform: translate(-50%, 0);
  left: 50%;
  bottom: 120%;
}

.noUi-vertical .noUi-tooltip {
  transform: translate(0, -50%);
  top: 50%;
  right: 120%;
}

.noUi-horizontal .noUi-origin > .noUi-tooltip {
  transform: translate(50%, 0);
  left: auto;
  bottom: 10px;
}

.noUi-vertical .noUi-origin > .noUi-tooltip {
  transform: translate(0, -18px);
  top: auto;
  right: 28px;
}

.anchor__section {
  position: relative;
  height: 100%;
  width: 100%;
  min-height: 435px;
}
.anchor__section .anchor__section-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0;
  transition: all 0.3s ease;
}
.anchor__section .anchor__section-inner .anchor__section-inner-wrapper {
  padding: 30px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1200px) {
  .anchor__section .anchor__section-inner .anchor__section-inner-wrapper {
    width: 300px;
  }
}
.anchor__section .anchor__section-inner .link__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.anchor__section .anchor__section-inner .link__wrapper svg {
  width: 60px;
  height: 60px;
  margin-bottom: 14px;
}
.anchor__section .anchor__section-inner .link__wrapper .wp-block-heading {
  margin-bottom: 8px;
  color: #E0FFC9 !important;
}
.anchor__section .anchor__section-inner .link__wrapper p {
  color: #E0FFC9 !important;
  margin-bottom: 0 !important;
}
.anchor__section .anchor__section-inner .link__wrapper .anchor__section-link {
  position: absolute;
  bottom: 0;
  margin: 0;
  top: 0;
  right: 0;
  left: 0;
}
.anchor__section .anchor__section-inner .link__wrapper .anchor__section-link a {
  position: absolute;
  bottom: 0;
  margin: 0;
  top: 0;
  right: 0;
  left: 0;
  opacity: 0;
}
.anchor__section .anchor__section-inner .wp-block-image {
  margin-bottom: 13px;
}
.anchor__section .anchor__section-inner:hover {
  border-bottom: 10px solid #E0FFC9;
}
.anchor__section .anchor__section-inner:hover .link__wrapper svg:not(.no-path-fill) path {
  fill: #fff !important;
}
.anchor__section .anchor__section-inner:hover .link__wrapper svg.no-path-fill circle {
  fill: #fff !important;
}
.anchor__section .anchor__section-inner:hover .link__wrapper .wp-block-heading {
  color: #fff !important;
}
.anchor__section .anchor__section-inner:hover .link__wrapper p {
  color: #fff !important;
}

@media (max-width: 1199px) {
  .wp-block-columns.header__hero-grid .wp-block-column {
    flex-basis: 100% !important;
  }
}
@media (max-width: 782px) {
  .wp-block-columns.column__reverse-mobile {
    flex-direction: column-reverse !important;
  }
}
@media (min-width: 783px) {
  .header__hero-grid .wp-block-column:first-child .anchor__section {
    margin-left: auto !important;
    margin-right: 0 !important;
  }
  .header__hero-grid .wp-block-column:last-child .anchor__section {
    margin-left: 0 !important;
    margin-right: auto !important;
  }
}
/* old code above this line */
.anchor__section-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.anchor__section-wrapper .anchor__section {
  position: relative;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  transition: all 0.3s ease;
}
.anchor__section-wrapper .anchor__section .bg__image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: all 0.3s ease;
}
.anchor__section-wrapper .anchor__section .anchor__content {
  height: 435px;
  width: 276px;
  padding-top: 140px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  padding: 40px 20px;
  padding-top: 140px;
}
.anchor__section-wrapper .anchor__section .anchor__content svg {
  width: 60px;
  height: auto;
  margin-bottom: 14px;
  transition: all 0.3s ease;
}
.anchor__section-wrapper .anchor__section .anchor__content svg circle {
  fill: #E0FFC9;
}
.anchor__section-wrapper .anchor__section .anchor__content svg path {
  fill: #E0FFC9;
}
.anchor__section-wrapper .anchor__section .anchor__content h3 {
  color: #E0FFC9 !important;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 31px; /* 129.167% */
  margin-bottom: 8px;
  transition: all 0.3s ease;
}
.anchor__section-wrapper .anchor__section .anchor__content p {
  color: #E0FFC9;
  text-align: center;
  font-family: var(--wp--preset--font-family--poppins);
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 21px; /* 140% */
  margin-bottom: 29px;
  transition: all 0.3s ease;
}
.anchor__section-wrapper .anchor__section .anchor__content p a {
  color: #E0FFC9;
  text-align: center;
  font-family: var(--wp--preset--font-family--poppins);
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 21px; /* 140% */
  transition: all 0.3s ease;
}
.anchor__section-wrapper .anchor__section .anchor__content .wp-block-buttons {
  display: none;
  gap: 12px;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  opacity: 0;
  transition: all 0.3s ease;
}
.anchor__section-wrapper .anchor__section .anchor__content .wp-block-buttons .wp-block-button .wp-block-button__link {
  padding: 4px 8px;
  font-size: 13px;
  font-weight: 700;
  line-height: 20px; /* 153.846% */
  min-width: 87px;
  font-family: var(--wp--preset--font-family--poppins);
}
.anchor__section-wrapper .anchor__section::after {
  height: 0;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0px;
  opacity: 0;
  transition: all 0.3s ease;
}
.anchor__section-wrapper .anchor__section:hover .bg__image {
  transform: scale(1.05);
}
.anchor__section-wrapper .anchor__section:hover svg circle {
  fill: #fff;
}
.anchor__section-wrapper .anchor__section:hover svg path {
  fill: #fff;
}
.anchor__section-wrapper .anchor__section:hover h3 {
  color: #fff !important;
}
.anchor__section-wrapper .anchor__section:hover p {
  color: #fff !important;
}
.anchor__section-wrapper .anchor__section:hover p a {
  color: #fff !important;
}
.anchor__section-wrapper .anchor__section:hover .wp-block-buttons {
  opacity: 1;
  display: flex;
}
.anchor__section-wrapper .anchor__section:hover::after {
  height: 10px;
  z-index: 9;
  opacity: 1;
}
.anchor__section-wrapper .anchor__section.anchor__section-oenpunkt::after {
  background: var(--wp--preset--color--da-oekopunkte);
}
.anchor__section-wrapper .anchor__section.anchor__section-co2::after {
  background: var(--wp--preset--color--da-co-2-zertifikate);
}
.anchor__section-wrapper .anchor__section.anchor__section-land::after {
  background: var(--wp--preset--color--da-landverpachtung);
}
.anchor__section-wrapper .anchor__section.anchor__section-ausgle::after {
  background: var(--wp--preset--color--da-ausgleichsflachen);
}
.anchor__section-wrapper .anchor__section.anchor__section-jagd::after {
  background: var(--wp--preset--color--da-jagdpachten);
}
.anchor__section-wrapper .anchor__section-oenpunkt {
  flex: 1 1 auto;
}
@media (min-width: 700px) {
  .anchor__section-wrapper .anchor__section-oenpunkt {
    flex: 0 0 500px;
  }
}
@media (min-width: 1285px) {
  .anchor__section-wrapper .anchor__section-oenpunkt {
    flex: 1 1 276px;
  }
  .anchor__section-wrapper .anchor__section-oenpunkt .bg__image {
    margin-right: 0 !important;
  }
}
@media (min-width: 1285px) {
  .anchor__section-wrapper .anchor__section-oenpunkt .anchor__content {
    margin-right: 0 !important;
    margin-left: auto !important;
  }
}
.anchor__section-wrapper .anchor__section-co2 {
  flex: 1 1 auto;
}
@media (min-width: 700px) {
  .anchor__section-wrapper .anchor__section-co2 {
    flex: 0 0 500px;
  }
}
@media (min-width: 1285px) {
  .anchor__section-wrapper .anchor__section-co2 {
    flex: 0 0 276px;
  }
}
.anchor__section-wrapper .anchor__section-land {
  flex: 1 1 auto;
}
@media (min-width: 700px) {
  .anchor__section-wrapper .anchor__section-land {
    flex: 0 0 500px;
  }
}
@media (min-width: 1285px) {
  .anchor__section-wrapper .anchor__section-land {
    flex: 0 0 276px;
  }
}
.anchor__section-wrapper .anchor__section-ausgle {
  flex: 1 1 auto;
}
@media (min-width: 700px) {
  .anchor__section-wrapper .anchor__section-ausgle {
    flex: 0 0 500px;
  }
}
@media (min-width: 1285px) {
  .anchor__section-wrapper .anchor__section-ausgle {
    flex: 0 0 276px;
  }
}
.anchor__section-wrapper .anchor__section-jagd {
  flex: 1 1 auto;
}
@media (min-width: 700px) {
  .anchor__section-wrapper .anchor__section-jagd {
    flex: 0 0 500px;
  }
}
@media (min-width: 1285px) {
  .anchor__section-wrapper .anchor__section-jagd {
    flex: 1 1 276px;
  }
  .anchor__section-wrapper .anchor__section-jagd .bg__image {
    margin-left: 0 !important;
  }
}
@media (min-width: 1285px) {
  .anchor__section-wrapper .anchor__section-jagd .anchor__content {
    margin-left: 0 !important;
    margin-right: auto !important;
  }
}

@media (max-width: 1199px) {
  .wp-block-columns.header__hero-grid .wp-block-column {
    flex-basis: 100% !important;
  }
}
@media (max-width: 782px) {
  .wp-block-columns.column__reverse-mobile {
    flex-direction: column-reverse !important;
  }
}
@media (min-width: 783px) {
  .header__hero-grid .wp-block-column:first-child .anchor__section {
    margin-left: auto !important;
    margin-right: 0 !important;
  }
  .header__hero-grid .wp-block-column:last-child .anchor__section {
    margin-left: 0 !important;
    margin-right: auto !important;
  }
}
.wp-block-group.testimonial {
  box-shadow: 0 0.08rem 0.16rem rgba(0, 0, 0, 0.1), 0 0.27rem 0.8rem rgba(0, 0, 0, 0.1);
}
.wp-block-group.testimonial svg {
  width: 48px;
  height: 48px;
  fill: #87be42;
}

.theme__btns-pair .wp-block-button:first-child .wp-block-button__link {
  background: var(--wp--preset--color--da-green-olive) !important;
  color: #fff !important;
}
.theme__btns-pair .wp-block-button:first-child .wp-block-button__link:hover {
  background: var(--wp--preset--color--da-black-dark) !important;
}

.list__with-checkmark--green {
  padding-left: 0;
  list-style-type: none;
  margin-left: 0 !important;
}
.list__with-checkmark--green li {
  background-image: url("data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"28\" height=\"28\" viewBox=\"0 0 28 28\" fill=\"none\"><path d=\"M5 13L11 19L23 7\" stroke=\"%2368C422\" stroke-width=\"4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></svg>");
  background-repeat: no-repeat;
  background-size: 22px 22px;
  background-position: left top;
  margin-bottom: 16px;
  padding-left: 30px;
}
@media (min-width: 992px) {
  .list__with-checkmark--green li {
    background-size: 28px 28px;
    padding-left: 36px;
  }
}

.is-style-dark-btn .wp-block-button__link {
  background: var(--wp--preset--color--da-green-olive) !important;
  color: #fff !important;
}
.is-style-dark-btn .wp-block-button__link:hover {
  background: var(--wp--preset--color--da-black-dark) !important;
}

.masonry {
  -moz-column-count: 3;
       column-count: 3; /* Number of columns */
  -moz-column-gap: 32px;
       column-gap: 32px; /* Gap between columns */
}
.masonry-item {
  margin-bottom: 32px;
  -moz-column-break-inside: avoid;
       break-inside: avoid; /* Prevents content from breaking between columns */
}
@media (max-width: 992px) {
  .masonry h4 {
    font-size: 18px !important;
    line-height: 1.2 !important;
  }
}
@media (max-width: 800px) {
  .masonry {
    -moz-column-count: 2;
         column-count: 2;
  }
}
@media (max-width: 480px) {
  .masonry {
    -moz-column-count: 1;
         column-count: 1;
  }
}

.is-style-white-bg-check-list,
.is-style-grey-bg-check-list,
.is-style-check-list {
  padding-left: 0;
  list-style-type: none;
  margin-left: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.is-style-white-bg-check-list li,
.is-style-grey-bg-check-list li,
.is-style-check-list li {
  background-image: url("data:image/svg+xml,<svg width=\"28\" height=\"28\" viewBox=\"0 0 28 28\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M6 13.3333L11.3333 18.6667L22 8\" stroke=\"%23333333\" stroke-width=\"4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></svg>");
  background-repeat: no-repeat;
  background-size: 28px 28px;
  background-position: left top;
  margin-bottom: 0;
  margin-left: 0;
  padding-left: 40px;
}

.is-style-white-bg-check-list,
.is-style-grey-bg-check-list {
  margin-left: auto !important;
  margin-right: auto !important;
}
.is-style-white-bg-check-list li,
.is-style-grey-bg-check-list li {
  padding: 32px;
  padding-left: 72px;
  background-position: 32px 32px;
}

.is-style-white-bg-check-list li {
  background-color: #fff;
}

.is-style-grey-bg-check-list li {
  background-color: #f9f9f9;
}

.is-style-white-bg-numbered-circle-list,
.is-style-grey-bg-numbered-circle-list,
.is-style-numbered-circle-list {
  counter-reset: da-counter; /* reset the counter */
  list-style: none; /* remove default numbers */
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.is-style-white-bg-numbered-circle-list li,
.is-style-grey-bg-numbered-circle-list li,
.is-style-numbered-circle-list li {
  counter-increment: da-counter; /* increment counter */
  margin: 0;
  position: relative;
  padding-left: 37px;
}
.is-style-white-bg-numbered-circle-list li::before,
.is-style-grey-bg-numbered-circle-list li::before,
.is-style-numbered-circle-list li::before {
  content: counter(da-counter); /* default number with dot */
  position: absolute;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  font-size: 15px;
  line-height: 1.66;
  left: 0;
  color: #fff;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--wp--preset--color--da-grey);
}

.is-style-white-bg-numbered-circle-list li,
.is-style-grey-bg-numbered-circle-list li {
  padding: 32px;
  padding-left: 72px;
}
.is-style-white-bg-numbered-circle-list li::before,
.is-style-grey-bg-numbered-circle-list li::before {
  left: 32px;
}

.is-style-white-bg-numbered-circle-list li {
  background-color: #fff;
}

.is-style-grey-bg-numbered-circle-list li {
  background-color: #f9f9f9;
}

.post__grid .wp-block-post-template li .wp-block-post-featured-image {
  border-radius: 8px;
  overflow: hidden;
}
.post__grid .wp-block-post-template li .wp-block-post-featured-image img {
  transition: transform 0.3s;
}
.post__grid .wp-block-post-template li .wp-block-post-featured-image img:hover {
  transform: scale(1.05);
}
.post__grid .wp-block-post-template li .wp-block-post-title a {
  color: var(--wp--preset--color--da-green-87-be-42);
}
.post__grid .wp-block-post-template li .wp-block-post-title a:hover {
  color: var(--wp--preset--color--da-green-darker);
}
.post__grid .wp-block-post-template li .wp-block-post-date time {
  background-image: url("data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" style=\"fill:%23283c24;\" viewBox=\"0 0 448 512\"><%21--%21Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path d=\"M96 32l0 32L48 64C21.5 64 0 85.5 0 112l0 48 448 0 0-48c0-26.5-21.5-48-48-48l-48 0 0-32c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 32L160 64l0-32c0-17.7-14.3-32-32-32S96 14.3 96 32zM448 192L0 192 0 464c0 26.5 21.5 48 48 48l352 0c26.5 0 48-21.5 48-48l0-272z\"/></svg>");
  background-size: 15px 15px;
  background-repeat: no-repeat;
  background-position: left 3px;
  padding-left: 20px;
  line-height: 1;
  font-size: 15px;
  color: var(--wp--preset--color--da-green-darkest);
}
.okopunkt__listings-meta {
  padding-top: 32px;
  padding-bottom: 32px;
}
.okopunkt__listings-meta .okopunkt__listings-meta-ctas {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .okopunkt__listings-meta .okopunkt__listings-meta-ctas {
    justify-content: flex-end;
    flex-wrap: nowrap;
  }
}
.okopunkt__listings-meta .okopunkt__listings-meta-ctas a {
  text-align: center;
  padding-top: 16px;
  padding-right: 30px;
  padding-bottom: 16px;
  padding-left: 30px;
  background-color: var(--wp--preset--color--da-green-light);
  border-radius: 8px;
  color: var(--wp--preset--color--da-green-olive);
  font-family: var(--wp--preset--font-family--poppins);
  font-size: inherit;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
}
.okopunkt__listings-meta .okopunkt__listings-meta-ctas a:hover {
  background-color: var(--wp--preset--color--da-black-dark);
  color: #fff;
}

.okopunkt__listings {
  margin-top: 0;
  border-radius: 16px;
  border: 1px solid #DADADA;
  padding: 10px;
}
@media (min-width: 768px) {
  .okopunkt__listings {
    padding: 24px 32px;
  }
}
.okopunkt__listings .listings__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 20px;
}
.okopunkt__listings .listings__grid div {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.okopunkt__listings-head {
  color: #C7C7C7;
  font-family: Poppins;
  font-weight: 700;
  line-height: 24px; /* 133.333% */
  padding-top: 16px;
  padding-bottom: 8px;
}
@media (min-width: 768px) {
  .okopunkt__listings-head {
    font-size: 18px;
  }
}
.okopunkt__listings-body .okopunkt__listings-row {
  padding-top: 24px;
  padding-bottom: 24px;
  color: #1D201C;
  font-family: Poppins;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 133.333% */
}
@media (min-width: 768px) {
  .okopunkt__listings-body .okopunkt__listings-row {
    font-size: 18px;
  }
}
.okopunkt__listings-body .okopunkt__listings-row .okopunkt__listings-verkauf,
.okopunkt__listings-body .okopunkt__listings-row .okopunkt__listings-kauf,
.okopunkt__listings-body .okopunkt__listings-row .okopunkt__listings-suche,
.okopunkt__listings-body .okopunkt__listings-row .okopunkt__listings-angebot {
  border-radius: 999999px;
  background: #283C24;
  display: flex;
  padding: 4px 12px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #FFF;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px; /* 157.143% */
  width: -moz-fit-content;
  width: fit-content;
}
.okopunkt__listings-body .okopunkt__listings-row .okopunkt__listings-verkauf svg,
.okopunkt__listings-body .okopunkt__listings-row .okopunkt__listings-kauf svg,
.okopunkt__listings-body .okopunkt__listings-row .okopunkt__listings-suche svg,
.okopunkt__listings-body .okopunkt__listings-row .okopunkt__listings-angebot svg {
  width: 6.05px;
  height: 10.891px;
}
.okopunkt__listings-body .okopunkt__listings-edit {
  justify-content: flex-end !important;
  gap: 15px !important;
}
.okopunkt__listings-body .okopunkt__listings-edit svg {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

/* Mobile styles for screens smaller than 768px */
@media (max-width: 768px) {
  .okopunkt__listings-head {
    display: none !important;
  }
  .okopunkt__listings-body .okopunkt__listings-row {
    display: grid;
    grid-template-columns: 1fr;
  }
  .okopunkt__listings-body .okopunkt__listings-row:not(:last-child) {
    border-bottom: 1px solid #ccc;
  }
  .okopunkt__listings-body .okopunkt__listings-row > div {
    font-size: 14px;
    display: flex;
    align-items: center;
    padding: 5px 0;
    justify-content: space-between;
    text-align: right;
  }
  .okopunkt__listings-body .okopunkt__listings-row > div:before {
    max-width: 100px;
    color: #C7C7C7;
    font-family: Poppins;
    font-weight: 700;
    line-height: 24px; /* 133.333% */
    text-align: left;
  }
  .okopunkt__listings-body .okopunkt__listings-row > div:nth-child(1):before {
    content: "Datum";
    margin-right: 20px;
  }
  .okopunkt__listings-body .okopunkt__listings-row > div:nth-child(2):before {
    content: "Inserat";
    margin-right: 20px;
  }
  .okopunkt__listings-body .okopunkt__listings-row > div:nth-child(3):before {
    content: "Ort";
    margin-right: 20px;
  }
  .okopunkt__listings-body .okopunkt__listings-row > div:nth-child(4):before {
    content: "Anzahl der Ökopunkte";
    margin-right: 20px;
  }
  .okopunkt__listings-body .okopunkt__listings-row > div:nth-child(5):before {
    content: "Preis pro Ökopunkt";
    margin-right: 20px;
  }
  .okopunkt__listings-body .okopunkt__listings-row > div:nth-child(6):before {
    content: " ";
    margin-right: 20px;
  }
}
.jagd__listings-meta {
  padding-top: 32px;
  padding-bottom: 32px;
}
.jagd__listings-meta .jagd__listings-meta-ctas {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .jagd__listings-meta .jagd__listings-meta-ctas {
    justify-content: flex-end;
    flex-wrap: nowrap;
  }
}
.jagd__listings-meta .jagd__listings-meta-ctas a {
  text-align: center;
  padding-top: 16px;
  padding-right: 30px;
  padding-bottom: 16px;
  padding-left: 30px;
  background-color: var(--wp--preset--color--da-green-light);
  border-radius: 8px;
  color: var(--wp--preset--color--da-green-darker);
  font-family: var(--wp--preset--font-family--open-sans);
  font-size: inherit;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
}
.jagd__listings-meta .jagd__listings-meta-ctas a:hover {
  background-color: var(--wp--preset--color--da-green-darker);
  color: #fff;
}

.jagd__listings {
  margin-top: 0;
  border-radius: 16px;
  border: 1px solid #DADADA;
  padding: 10px;
}
@media (min-width: 768px) {
  .jagd__listings {
    padding: 24px 32px;
  }
}
.jagd__listings .listings__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 20px;
}
.jagd__listings .listings__grid div {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.jagd__listings-head {
  color: #C7C7C7;
  font-family: Poppins;
  font-weight: 700;
  line-height: 24px; /* 133.333% */
  padding-top: 16px;
  padding-bottom: 8px;
}
@media (min-width: 768px) {
  .jagd__listings-head {
    font-size: 18px;
  }
}
.jagd__listings-body .jagd__listings-row {
  padding-top: 24px;
  padding-bottom: 24px;
  color: #1D201C;
  font-family: Poppins;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 133.333% */
}
@media (min-width: 768px) {
  .jagd__listings-body .jagd__listings-row {
    font-size: 18px;
  }
}
.jagd__listings-body .jagd__listings-row .jagd__listings-suche,
.jagd__listings-body .jagd__listings-row .jagd__listings-angebot {
  border-radius: 999999px;
  background: #283C24;
  display: flex;
  padding: 4px 12px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #FFF;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px; /* 157.143% */
  width: -moz-fit-content;
  width: fit-content;
}
.jagd__listings-body .jagd__listings-row .jagd__listings-suche svg,
.jagd__listings-body .jagd__listings-row .jagd__listings-angebot svg {
  width: 6.05px;
  height: 10.891px;
}
.jagd__listings-body .jagd__listings-edit {
  justify-content: flex-end !important;
  gap: 15px !important;
}
.jagd__listings-body .jagd__listings-edit svg {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

/* Mobile styles for screens smaller than 768px */
@media (max-width: 768px) {
  .jagd__listings-head {
    display: none !important;
  }
  .jagd__listings-body .jagd__listings-row {
    display: grid;
    grid-template-columns: 1fr;
  }
  .jagd__listings-body .jagd__listings-row:not(:last-child) {
    border-bottom: 1px solid #ccc;
  }
  .jagd__listings-body .jagd__listings-row > div {
    font-size: 14px;
    display: flex;
    align-items: center;
    padding: 5px 0;
    justify-content: space-between;
    text-align: right;
  }
  .jagd__listings-body .jagd__listings-row > div:before {
    max-width: 100px;
    color: #C7C7C7;
    font-family: Poppins;
    font-weight: 700;
    text-align: left;
  }
  .jagd__listings-body .jagd__listings-row > div:nth-child(1):before {
    content: "Datum";
    margin-right: 20px;
  }
  .jagd__listings-body .jagd__listings-row > div:nth-child(2):before {
    content: "Inserat";
    margin-right: 20px;
  }
  .jagd__listings-body .jagd__listings-row > div:nth-child(3):before {
    content: "Ort";
    margin-right: 20px;
  }
  .jagd__listings-body .jagd__listings-row > div:nth-child(4):before {
    content: "Reviergröße in ha";
    margin-right: 20px;
  }
  .jagd__listings-body .jagd__listings-row > div:nth-child(5):before {
    content: "Pachtpreis pro ha";
    margin-right: 20px;
  }
  .jagd__listings-body .jagd__listings-row > div:nth-child(6):before {
    content: " ";
    margin-right: 20px;
  }
}
.landverpachten__listings-meta {
  padding-top: 32px;
  padding-bottom: 32px;
}
.landverpachten__listings-meta .landverpachten__listings-meta-ctas {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .landverpachten__listings-meta .landverpachten__listings-meta-ctas {
    justify-content: flex-end;
    flex-wrap: nowrap;
  }
}
.landverpachten__listings-meta .landverpachten__listings-meta-ctas a {
  text-align: center;
  padding-top: 16px;
  padding-right: 30px;
  padding-bottom: 16px;
  padding-left: 30px;
  background-color: var(--wp--preset--color--da-green-light);
  border-radius: 8px;
  color: var(--wp--preset--color--da-green-darker);
  font-family: var(--wp--preset--font-family--open-sans);
  font-size: inherit;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
}
.landverpachten__listings-meta .landverpachten__listings-meta-ctas a:hover {
  background-color: var(--wp--preset--color--da-green-darker);
  color: #fff;
}

.landverpachten__listings {
  margin-top: 0;
  border-radius: 16px;
  border: 1px solid #DADADA;
  padding: 10px;
}
@media (min-width: 768px) {
  .landverpachten__listings {
    padding: 24px 32px;
  }
}
.landverpachten__listings .listings__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 20px;
}
.landverpachten__listings .listings__grid div {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.landverpachten__listings-head {
  color: #C7C7C7;
  font-family: Poppins;
  font-weight: 700;
  line-height: 24px; /* 133.333% */
  padding-top: 14px;
  padding-bottom: 8px;
}
@media (min-width: 768px) {
  .landverpachten__listings-head {
    font-size: 18px;
  }
}
.landverpachten__listings-body .landverpachten__listings-row {
  padding-top: 24px;
  padding-bottom: 24px;
  color: #1D201C;
  font-family: Poppins;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 133.333% */
}
@media (min-width: 768px) {
  .landverpachten__listings-body .landverpachten__listings-row {
    font-size: 18px;
  }
}
.landverpachten__listings-body .landverpachten__listings-edit {
  justify-content: flex-end !important;
  gap: 15px !important;
}
.landverpachten__listings-body .landverpachten__listings-edit svg {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

/* Mobile styles for screens smaller than 768px */
@media (max-width: 768px) {
  .landverpachten__listings-head {
    display: none !important;
  }
  .landverpachten__listings-body .landverpachten__listings-row {
    display: grid;
    grid-template-columns: 1fr;
  }
  .landverpachten__listings-body .landverpachten__listings-row:not(:last-child) {
    border-bottom: 1px solid #ccc;
  }
  .landverpachten__listings-body .landverpachten__listings-row > div {
    display: flex;
    align-items: center;
    padding: 5px 0;
    justify-content: space-between;
    text-align: right;
    font-size: 14px;
  }
  .landverpachten__listings-body .landverpachten__listings-row > div:before {
    max-width: 100px;
    color: #C7C7C7;
    font-family: Poppins;
    font-weight: 700;
    text-align: left;
  }
  .landverpachten__listings-body .landverpachten__listings-row > div:nth-child(1):before {
    content: "Datum";
    margin-right: 20px;
  }
  .landverpachten__listings-body .landverpachten__listings-row > div:nth-child(2):before {
    content: "Ort";
    margin-right: 20px;
  }
  .landverpachten__listings-body .landverpachten__listings-row > div:nth-child(3):before {
    content: "Reviergröße in ha";
    margin-right: 20px;
  }
  .landverpachten__listings-body .landverpachten__listings-row > div:nth-child(4):before {
    content: "Art der erwarteten Entschädigung";
    margin-right: 20px;
  }
  .landverpachten__listings-body .landverpachten__listings-row > div:nth-child(5):before {
    content: " ";
    margin-right: 20px;
  }
}
.da__map-wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
}
.da__map-wrapper .da__map {
  min-height: 550px;
  flex: 1 1 100%;
}
.da__map-wrapper .filter-controls {
  max-width: 348px;
  min-width: 215px;
  padding: 20px 16px;
  border-radius: 12px;
  background: #FFF;
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.25);
  position: absolute;
  top: 24px;
  right: 60px;
  z-index: 992;
  max-height: 90%;
  overflow-y: auto;
}
.da__map-wrapper .filter-controls .col {
  margin-bottom: 0;
}
.da__map-wrapper .filter-controls .col:first-child {
  margin-top: 16px;
}
.da__map-wrapper .filter-controls .col:not(:last-child) {
  border-bottom: 1px solid #DADADA;
  padding-bottom: 12px;
}
.da__map-wrapper .filter-controls .col:not(:first-child) {
  padding-top: 12px;
}
.da__map-wrapper .filter-controls .col__heading {
  margin-bottom: 12px;
  color: #283C24;
  font-family: var(--wp--preset--font-family--poppins);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px; /* 144.444% */
}
.da__map-wrapper .filter-controls .checkbox_UI-group {
  flex-direction: column;
  gap: 16px;
  margin-bottom: 8px;
}
.da__map-wrapper .filter-controls .checkbox_UI-group .checkbox_UI label {
  color: #283C24;
  font-family: var(--wp--preset--font-family--open-sans);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 160% */
}
.da__map-wrapper .filter-controls .checkbox_UI-group .checkbox_UI label span {
  padding-left: 36px;
}
.da__map-wrapper .filter-controls .checkbox_UI-group .checkbox_UI label span::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border: none;
  background-image: url("data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\"><path d=\"M17.7778 0H2.22222C0.988889 0 0 0.988889 0 2.22222V17.7778C0 18.3671 0.234126 18.9324 0.650874 19.3491C1.06762 19.7659 1.63285 20 2.22222 20H17.7778C18.3671 20 18.9324 19.7659 19.3491 19.3491C19.7659 18.9324 20 18.3671 20 17.7778V2.22222C20 1.63285 19.7659 1.06762 19.3491 0.650874C18.9324 0.234126 18.3671 0 17.7778 0ZM17.7778 2.22222V17.7778H2.22222V2.22222H17.7778Z\" fill=\"%23DDDDDD\"/></svg>");
  background-size: contain;
}
.da__map-wrapper .filter-controls .checkbox_UI-group .checkbox_UI label span::after {
  display: none !important;
}
.da__map-wrapper .filter-controls .checkbox_UI-group .checkbox_UI label input:checked + span {
  color: #283C24;
  font-family: var(--wp--preset--font-family--open-sans);
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 160% */
}
.da__map-wrapper .filter-controls .checkbox_UI-group .checkbox_UI label input:checked + span::before {
  background-image: url("data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2.22222 0C1.63285 0 1.06762 0.234126 0.650874 0.650874C0.234126 1.06762 0 1.63285 0 2.22222V17.7778C0 18.3671 0.234126 18.9324 0.650874 19.3491C1.06762 19.7659 1.63285 20 2.22222 20H17.7778C18.3671 20 18.9324 19.7659 19.3491 19.3491C19.7659 18.9324 20 18.3671 20 17.7778V2.22222C20 1.63285 19.7659 1.06762 19.3491 0.650874C18.9324 0.234126 18.3671 0 17.7778 0H2.22222ZM15.5 7.55111C15.7085 7.34277 15.8257 7.06014 15.8258 6.76539C15.8259 6.47065 15.7089 6.18793 15.5006 5.97944C15.2922 5.77096 15.0096 5.65377 14.7148 5.65366C14.4201 5.65356 14.1374 5.77055 13.9289 5.97889L8.42889 11.4789L6.07222 9.12222C5.96906 9.01899 5.84658 8.93709 5.71176 8.88119C5.57695 8.82529 5.43245 8.79649 5.2865 8.79644C4.99176 8.79634 4.70905 8.91333 4.50056 9.12167C4.29207 9.33001 4.17488 9.61264 4.17478 9.90738C4.17467 10.2021 4.29166 10.4848 4.5 10.6933L7.56444 13.7578C7.67795 13.8713 7.81271 13.9614 7.96103 14.0229C8.10936 14.0843 8.26834 14.116 8.42889 14.116C8.58944 14.116 8.74842 14.0843 8.89675 14.0229C9.04507 13.9614 9.17983 13.8713 9.29333 13.7578L15.5 7.55111Z\" fill=\"%23283C24\"/></svg>");
}

.filter-controls {
  max-height: 90%;
  overflow-y: auto;
}
.filter-controls .filter-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.filter-controls .filter-toggle .filter-toggle--heading {
  margin-bottom: 0;
  color: #283C24;
  font-family: var(--wp--preset--font-family--open-sans);
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 160% */
}
.filter-controls .filter-toggle svg {
  stroke-width: 1.5px;
}
.filter-controls .filter-content {
  max-height: 0;
  overflow: hidden;
}
.filter-controls.active .filter-toggle {
  padding-bottom: 12px;
  border-bottom: 1px solid #DADADA;
}
.filter-controls.active .filter-toggle .filter-toggle--heading {
  color: #68C422;
}
.filter-controls.active .filter-toggle svg {
  transform: rotate(180deg);
  transition: all 0.3s ease-in-out;
}
.filter-controls.active .filter-toggle svg path {
  stroke: #68C422;
}
.filter-controls.active .filter-content {
  overflow-y: auto;
  max-height: 1000px;
  overflow: auto;
}
.filter-controls .filter-toggle:hover .filter-toggle--heading {
  color: #68C422 !important;
}
.filter-controls .filter-toggle:hover svg path {
  stroke: #68C422 !important;
}

.swal-button {
  background-color: var(--wp--preset--color--da-green-light);
  color: var(--wp--preset--color--da-green-olive);
}
.swal-button:focus {
  outline: none !important;
  box-shadow: none !important;
}
.swal-button:hover {
  background-color: var(--wp--preset--color--da-green-olive) !important;
  color: #fff !important;
}

.floating__side-bar {
  display: none;
  position: fixed;
  z-index: 99999;
  top: 50%;
  transform: translateY(-50%);
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 1200px) {
  .floating__side-bar {
    display: none !important;
  }
}
.floating__side-bar--icon {
  display: flex;
  width: 46px;
  height: 46px;
  padding: 6px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}
.floating__side-bar--icon svg {
  width: 28px;
  width: auto;
}
.floating__side-bar--icon:hover {
  background: #D3F5BA;
}
.floating__side-bar--content-wrapper {
  position: absolute;
  display: none;
  left: calc(100% + 48px);
  top: 50%;
  transform: translateY(-50%);
  padding: 16px 20px 20px 20px !important;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  border-radius: 12px;
  background: #FFF;
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.25);
  width: 100vw;
  max-width: 302px;
  color: #000;
}
.floating__side-bar--content-wrapper .close__icon {
  position: absolute;
  top: 16px;
  right: 16px;
  cursor: pointer;
  z-index: 1;
}
.floating__side-bar--content-wrapper .close__icon svg {
  width: 20px;
  height: auto;
}
.floating__side-bar--content-wrapper .wp-block-heading {
  color: #000;
  font-family: var(--wp--preset--font-family--poppins);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px; /* 144.444% */
  margin-bottom: 4px;
}
.floating__side-bar--content-wrapper .wp-block-button__link {
  padding: 4px 20.5px !important;
  border-radius: 8px !important;
  text-align: center;
  font-family: Poppins;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 153.846% */
}
.floating__side-bar .floating__side-bar-menu-item.active .floating__side-bar--content-wrapper {
  display: flex;
}

#da__toc {
  margin-top: 0;
}

.da__steps .da__step {
  flex: 0 0 33.3333%;
  padding: 0;
  margin: 0;
}
.da__steps .da__step-count {
  display: flex;
  width: 60px;
  height: 60px;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  border: 2px solid var(--Green-Mid-1, #68C422);
  background: #FFF;
  color: #1D201C;
  text-align: center;
  font-family: var(--wp--preset--font-family--poppins);
  font-size: 24px;
  font-weight: 700;
  line-height: 32px; /* 133.333% */
  position: relative;
}
.da__steps .da__step-desc {
  color: var(--Headlines, #1A1A1A);
  text-align: center;
  /* copy-bold */
  font-family: var(--wp--preset--font-family--open-sans);
  font-size: 16px;
  font-weight: 700;
  line-height: 25px; /* 156.25% */
}
@media (min-width: 1200px) {
  .da__steps .da__step::after {
    content: "";
    position: absolute;
    width: calc(50% - 30px + 13px);
    height: 0px;
    border-top: 2px dashed var(--Green-Mid-1, #68C422);
    top: 30px;
    left: 50%;
    transform: translate(30px, -1px);
  }
  .da__steps .da__step::before {
    content: "";
    position: absolute;
    width: calc(50% - 30px + 13px);
    height: 0px;
    border-top: 2px dashed var(--Green-Mid-1, #68C422);
    top: 30px;
    left: -16px;
    transform: translateY(-1px);
  }
  .da__steps .da__step:last-child::after {
    display: none;
  }
  .da__steps .da__step:first-child::before {
    display: none;
  }
}
.da__steps .da__step-check .da__step-count {
  background: var(--Green-Mid-1, #68C422);
}
.da__steps .da__step-check .da__step-count svg {
  width: 26px;
  height: auto;
}
@media (max-width: 1200px) {
  .da__steps {
    flex-direction: column;
    align-items: center;
  }
}

#da__toc ul {
  list-style: none;
  /* padding-bottom: 30px; */
  background: #fff;
}

#da__toc ul li {
  margin-left: 0;
}

#da__toc li a {
  color: var(--wp--preset--color--da-green-olive);
  position: relative;
  padding-top: 8px;
  padding-bottom: 8px;
  display: inline-block;
  font-family: var(--wp--preset--font-family--poppins);
  font-size: 15px;
  font-weight: 500;
  line-height: 25px; /* 166.667% */
}

#da__toc li a:hover {
  color: var(--wp--preset--color--da-green-mid-1);
}

#da__toc [class^=level-2] > li > a {
  color: var(--wp--preset--color--da-green-olive);
  font-family: var(--wp--preset--font-family--poppins);
  line-height: 25px;
  font-weight: 700;
}

#da__toc [class^=level-] > li:first-child > a:hover {
  color: var(--wp--preset--color--da-green-olive);
}

#da__toc ul {
  padding-left: 0;
  margin: 0;
}

/* .da__toc ul.level-1 li{
	padding-left: 0;
}
.da__toc ul.level-2 li{
	padding-left: 15px;
}
.da__toc ul.level-3 li{
	padding-left: 15px;
}
.da__toc ul.level-4 li{
	padding-left: 15px;
}
.da__toc ul.level-5 li{
	padding-left: 15px;
}
.da__toc ul.level-6 li{
	padding-left: 15px;
} */
#table-of-contents {
  max-height: 300px;
  overflow-y: auto;
}
#table-of-contents::-webkit-scrollbar {
  width: 8px;
}
#table-of-contents::-webkit-scrollbar-thumb {
  background-color: var(--wp--preset--color--da-green-mid-1);
  border-radius: 10px;
}

#table-of-contents > ul > li a {
  padding-left: 0px;
}

#table-of-contents > ul > li > ul li a {
  padding-left: 10px;
}

#table-of-contents > ul > li > ul > li > ul li a {
  padding-left: 20px;
}

#table-of-contents > ul > li > ul > li > ul > li > ul li a {
  padding-left: 30px;
}

#table-of-contents > ul > li > ul > li > ul > li > ul > li > ul li a {
  padding-left: 40px;
}

#table-of-contents > ul > li > ul > li > ul > li > ul > li > ul > li > ul li a {
  padding-left: 50px;
}

#table-of-contents > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul li a {
  padding-left: 60px;
}

#table-of-contents > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul li a {
  padding-left: 70px;
}

.floating__side-bar-menu-item.toc__launch {
  display: none;
}

.page__toc-wrapper {
  margin: 0;
}
.page__toc-wrapper .page__toc-title {
  color: var(--Green-Mid-1, #68C422);
  font-family: var(--wp--preset--font-family--poppins);
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px; /* 166.667% */
  margin: 0;
  padding-bottom: 8px;
  padding-top: 8px;
}
.page__toc-wrapper #page__toc-table-of-contents ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.page__toc-wrapper #page__toc-table-of-contents ul li {
  margin: 0;
}
.page__toc-wrapper #page__toc-table-of-contents ul li a {
  display: block;
  padding-top: 8px;
  padding-bottom: 8px;
  color: #283C24;
  font-family: var(--wp--preset--font-family--poppins);
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px; /* 166.667% */
  transition: color 0.2s ease-in-out;
}
.page__toc-wrapper #page__toc-table-of-contents ul li a:hover {
  color: var(--wp--preset--color--da-green-mid-1);
}
.page__toc-wrapper #page__toc-table-of-contents ul li ul li a {
  font-weight: 500;
  padding-left: 20px;
}

.top__bar {
  display: none;
}
.top__bar.is-visible {
  display: block;
  max-height: 500px;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.top__bar.is-hidden-scroll {
  max-height: 0 !important;
  overflow: hidden;
}
.top__bar .wp-block-group {
  position: relative;
}
.top__bar .wp-block-group .top__bar-close {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  padding: 10px;
}
.top__bar .wp-block-group .top__bar-close img {
  width: 10px;
  height: 10px;
}

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