@charset "UTF-8";
#loan-calculator {
  background: #ffffff;
  border: 1px solid #DADADA;
  box-shadow: 0px 5px 35px -14px #2C523B;
  border-radius: 20px;
  padding: 35px 30px 45px 30px;
  width: 100%;
  max-width: 570px;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
  /* Chrome, Safari, Edge, Opera */
  /* Firefox */
}
#loan-calculator .calc-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#loan-calculator .calc-flex.flex-col {
  flex-direction: column;
}
@media (min-width: 768px) {
  #loan-calculator .calc-flex.flex-lg-row {
    flex-direction: row;
  }
}
#loan-calculator .calc-flex .calc-title {
  font-size: 16px;
  font-family: Poppins, sans-serif;
  font-weight: 600;
  color: #18191B;
  line-height: 136.5%;
}
#loan-calculator .calc-flex .calc-input {
  width: 113px;
  height: 38px;
  border: 1px solid #219653;
  border-radius: 30px;
  text-align: center;
  font-family: Poppins, sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 136.5%;
  transition: all 0.1s;
}
#loan-calculator .calc-flex .calc-input.invalid {
  border: 3px solid #ba0000 !important;
}
#loan-calculator .calc-flex .calc-input:focus-visible, #loan-calculator .calc-flex .calc-input.hasFocus {
  outline: none;
  box-shadow: none;
  border: 3px solid #219653;
}
#loan-calculator .range-container {
  padding-top: 10px;
  position: relative;
}
#loan-calculator .range-container.inactive {
  opacity: 0.5 !important;
}
#loan-calculator .calc-range {
  width: 100%;
  -webkit-appearance: none;
  background-color: #FFB92C;
  border-radius: 5px;
  height: 9px;
}
#loan-calculator .final-payment-label,
#loan-calculator .apr-label,
#loan-calculator .total-label {
  font-family: Poppins, sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 136.5%;
  margin: 0;
}
#loan-calculator .final-payment,
#loan-calculator .apr {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 136.5%;
  text-align: right;
  margin: 0;
  padding-left: 30px;
}
#loan-calculator .total {
  font-family: Poppins, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 136.5%;
  margin: 0;
}
#loan-calculator .calc-flex-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#loan-calculator .loan-calc-button {
  position: absolute;
  width: 276px;
  height: 54px;
  background: #0D6832;
  box-shadow: 0px 3px 5px 2px rgba(0, 0, 0, 0.07);
  border-radius: 50px;
  border-color: transparent;
  color: white;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  text-align: center;
  bottom: -25px;
  transition: all 0.4s;
  cursor: pointer;
}
#loan-calculator .loan-calc-button:hover, #loan-calculator .loan-calc-button:focus {
  border: transparent;
  outline: none;
  box-shadow: none;
}
@media (min-width: 768px) {
  #loan-calculator .loan-calc-button:hover, #loan-calculator .loan-calc-button:focus {
    width: 316px !important;
  }
}
#loan-calculator .pb-10 {
  padding-bottom: 10px;
}
#loan-calculator .pb-15 {
  padding-bottom: 15px;
}
#loan-calculator .mt-20 {
  margin-top: 20px;
}
#loan-calculator .mt-30 {
  margin-top: 30px;
}
#loan-calculator .pt-10 {
  padding-top: 10px;
}
#loan-calculator .total-left, #loan-calculator .total-right {
  padding-top: 20px;
  text-align: right;
}
#loan-calculator .total-left.w-100, #loan-calculator .total-right.w-100 {
  width: 100%;
}
@media (min-width: 768px) {
  #loan-calculator .total-left.w-100, #loan-calculator .total-right.w-100 {
    width: initial;
  }
}
#loan-calculator input[type=range]::-webkit-slider-thumb {
  height: 38px;
  width: 38px;
  border-radius: 3px;
  background-color: transparent;
  background: url(../images/point.png) center center no-repeat;
  background-size: 38px;
  cursor: pointer;
  -webkit-appearance: none;
  margin-bottom: -5px;
}
#loan-calculator input::-webkit-outer-spin-button,
#loan-calculator input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
#loan-calculator input[type=number] {
  -moz-appearance: textfield;
}
#loan-calculator .wrap {
  width: 100%;
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translate(-50%, -50%);
}
#loan-calculator .wrap.invalid {
  opacity: 0.5;
}
#loan-calculator .range, #loan-calculator .range2, #loan-calculator .range3 {
  width: 100%;
  cursor: pointer;
  opacity: 0;
}
#loan-calculator .range::-ms-tooltip, #loan-calculator .range2::-ms-tooltip, #loan-calculator .range3::-ms-tooltip {
  display: none;
}
#loan-calculator .track, #loan-calculator .track2, #loan-calculator .track3 {
  width: 100%;
  height: 9px;
  background: #CFCFCF;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  border-radius: 3px;
  overflow: hidden;
}
#loan-calculator .track-inner, #loan-calculator .track-inner2, #loan-calculator .track-inner3 {
  width: 0;
  height: 100%;
  background: #FFB92C;
  border-radius: 3px;
}
#loan-calculator .thumb, #loan-calculator .thumb2, #loan-calculator .thumb3 {
  position: absolute;
  top: 56%;
  left: 0;
  transform: translate(0%, -50%);
  pointer-events: none;
  height: 28px;
  width: 24px;
  background-color: transparent;
  background: url("../images/point.png") center center no-repeat;
  background-size: 28px;
  cursor: pointer;
  -webkit-appearance: none;
}
#loan-calculator .min, #loan-calculator .max {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 8px;
  letter-spacing: -0.3px;
  margin: 0;
}
#loan-calculator [v-cloak] {
  display: none;
}
#loan-calculator .input-label-hide {
  border: 0;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
#loan-calculator .input-wrapper {
  position: relative;
}
#loan-calculator .input-wrapper.pounds:before {
  content: "£";
  position: absolute;
  font-family: Poppins, sans-serif;
  font-style: normal;
  font-weight: 600;
  top: 49%;
  left: 26px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
#loan-calculator .input-wrapper:after {
  content: url("../images/edit.png");
  position: absolute;
  font-family: Poppins, sans-serif;
  font-style: normal;
  font-weight: 600;
  top: 31%;
  right: 19px;
  height: 10px;
  width: 10px;
  transform: scale(0.6);
  pointer-events: none;
}

.lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid #0D6832;
  border-radius: 50%;
  -webkit-animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
          animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #0D6832 transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
  -webkit-animation-delay: -0.45s;
          animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
  -webkit-animation-delay: -0.3s;
          animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
  -webkit-animation-delay: -0.15s;
          animation-delay: -0.15s;
}

@-webkit-keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}/*# sourceMappingURL=loanCalculator.css.map */