@import "fonts.css";

.block-ki-form-block > h2 {
  display: none;
}

.ki-page-content {
  position: relative;
}

@media screen and (max-width: 1400px) {
  .ki-page-content {
    padding-right: 48px;
    padding-left: 48px;
  }
}

.ki-page-content h1 {
  font-family: 'Roboto Slab Bold', sans-serif;
  font-size: 47px;
  line-height: 70px;
  letter-spacing: -1px;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 0;
}

.version {
  width: 77px;
  height: 26px;
  display: inline-block;
  border-radius: 100px;
  background: #122e45;
  color: #fff;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: 0.5px;
  text-align: center;
  position: relative;
  bottom: 10px;
}

p.page-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0;
  text-align: center;
}

.step-block {
  width: 480px;
  padding-right: 80px;
}

.form-block {
  display: flex;
  flex-direction: column;
  position: relative;
}

.form-data {
  width: calc(100% - 560px);
  display: flex;
  flex-direction: column;
  position: relative;
}

.step-content {
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
}

.step {
  display: flex;
  flex-direction: row;
  margin-bottom: 80px;
  position: relative;
}

.step:not(:last-of-type):after {
  content: '';
  width: 1px;
  height: calc(100% + 80px);
  position: absolute;
  top: 2px;
  background-color: #e6e1df;
  left: 22px;
  z-index: -1;
}

.step .step-data {
  width: calc(100% - 63px);
  padding-top: 4px;
}

.step .step-data span {
  font-family: 'Roboto Slab Bold', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0;
  text-align: left;
}

.step .step-data p {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0;
  text-align: left;
  margin-top: 20px;
}

.step .step-number {
  width: 43px;
  height: 43px;
  border-radius: 50%;
  font-family: 'Roboto Slab Bold', sans-serif;
  font-size: 23px;
  line-height: 30px;
  letter-spacing: 0;
  text-align: center;
  margin-right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #71828f;
  background-color: #fff;
}

.step .step-number.active-number {
  background-color: #89c7fa;
  border: none;
}

.form-pagination-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-pagination-wrapper .pagination {
  background: #a1b8ca;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  margin-right: 16px;
}

.form-pagination-wrapper .pagination.active-pagination {
  background: #122e45;
}

.form-pagination-wrapper .pagination:last-of-type {
  margin-right: 0;
}

.form-actions input:hover {
  cursor: pointer;
}

.form-actions {
  margin-top: auto;
}

.form-data .form-item-info {
  margin-top: 40px;
  position: relative;
}

.form-data .form-item-info .info-title {
  font-family: 'Poppins Medium', sans-serif;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.25px;
  text-align: left;
  padding: 12px 24px 12px 80px;
  display: inline;
  border-radius: 20px;
  background-color: transparent;
  transition: 0.3s background-color ease-in-out;
  position: absolute;
}

.form-data .form-item-info .info-title:hover {
  transition: 0.5s background-color ease-in-out;
  background-color: rgba(0, 140, 255, 0.12);
  cursor: pointer;
}

.form-data .form-item-info .info-title:before {
  content: url("../icons/arrow-down.svg");
  transform: translate(0);
  position: absolute;
  display: block;
  top: 10px;
  left: 35px;
  transition: 0.3s transform ease-in-out;
}

.form-data .form-item-info .info-title.open:before {
  transform: rotate(180deg);
  transition: 0.3s transform ease-in-out;
}

.form-data .form-item-info .info-title.open:hover {
  background-color: transparent;
}

.form-data .form-item-info .form-item-info-data {
  font-family: 'Poppins Medium', sans-serif;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.25px;
  text-align: left;
  margin: 0;
  border-radius: 10px;
  padding: 60px 20px 20px 20px;
  -webkit-transition: width 0.3s linear, max-height 0.3s linear;
  -moz-transition: width 0.3s linear, max-height 0.3s linear;
  -o-transition: width 0.3s linear, max-height 0.3s linear;
  transition: width 0.3s linear, max-height 0.3s linear;
  width: 1px;
  max-height: 0;
  overflow: hidden;
}

.form-data .form-item-info .form-item-info-data.open {
  background: #d5e3ff;
  width: calc(100% - 40px);
  max-height: 1000px;
  opacity: 1;
  -webkit-transition: width 0.3s linear, max-height 0.3s linear;
  -moz-transition: width 0.3s linear, max-height 0.3s linear;
  -o-transition: width 0.3s linear, max-height 0.3s linear;
  transition: width 0.3s linear, max-height 0.3s linear;
}

.form-data .form-item-info .form-item-info-data p {
  opacity: 0;
  transition: opacity 0.1s linear;
}

.form-data .form-item-info .form-item-info-data.open p {
  opacity: 1;
  -webkit-transition: opacity 1.5s ease-in-out;
  -moz-transition: opacity 1.5s ease-in-out;
  -o-transition: opacity 1.5s ease-in-out;
  transition: opacity 1.5s ease-in-out;
}

.path-anschreiben-erstellen .form-step-2 .select2-container--open .select2-dropdown {
  width: 481px !important;
}

.path-anschreiben-erstellen .alert.alert-error {
  display: none;
}
