.submitButton {
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.submitButton__button {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  position: relative;
  margin: 26px 0px;
  background-color: #075ea8;
  border: none;
  border-radius: 3px;
  outline: none;
  padding: 4px 8px;
  color: #fff;
  font-size: 1rem;
  line-height: 36px;
  height: 48px;
  min-width: 88px;
}
.submitButton__button--disabled {
  background-color: rgba(0, 0, 0, 0.06);
  color: rgba(0, 0, 0, 0.36);
}
.submitButton__label {
  pointer-events: none;
}
.submitButton__interaction {
  transform: scale(0, 0);
  position: absolute;
  left: 0px;
  top: 0px;
  transform-origin: 50% 50%;
  background-color: rgba(255, 255, 255, 0.14);
}
.submitButton__interaction--run {
  transform: scale(1.5, 1.5);
  transition: transform 0.24s;
  width: 100%;
  height: 100%;
  transform-origin: center;
}.async {
  position: absolute;
  overflow: hidden;
  top: 0px;
  left: 0px;
  width: 0px;
  height: 0px;
  visibility: hidden;
  border-radius: 3px;
}
.async--run {
  height: 100%;
  width: 100%;
  visibility: visible;
  background-color: #075ea8;
  z-index: 10;
  pointer-events: none;
}
.async__container {
  position: relative;
  width: 0px;
  height: 0px;
}
.async__container--run {
  height: 100%;
  width: 100%;
}
.async__label {
  position: absolute;
  overflow: hidden;
  top: 30px;
  height: 50px;
  width: 100%;
  margin-top: -25px;
  text-align: center;
  line-height: 50px;
  vertical-align: middle;
}
.async__loader {
  display: none;
  border: 3px solid #075ea8;
  border-top: 3px solid #fff;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  margin: 0 auto;
  margin-top: 6px;
}
.async__loader--run {
  display: block;
  animation: spin 0.7s ease-in;
  animation-direction: normal;
  animation-iteration-count: infinite;
}
.async__loader--runBackground {
  z-index: -1;
  display: block;
  animation: spin 1.2s ease-in-out;
  animation-direction: normal;
  animation-iteration-count: infinite;
  height: 0px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}.checkbox {
  margin: 6px 0px;
}
.checkbox__input {
  width: 20px;
  height: 20px;
  margin-left: 0px;
}
.checkbox__input--warning {
  box-shadow: 0px 0px 0.8px 0.5px rgb(201, 30, 30);
}
.checkbox__label {
  line-height: 25px;
  vertical-align: bottom;
  height: 20px;
  margin-left: 4px;
  color: #454545;
}
.checkbox__label--warning {
  color: #c91e1e;
}.errorNotification {
  transform: scaleY(0);
  border-radius: 5px;
  border: 0px;
  height: 0px;
  overflow: hidden;
}
.errorNotification--active {
  transform: scaleY(1);
  transform-origin: center;
  transition: transform 0.2s ease-in;
  border: solid 1px #eaa43b;
  padding: 0.5rem;
  height: 100%;
  margin-bottom: 54px;
}
.errorNotification__header {
  font-size: 1rem;
  text-align: center;
  color: #075ea8;
  margin: 3px 0px;
}
.errorNotification__headerIcon {
  height: 24px;
  background: url("./assets/error_outline_black_24dp.svg") center no-repeat;
}
.errorNotification__errorList {
  list-style: none;
  padding-left: 0px;
  margin: 0px 0px;
}
.errorNotification__errorDescription {
  position: relative;
  padding-left: 32px;
  line-height: 1.5rem;
}
.errorNotification__errorDescription::before {
  position: absolute;
  left: 0px;
  content: "";
  width: 24px;
  height: 24px;
}
.errorNotification__errorDescription--info::before {
  background: url("./assets/warning_amber_black_24dp.svg") left no-repeat;
}
.errorNotification__errorDescription--warning::before {
  background: url("./assets/warning_amber_black_24dp copy.svg") left no-repeat;
}.formContainer {
  border: 1px solid #ccc;
  margin-bottom: 2rem;
  padding: 1.1rem 1.1rem;
  border-radius: 6px;
  box-shadow: 0 3px 6px -2px rgba(0, 0, 0, 0.14);
}
.formContainer--hidden {
  display: none;
}
.formContainer__title {
  color: #075ea8;
  font-weight: bold;
  font-size: 1.05rem;
  margin-top: 0px;
}
.formContainer__description {
  line-height: 1.5rem;
}
.formContainer__description--hidden {
  display: none;
}.infoLabel__label {
  font-size: 0.9rem;
  color: #999999;
}
.infoLabel__info {
  margin-top: 0.5rem;
}.list__items {
  list-style: none;
  border: 1px solid #ccc;
  padding: 0.5rem 0px;
  border-radius: 3px;
}
.list__header {
  margin: 0px 0px 1rem 0px;
  font-size: 1.1rem;
  color: #075ea8;
}
.list__item {
  padding: 0.6rem 0.4rem;
  cursor: pointer;
}
.list__item--active {
  background-color: #f2f2f2;
  cursor: initial;
}
.list__label {
  font-weight: bold;
  color: #075ea8;
}
.list__text {
  margin-bottom: 0px;
  margin-top: 0.35rem;
}.radioButton {
  margin-top: 6px;
}
.radioButton span {
  display: block;
}
.radioButton__options {
  margin-bottom: 0.5rem;
}
.radioButton__option {
  margin: 0px;
  width: 1rem;
  height: 1rem;
}
.radioButton__label {
  font-size: 1rem;
  line-height: 1rem;
  margin-bottom: 1rem;
  color: #454545;
}
.radioButton__optionlabel {
  font-size: 1rem;
  vertical-align: top;
  margin-left: 0.3rem;
  color: #454545;
}.selectList {
  position: relative;
  margin: 6px 0px 52px 0px;
}
.selectList__label {
  display: block;
  font-size: 0.95rem;
  border-radius: 2px;
  height: 24px;
  line-height: 24px;
  color: #454545;
  padding: 0px 0px;
}
.selectList__helper {
  position: absolute;
  bottom: -1.7rem;
  left: 0px;
  height: 24px;
  line-height: 24px;
  vertical-align: middle;
  empty-cells: show;
  margin-bottom: 0rem;
  color: #999999;
  font-size: 0.9rem;
}
.selectList__helper--warning {
  color: #c91e1e;
}
.selectList__items {
  background: none;
  border-radius: 5px;
  display: inline-block;
  border: 1px solid #a2a2a2;
  height: 48px;
  line-height: 48px;
  vertical-align: middle;
  font-size: 1.05rem;
  padding-left: 6px;
  color: #454545;
  z-index: 2;
  max-width: 95%;
}
.selectList__items--focus {
  outline-color: #075ea8;
  outline-style: auto;
}
.selectList__items--warning {
  border-color: #d32f2f;
  outline-color: #d32f2f;
}.steppersPanel__icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-color: #ccc;
  border-radius: 12px;
  color: #ffffff;
  vertical-align: middle;
  text-align: center;
  line-height: 24px;
  position: relative;
}
.steppersPanel__icon--active {
  background-color: #075ea8;
}
.steppersPanel__label {
  display: inline;
  margin-left: 1rem;
  line-height: 24px;
  font-weight: 400;
  color: #787878;
}
.steppersPanel__body {
  padding: 8px 22px;
  position: relative;
  border-left: 1px solid #aaaaaa;
  min-height: 2rem;
  margin-left: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.steppersPanel__view {
  overflow: hidden;
  height: 0px;
  transform: scale(0, 1);
  transform-origin: right;
}
.steppersPanel__view--active {
  height: auto;
  transform: scale(1, 1);
  transform-origin: right;
  transition: transform 0.22s linear;
}
.steppersPanel__nextPrev {
  display: flex;
}
.steppersPanel__prev, .steppersPanel__next {
  margin-right: 2rem;
}
.steppersPanel__prev--hidden, .steppersPanel__next--hidden {
  margin-right: 0px;
}.textInput {
  position: relative;
  margin: 46px 0px 46px 0px;
}
.textInput__counter {
  position: absolute;
  bottom: -1.7rem;
  height: 24px;
  line-height: 24px;
  vertical-align: middle;
  empty-cells: show;
  margin-bottom: 0rem;
  color: #999999;
  right: 0px;
  font-size: 0.8rem;
}
.textInput__counter--warning {
  color: #c91e1e;
}
.textInput__helper {
  position: absolute;
  bottom: -1.7rem;
  left: 0px;
  height: 24px;
  line-height: 24px;
  vertical-align: middle;
  empty-cells: show;
  margin-bottom: 0rem;
  color: #999999;
  font-size: 0.9rem;
}
.textInput__helper--warning {
  color: #c91e1e;
}
.textInput__label {
  font-size: 0.9rem;
  position: absolute;
  border-radius: 2px;
  height: 48px;
  line-height: 48px;
  vertical-align: middle;
  color: #999999;
  top: 0px;
  left: 10px;
  z-index: -1;
  padding: 0px 3px;
  transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), font-size 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), -webkit-transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.textInput__label--focus, .textInput__label--hasValue {
  transform: translateY(-12px);
  background-color: #ffffff;
  z-index: 2;
  line-height: 24px;
  height: 24px;
}
.textInput__input {
  padding: 0px 0px;
  background: none;
  border-radius: 5px;
  border: 1px solid #a2a2a2;
  height: 48px;
  width: 100%;
  line-height: 48px;
  vertical-align: middle;
  font-size: 1.05rem;
  text-indent: 6px;
  color: #454545;
  z-index: 2;
  outline: none;
}
.textInput__input--focus {
  box-shadow: 0px 0px 3.5px 0.7px rgba(7, 94, 160, 0.16);
  border-color: #075ea8;
}
.textInput__input--warning, .textInput__input--tooManyChars {
  box-shadow: 0px 0px 3.5px 0.7px rgba(201, 30, 30, 0.16);
  border-color: #c91e1e;
}.landzDirectDebit__header {
  font-size: 1rem;
  color: #075ea8;
}
.landzDirectDebit__logo {
  background-image: url("./assets/landzDirectDebit.svg");
  background-position: right;
  background-repeat: no-repeat;
  width: 100%;
  height: 50px;
  margin-bottom: 1rem;
}.postcode__input {
  flex-basis: 6rem;
  margin-right: 1.5rem;
  width: 180px;
}
.postcode__find {
  width: 100%;
  display: inline-flex;
  flex-direction: row;
}.servicePlanQuote {
  margin-bottom: 2rem;
}
.servicePlanQuote__heading {
  text-align: center;
  font-weight: bold;
  margin: 1rem 0rem;
  color: #075ea8;
}
.servicePlanQuote__discount, .servicePlanQuote__discountPrice {
  font-style: italic;
}
.servicePlanQuote__items, .servicePlanQuote__itemsTotals {
  flex-direction: row;
  display: flex;
  margin: 0.5rem 0px;
}
.servicePlanQuote__productsTotals, .servicePlanQuote__productsTotalsValue, .servicePlanQuote__surchargesTotals, .servicePlanQuote__surchargesTotalsValue, .servicePlanQuote__summaryTotal, .servicePlanQuote__summaryTotalValue {
  font-weight: bold;
}
.servicePlanQuote__reviewNo, .servicePlanQuote__refreshNo, .servicePlanQuote__reviveNo, .servicePlanQuote__spashieldNo, .servicePlanQuote__discount, .servicePlanQuote__londonpostcodeNo, .servicePlanQuote__refreshSurchargeNo, .servicePlanQuote__reviveSurchargeNo, .servicePlanQuote__spaShieldSurchargeNo, .servicePlanQuote__cczNo, .servicePlanQuote__waterSoftenerNo, .servicePlanQuote__summaryProducts, .servicePlanQuote__summarySurcharges, .servicePlanQuote__summaryTotal, .servicePlanQuote__summaryAlreadyPaid, .servicePlanQuote__firstInstalment, .servicePlanQuote__regularInstalment, .servicePlanQuote__surchargesTotals, .servicePlanQuote__productsTotals, .servicePlanQuote__itemsDesc, .servicePlanQuote__itemsTotalsDesc {
  flex-basis: 60%;
}
.servicePlanQuote__reviewValue, .servicePlanQuote__refreshValue, .servicePlanQuote__reviveValue, .servicePlanQuote__spashieldValue, .servicePlanQuote__discountPrice, .servicePlanQuote__spashield_price, .servicePlanQuote__londonpostcodeValue, .servicePlanQuote__refreshSurchargeValue, .servicePlanQuote__reviveSurchargeValue, .servicePlanQuote__spaShieldSurchargeValue, .servicePlanQuote__cczValue, .servicePlanQuote__waterSoftenerValue, .servicePlanQuote__summaryProductsValue, .servicePlanQuote__summarySurchargesValue, .servicePlanQuote__summaryTotalValue, .servicePlanQuote__summaryAlreadyPaidValue, .servicePlanQuote__firstInstalmentValue, .servicePlanQuote__regularInstalmentValue, .servicePlanQuote__surchargesTotalsValue, .servicePlanQuote__productsTotalsValue, .servicePlanQuote__itemsValue, .servicePlanQuote__itemsTotalsValue {
  flex-basis: 40%;
}
.servicePlanQuote__reviewValue, .servicePlanQuote__refreshValue, .servicePlanQuote__reviveValue, .servicePlanQuote__spashieldValue, .servicePlanQuote__discountPrice, .servicePlanQuote__londonpostcodeValue, .servicePlanQuote__refreshSurchargeValue, .servicePlanQuote__reviveSurchargeValue, .servicePlanQuote__spaShieldSurchargeValue, .servicePlanQuote__cczValue, .servicePlanQuote__waterSoftenerValue, .servicePlanQuote__waterSoftenerValue, .servicePlanQuote__summaryProductsValue, .servicePlanQuote__summarySurchargesValue, .servicePlanQuote__summaryTotalValue, .servicePlanQuote__summaryAlreadyPaidValue, .servicePlanQuote__firstInstalmentValue, .servicePlanQuote__regularInstalmentValue, .servicePlanQuote__surchargesTotalsValue, .servicePlanQuote__productsTotalsValue, .servicePlanQuote__itemsTotalsValue {
  text-align: right;
}.serviceList--warning {
  border: 1px solid red;
}
.serviceList__review, .serviceList__revive, .serviceList__refresh, .serviceList__spaShield, .serviceList__warningMessage, .serviceList__infoMessage {
  display: block;
  padding-bottom: 0.3rem;
}
.serviceList__title {
  display: block;
  text-align: center;
}
.serviceList__infoMessage {
  padding-top: 1rem;
  padding-left: 1.5rem;
  line-height: 1.5rem;
}
.serviceList__infoMessage::before {
  position: absolute;
  left: 9px;
  content: "";
  width: 24px;
  height: 24px;
}
.serviceList__infoMessage--active::before {
  background: url("./assets/warning_amber_black_24dp.svg") left no-repeat;
}
.serviceList___warningMessage {
  display: block;
}
.serviceList___warningMessage--active {
  color: red;
}.servicePlan__container {
  border: 1px solid #ccc;
  margin-bottom: 2rem;
  padding: 1rem 0px 10px 10px;
  border-radius: 5px;
}
.servicePlan__containerTitle {
  color: #075ea8;
  font-weight: bold;
  font-size: 1.05rem;
  margin-top: 0px;
}
.servicePlan__divider {
  margin: 0px auto;
  margin-bottom: 1.6rem;
  height: 1px;
  background-color: #ccc;
  width: 80%;
}
.servicePlan__description {
  line-height: 1.5rem;
}
.servicePlan__descriptionTitle {
  color: #075ea8;
  font-size: 1rem;
  font-weight: normal;
}
.servicePlan__startDate {
  margin-bottom: 2rem;
}
.servicePlan__startDateText {
  margin-left: 3rem;
}.planSummary__planID {
  font-size: 1rem;
  font-weight: normal;
  color: #075ea8;
}
.planSummary__firstInstal, .planSummary__regularInstal {
  line-height: 1.3rem;
}