@charset "UTF-8";
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
:root {
  text-underline-offset: 0.3em;
  --radius: 2.5rem;
}
@media only screen and (min-width: 768px) {
  a[href^="tel:"] {
    text-decoration: none !important;
    color: inherit !important;
  }
  a[href^="tel:"]:hover {
    color: inherit !important;
    text-decoration: none !important;
  }
}
#bricks-preview .clickable-parent:after {
  display: none !important;
}
.inside-box {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
p:last-child {
  margin-bottom: 0;
}
p:first-child {
  margin-top: 0;
}
body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
footer {
  margin-top: auto;
}
.button-wrapper {
  gap: var(--space-s);
  transition: all 0.3s ease-in-out !important;
  overflow: hidden;
  transform: translateY(0);
}
.button-wrapper svg {
  position: relative;
  z-index: 10;
}
.button-wrapper:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--secondary);
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.3s ease-in-out !important;
  z-index: -1;
}
.button-wrapper a, .button-wrapper .brxe-button {
  padding: 0 !important;
  background-color: transparent !important;
  font-weight: bold;
  color: white !important;
  z-index: 100;
}
.button-wrapper:hover {
  transform: translateY(-0.5rem);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.button-wrapper:hover a {
  padding: 0 !important;
}
.button-wrapper:hover:before {
  opacity: 1;
}
.brxe-button, .ff-btn-secondary, .ff-btn-submit {
  background-color: var(--primary) !important;
  border-radius: var(--radius) !important;
  font-weight: bold !important;
  color: white !important;
  padding: 1em 2em !important;
  line-height: 1;
  transition: all 0.3s ease-in-out !important;
}
.brxe-button.bricks-background-primary, .ff-btn-secondary.bricks-background-primary, .ff-btn-submit.bricks-background-primary {
  padding: 2em !important;
  font-size: 1.2em !important;
}
.brxe-button.bricks-background-primary:hover, .ff-btn-secondary.bricks-background-primary:hover, .ff-btn-submit.bricks-background-primary:hover {
  padding: 2em !important;
  background-color: var(--primary-dark) !important;
}
.brxe-button.bricks-background-secondary, .ff-btn-secondary.bricks-background-secondary, .ff-btn-submit.bricks-background-secondary {
  background-color: white !important;
  color: var(--primary) !important;
}
.brxe-button.bricks-background-secondary:hover, .ff-btn-secondary.bricks-background-secondary:hover, .ff-btn-submit.bricks-background-secondary:hover {
  background-color: var(--shade-dark) !important;
  color: white !important;
}
.brxe-button:hover, .ff-btn-secondary:hover, .ff-btn-submit:hover {
  background-color: var(--secondary) !important;
  padding: 1em 2.5em !important;
}
.ff-custom_html {
  text-align: center;
}
.ff-custom_html p {
  margin: 0;
}
.ff-custom_html .ff-btn-secondary {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1000;
}
.fluentform .dropzone .ff_upload_btn.ff-btn {
  color: #646c7f;
  padding: 3rem;
  width: 100%;
  border: 2px dashed #0087f7;
  border-radius: 5px;
  background: rgba(223, 240, 255, 0.13);
  transition: all ease 0.2s;
  display: block;
  text-align: center;
}
.dropzone span small {
  display: block;
}
.label-hidden .ff-el-input--label {
  display: none !important;
}
.ff_check .ff-el-input--content, .ff_radio .ff-el-input--content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.ff_check .ff-el-input--content .ff-el-form-check, .ff_radio .ff-el-input--content .ff-el-form-check {
  transition: all 0.3s ease-in-out;
  background-color: white;
}
.ff_check .ff-el-input--content .ff-el-form-check:hover, .ff_radio .ff-el-input--content .ff-el-form-check:hover {
  background-color: var(--primary) !important;
}
.ff_check .ff-el-input--content .ff-el-form-check:hover *, .ff_radio .ff-el-input--content .ff-el-form-check:hover * {
  color: white !important;
}
.ff_check .ff-el-input--content .ff-el-form-check.ff_item_selected, .ff_radio .ff-el-input--content .ff-el-form-check.ff_item_selected {
  border-color: var(--primary) !important;
  background-color: var(--primary) !important;
  color: white !important;
}
.ff_check .ff-el-input--content .ff-el-form-check.ff_item_selected span, .ff_radio .ff-el-input--content .ff-el-form-check.ff_item_selected span {
  display: flex;
  justify-content: space-between;
  color: white !important;
  padding-inline: 0 !important;
}
.ff_check .ff-el-input--content > div, .ff_radio .ff-el-input--content > div {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
}
.ff_check .ff-el-input--content > div input, .ff_radio .ff-el-input--content > div input {
  display: none;
}
.ff_check .ff-el-input--content > div label, .ff_radio .ff-el-input--content > div label {
  padding: 0.7em 1em !important;
  margin: 0 !important;
  hyphens: auto;
  background-color: transparent !important;
  font-weight: 600 !important;
  color: var(--typo) !important;
  width: 100%;
}
.fluentform-step {
  min-height: 30vh;
  display: flex;
  flex-flow: column;
}
.fluentform-step .step-nav {
  margin-top: auto;
}
.ff-step-header {
  margin-bottom: 4rem !important;
  border-radius: var(--radius);
  overflow: hidden !important;
}
.ff-step-header .ff-el-progress-status {
  display: none !important;
}
.ff-step-header .ff-el-progress {
  background-color: var(--primary-trans-20) !important;
}
.ff-step-header .ff-el-progress-bar {
  background-color: var(--primary) !important;
}
.ff-step-header span {
  display: none !important;
}
.error {
  padding: var(--space-m);
  background-color: var(--accent) !important;
  font-size: var(--text-m) !important;
  color: white !important;
  font-weight: bold;
  border-radius: var(--radius);
}
.fluentform label {
  color: var(--base);
}
.fluentform div.choices {
  font-size: 1em !important;
  padding: 0.8em;
  border-radius: var(--radius);
  border: 0.05rem solid rgba(0, 0, 0, 0.2);
}
.fluentform div.choices:focus {
  border-color: var(--primary) !important;
}
.fluentform div.choices .choices__list {
  padding: 0 !important;
}
.fluentform div.choices .choices__inner {
  border: none !important;
}
.fluentform .ff_slider_wrapper .ff_range_value {
  font-size: var(--text-l);
}
.fluentform .ff_slider_wrapper .ff_range_value:after {
  content: "Jahre";
  margin-left: 0.2em;
}
.fluentform .ff_slider_wrapper .rangeslider--horizontal {
  background-color: var(--shade-light) !important;
}
.fluentform .ff_slider_wrapper .rangeslider--horizontal .rangeslider__fill {
  background-color: var(--primary) !important;
}
.fluentform .ff_slider_wrapper .rangeslider__handle {
  background-image: none !important;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.fluentform .ff_slider_wrapper .rangeslider__handle:after {
  background-image: none !important;
  background-color: var(--shade-light) !important;
}
.fluentform input[type="text"], .fluentform input[type="email"] {
  font-size: 1em !important;
  padding: 0.8em;
  border-radius: var(--radius);
  border: 0.05rem solid rgba(0, 0, 0, 0.2);
}
.fluentform input[type="text"]:focus, .fluentform input[type="email"]:focus {
  border-color: var(--primary) !important;
}
.fluentform .ff-el-input--content .ff_el_checkable_photo_holders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: none !important;
  gap: var(--space-m) !important;
}
.fluentform .ff-el-input--content .ff_el_checkable_photo_holders label span {
  background-color: transparent !important;
  font-weight: bold !important;
  color: white !important;
  font-size: var(--text-m) !important;
  border: none !important;
  box-shadow: none !important;
  padding-inline: 0 !important;
}
.fluentform .ff-el-input--content .ff_el_checkable_photo_holders .ff-el-image-holder {
  transition: all 0.3s ease-in-out !important;
  background-color: var(--shade-ultra-light);
  border: none !important;
  padding: var(--space-m) 0 !important;
  border-radius: var(--radius);
  position: relative;
  z-index: 1;
}
.fluentform .ff-el-input--content .ff_el_checkable_photo_holders .ff-el-image-holder label.ff-el-form-check-label span {
  color: var(--shade) !important;
  white-space: break-spaces !important;
  hyphens: auto;
}
.fluentform .ff-el-input--content .ff_el_checkable_photo_holders .ff-el-image-holder .ff-el-image-input-src {
  filter: invert(99%) sepia(0%) saturate(5511%) hue-rotate(65deg) brightness(116%) contrast(100%);
}
.fluentform .ff-el-input--content .ff_el_checkable_photo_holders .ff-el-image-holder:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--secondary);
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.3s ease-in-out !important;
  z-index: -1;
}
.fluentform .ff-el-input--content .ff_el_checkable_photo_holders .ff-el-image-holder.ff_item_selected .ff-el-image-input-src, .fluentform .ff-el-input--content .ff_el_checkable_photo_holders .ff-el-image-holder:hover .ff-el-image-input-src {
  filter: none !important;
}
.fluentform .ff-el-input--content .ff_el_checkable_photo_holders .ff-el-image-holder.ff_item_selected label.ff-el-form-check-label span, .fluentform .ff-el-input--content .ff_el_checkable_photo_holders .ff-el-image-holder:hover label.ff-el-form-check-label span {
  color: white !important;
  white-space: break-spaces !important;
}
.fluentform .ff-el-input--content .ff_el_checkable_photo_holders .ff-el-image-holder.ff_item_selected:before, .fluentform .ff-el-input--content .ff_el_checkable_photo_holders .ff-el-image-holder:hover:before {
  opacity: 1;
}
.fluentform .ff-el-input--content .ff_el_checkable_photo_holders .ff-el-image-holder label.ff-el-image-input-src {
  height: 10rem;
  background-size: contain;
  width: 100%;
  background-repeat: no-repeat;
  margin-bottom: 1rem;
}
.ff_radio, .ff_check {
  padding-bottom: 2em;
}
.ff-custom_html * {
  max-width: none !important;
}
label.ff-el-form-check-label span {
  padding: 0 !important;
  white-space: break-spaces;
  hyphens: auto;
  line-height: 1.6;
  display: inline-block;
}
.ff_t_c a {
  text-decoration: underline;
  color: var(--primary);
  text-underline-offset: 0.2em;
}
.ff-btn-submit {
  background-color: var(--secondary) !important;
  transform-origin: right;
  border: 0.2rem solid var(--secondary) !important;
}
@media only screen and (max-width: 768px) {
  .ff-btn-submit {
    width: 100%;
  }
}
.ff-btn-submit:hover {
  background-color: var(--shade) !important;
}
@media only screen and (max-width: 768px) {
  .ff-step-t-container.ff-inner_submit_container.ff-column-container.ff_columns_total_2 {
    flex-flow: column-reverse !important;
  }
  .ff-step-t-container.ff-inner_submit_container.ff-column-container.ff_columns_total_2 > div {
    width: 100% !important;
  }
}
.pricing-table {
  overflow: visible;
}
.tooltip {
  z-index: 4000;
}
.brxe-accordion-nested > div {
  margin-bottom: 1em;
}
.brxe-accordion-nested > div:last-child {
  margin-bottom: 0;
}
.brxe-accordion-nested h3 {
  hyphens: auto;
  max-width: 90%;
}
.brxe-video, video {
  background-color: transparent !important;
}
#fluentform_27 [data-name="form_step-27_3"] .ff_range_value:after {
  content: '';
  margin-left: 0.3em;
}
#fluentform_27 [data-name="form_step-27_5"] .ff_range_value:after {
  content: 'm²';
  margin-left: 0.3em;
}
