@charset "UTF-8";
* {
  font-family: "Poppins", "Helvetica", "Arial", sans-serif;
  color: #17173b;
}

body {
  background-color: white;
  padding: 60px;
  font-size: 16px;
  margin: 0;
}

section {
  margin-bottom: 2em;
}

abbr {
  text-decoration: none;
}

h1 {
  font-size: 1.25em;
  font-weight: 300;
  text-align: center;
  margin-bottom: 0;
  margin-top: 30px;
}

h3 {
  font-size: 1em;
  font-weight: 400;
  text-align: center;
  margin-top: 0;
  margin-bottom: 40px;
  color: #9fcbf3;
}

.container {
  width: 800px;
  margin-left: auto;
  margin-right: auto;
}

p {
  color: #17173b;
  font-size: 14px;
  text-align: center;
  font-weight: 300;
  line-height: 1.3em;
}

#logo {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 280px;
  margin-top: 0px;
  margin-bottom: 30px;
}

#inputs {
  font-size: 1.25em;
  font-weight: 200;
}
#inputs em {
  font-weight: 400;
  font-style: normal;
}
#inputs .row {
  margin: 10px 0;
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}
#inputs .left {
  width: 50%;
  text-align: right;
  padding-right: 10px;
}
#inputs .left .context {
  line-height: 13px;
  font-size: 12px;
  display: block;
}
#inputs .right {
  padding-left: 10px;
  width: 50%;
  text-align: left;
  font-weight: 200;
}
#inputs .right em {
  font-weight: 400;
  font-style: normal;
}
#inputs .middle {
  text-align: center;
  width: 100%;
}
#inputs input {
  text-align: left;
  padding: 5px;
  margin-left: 5px;
  margin-right: 5px;
  font-size: 1em;
}
#inputs input.purchasePrice {
  width: 5em;
  text-align: left;
}
#inputs .currencyInput {
  border-bottom: solid 1px #d5e9fa;
  padding-bottom: 2px;
  display: inline;
}
#inputs .currencyInput::before {
  content: "£";
  font-weight: 200;
}
#inputs .currencyInput input {
  border: none;
  width: 120px;
  padding: 0 10px;
  margin: 0;
  color: #76b5ee;
}
#inputs #primaryInputs {
  display: flex;
  flex-direction: column;
  padding-bottom: 2em;
  margin-bottom: 2em;
  border-bottom: solid 1px #d5e9fa;
}
#inputs #primaryInputs > * {
  height: 2em;
  display: flex;
  align-items: flex-start;
}
#inputs #secondaryInputs .left {
  text-align: center;
}
#inputs #secondaryInputs .right {
  text-align: center;
}

#results {
  width: 100%;
  border: none;
  border-collapse: collapse;
}
#results td {
  border: none;
  border-bottom: solid 10px white;
  margin-bottom: 10px;
}

strong {
  font-weight: 500;
}

#results th {
  border: none;
  border-bottom: solid 10px white;
  margin-bottom: 10px;
  font-weight: 500;
}
#results .name {
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
}

#results .amount {
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
}
#results thead {
  align-items: center;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
#results thead .long {
  display: block;
}
#results thead .short {
  display: none;
}
#results thead th {
  font-family: "Poppins", "Helvetica", "Arial", sans-serif;
  font-weight: normal;
}
#results thead .name {
  font-size: 0.8em;
}
#results thead .amount {
  font-size: 0.8em;
}
#results tbody {
  font-size: 1.3em;
  font-weight: 500;
}
#results tbody td {
  margin: 10px;
  padding: 10px;
}
#results tbody td.currency {
  text-align: center;
}

#results-container {
  display: none;
}

#footnote {
  color: #17173b;
  font-size: 10px;
  text-align: center;
  font-weight: 300;
  margin-top: 0;
  line-height: 1.3em;
}

#ctas {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  padding: 25px 0;
}
#ctas .cta {
  display: block;
  font-family: "poppins", sans-serif;
  border-radius: 50px;
  border: none;
  text-align: center;
  padding: 15px 30px 15px 30px;
  background-color: #17173b;
  color: white;
  font-weight: 400;
  font-size: 18px;
  text-decoration: none;
  cursor: pointer;
}
#ctas .cta:hover {
  background-color: rgba(23, 23, 59, 0.8);
}
#ctas .cta#generate-dip {
  background: #ffbb32;
  color: #17173b;
}
#ctas .cta#generate-dip:hover {
  background-color: rgba(255, 187, 50, 0.8);
}
#ctas #icr-button {
  background-color: #92afcd;
  color: #17173b;
}
#ctas #icr-button:hover {
  background-color: rgba(146, 175, 205, 0.8);
}

#faa-button {
  display: block;
  font-family: "poppins", sans-serif;
  border-radius: 50px;
  border: none;
  text-align: center;
  padding: 18px 0px 16px 0px;
  background-color: #a2aef7;
  color: #17173b;
  font-weight: 400;
  font-size: 18px;
  text-decoration: none;
  cursor: pointer;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
}
#faa-button:hover {
  background-color: rgba(146, 175, 205, 0.8);
}

#dip-input-form {
  margin-top: 1em;
  margin-bottom: 1em;
  padding: 20px;
}
#dip-input-form .row {
  margin-top: 1em;
  margin-bottom: 0.5em;
  display: flex;
  flex-direction: row;
}
#dip-input-form .row label {
  width: 28%;
  font-weight: 500px;
  display: block;
  text-align: right;
  margin-right: 25px;
  line-height: 1.2em;
}
#dip-input-form .row input {
  width: 80%;
  border: none;
  padding: 0 10px 2px 0;
  margin: 0;
  color: #17173b;
  border-bottom: solid 1px #d5e9fa;
}
#dip-input-form button {
  display: block;
  background-color: #ffbb32;
  border: 0;
  border-radius: 50px;
  text-align: center;
  color: #17173b;
  font-weight: 400;
  font-size: 18px;
  width: 300px;
  padding: 15px 0px 12px 0px;
  margin-left: auto;
  margin-right: 47px;
  margin-top: 1em;
  cursor: pointer;
}
#dip-input-form button:hover {
  background-color: rgba(255, 187, 50, 0.8);
}
#dip-input-form .consent-warning {
  display: none;
}
#dip-input-form.disabled-by-consent .consent-warning {
  display: block;
}
#dip-input-form.disabled-by-consent button {
  background-color: gray;
  cursor: not-allowed;
}

#dip-template {
  position: relative;
  padding: 10mm 20mm 6mm 20mm;
  margin: 0;
  font-size: 7.5pt;
  width: 210mm;
  box-sizing: border-box;
}
#dip-template img {
  width: 210px;
  display: block;
  position: absolute;
  right: 20mm;
  top: 16mm;
}
#dip-template h1 {
  padding-top: 0;
  margin-top: 0;
  font-size: 16pt;
  font-family: "poppins", sans-serif;
  font-weight: 400;
  margin-bottom: 10px;
  text-align: left;
}
#dip-template h2 {
  font-size: 7.5pt;
  font-family: "poppins", sans-serif;
  font-weight: 500;
  margin-bottom: 0;
}
#dip-template p {
  font-weight: 100;
  text-align: left;
  font-size: 7.5pt;
  line-height: 1.4em;
}
#dip-template h2 + p, #dip-template h1 + p {
  margin-top: 0;
}
#dip-template ul {
  margin-top: -0.9em;
  margin-bottom: 0;
}
#dip-template ul li {
  font-size: 7.5pt;
  font-weight: 100;
}
#dip-template a {
  text-decoration: none;
}
#dip-template table.inputs th {
  text-align: left;
  white-space: nowrap;
  vertical-align: top;
  font-weight: 100;
  font-size: 7.5pt;
  width: 16%;
}
#dip-template table.inputs td {
  vertical-align: top;
  text-align: left;
  font-weight: 500;
  font-size: 7.5pt;
  padding-left: 1em;
}
#dip-template footer {
  border-top: solid 1px #ffd071;
  margin-top: 25px;
}
#dip-template footer p {
  font-size: 6.5pt;
}
#dip-template footer a {
  margin-left: 1em;
  font-weight: 500;
}
#dip-template #results thead th {
  font-weight: 500;
  font-size: 6.5pt;
  letter-spacing: 0;
}
#dip-template #results tbody th, #dip-template #results tbody td {
  font-size: 8pt;
  font-weight: 400;
  padding: 2px 12px 6px 14px;
  margin-bottom: 0;
  border-bottom: solid white 5px;
}

body#explorer {
  padding: 20px;
}
body#explorer #loadable {
  display: none;
}
body#explorer #graph-container {
  width: 100%;
  height: 300px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  position: relative;
}
body#explorer #graph-container #canvas {
  position: absolute;
  width: 100%;
  height: 100%;
}
body#explorer #graph-container #overlays {
  position: absolute;
  width: 100%;
  height: 100%;
}
body#explorer #graph-container #overlays .net-monthly-rental-income-line {
  stroke-width: 2px;
  stroke: red;
}
body#explorer #graph-container #overlays .net-monthly-rental-income-label {
  fill: red;
}
body#explorer #graph-container #overlays .property-value-line {
  stroke-width: 2px;
  stroke: fuchsia;
}
body#explorer #graph-container #overlays .property-value-label {
  fill: fuchsia;
}
body#explorer #parameters {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 0;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  gap: 10px 20px;
}
body#explorer #parameters li {
  list-style-type: none;
  white-space: nowrap;
}
body#explorer #cursorGraphs {
  display: flex;
  flex-direction: row;
  gap: 10px;
  flex-wrap: nowrap;
}
body#explorer #cursorGraphs > div {
  width: calc(50% - 5px);
  height: 100%;
  position: relative;
}
body#explorer #cursorGraphs > div h2 {
  text-align: center;
  margin-bottom: 0;
}
body#explorer #cursorGraphs > div .subtitle {
  text-align: center;
}
body#explorer #cursorGraphs svg {
  width: 100%;
  height: 300px;
}
body#explorer #cursorGraphs .ci-rent-bracket-80 {
  stroke-width: 1;
  stroke: rgba(117, 117, 240, 0.4);
  fill: none;
}
body#explorer #cursorGraphs .ci-rent-bracket-75 {
  stroke-width: 1;
  stroke: rgba(117, 117, 240, 0.6);
  fill: none;
}
body#explorer #cursorGraphs .ci-rent-bracket-70 {
  stroke-width: 1;
  stroke: rgba(117, 117, 240, 0.8);
  fill: none;
}
body#explorer #cursorGraphs .ci-rent-bracket-65 {
  stroke-width: 1;
  stroke: #7575f0;
  fill: none;
}
body#explorer #cursorGraphs .ci-remainder-bracket-80 {
  stroke-width: 1;
  stroke: rgba(199, 240, 117, 0.4);
  fill: none;
}
body#explorer #cursorGraphs .ci-remainder-bracket-75 {
  stroke-width: 1;
  stroke: rgba(199, 240, 117, 0.6);
  fill: none;
}
body#explorer #cursorGraphs .ci-remainder-bracket-70 {
  stroke-width: 1;
  stroke: rgba(199, 240, 117, 0.8);
  fill: none;
}
body#explorer #cursorGraphs .ci-remainder-bracket-65 {
  stroke-width: 1;
  stroke: #c7f075;
  fill: none;
}
body#explorer #cursorGraphs .ci-nominal-bracket-80 {
  stroke-width: 1;
  stroke: rgba(117, 240, 199, 0.4);
  fill: none;
}
body#explorer #cursorGraphs .ci-nominal-bracket-75 {
  stroke-width: 1;
  stroke: rgba(117, 240, 199, 0.6);
  fill: none;
}
body#explorer #cursorGraphs .ci-nominal-bracket-70 {
  stroke-width: 1;
  stroke: rgba(117, 240, 199, 0.8);
  fill: none;
}
body#explorer #cursorGraphs .ci-nominal-bracket-65 {
  stroke-width: 1;
  stroke: #75f0c7;
  fill: none;
}
body#explorer #cursorGraphs .io-rent-bracket-80 {
  stroke-width: 1;
  stroke: rgba(117, 117, 240, 0.4);
  fill: none;
}
body#explorer #cursorGraphs .io-rent-bracket-75 {
  stroke-width: 1;
  stroke: rgba(117, 117, 240, 0.6);
  fill: none;
}
body#explorer #cursorGraphs .io-rent-bracket-70 {
  stroke-width: 1;
  stroke: rgba(117, 117, 240, 0.8);
  fill: none;
}
body#explorer #cursorGraphs .io-rent-bracket-65 {
  stroke-width: 1;
  stroke: #7575f0;
  fill: none;
}
body#explorer #cursorGraphs .io-nominal-bracket-80 {
  stroke-width: 1;
  stroke: rgba(117, 240, 199, 0.4);
  fill: none;
}
body#explorer #cursorGraphs .io-nominal-bracket-75 {
  stroke-width: 1;
  stroke: rgba(117, 240, 199, 0.6);
  fill: none;
}
body#explorer #cursorGraphs .io-nominal-bracket-70 {
  stroke-width: 1;
  stroke: rgba(117, 240, 199, 0.8);
  fill: none;
}
body#explorer #cursorGraphs .io-nominal-bracket-65 {
  stroke-width: 1;
  stroke: #75f0c7;
  fill: none;
}
body#explorer #cursorGraphs #fixedNetMonthlyRentalIncomeGraph .loan-value {
  stroke-width: 2px;
  stroke: red;
  fill: none;
}
body#explorer #cursorGraphs #fixedNetMonthlyRentalIncomeGraph .property-value {
  fill: fuchsia;
}
body#explorer #cursorGraphs #fixedPropertyValueGraph .loan-value {
  stroke-width: 2px;
  stroke: fuchsia;
  fill: none;
}
body#explorer #cursorGraphs #fixedPropertyValueGraph .net-monthly-rental-income {
  fill: red;
}
body#explorer #info {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 50px;
}
body#explorer #info h2 {
  margin-bottom: 10px;
}
body#explorer #info td {
  text-align: right;
  padding-right: 5px;
}
body#explorer #info th {
  text-align: left;
  padding-right: 5px;
}
body#explorer #info hr {
  width: 50px;
  height: 2px;
  border: none;
}
body#explorer #info hr.ci-rent-bracket-80 {
  background: rgba(117, 117, 240, 0.4);
}
body#explorer #info hr.ci-rent-bracket-75 {
  background: rgba(117, 117, 240, 0.6);
}
body#explorer #info hr.ci-rent-bracket-70 {
  background: rgba(117, 117, 240, 0.8);
}
body#explorer #info hr.ci-rent-bracket-65 {
  background: #7575f0;
}
body#explorer #info hr.ci-remainder-bracket-80 {
  background: rgba(199, 240, 117, 0.4);
}
body#explorer #info hr.ci-remainder-bracket-75 {
  background: rgba(199, 240, 117, 0.6);
}
body#explorer #info hr.ci-remainder-bracket-70 {
  background: rgba(199, 240, 117, 0.8);
}
body#explorer #info hr.ci-remainder-bracket-65 {
  background: #c7f075;
}
body#explorer #info hr.ci-nominal-bracket-80 {
  background: rgba(117, 240, 199, 0.4);
}
body#explorer #info hr.ci-nominal-bracket-75 {
  background: rgba(117, 240, 199, 0.6);
}
body#explorer #info hr.ci-nominal-bracket-70 {
  background: rgba(117, 240, 199, 0.8);
}
body#explorer #info hr.ci-nominal-bracket-65 {
  background: #75f0c7;
}
body#explorer #info hr.io-rent-bracket-80 {
  background: rgba(117, 117, 240, 0.4);
}
body#explorer #info hr.io-rent-bracket-75 {
  background: rgba(117, 117, 240, 0.6);
}
body#explorer #info hr.io-rent-bracket-70 {
  background: rgba(117, 117, 240, 0.8);
}
body#explorer #info hr.io-rent-bracket-65 {
  background: #7575f0;
}
body#explorer #info hr.io-nominal-bracket-80 {
  background: rgba(117, 240, 199, 0.4);
}
body#explorer #info hr.io-nominal-bracket-75 {
  background: rgba(117, 240, 199, 0.6);
}
body#explorer #info hr.io-nominal-bracket-70 {
  background: rgba(117, 240, 199, 0.8);
}
body#explorer #info hr.io-nominal-bracket-65 {
  background: #75f0c7;
}
body#explorer #info tr.active td, body#explorer #info tr.active th {
  color: #0084ff;
}

#klaro .cookie-notice {
  background-color: #3c59f6;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  color: white;
  padding: 48px 60px 48px 60px;
}
#klaro .cookie-notice .cn-body {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
}
#klaro .cookie-notice .cn-body p {
  margin-top: 0;
  color: white;
  margin-bottom: 0;
  font-weight: 400;
}
#klaro .cookie-notice .cn-body p a {
  color: white;
}
#klaro .cookie-notice .cn-body p > span {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}
#klaro .cookie-notice .cn-body p > span .consent-description {
  flex-grow: 1;
  color: white;
  text-align: left;
}
#klaro .cookie-notice .cn-body p svg {
  width: 60px;
  min-width: 60px;
  height: 60px;
  flex-grow: 0;
}
#klaro .cookie-notice .cn-body p svg path {
  fill: white;
}
#klaro .cookie-notice .cn-body .cn-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
#klaro .cookie-notice .cn-body .cn-buttons button {
  border: solid 1px white;
  background-color: #3c59f6;
  padding: 12px;
  color: white;
  white-space: nowrap;
  font-weight: 400;
  font-size: 14px;
  cursor: pointer;
}
#klaro .cookie-notice .cn-body .cn-buttons button:hover {
  background-color: white;
  color: #3c59f6;
}

#klaroConsentedTabID {
  background-color: #3c59f6;
  color: white;
  padding: 8px 8px 8px 4px;
  position: fixed;
  left: 0;
  bottom: 15%;
  width: 40px;
  height: 40px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  cursor: pointer;
}
#klaroConsentedTabID svg path {
  fill: white;
}
#klaroConsentedTabID:hover {
  background-color: #0b30f4;
}

@media only screen and (max-width: 920px) {
  body {
    width: 100%;
    padding: 60px 0 0 0;
  }

  .container {
    width: 100%;
  }

  h1, h3, p {
    padding-left: 16px;
    padding-right: 16px;
  }

  #klaro .cookie-notice .cn-body .cn-buttons {
    flex-direction: column;
  }
}
@media only screen and (max-width: 650px) {
  body {
    font-size: 14px;
  }

  #logo {
    margin-bottom: 32px;
  }

  h1 {
    margin-bottom: 16px;
  }

  #inputs {
    margin-bottom: 32px;
  }
  #inputs #primaryInputs > * {
    display: block;
    height: auto;
  }
  #inputs .row {
    display: block;
    margin: 16px 0;
  }
  #inputs .row .left {
    box-sizing: border-box;
    width: 100%;
    text-align: center;
    padding: 0 16px;
  }
  #inputs .row .right {
    box-sizing: border-box;
    width: 100%;
    text-align: center;
    padding: 0 16px;
  }
  #inputs input.purchasePrice {
    text-align: center;
  }
  #inputs #primaryInputs {
    margin-bottom: 16px;
    padding-bottom: 16px;
  }
  #inputs .secondaryInputs .right {
    margin-top: 16px;
  }

  #results thead .long {
    display: none;
  }
  #results thead .short {
    display: block;
  }

  .cta {
    float: none;
    margin-left: auto;
    margin-right: auto;
  }

  #talk-to-us {
    margin-top: 48px;
    float: none;
    width: auto;
  }

  #klaro .cookie-notice {
    padding: 24px;
  }
  #klaro .cookie-notice .cn-body {
    flex-direction: column;
  }
  #klaro .cookie-notice .cn-body .cn-buttons {
    flex-direction: row;
  }
}

/*# sourceMappingURL=molo-calculator.css.map */
