.footer-wrapper .footer-wrapper-main::after {
  display: none;
}

.footer-wrapper .footer-wrapper-main {
  background-color: transparent;
}

.po-centre {
  padding: 20px 0;
  text-align: center;
}

.kl-form__row {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  padding: 0.5em;
}

.kl-form__row label {
  width: 30%;
}

.kl-form__row .form-item__textfield {
  width: 70%;
}

.kl-form__result-message {
  padding: 15px;
  border: solid 1px rgb(238, 154, 167);
  background-color: rgba(238, 154, 167, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.kl-form__result-message.kl-form__result-message--success {
  border: solid 1px rgb(154 238 174);
  background-color: rgba(154, 238, 174, 0.25);
}

.kl_overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.kl_spinner {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 60px;
  width: 60px;
  margin: 0px auto;
  -webkit-animation: rotation 0.6s infinite linear;
  -moz-animation: rotation 0.6s infinite linear;
  -o-animation: rotation 0.6s infinite linear;
  animation: rotation 0.6s infinite linear;
  border-left: 6px solid rgba(255, 255, 255, 0.15);
  border-right: 6px solid rgba(255, 255, 255, 0.15);
  border-bottom: 6px solid rgba(255, 255, 255, 0.15);
  border-top: 6px solid rgba(255, 255, 255, 0.8);
  border-radius: 100%;
}

@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(359deg);
  }
}

@-moz-keyframes rotation {
  from {
    -moz-transform: rotate(0deg);
  }

  to {
    -moz-transform: rotate(359deg);
  }
}

@-o-keyframes rotation {
  from {
    -o-transform: rotate(0deg);
  }

  to {
    -o-transform: rotate(359deg);
  }
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(359deg);
  }
}

@media only screen and (min-width: 768px) {
  .kl-form {
    margin: 0 auto;
    width: 50%;
  }
}
