@import url("fonts/css/all.min.css");
/*
@font-face {
  font-family: "Open Sans";
  src: url("fonts/OpenSans-Variable.woff2") format("woff2"), url("fonts/OpenSans-Variable.woff") format("woff"), url("fonts/OpenSans-Variable.ttf") format("ttf");
  font-style: normal
}
*/ :root {
  --blau: #008bc4;
  --orange: #f59c00;
  --darkgrey: #747474;
  --midgrey: #eeeeee;
  --lightgrey: #f6f6f6;
  --background_color: black;
  --text_color: white;
  --icons: "Font Awesome 6 Free";
  --turn_orange: invert(62%) sepia(67%) saturate(4020%) hue-rotate(14deg) brightness(110%) contrast(106%);
}
* {
  box-sizing: border-box;
}
#app_innenausbau {
  font-family: "Open Sans", sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-size: 16px;
}
#app_innenausbau #wrapper {
  display: flex;
  overflow: hidden;
}
#app_innenausbau main {
  width: calc(100% - 0px);
  transition: width 0.3s ease;
  display: flex;
  padding-bottom: 180px;
}
.fusion-wrapper.show_sidebar #app_innenausbau main:not(#main) {
  width: calc(100% - 400px);
}
#wrapper_innenausbau.show_sidebar main {
  width: calc(100% - 400px);
}
#app_innenausbau #inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0px 30px;
}
#wrapper_innenausbau aside {
  width: 400px;
  transition: all 0.3s ease;
  position: fixed;
  right: -400px;
  top: 0;
  height: 100%;
  z-index: 1000;
  background: var(--blau);
  color: #fff;
  box-shadow: 0px 0px 15px #0003;
  padding: 15px;
}
#wrapper_innenausbau.show_sidebar aside {
  right: 0px;
}
#app_innenausbau h1 {
  font-size: 54px;
}
#app_innenausbau h1.title {
  display: flex;
  align-items: start;
  color: #000;
  text-transform: none;
}
#app_innenausbau h1.title i {
  font-size: 48px;
  color: var(--orange);
  margin-right: 10px;
  padding-top: 10px;
}
#app_innenausbau h2 {
  font-size: 24px;
}
#app_innenausbau h3 {
  font-size: 18px;
}
/*  Tabs */
/* Input Wohnfläche */
#app_innenausbau .input_flaeche {
  margin: 50px 0px;
}
#app_innenausbau .input_flaeche h3::after {
  content:" (m\00B2)";
}
#app_innenausbau .input_wohnflaeche {
  display: flex;
  flex-direction: column;
}
#app_innenausbau .slider {
  -webkit-appearance: none;
  width: 100%;
  height: 30px;
  border-radius: 10px;
  background: var(--midgrey);
  outline: none;
  overflow: hidden;
  transition: 0.3s all ease;
}
#app_innenausbau .slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 50px;
  height: 30px;
  border: 0;
  border-radius: 0px;
  background: url("img/left-right-solid-black-blue.svg") center center no-repeat;
  background-size: cover;
  cursor: grabbing;
  transition: 0.3s all ease;
  box-shadow: -1400px 0 0 1400px var(--blau);
}
#app_innenausbau .slider::-moz-range-thumb {
  width: 50px;
  height: 30px;
  border: 0;
  border-radius: 0px;
  background: url("img/left-right-solid-black-blue.svg") center center no-repeat;
  background-size: cover;
  cursor: grabbing;
  transition: 0.3s all ease;
  box-shadow: -1400px 0 0 1400px var(--blau);
}
/* Tabs  */
#app_innenausbau .selection_tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}
#app_innenausbau .selection_tabs.first {
  max-height: 110px;
}
#app_innenausbau .selection_tabs > h3 {
  flex: 1 1 100%;
  margin: 0px;
  padding: 50px 0px 30px;
  background: #fff;
  z-index: 10;
}
#app_innenausbau .selection_tabs > input {
  display: none;
}
#app_innenausbau .selection_tabs > label i {
  font-size: 30px;
  margin-right: 10px;
  transition: 0.3s all ease;
}
#app_innenausbau .selection_tabs > label img {
  height: 40px;
  width: auto;
  margin-right: 5px;
}
#app_innenausbau .selection_tabs > label {
  display: flex;
  align-items: center;
  background: var(--lightgrey);
  padding: 10px;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
  transition: 0.3s all ease;
  cursor: pointer;
  border-radius: 5px;
  flex: 1 1 30%;
  max-width: 30%;
  z-index: 10;
}
#app_innenausbau .selection_tabs > label:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0px 8px 15px 2px rgba(0, 0, 0, 0.1);
}
#app_innenausbau .selection_tabs label:hover i {
  color: var(--orange);
}
#app_innenausbau .selection_tabs input:checked + label {
  background: var(--blau);
  color: #fff;
}
#app_innenausbau .selection_tabs input:checked + label i {
  color: var(--orange);
}
#app_innenausbau .selection_tabs > input + label::after {
  content: "\f107";
  font-family: var(--icons);
  font-weight: 900;
  color: var(--orange);
  margin-left: auto;
}
#app_innenausbau .selection_tabs > input.active + label::after {
  content: "\f106";
  font-family: var(--icons);
  font-weight: 900;
  color: var(--orange);
  margin-left: auto;
}
#app_innenausbau .tooltip_wrapper {
  margin-left: 8px;
}
/* Tabs Content */
#app_innenausbau .tab {
  background: var(--lightgrey);
  /*  transform: translateY(-100%);*/
  z-index: -1;
  width: 30%;
  transition: 0.5s all ease;
  border-radius: 0px 0px 5px 5px;
  opacity: 0;
  height: 0px;
  margin-bottom: 50px;
}
#app_innenausbau .tab h3 {
  padding: 0px 15px;
  margin-bottom: 10px;
}
#app_innenausbau .tab input {
  display: none;
}
#app_innenausbau .tab label {
  min-height: 50px;
  display: flex;
  align-items: center;
  padding: 15px;
  word-break: break-word;
}
#app_innenausbau .tab .input_group:last-child label {
  border-radius: 0px 0px 5px 5px;
}
#app_innenausbau .leistungen .tab .input_group label::before {
  content: "\f111";
  font-family: var(--icons);
  font-weight: 400;
  font-size: 20px;
  margin-right: 10px;
  color: #000;
}
#app_innenausbau .leistungen .tab .input_group label:hover::before {
  color: var(--orange);
}
#app_innenausbau .leistungen .tab .input_group input:checked + label::before {
  content: "\f058";
  font-family: var(--icons);
  font-weight: 900;
  font-size: 20px;
  margin-right: 10px;
  color: var(--orange);
}
input#leistung_decke.active ~ .tab_decke, input#leistung_waende.active ~ .tab_waende, input#leistung_boeden.active ~ .tab_boeden, input#leistung_geschoss.active ~ .tab_geschoss, input#leistung_keller.active ~ .tab_keller, input#leistung_dach.active ~ .tab_dach {
  /*  transform: translateY(0%);*/
  display: block;
  opacity: 1;
  z-index: 100;
  align-self: self-start;
  height: 270px;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
  max-height: 270px;
  overflow-y: scroll;
}
/* Output */
#app_innenausbau .output_field {
  display: none;
}
#app_innenausbau .output_field.visible {
  display: block;
}
#app_innenausbau div:empty {
  display: none !important;
}
#app_innenausbau aside > div {
  text-align: center;
  justify-content: center;
}
#app_innenausbau .sidebar_title {
  font-size: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px 0px 20px;
  color: #fff;
}
#app_innenausbau .sidebar_title i {
  color: var(--orange);
  font-size: 36px;
  margin-right: 10px;
}
#app_innenausbau .output_wrapper {
  font-size: 36px;
  display: none;
  color: var(--orange);
  padding-bottom: 30px;
  border-bottom: 0px solid #fff;
  margin-bottom: 0px;
  transition: 0.3s all ease;
}
#app_innenausbau .output_wrapper:has(~ div.output_field.visible) {
  border-bottom: 1px solid #fff;
  margin-bottom: 30px;
}
#app_innenausbau .caption_flaeche {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}
#app_innenausbau .leistung_name {
  display: flex;
  font-weight: 700;
  text-align: left;
  margin-bottom: 5px;
}
#app_innenausbau .leistung_ergebnis {
  display: flex;
  margin-bottom: 20px;
}
#app_innenausbau .leistung_wert {
  text-align: left;
  margin-right: 15px;
}
#app_innenausbau .leistung_preis {
  text-align: right;
  margin-left: auto;
  color: var(--orange);
  font-weight: 700;
  white-space: nowrap;
}
#app_innenausbau .leistung_name::before {
  content: "";
  width: 22px;
  height: 22px;
  display: inline-block;
  margin-right: 8px;
  background-size: contain;
}
#output_leistung_decke .leistung_name::before {
  background: url("img/decke.svg");
}
#output_leistung_waende .leistung_name::before {
  background: url("img/waende.svg");
}
#output_leistung_boeden .leistung_name::before {
  background: url("img/boden.svg");
}
#output_leistung_dach .leistung_name::before {
  background: url("img/dach.svg");
}
#output_leistung_geschoss .leistung_name::before {
  background: url("img/geschoss.svg");
}
#output_leistung_keller .leistung_name::before {
  background: url("img/keller.svg");
}
#output_preis {
  display: block;
  padding-top: 15px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  border-top: 1px solid #fff;
}
#output_leistung_decke:empty + #output_leistung_waende:empty + #output_leistung_boeden:empty + #output_leistung_geschoss:empty + #output_leistung_keller:empty + #output_leistung_dach:empty + #output_preis {
  border-top: 0px solid #fff;
}
#app_innenausbau .endpreis {
  font-size: 36px;
  font-weight: 400;
  color: var(--orange);
}
#app_innenausbau #output_ausfuehrung:empty + #output_preis {
  display: none;
}
#app_innenausbau #details_toggle {
  display: none;
}
@media (max-width:1220px) {
  #app_innenausbau #details_toggle {
    display: block;
    flex: 1 1 100%;
    width: 100%;
    border-top: 1px solid #fff;
    text-align: center;
    padding: 15px;
    margin: 15px 0px 20px;
    font-weight: 700;
    cursor: pointer;
  }
  #app_innenausbau #details_toggle::after {
    content: "\f107";
    font-family: var(--icons);
    font-weight: 900;
    color: var(--orange);
    padding-left: 12px;
  }
  #app_innenausbau #details_toggle.active::after {
    content: "\f106";
  }
  #app_innenausbau #details_toggle:not(.active) > .off, #details_toggle.active > .on {
    display: none;
  }
  #app_innenausbau #details_toggle:not(.active) > .on, #details_toggle.active > .off {
    display: inline;
  }
  #app_innenausbau .output_wrapper:has(~ div.output_field.visible) {
    border-bottom: 0px;
    margin-bottom: 0px;
  }
}
@media (min-width:768px) and (max-width:1220px) {
  #app_innenausbau main {
    padding-bottom: 250px;
  }
  .fusion-wrapper.show_sidebar #app_innenausbau main:not(#main) {
    width: 100%;
  }
  #app_innenausbau .show_sidebar main {
    width: 100%;
  }
  #wrapper_innenausbau aside {
    display: flex;
    flex-wrap: wrap;
    grid-column-gap: 5%;
    align-items: flex-start;
    width: 100vw;
    height: 160px;
    bottom: -180px;
    right: auto;
    top: auto;
    padding: 15px 30px;
    overflow: hidden;
  }
  #wrapper_innenausbau.show_sidebar aside {
    bottom: 0px;
  }
  #app_innenausbau aside:has(#details_toggle.active) {
    height: auto !important;
  }
  #app_innenausbau .sidebar_title {
    flex: 1 1 30%;
    max-width: 30%;
    margin: 5px 0px 0px !important;
    justify-content: flex-start !important;
    font-size: 26px !important;
    order: -4;
  }
  #app_innenausbau h1 {
    font-size: 36px;
  }
  #app_innenausbau h1.title {
    align-items: center;
  }
  #app_innenausbau h1.title i {
    padding-top: 0px;
  }
  #app_innenausbau aside > div:not(#details_toggle) {
    flex: 1 1 30%;
    max-width: 30%;
    line-height: 1.3;
  }
  #app_innenausbau .output_wrapper {
    border-bottom: none;
    padding-bottom: 0px;
    margin-bottom: 0px;
    order: -3;
  }
  #output_preis {
    margin-top: 0px;
    padding-top: 0px;
    text-align: right !important;
    border: none;
    order: -2;
  }
  #app_innenausbau #details_toggle {
    order: -1;
  }
  #app_innenausbau .leistung_ergebnis {
    flex-direction: column;
  }
  #app_innenausbau .leistung_preis {
    text-align: left;
    margin-left: 0px;
  }
}
@media (max-width:767px) {
  #app_innenausbau main {
    padding-bottom: 380px;
  }
  .fusion-wrapper.show_sidebar #app_innenausbau main:not(#main) {
    width: 100%;
  }
  #app_innenausbau .show_sidebar main {
    width: 100%;
  }
  #app_innenausbau #inner {
    padding: 0px 15px;
  }
  #app_innenausbau .selection_tabs > label {
    flex: 1 1 100%;
    max-width: 100%;
    z-index: 10;
    margin-bottom: 20px;
  }
  #app_innenausbau .selection_tabs.first {
    max-height: none;
  }
  #app_innenausbau .tab {
    position: absolute;
    width: 100%;
  }
  input#leistung_decke.active ~ .tab_decke, input#leistung_geschoss.active ~ .tab_geschoss {
    transform: translateY(calc(0% + 60px));
    max-height: 270px;
    height: 270px;
  }
  input#leistung_waende.active ~ .tab_waende, input#leistung_keller.active ~ .tab_keller {
    transform: translateY(calc(0% + 140px));
    max-height: 270px;
    height: 270px;
  }
  input#leistung_boeden.active ~ .tab_boeden, input#leistung_dach.active ~ .tab_dach {
    transform: translateY(calc(0% + 220px));
    max-height: 270px;
    height: 270px;
  }
  #app_innenausbau aside {
    display: flex;
    flex-wrap: wrap;
    grid-column-gap: 0;
    align-items: flex-start;
    width: 100vw;
    height: 130px;
    bottom: -180px;
    right: auto;
    top: auto;
    padding: 15px 30px;
    overflow: hidden;
  }
  #app_innenausbau aside:has(#details_toggle.active) {
    height: auto !important;
  }
  #wrapper_innenausbau.show_sidebar aside {
    bottom: 0px;
  }
  #app_innenausbau .sidebar_title {
    display: none;
  }
  #app_innenausbau h1 {
    font-size: 20px !important;
    hyphens: auto;
  }
  #app_innenausbau h1.title {
    align-items: center;
    margin-top: 25px;
  }
  #app_innenausbau h1.title i {
    padding-top: 0px;
  }
  #app_innenausbau aside > div:not(#details_toggle) {
    flex: 1 1 100%;
    max-width: 100%;
    line-height: 1.3;
  }
  #app_innenausbau .output_wrapper {
    font-size: 18px;
    font-weight: 700;
    text-align: left;
    border-bottom: none;
    padding-bottom: 0px;
    margin-bottom: 0px;
    order: -2;
    flex: 1 1 50% !important;
    min-width: 50%;
  }
  #output_preis {
    font-size: 16px;
    font-weight: 700;
    margin-top: 0px;
    padding-top: 0px;
    text-align: right !important;
    border: none;
    order: -1;
    flex: 1 1 50% !important;
    min-width: 50%;
  }
  #app_innenausbau .caption_flaeche {
    font-size: 16px;
  }
  #app_innenausbau .endpreis {
    font-size: 18px;
    font-weight: 700;
  }
}