@charset "UTF-8";
@keyframes slideUp {
  0% {
    max-height: 300px;
    display: block;
  }
  100% {
    max-height: 0px;
    display: none;
  }
}
body {
  font-family: "Nunito" !important;
  padding-top: 5rem;
}

.navbar-collapse .menu {
  list-style: none;
  margin: 1.5rem 0 0 0;
  padding: 0;
}
.navbar-collapse .menu li {
  margin: 0;
  padding: 0;
}

.configurator-form {
  display: flex;
  flex-wrap: wrap;
  max-width: 60rem;
}
.configurator-form .step {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  padding: 0;
  margin: 1rem;
  width: calc(100%/* / 2 - 2rem*/);
}
.configurator-form .step li {
  list-style: none;
}
.configurator-form .step > li {
  cursor: default;
  padding: 0.25rem;
  position: relative;
}
.configurator-form .step > li::after {
  color: lightgray;
  content: attr(data-unit);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  position: absolute;
  right: 1.5rem;
  top: 1.8rem;
  width: 3rem;
  transition: transform 0.5s;
}
.configurator-form .step > li[data-type=select] {
  border-bottom: 1px solid #EAEAEA;
}
.configurator-form .step > li[data-type=select]::after {
  content: "";
  font-family: "FontAwesome";
  font-size: 2rem;
  right: 1rem;
  top: 1rem;
}
.configurator-form .step > li[data-type=select] .input-wrapper {
  cursor: pointer;
}
.configurator-form .step > li .input-wrapper {
  background-color: rgba(167, 110, 67, 0.05);
  border-bottom: 1px dotted #EAEAEA;
}
.configurator-form .step > li .input-wrapper .flex {
  display: flex;
  align-items: center;
}
.configurator-form .step > li .input-wrapper .icon {
  background-repeat: no-repeat;
  background-position: center;
  background-size: 70%;
  display: block;
  padding: 0.5rem;
  position: relative;
  height: 5rem;
  width: 5rem;
  min-width: 5rem;
}
.configurator-form .step > li .input-wrapper .title {
  font-weight: bold;
}
.configurator-form .step > li .input-wrapper .selection {
  color: grey;
  font-size: 1.3rem;
  flex-grow: 1;
  margin-right: 3.5rem;
  padding: 0.5rem;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  text-align: right;
}
.configurator-form .step > li .input-wrapper .description {
  color: grey;
  display: block;
  font-size: 1.3rem;
  margin: -1rem 0 0.5rem 5rem;
  width: calc(100% - 5rem);
}
.configurator-form .step > li .input-wrapper .control {
  margin-right: 1rem;
}
.configurator-form .step > li .input-wrapper .control input {
  border: 1px solid #EAEAEA;
  padding: 0.25rem 0.5rem;
  max-width: 10rem;
}
.configurator-form .step > li .input-wrapper .control.boolean {
  background-color: #e5e5e5;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.8rem;
  width: 7rem;
}
.configurator-form .step > li .input-wrapper .control.boolean::before {
  content: "";
  font-family: "FontAwesome";
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.25rem;
}
.configurator-form .step > li .input-wrapper .control.boolean[data-value="1"] {
  background-color: limegreen;
}
.configurator-form .step > li .input-wrapper .control.boolean[data-value="1"]::after {
  content: attr(data-yes);
  color: white;
}
.configurator-form .step > li .input-wrapper .control.boolean[data-value="1"]::before {
  content: "";
  font-family: "FontAwesome";
  font-size: 2rem;
  color: white;
}
.configurator-form .step > li .input-wrapper .control.boolean[data-value="0"]::after {
  content: attr(data-no);
  color: grey;
}
.configurator-form .step > li .input-wrapper .control.boolean[data-value="0"]::before {
  color: #b0b0b0;
}
.configurator-form .step > li .options {
  max-height: 300px;
  overflow: hidden;
  padding: 1rem 1rem 1rem 5rem;
}
.configurator-form .step > li .options > li {
  background-color: #f1f1f1;
  border-radius: 5px;
  cursor: pointer;
  display: inline-block;
  font-size: 1.4rem;
  margin: 0.5rem 0.25rem;
  padding: 0.25rem 1rem;
}
.configurator-form .step > li .options > li:hover {
  background-color: rgba(167, 110, 67, 0.25);
}
.configurator-form .step > li .options > li.selected {
  background-color: #a76e43;
  color: white;
}
.configurator-form .step > li.collapsed::after {
  transform: rotate(180deg);
}
.configurator-form .step > li.collapsed .options {
  /*                    animation: slideUp 1s ease;
                      max-height: 0;
                      display: none;
                      padding-top: 0;
                      padding-bottom: 0;*/
}
@media only screen and (max-width: 540px) {
  .configurator-form {
    margin: 1rem -2.5rem;
  }
}

#prompt {
  background-color: black;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  color: white;
  font-family: "Courier New";
  line-height: 200%;
  margin-top: 2rem;
  padding: 1rem;
}
#prompt span {
  font-size: 1.5rem;
  margin: 0.25rem;
  white-space: nowrap;
}
#prompt span.attribute {
  color: #d70076;
  font-weight: bold;
}
#prompt span.value {
  color: chartreuse;
}
#prompt span.option {
  color: chartreuse;
}
#prompt span.text {
  color: lightgray;
}

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