.whole {
  height: 100vh;
}

.bottombar {
  position: absolute;
  bottom: 0%;
  background: #1c3f6c;
  padding: 5px 0px;
  width: 100%;
  display: none;
}

.bottombar-wrapper {
  margin: 0 auto;
  max-width: 1200px;
}

.main-rechner {
  width: 100%;
  margin-top: 0px !important;
  padding-top: 100px;
}

.t1,
.t2,
.t3,
.t4,
.t5,
.t6,
.t7,
.t8,
.t9,
.t10,
.t11,
.t12 {
  display: none;
}

.main-rechner-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
}

#loader-end {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
}

.done-end-container-inner {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.done-end-container {
  max-width: 600px;
  margin: auto;
}

.done-end-container-inner p {
  font-size: 14px;
}

.done-end-container-inner img {
  width: 20px;
  margin-right: 10px;
}

#done-end {
  display: none;
  width: 100%;
  height: 100%;
}

.nav-bottom {
  display: flex;
}

.nav-bottom a {
  color: #fff;
  margin-right: 10px;
  font-size: 14px;
}

.nav-bottom-wrapper {
  max-width: 1000px;
  margin: auto;
}

.copy {
  margin: 0 auto;
  font-size: 14px;
  color: #fff;
}

.rechner-container {
  height: auto;
  width: 100%;
  border: 1px solid #ccc;
  margin-top: 50px;
  padding-bottom: 20px;
}

.bottom-rechner {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 25px;
}

.rightbottomrechner {
  margin: 0 auto;
  display: flex;
  align-content: center;
}

.leftbottomrechner {
  margin: 0 auto;
  display: flex;
  align-content: center;
  margin-right: 20px;
}

.midbottomrechner {
  margin: 0 auto;
  display: flex;
  align-content: center;
  margin-right: 20px;
}

.contentpage {
  max-width: 70%;
  margin: 0 auto;
  margin-top: 50px;
  height: auto !important;
  padding-bottom: 20px;
}

#plzgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.form-login-container {
  max-width: 25rem;
  padding: 10px 20px 20px 20px;
  margin: auto;
  display: block;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3);
  border-radius: 2px;
  margin-bottom: 50px;
}

.form-login-container form input {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 2px;
}

.rechner-container2 h1 {
  margin: 0px 15px !important;
}

.container-sds {
  padding: 0px 15px;
}

.checkbox,
.radio {
  margin-bottom: 20px;
}

/* --- START --- */

.checkbox *,
.radio * {
  cursor: pointer;
}

.checkbox input,
.radio input {
  opacity: 0;
}

.checkbox span,
.radio span {
  position: relative;
  display: inline-block;
  margin-left: -15px;
  vertical-align: top;
  width: 20px;
  height: 20px;
  border-radius: 2px;
  border: 1px solid #ccc;
  margin-right: 20px;
}

.checkbox:hover span,
.radio:hover span {
  border-color: #3fd85b;
}

.checkbox span:before,
.radio span:before {
  content: '\2713';
  /* comment content to use custom icon classes */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  text-align: center;
  font-size: 16px;
  line-height: 16px;
  vertical-align: middle;
  color: #3fd85b;
}

/* override for radio */
.radio span {
  border-radius: 50%;
  margin-right: 15px;
}

.radio span:before {
  content: '';
  width: 10px;
  height: 10px;
  margin: 4px auto;
  background-color: #3fd85b;
  border-radius: 100px;
}

.checkbox input[type='checkbox']:checked + span,
.radio input[type='radio']:checked + span {
  border-color: #3fd85b;
  background-color: #3fd85b;
}

.radio input[type='radio']:checked + span {
  background-color: #fff;
}

.checkbox input[type='checkbox']:checked + span:before,
.radio input[type='radio']:checked + span:before {
  color: #fff;
  opacity: 1;
  transition: color 0.3 ease-out;
}

.checkbox input[type='checkbox']:disabled + span,
.radio input[type='radio']:disabled + span {
  border-color: #ddd !important;
  background-color: #ddd !important;
}

/* --- SWITCH --- */

.switch * {
  cursor: pointer;
}

.switch input {
  opacity: 0;
  position: absolute;
  z-index: -1;
}

.switch span {
  position: relative;
  display: inline-block;
  width: 58px;
  height: 30px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 100px;
  transition: all 0.5s;
  box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.1) inset;
}

.switch span:after {
  content: '';
  position: absolute;
  background-color: #fff;
  top: 0;
  left: 0;
  height: 28px;
  width: 28px;
  border: 1px solid #ddd;
  border-radius: 400px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.2s;
}

.switch input:checked + span {
  background-color: #3fd85b;
  border-color: #3fd85b;
  transition: all 0.5s;
}

.switch input:checked + span:after {
  left: 50%;
  transition: all 0.2s;
}

.inner-details {
  display: grid;
  grid-template-columns: 50% 50%;
  grid-gap: 10px;
}

.nav-bottom {
  padding: 10px;
  background: #3fd85b;
  width: 100%;
  color: white;
  position: absolute;
}

.nav-bottom a {
  color: white;
}

.nav-bottom2 a {
  color: white;
  margin-right: 10px;
  font-size: 14px;
}

.bottombar2 {
  background: #1c3f6c;
  padding: 5px 0px;
  width: 100%;
}

@media screen and (max-width: 1000px) {
  .nav-bottom-wrapper {
    padding: 0px 20px;
  }

  .nav-bottom {
    position: relative;
  }
}

@media screen and (max-width: 690px) {
  .main-rechner {
    padding-top: 100px;
  }

  .bottom-rechner {
    grid-template-columns: repeat(2, 1fr);
  }

  .details-form input,
  .details-form select {
    width: 100% !important;
  }

  .details-form {
    display: block !important;
  }

  .inner-details {
    grid-template-columns: 100%;
  }

  .contentpage {
    max-width: 100%;
    padding: 0px 15px;
  }

  .ms-step-form-iso .pager {
    padding: 10px 10px 0 10px !important;
    width: 100% !important;
    box-sizing: border-box;
  }

  .probezeit-adresse {
    display: block;
  }

  .probezeit-adresse input {
    margin-bottom: 15px;
  }

  #plzgrid {
    display: block;
  }

  .bottom-rechner {
    margin-bottom: 100px;
    grid-gap: 20px;
  }
}
