@charset "UTF-8";
/* progress Tracker */
.webform-progress {
  background: #eef6f8;
  margin-bottom: 20px; }
  .webform-progress .progress-title[role="link"] {
    color: #000000 !important; }

.progress-step.is-active .progress-marker {
  background-color: #ec0000;
  border: 0;
  color: #fff; }

.webform-progress-tracker.progress-tracker {
  margin: 0; }
  @media (min-width: 768px) {
    .webform-progress-tracker.progress-tracker {
      margin: 0 200px; } }

.webform-progress-tracker.progress-tracker-full {
  padding: 35px 0 0; }
  @media (min-width: 768px) {
    .webform-progress-tracker.progress-tracker-full {
      padding: 35px 0 20px; } }
  .webform-progress-tracker.progress-tracker-full .progress-text {
    display: none; }
    @media (min-width: 768px) {
      .webform-progress-tracker.progress-tracker-full .progress-text {
        display: inline; } }

.webform-progress-tracker.progress-tracker-compact {
  display: block;
  padding: 0 0 20px; }
  @media (min-width: 768px) {
    .webform-progress-tracker.progress-tracker-compact {
      display: none; } }
  .webform-progress-tracker.progress-tracker-compact .progress-step {
    display: none; }
    .webform-progress-tracker.progress-tracker-compact .progress-step.is-active {
      display: block; }
  .webform-progress-tracker.progress-tracker-compact .progress-text {
    display: block; }

.webform-progress-tracker .progress-step:after {
  display: none; }

.webform-progress-tracker .progress-step .progress-sep {
  position: absolute;
  width: 42%;
  border-bottom: 2px solid #daeaef;
  top: 13px;
  display: none; }

.webform-progress-tracker .progress-step:not(:first-child) .progress-sep-left {
  display: block;
  left: 0; }

.webform-progress-tracker .progress-step:not(:last-child) .progress-sep-right {
  display: block;
  right: 0; }

.webform-progress-tracker .progress-step.is-active .progress-marker {
  background-color: #ec0000;
  color: white;
  border-color: #ec0000; }

.webform-progress-tracker .progress-step.is-active:hover .progress-marker {
  background-color: #ec0000; }

.webform-progress-tracker .progress-step.is-complete .progress-marker {
  background-color: #63ba68;
  color: #63ba68;
  border-color: #63ba68;
  position: relative; }
  .webform-progress-tracker .progress-step.is-complete .progress-marker:after {
    content: '';
    position: absolute;
    left: 9px;
    top: 4px;
    width: 8px;
    height: 15px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    transform: rotate(35deg); }

.webform-progress-tracker .progress-step.is-complete:hover .progress-marker {
  background-color: #63ba68; }

.webform-progress-tracker .progress-step.is-upcoming .progress-marker {
  background-color: white;
  color: #ec0000;
  border-color: #9bc3d3; }

.webform-progress-tracker .progress-step.is-upcoming:hover .progress-marker {
  background-color: white; }

.webform-progress-tracker .progress-step .progress-marker {
  border: 1px solid #daeaef;
  color: #ec0000;
  background-color: #fff; }

.webform-progress-tracker .progress-step .progress-text {
  color: #000; }

/* Percentages Loan/Deposit Indicator */
#house-indicator {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center; }
  #house-indicator .house-wrapper {
    position: relative;
    height: 70px;
    width: 70px; }
    #house-indicator .house-wrapper .house {
      position: absolute;
      width: 100%;
      height: 100%;
      z-index: 2; }
      #house-indicator .house-wrapper .house img {
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0; }
    #house-indicator .house-wrapper .house-fill-wrapper {
      position: absolute;
      left: 0;
      right: 0;
      top: 6px;
      bottom: 4px;
      z-index: 0; }
      #house-indicator .house-wrapper .house-fill-wrapper .house-fill {
        position: absolute;
        background-color: #eb0000;
        height: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 0; }
  #house-indicator .percentages-wrapper {
    margin-top: 8px;
    text-align: left; }
    #house-indicator .percentages-wrapper p {
      font-size: 18px;
      line-height: 22px;
      margin-left: 15px; }
      @media (min-width: 568px) {
        #house-indicator .percentages-wrapper p {
          margin-left: 20px; } }
      #house-indicator .percentages-wrapper p:before {
        content: '';
        display: inline-block;
        width: 20px;
        height: 20px;
        vertical-align: sub;
        margin-right: 10px; }
      #house-indicator .percentages-wrapper p.loan:before {
        border: 2px solid #ec0000; }
      #house-indicator .percentages-wrapper p.deposit:before {
        background: #ec0000; }
      #house-indicator .percentages-wrapper p span.percentage {
        display: inline-block;
        width: 32px;
        text-align: right;
        padding-right: 2px;
        font-weight: bold; }

/* Currency fields with £ sign */
.webform-submission-add-form .form-item.currency input.form-control {
  border-radius: 3px;
  border: 1px solid #daeaef;
  width: 100%;
  box-shadow: none;
  text-align: left !important;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  height: 40px;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: calc(100% - 40px) !important; }

.webform-submission-add-form .form-item.currency .form-input-container {
  display: -ms-inline-flexbox;
  display: inline-flex; }

.webform-submission-add-form .form-item.currency .form-input-container:before {
  border-radius: 3px;
  border: 1px solid #daeaef;
  border-right: 0;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  content: "\00A3";
  float: left;
  width: 40px;
  text-align: center;
  padding: 6px 0;
  font-size: 16px;
  line-height: 28px;
  color: #333;
  height: 40px;
  display: inline-block;
  -ms-flex: 0 0 auto;
      flex: 0 0 auto; }

.webform-submission-add-form .form-item.currency .form-input-container.hasfocus:before {
  border-color: #66afe9;
  border-right: none;
  outline: 0;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); }

.webform-submission-add-form .form-item.currency .form-input-container.hasfocus input.form-control {
  border-color: #66afe9;
  border-left: none;
  outline: 0;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); }

.webform-submission-add-form .form-item.currency .label-tooltip {
  margin-top: 8px; }

/* Radio buttons - formatted horizontally aligned as rectangular buttons selected red, unselected white. */
.webform-submission-add-form .webform-type-radios {
  margin-bottom: 5px; }
  .webform-submission-add-form .webform-type-radios.buttons .fieldset-wrapper {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    margin-top: 10px; }
    .webform-submission-add-form .webform-type-radios.buttons .fieldset-wrapper > div {
      -ms-flex: 0 0 auto;
          flex: 0 0 auto; }
    .webform-submission-add-form .webform-type-radios.buttons .fieldset-wrapper .webform-tooltip {
      margin-left: 10px; }
  .webform-submission-add-form .webform-type-radios.buttons .js-webform-radios {
    display: -ms-flexbox;
    display: flex; }
  .webform-submission-add-form .webform-type-radios.buttons .form-type-radio {
    width: 100%;
    margin-top: auto;
    margin-bottom: 0;
    text-align: center;
    margin: 0 5px; }
  .webform-submission-add-form .webform-type-radios.buttons .form-type-radio label {
    margin: 0; }
  .webform-submission-add-form .webform-type-radios.buttons .form-type-radio:first-child {
    margin-left: 0; }
  .webform-submission-add-form .webform-type-radios.buttons .form-type-radio:last-child {
    margin-right: 0; }
  .webform-submission-add-form .webform-type-radios.buttons .form-type-radio label.option {
    border: 1px solid #daeaef;
    cursor: pointer;
    z-index: 90;
    width: 100%;
    min-width: 100px;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 10px;
    padding: 10px 0;
    border-radius: 3px;
    margin: 0;
    position: relative;
    height: 44px; }
    .webform-submission-add-form .webform-type-radios.buttons .form-type-radio label.option:hover {
      background: #dddddd; }
  .webform-submission-add-form .webform-type-radios.buttons .form-type-radio label.option span {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    line-height: 44px; }
  .webform-submission-add-form .webform-type-radios.buttons input[type="radio"] {
    visibility: hidden; }
  .webform-submission-add-form .webform-type-radios legend {
    border: 0;
    margin: 0; }
  .webform-submission-add-form .webform-type-radios input:checked + span {
    background-color: #ec0000;
    color: white; }

.webform-submission-add-form .webform-element-help {
  border: 1px solid #ec0000;
  color: #ec0000;
  background-color: white; }

.webform-submission-add-form .form-type-select .select-wrapper:after {
  content: '^';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  font-size: 30px;
  font-weight: bold;
  line-height: 40px;
  color: #ec0000;
  margin: 0;
  padding-left: 8px;
  padding-right: 8px;
  border-right: 1px solid #daeaef;
  transform: rotate(180deg); }

.webform-submission-add-form .form-type-select .form-control {
  border-radius: 3px;
  border: 1px solid #daeaef;
  display: block;
  width: 100%;
  box-shadow: none;
  text-align: left !important;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  height: 40px;
  line-height: 24px; }

.webform-tooltip {
  position: relative; }
  .webform-tooltip a:focus {
    outline: 0; }
  .webform-tooltip span:first-child {
    display: -ms-flexbox;
    display: flex;
    position: relative;
    width: 24px;
    height: 24px;
    border: 2px solid #ec0000;
    border-radius: 12px;
    color: #ec0000;
    background-color: transparent; }
    .webform-tooltip span:first-child:after {
      content: '?';
      position: absolute;
      top: 1px;
      left: 7px;
      font-size: 17px;
      font-weight: bold;
      line-height: 17px; }
      @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
        .webform-tooltip span:first-child:after {
          left: 6px; } }
    .webform-tooltip span:first-child:focus {
      outline: 0; }
  .webform-tooltip .ajax-throbber {
    position: absolute;
    left: 35px;
    top: 4px;
    z-index: 100;
    color: #ec0000; }

.standalone .webform-tooltip span:first-child {
  color: #ec0000;
  border-color: #ec0000; }

.standalone .ajax-throbber {
  color: #ec0000; }

.inpage .webform-tooltip span:first-child {
  color: #ffffff;
  border-color: #ffffff; }

.inpage .ajax-throbber {
  color: white; }

.label-tooltip {
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: bottom;
  -ms-flex-align: center;
      align-items: center; }
  .label-tooltip .webform-tooltip {
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 55px;
    margin-left: 10px; }
    .label-tooltip .webform-tooltip a {
      margin: 0; }

.circle {
  border: 2px solid red;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  position: relative;
  margin: 4px;
  display: inline-block;
  vertical-align: middle; }
  .circle:hover {
    cursor: pointer; }
  .circle.plus:before, .circle.plus:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: red; }
  .circle.plus:before {
    width: 2px;
    margin: 6px auto; }
  .circle.plus:after {
    margin: auto 6px;
    height: 2px; }
  .circle.minus:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: red;
    margin: auto 8px;
    height: 2px; }

.webform-submission-add-form .webform-element-description {
  margin: 5px 0 0 0;
  font-size: 15px;
  line-height: 20px;
  color: #6f7779; }

.webform-submission-add-form output.range-input {
  display: inline-block !important;
  position: static;
  opacity: 1;
  border: 0;
  border-bottom: 2px solid #000000;
  background: transparent;
  font-weight: 300;
  min-width: 120px;
  margin-left: 15px;
  margin-right: 15px;
  font-size: 21px; }
  @media (min-width: 768px) {
    .webform-submission-add-form output.range-input {
      margin-left: 20px;
      margin-right: 20px; } }

.webform-submission-add-form output.range-input-below {
  width: 110px;
  background: #6f7779;
  opacity: 1;
  color: white;
  padding: 5px 5px;
  border: 0;
  margin-top: 15px;
  z-index: 0; }
  .webform-submission-add-form output.range-input-below:after {
    content: '';
    display: block;
    position: absolute;
    top: -5px;
    left: 0;
    right: 0;
    width: 20px;
    height: 20px;
    background: #6f7779;
    transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    margin: auto;
    z-index: -1; }

.webform-submission-add-form .js-form-type-range {
  position: relative;
  text-align: center;
  border: 1px solid #6f7779;
  padding: 20px 30px; }
  .webform-submission-add-form .js-form-type-range.js-form-item-amount {
    padding-bottom: 70px;
    margin-bottom: 15px;
    overflow: hidden; }

.webform-submission-add-form input[type=range] {
  -webkit-appearance: none;
  background: transparent;
  margin: 12px 0;
  width: 300px;
  margin: 0 auto;
  padding: 0;
  border: 0;
  width: 100%;
  box-shadow: none; }
  .webform-submission-add-form input[type=range]::-moz-focus-outer {
    border: 0; }
  .webform-submission-add-form input[type=range]:focus {
    outline: 0; }
    .webform-submission-add-form input[type=range]:focus::-webkit-slider-runnable-track {
      background: green; }
    .webform-submission-add-form input[type=range]:focus::-ms-fill-lower {
      background: green; }
    .webform-submission-add-form input[type=range]:focus::-ms-fill-upper {
      background: green; }
  .webform-submission-add-form input[type=range]::-webkit-slider-runnable-track {
    cursor: default;
    height: 8px;
    transition: all .2s ease;
    width: 300px;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.2), 0 0 0 rgba(13, 13, 13, 0.2);
    background: green;
    border: 0 solid green;
    border-radius: 5px; }
  .webform-submission-add-form input[type=range]::-webkit-slider-thumb {
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.2), 0 0 0 rgba(13, 13, 13, 0.2);
    background: #ffffff;
    border: 4px solid #aaa;
    border-radius: 12px;
    cursor: default;
    height: 24px;
    width: 24px;
    -webkit-appearance: none;
    margin-top: -8px; }
  .webform-submission-add-form input[type=range]::-moz-range-track {
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.2), 0 0 0 rgba(13, 13, 13, 0.2);
    cursor: default;
    height: 8px;
    transition: all .2s ease;
    width: 300px;
    background: green;
    border: 0 solid green;
    border-radius: 5px;
    height: 4px;
    width: 100%; }
  .webform-submission-add-form input[type=range]::-moz-range-thumb {
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.2), 0 0 0 rgba(13, 13, 13, 0.2);
    background: #ffffff;
    border: 4px solid #aaa;
    border-radius: 12px;
    cursor: default;
    height: 20px;
    width: 20px; }
  .webform-submission-add-form input[type=range]::-ms-track {
    cursor: default;
    height: 8px;
    transition: all .2s ease;
    width: 300px;
    background: transparent;
    border-color: transparent;
    border-width: 12px 0;
    color: transparent;
    width: 100%; }
  .webform-submission-add-form input[type=range]::-ms-fill-lower {
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.2), 0 0 0 rgba(13, 13, 13, 0.2);
    background: green;
    border: 0 solid green;
    border-radius: 10px; }
  .webform-submission-add-form input[type=range]::-ms-fill-upper {
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.2), 0 0 0 rgba(13, 13, 13, 0.2);
    background: green;
    border: 0 solid green;
    border-radius: 10px; }
  .webform-submission-add-form input[type=range]::-ms-thumb {
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.2), 0 0 0 rgba(13, 13, 13, 0.2);
    background: #ffffff;
    border: 4px solid #aaa;
    border-radius: 12px;
    cursor: default;
    height: 20px;
    width: 20px;
    margin-top: 2px; }
  .webform-submission-add-form input[type=range]::-ms-tooltip {
    display: none; }
  .webform-submission-add-form input[type=range]:disabled::-webkit-slider-thumb {
    cursor: not-allowed; }
  .webform-submission-add-form input[type=range]:disabled::-moz-range-thumb {
    cursor: not-allowed; }
  .webform-submission-add-form input[type=range]:disabled::-ms-thumb {
    cursor: not-allowed; }
  .webform-submission-add-form input[type=range]:disabled::-webkit-slider-runnable-track {
    cursor: not-allowed; }
  .webform-submission-add-form input[type=range]:disabled::-ms-fill-lower {
    cursor: not-allowed; }
  .webform-submission-add-form input[type=range]:disabled::-ms-fill-upper {
    cursor: not-allowed; }

.webform-submission-add-form .btn {
  outline: none;
  border-radius: 20px;
  border: 2px solid !important; }
  .webform-submission-add-form .btn:focus, .webform-submission-add-form .btn:active, .webform-submission-add-form .btn:active:focus {
    outline: none;
    box-shadow: none; }
  .webform-submission-add-form .btn.disabled, .webform-submission-add-form .btn[disabled], .webform-submission-add-form .btn[disabled]:hover, .webform-submission-add-form .btn[disabled]:focus, .webform-submission-add-form .btn[disabled]:active {
    opacity: 0.65; }
  .webform-submission-add-form .btn.btn-red-on-white {
    color: #ec0000;
    background: #ffffff;
    border-color: #ec0000 !important; }
    .webform-submission-add-form .btn.btn-red-on-white:hover, .webform-submission-add-form .btn.btn-red-on-whitefocus {
      color: #000000;
      background: #ec0000; }
    .webform-submission-add-form .btn.btn-red-on-white.disabled, .webform-submission-add-form .btn.btn-red-on-white[disabled], .webform-submission-add-form .btn.btn-red-on-white[disabled]:hover, .webform-submission-add-form .btn.btn-red-on-white[disabled]:focus, .webform-submission-add-form .btn.btn-red-on-white[disabled]:active {
      color: #ec0000;
      background: #ffffff; }
  .webform-submission-add-form .btn.btn-white-on-grey {
    color: #ffffff;
    background: #6f7779;
    border-color: #ffffff !important; }
    .webform-submission-add-form .btn.btn-white-on-grey:hover, .webform-submission-add-form .btn.btn-white-on-grey:focus {
      color: #6f7779;
      background: #ffffff; }
    .webform-submission-add-form .btn.btn-white-on-grey.disabled, .webform-submission-add-form .btn.btn-white-on-grey[disabled], .webform-submission-add-form .btn.btn-white-on-grey[disabled]:hover, .webform-submission-add-form .btn.btn-white-on-grey[disabled]:focus, .webform-submission-add-form .btn.btn-white-on-grey[disabled]:active {
      color: #000000;
      background: #6f7779; }
  .webform-submission-add-form .btn.btn-cta-primary {
    color: #ffffff;
    background: #ec0000;
    border-color: #ec0000 !important; }
    .webform-submission-add-form .btn.btn-cta-primary:hover, .webform-submission-add-form .btn.btn-cta-primaryfocus {
      background: #af000f;
      border-color: #af000f !important;
      transition-property: background, border-color;
      transition-duration: 200ms;
      transition-timing-function: ease; }
    .webform-submission-add-form .btn.btn-cta-primary.disabled, .webform-submission-add-form .btn.btn-cta-primary[disabled], .webform-submission-add-form .btn.btn-cta-primary[disabled]:hover, .webform-submission-add-form .btn.btn-cta-primary[disabled]:focus, .webform-submission-add-form .btn.btn-cta-primary[disabled]:active {
      background: #6f7779;
      border-color: #6f7779 !important; }
  .webform-submission-add-form .btn.btn-cta-secondary {
    color: #ec0000;
    background: #ffffff;
    border-color: #ec0000 !important; }
    .webform-submission-add-form .btn.btn-cta-secondary:hover, .webform-submission-add-form .btn.btn-cta-secondaryfocus {
      color: #af000f;
      border-color: #af000f !important;
      transition-property: background, border-color;
      transition-duration: 200ms;
      transition-timing-function: ease; }
    .webform-submission-add-form .btn.btn-cta-secondary.disabled, .webform-submission-add-form .btn.btn-cta-secondary[disabled], .webform-submission-add-form .btn.btn-cta-secondary[disabled]:hover, .webform-submission-add-form .btn.btn-cta-secondary[disabled]:focus, .webform-submission-add-form .btn.btn-cta-secondary[disabled]:active {
      background: #ffffff;
      color: #6f7779;
      border-color: #6f7779 !important; }
  .webform-submission-add-form .btn.btn-task {
    color: #ffffff;
    background: #5b5a5b;
    border-color: #5b5a5b !important; }
    .webform-submission-add-form .btn.btn-task:hover, .webform-submission-add-form .btn.btn-task:focus {
      background: #000000;
      border-color: #000000 !important;
      transition-property: background, border-color;
      transition-duration: 200ms;
      transition-timing-function: ease; }
    .webform-submission-add-form .btn.btn-task.disabled, .webform-submission-add-form .btn.btn-task[disabled], .webform-submission-add-form .btn.btn-task[disabled]:hover, .webform-submission-add-form .btn.btn-task[disabled]:focus, .webform-submission-add-form .btn.btn-task[disabled]:active {
      background: #6f7779;
      border-color: #6f7779 !important; }

.webform-submission-add-form .brand-text {
  color: #000000;
  font-weight: bold; }

.webform-submission-add-form .form-type-processed-text.has-tooltip .wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center; }

.webform-submission-add-form .form-type-processed-text.has-tooltip .webform-tooltip {
  margin-left: 10px;
  width: 55px; }
