@charset "UTF-8";
.procedures-checker .vg-wizard {
  flex-grow: 1;
  max-width: 100%;
}
.procedures-checker form {
  min-height: 400px;
}
.procedures-checker form.criteria {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-content: center;
}

.vg-progress {
  display: block;
  border: 0;
  background-color: #fff;
  margin: 0 auto 20px;
  width: 100%;
  height: 15px;
  border-radius: 500px;
  overflow: hidden;
}

/* Add margin if adjacent element */
* + .vg-progress {
  margin-top: 20px;
}

.vg-progress-bar {
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: #1e87f0; /* oder deine Primärfarbe */
  transition: width 0.6s ease;
}

.card__content__procedures {
  padding: 2rem;
}

.bg-lightgrey-procedures {
  background: #f1f1f1;
  color: #000 !important;
  border-radius: 8px;
}

.vg-option.is-active {
  border: 0px;
  background-color: #1e87f0;
  color: #fff !important;
}

.vg-option {
  border: 0px;
  background-color: #ccc;
  color: #000 !important;
}

.vg-option-group {
  display: flex;
}

.uk-button {
  font-family: "Noto Sans", sans-serif;
  font-size: 0.8rem;
  padding: 0.5rem;
  border: 0px;
  border-top-color: currentcolor;
  border-right-color: currentcolor;
  border-bottom-color: currentcolor;
  border-left-color: currentcolor;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  width: 50%;
  height: 120px;
  margin: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.button-next.uk-button, .button-prev.uk-button, .button-calc.uk-button, .button-unlock.uk-button {
  padding: 0.7rem 1rem;
  background: #1d5c7d;
  border-radius: 8px;
  display: inline-block;
  color: #fff;
  font-weight: 400;
  transition: all 0.3s;
  cursor: pointer;
  width: unset;
  height: unset;
}

.button-next.uk-button:hover, .button-prev.uk-button:hover, .button-calc.uk-button:hover, .button-unlock.uk-button:hover {
  background: #fff;
  color: #1d5c7d;
}

.button-calc.uk-button {
  background: green !important;
  color: #fff;
}

.button-calc.uk-button:hover {
  background: green !important;
  color: #fff;
}

.button-next:after {
  padding-left: 10px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f105";
}

.button-prev:before {
  padding-right: 10px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f104";
}

.button-calc:before {
  padding-right: 10px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f1ec";
}

.button-unlock:before {
  padding-right: 10px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f3c1";
}

.result-blocks {
  display: flex;
  margin-top: 20px;
  flex-direction: column;
}

.result-block {
  width: 100%;
  margin-bottom: 20px !important;
  background: #f9f9f9;
  border-radius: 8px;
  padding: 20px;
}

.result-blocks ul.uk-list {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
}

.vg-summary li {
  list-style: none;
}

.is-suitable li, .is-partial li, .is-unsuitable li {
  list-style: none;
  background: green;
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 10px 0px 0px;
}

.is-partial li {
  background: orange;
  margin-top: 10px;
}

.is-suitable li {
  background: green;
  margin-top: 10px;
}

.is-unsuitable li {
  background: red;
  margin-top: 10px;
}
/*# sourceMappingURL=vg.css.map */