@font-face { font-family: Nexa;              src: url('/assets/font/Fontfabric - Nexa Regular.otf')        format('opentype'); }
@font-face { font-family: Nexa-Italic;       src: url('/assets/font/Fontfabric - Nexa Regular Italic.otf') format('opentype'); }
@font-face { font-family: Nexa-Black;        src: url('/assets/font/Fontfabric - Nexa Black.otf')          format('opentype'); }
@font-face { font-family: Nexa-Black-Italic; src: url('/assets/font/Fontfabric - Nexa Black Italic.otf')   format('opentype'); }
@font-face { font-family: Nexa-Bold-Italic;  src: url('/assets/font/Fontfabric - Nexa Bold Italic.otf')    format('opentype'); }
@font-face { font-family: Nexa-Bold;         src: url('/assets/font/Fontfabric - Nexa Bold.otf')           format('opentype'); }
@font-face { font-family: Nexa-Book-Italic;  src: url('/assets/font/Fontfabric - Nexa Book Italic.otf')    format('opentype'); }
@font-face { font-family: Nexa-Book;         src: url('/assets/font/Fontfabric - Nexa Book.otf')           format('opentype'); }
@font-face { font-family: Nexa-Heavy-Italic; src: url('/assets/font/Fontfabric - Nexa Heavy Italic.otf')   format('opentype'); }
@font-face { font-family: Nexa-Heavy;        src: url('/assets/font/Fontfabric - Nexa Heavy.otf')          format('opentype'); }
@font-face { font-family: Nexa-Light-Italic; src: url('/assets/font/Fontfabric - Nexa Light Italic.otf')   format('opentype'); }
@font-face { font-family: Nexa-Light;        src: url('/assets/font/Fontfabric - Nexa Light.otf')          format('opentype'); }
@font-face { font-family: Nexa-Thin-Italic;  src: url('/assets/font/Fontfabric - Nexa Thin Italic.otf')    format('opentype'); }
@font-face { font-family: Nexa-Thin;         src: url('/assets/font/Fontfabric - Nexa Thin.otf')           format('opentype'); }
@font-face { font-family: Nexa-XBold-Italic; src: url('/assets/font/Fontfabric - Nexa XBold Italic.otf')   format('opentype'); }
@font-face { font-family: Nexa-XBold;        src: url('/assets/font/Fontfabric - Nexa XBold.otf')          format('opentype'); }

:root {
  /* Variables taken directly from Figma design */
  --Grey: #F1F1F1;
  --Sage: #60C3AD;
  --New-Green: #28443E;
  --White: #FFF;
  --Unifi---Black: #000;
  --SOI-white: #FFF;
  --Unifi---Warm-Red: #CF1F25;
  --Green-Gradient: linear-gradient(234deg, #28443E 3.85%, #356057 96.72%);
  --Dark-Green: #28443E;
  --Red-Gradient: linear-gradient(307.12deg,#96191B 34.46%,#FF3D2D 92.16%);

  /* Global site variables */
  --unifi-font-family: Nexa;
  --unifi-grid-gap: 15px;
  --unifi-padding-block: 2rem;
  --unifi-page-margin: 1rem;
  --unifi-page-border-radius: 25px;
  --unifi-block-border-radius: 15px;
  --unifi-control-border-radius: 15px;
  --unifi-button-height: 56px;
  --unifi-button-border-radius: 28px;
  --unifi-button-background-color: var(--Dark-Green, #28443E);
  --unifi-border-width: 2px;
  --unifi-font-size-normal: 13px;
  --unifi-font-size-button: 14px;
  --unifi-font-size-label: 16px;
  --unifi-font-size-header: 24px;
  --unifi-font-size-page-title: 42px;
  --unifi-font-size-amount-large: 42px;
  --unifi-font-size-amount-huge: 64px;
  --unifi-font-weight-default: 400;
  --unifi-font-weight-title: 800;
  --unifi-font-weight-footnote: 300;
  --unifi-chat-icon-size: 64px;

  /* Page specific variables */
  --calculator-page-columns: 1;
  --calculator-idnumber-columns: 1;
  --calculator-idnumber-font-size: 42px;
  --calculator-amount-width: 10rem;
  --calculator-amount-font-size: 42px;
  --calculator-amount-currency-margin-top: 15px;
  --calculator-block-height: 90px;
  --calculator-idnumber-block-height: 114px;
  --calculator-note-above: hidden;
  --calculator-note-below: visible;
  --calculator-note-above-height: 0px;
  --calculator-note-below-height: 25px;
  --calculator-button-margin: 20px;
  --calculator-button-margin-inner: 8px;

  /* Chat icon */
  --chat-icon-reloan-apply-top: 0x;
  --chat-icon-reloan-apply-right: 0px;

  /* Overriding bootstrap variables */
  --bs-body-color: var(--New-Green, #28443E);
}

@media only screen and (max-width: 767px) {
  :root {
    --chat-icon-reloan-apply-top: 50px;
    --chat-icon-reloan-apply-right: 0px;
  }
}

@media only screen and (max-width: 275px) {
  :root {
    --calculator-input-height: 45px;
    --calculator-idnumber-font-size: 24px;
    --calculator-amount-font-size: 36px;
    --calculator-amount-button-margin-zm: 0px;
    --calculator-amount-width: 150px;
    --calculator-apply-width: 80%;
    --calculator-apply-margin-top: 5px;
    --calculator-title-bottom-margin: 0px;
    --calculator-button-margin: 8px;
    --calculator-button-margin-inner: 0px;
  }

  .calculator {
    display: grid;
    grid-template-columns: 100%;
    gap: var(--unifi-grid-gap, 5px);
    margin-inline: auto;
    margin-top: 20px;
    width: 100%;
  }
}

@media only screen and (min-width: 276px) and (max-width: 350px) {
  :root {
    --calculator-input-height: 45px;
    --calculator-idnumber-font-size: 28px;
    --calculator-amount-font-size: 36px;
    --calculator-amount-button-margin-zm: 0px;
    --calculator-amount-width: 150px;
    --calculator-apply-width: 80%;
    --calculator-apply-margin-top: 5px;
    --calculator-title-bottom-margin: 0px;
    --calculator-button-margin: 8px;
    --calculator-button-margin-inner: 0px;
  }

  .calculator {
    display: grid;
    grid-template-columns: 100%;
    gap: var(--unifi-grid-gap, 15px);
    margin-inline: auto;
    margin-top: 20px;
    width: 100%;
  }
}

@media only screen and (min-width: 351px) and (max-width: 1200px) {
  :root {
    --calculator-idnumber-font-size: 24px;
    --calculator-amount-font-size: 36px;
  }

  .calculator {
    display: grid;
    grid-template-columns: 290px;
    gap: var(--unifi-grid-gap, 15px);
    margin-inline: auto;
    margin-top: 20px;
    width: 290px;
  }
}

@media screen and (min-width: 1121px) {
  :root {
    --calculator-amount-font-size: 36px;
    --calculator-page-columns: 3;
    --calculator-idnumber-columns: 2;
    --calculator-note-above: visible;
    --calculator-note-below: hidden;
    --calculator-note-above-height: 25px;
    --calculator-note-below-height: 0px;
  }

  .calculator {
    display: grid;
    grid-template-columns: 365px 286px 400px;
    gap: var(--unifi-grid-gap, 15px);
    margin-inline: auto;
    margin-top: 20px;
    width: 1081px;
  }
}

/* iPhone */
@media only screen and (min-width: 375px) and (max-width: 900px) and (-webkit-min-device-pixel-ratio: 3) {
  :root {
    --calculator-amount-width: 11rem;
    --calculator-amount-currency-margin-top: 8px;
  }
}

body {
  font-family: var(--unifi-font-family, Courier);
}

.input-group-addon {
  text-align: center;
  align-items: center;
}

.centered {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  align-items: center;
}

.page {
  display:grid;
  grid-column: 1;
  grid-gap: var(--unifi-grid-gap, 20px);
  padding: var(--unifi-page-margin, 1rem);
  align-items: center;
  justify-content:space-between;
  border-radius: 0px 0px var(--unifi-page-border-radius, 25px) var(--unifi-page-border-radius, 25px);
  border: 0px solid var(--Unifi---Black, #000);
  background: var(--SOI-white, #FFF);
}

.desktop-only {
  display: block;
}

@media (max-width : 800px) {
  .desktop-only {
    display: none;
  }
}

#my-dropzone {
  padding: 1.25rem 0 0.875rem; border: 1px dashed #E8E8E8; background-color: #F6F6F6; border-radius: 0.5rem; color: var(--New-Green, #28443E) !important; text-decoration: none;
}

.dropzone .dz-preview.dz-image-preview {
  background: transparent;
}

.dropzone-wizard {
  width: 100%;
}

.dropzone-dashboard {
  width: 90%;
}

.unifi-card-nowrap {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: none;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0,0,0,.125);
  border-radius: 0.25rem;
}

#unifi-spinner-overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #000;
  background: rgba(241, 241, 241, 0.60);
  z-index: 999999;
  top: 0;
  left: 0;
  display: none;
}

#unifi-spinner-image {
  animation: UnifiSpinner 2s infinite linear;
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -54px;
  margin-left: -34px;
}

@keyframes UnifiSpinner {
  100% {
    transform: rotate(360deg);
  }
}

div.chat-icon {
  width: var(--unifi-chat-icon-size, 64px);
  height: var(--unifi-chat-icon-size, 64px);
  z-index: 999;
  background-image: url(/assets/img/chat.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  cursor: pointer;
}

div.chat-icon:hover {
  background-image: url(/assets/img/chat-hover.svg);
}

div.chat-icon-dashboard {
  width: var(--unifi-chat-icon-size, 64px);
  height: var(--unifi-chat-icon-size, 64px);
  z-index: 999;
  background-image: url(/assets/img/chat-dashboard.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  cursor: pointer;
}

div.chat-icon-dashboard:hover {
  background-image: url(/assets/img/chat-dashboard-hover.svg);
}

.card-header .chat-icon {
  position: absolute;
  top: 0px;
  right: 0px;
}

div.chat-icon-container {
  position: relative;
}

div.chat-icon-otp {
  position: absolute;
  top: -40px;
  right: 0px;
}

div.chat-icon-apply-note {
  position: relative;
}

div.chat-icon-reloan-apply {
  position: absolute;
  top: var(--chat-icon-reloan-apply-top, 0px);
  right: var(--chat-icon-reloan-apply-right, 0px);
}

div.chat-icon-login {
  position: absolute;
  top: 5px;
  right: 5px;
}

.chat-icon-dashboard-header {
  display: none;
  position: absolute;
  top: 5px;
  right: 65px;
}

.chat-icon-dashboard-logo {
  position: absolute;
  top: 10px;
  right: -60px;
}

.chat-icon-dashboard-spacer {
  width: 36px;
}

input {
  color: var(--New-Green, #28443E);
}

input.rounded {
  border-radius: var(--unifi-control-border-radius, 15px) !important;
}

input.unifi[type=text] {
  border: 2px none;
  border-radius: var(--unifi-control-border-radius, 15px); !important;
}

input.unifi[type=number] {
  border: none;
  border-radius: var(--unifi-control-border-radius, 15px); !important;
}

input.unifi[type=text]:focus {
  border: 2px solid var(--New-Green, #28443E);
}

input.unifi[type=number]:focus {
  border: 2px solid white;
}

input.idnumber {
  min-width: 180px;
}

div.amount-with-currency {
  position: relative;
  margin: 0px;
  border: 0px solid transparent;
  padding: 0px 25px;
  display: inline-block;
  border: 2px solid transparent;
  align-content: center;
  text-align: left;
  width: 160px;
  height: 58px;
}

label.amount-with-currency {
  position: absolute;
  left: 10px;
  width: fit-content;
  text-align: left;
  line-height: 1.5rem;
  padding: 1px 0px 1px 3px;
  margin-top: 15px;
  z-index: 9;
}

input.amount-with-currency {
  position: absolute;
  left: 0px;
  top: 0px;
  background-color: transparent;
  border: 0px solid transparent !important;
  height: 100%;
  line-height: 1.5rem;
  text-indent: 12px;
}

/* START: Calculator page styles */

.calculator-card {
  display: flex;
}

.calculator-input {
  background: var(--Sage, #60C3AD);
  border: none;
  margin-inline: auto;
  font-family: var(--unifi-font-family, Courier);
  font-weight: var(--unifi-font-weight-title, 800);
}
.calculator-input-inflow {
  background: var(--White, #FFF);
  border: none;
  text-align: center;
  width: 110px;
  height: 50px;
  margin: 0 2rem 0 2rem;
  font-family: var(--unifi-font-family, Courier);
  font-weight: var(--unifi-font-weight-title, 800);
  font-size: var(--calculator-amount-font-size, 36px);
}
.calculator-amount-block {
  height: var(--calculator-block-height, 90px);
  width: 100%;
  flex-shrink: 0;
  border-radius: var(--unifi-block-border-radius, 15px);
  background: var(--Sage, #60C3AD);
  color: var(--White, #FFF);
  text-align: center;
  font-size: var(--unifi-font-size-normal, 13px);
  font-style: normal;
  line-height: 120%; /* 15.6px */
}

.calculator-amount-title {
  margin-top: 10px;
  width: 100%;
  height: 24px;
  flex-shrink: 0;
  color: var(--White, #FFF);
  text-align: center;
  font-size: var(--unifi-font-size-normal, 13px);
  font-style: normal;
  font-weight: var(--unifi-font-weight-title, 800);
  line-height: 120%; /* 15.6px */
}

.calculator-amount {
  position: relative;
  color: var(--New-Green, #28443E);
  text-align: center;
  font-size: var(--calculator-amount-font-size, 42px);
  font-style: normal;
  font-weight: var(--unifi-font-weight-title, 800);
  vertical-align: center;
}

.calculator-amount-editor {
  position: relative;
  margin: 0px;
  border: 0px solid transparent;
  /* padding: 0px 25px; */
  display: inline-block;
  border: 2px solid transparent;
  /* align-content: center; */
  text-align: left;
  width: var(--calculator-amount-width, 170px);
  height: 58px;
}


.calculator-amount-currency {
  /* position: absolute; */
  font-size: var(--calculator-amount-font-size, 42px);
  left: 0px;
  height: 100%;
  width: fit-content;
  text-align: left;
  line-height: 1.5rem;
  padding: 1px 0px 1px 3px;
  margin-top: 15px;
  vertical-align: bottom;
}

.calculator-amount-currency {
  font-weight: var(--unifi-font-weight-title, 800);
}

.calculator-amount-input {
  position: absolute;
  left: 6px;
  top: 0px;
  padding-top: 1px;
  background-color: transparent;
  border: 0px solid transparent !important;
  height: 100%;
  width: 100%;
  line-height: 1.5rem;
  text-align: center;
  text-indent: 10px;
  font-weight: var(--unifi-font-weight-title, 800);
}

.calculator-amount-input:focus {
  background-color: transparent;
  border: 0px solid transparent !important;
}

.calculator-term-block {
  height: var(--calculator-block-height, 90px);
  width: 100%;
  flex-shrink: 0;
  text-align: center;
  border-radius: var(--unifi-block-border-radius, 15px);
  background: var(--Sage, #60C3AD);
}

.calculator-term-block-wizard {
  height: var(--calculator-block-height, 90px);
  width: 100%;
  flex-shrink: 0;
  text-align: center;
  border-radius: var(--unifi-block-border-radius, 15px);
  background: var(--White, #FFF);
}
.calculator-term-title {
  margin-top: 10px;
  width: 100%;
  height: 24px;
  flex-shrink: 0;
  color: var(--White, #FFF);
  text-align: center;
  font-size: var(--unifi-font-size-normal, 13px);
  font-style: normal;
  font-weight: var(--unifi-font-weight-title, 800);
  line-height: 120%;
}

.calculator-term {
  position: relative;
  color: var(--New-Green, #28443E);
  text-align: center;
  font-size: var(--calculator-amount-font-size, 42px);
  font-style: normal;
  font-weight: var(--unifi-font-weight-title, 800);
  line-height: 100%; /* 42px */
  height: 58px;
}

.calculator-term-wizard {
  position: relative;
  color: var(--White, #FFF);
  text-align: center;
  font-size: var(--calculator-amount-font-size, 42px);
  font-style: normal;
  font-weight: var(--unifi-font-weight-title, 800);
  line-height: 100%; /* 42px */
  height: 58px;
}
.calculator-term-input {
  width: 100px;
  height: 50px;
  line-height: 1.5rem;
  padding-top: 8px;
  text-align: center;
  font-size: var(--calculator-amount-font-size, 42px);
  font-style: normal;
  font-weight: var(--unifi-font-weight-title, 800);
}

.calculator-estimate-block-inline {
  width: 100%;
  height: var(--calculator-block-height, 90px);
  text-align: center;
  justify-content: center;
  border-radius: var(--unifi-block-border-radius, 15px);
  background: var(--White, #FFF);
}

.calculator-estimate-block {
  width: 100%;
  height: var(--calculator-block-height, 90px);
  text-align: center;
  justify-content: center;
  border-radius: var(--unifi-block-border-radius, 15px);
  background: var(--Sage, #60C3AD);
}
.calculator-estimate-title-inline {
  width: 100%;
  height: 10px;
  margin-top: 10px;
  color: var(--Unifi---Black, #000);
  text-align: center;
  font-size: var(--unifi-font-size-normal, 13px);
  font-style: normal;
  font-weight: var(--unifi-font-weight-title, 800);
  line-height: 120%;
}
.calculator-estimate-title {
  width: 100%;
  height: 10px;
  margin-top: 10px;
  color: var(--White, #FFF);
  text-align: center;
  font-size: var(--unifi-font-size-normal, 13px);
  font-style: normal;
  font-weight: var(--unifi-font-weight-title, 800);
  line-height: 120%;
}

.calculator-estimate {
  width: 100%;
  height: 64px;
  left: 95px;
  padding-top: 25px;
  text-align: center;
  font-family: var(--unifi-font-family, Courier);
  font-size: var(--calculator-amount-font-size, 42px);
  font-weight: var(--unifi-font-weight-title, 800);
  font-style: normal;
  line-height: 100%;
}

.calculator-idnumber-block {
  grid-column: span var(--calculator-idnumber-columns, 1);
  width: 100%;
  height: var(--calculator-idnumber-block-height, 114px);
  border-radius: var(--unifi-block-border-radius, 15px);
  background: var(--Sage, #60C3AD);
}

.calculator-idnumber-title {
  grid-column: span var(--calculator-page-columns, 1);
  width: 100%;
  height: 20px;
  margin-top: 10px;
  color: var(--White, #FFF);
  text-align: center;
  font-size: var(--unifi-font-size-normal, 13px);
  font-style: normal;
  font-weight: var(--unifi-font-weight-title, 800);
  line-height: 120%;
}

.calculator-idnumber-input {
  margin-inline: auto;
  border-radius: var(--unifi-block-border-radius, 15px);
  font-family: var(--unifi-font-family, Courier);
  font-weight: var(--unifi-font-weight-title, 800);
  font-size: var(--calculator-idnumber-font-size, 13px);
  width: 90%;
  height: 55px;
  padding-top: 2px;
  text-align: center;
}

.calculator-apply-block {
  position: relative;
  display: grid;
  grid-template-columns: 100%;
  grid-gap: 0px;
  height: 100%;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.calculator-apply {
  justify-content: center;
  align-items: center;
}

.calculator-apply-button {
  height: auto;
  width: 100%;
  max-width: 291px;
  background: var(--Red-Gradient, linear-gradient(307.12deg,#96191B 34.46%,#FF3D2D 92.16%));
  border-radius: 28px;
  border: none;
  cursor: pointer;
}

.calculator-apply-note {
  float: top;
}

.calculator-apply-block table {
  width: 100%;
  height: 64px;
}

.calculator-apply-note-above {
  position: relative;
  top: 0px;
  visibility: var(--calculator-note-above, hidden);
  height: var(--calculator-note-above-height, 0px);
  width: 100%;
  margin: auto;
  padding-top: 0px;
  color: rgba(0, 0, 0, 0.40);
  vertical-align: top;
  text-align: center;
  font-size: var(--unifi-font-size-normal, 13px);
  font-style: normal;
  font-weight: var(--unifi-font-weight-footnote, 300);
  line-height: 110%;
}

.calculator-apply-note-below {
  visibility: var(--calculator-note-below, visible);
  height: var(--calculator-note-below-height, unset);
  width: 100%;
  margin: auto;
  color: rgba(0, 0, 0, 0.40);
  text-align: center;
  font-size: var(--unifi-font-size-normal, 13px);
  font-style: normal;
  font-weight: var(--unifi-font-weight-footnote, 300);
  line-height: 110%;
}

.calculator-errors-block {
  grid-column: span var(--calculator-page-columns, 1);
}

.calculator-loading {
  grid-column: span var(--calculator-page-columns, 1);
}

.btn-min {
  position: absolute;
  left: 0px;
  width: 36px;
  height: 36px;
  float: left;
  background-color: white;
  border-radius: 18px;
  border: none;
  padding: 8px;
  margin-left: var(--calculator-button-margin,20px);
  margin-right: var(--calculator-button-margin-inner,8px);
  margin-top: 8px;
  z-index: 99 !important;
  cursor: pointer;
}

.btn-add {
  position: absolute;
  right: 0px;
  width: 36px;
  height: 36px;
  float: right;
  background-color: white;
  border-radius: 18px;
  border: none;
  padding: 8px;
  margin-right: var(--calculator-button-margin,20px);
  margin-left: var(--calculator-button-margin-inner,8px);
  margin-top: 8px;
  z-index: 99 !important;
  cursor: pointer;
}

input.calculator {
  background-color: transparent;
  text-align: center;
  width: 150px;
  border: 0px;
  font-size: var(--unifi-font-size-amount-large, 13px);
  font-style: normal;
  font-weight: var(--unifi-font-weight-title, 800);
}

/* END: Calculator page styles */

.unifi-calc {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: none;
  background-color: #fff;
  background-clip: border-box;
  border-radius: 0.25rem;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
  margin-bottom: 10px;
}

.successmsg {
  font-size: 10px;
}

#alertsuccessdiv {
  display: none;
  margin-top: 15px;
  margin-bottom: 15px;
  cursor: pointer;
  text-align: center;
}

#alerterrordiv, #alerterrordiv2 {
  color: #cf212a;
  display: none;
  margin-top: 15px;
  margin-bottom: 15px;
  cursor: pointer;
  text-align: center;
}

div .errormsg {
  display: inline-block;
  clear: both;
  color: #cf212a;
  font-size: 10px;
}

 div .standard-spacing-line {
  padding: auto;
  padding-top: 20px;
  width: 100%;
}

#countdown {
  position: relative;
  height: 60px;
  width: 60px;
  text-align: center;
  align-items: center;
  background-color: #E8E8E8;
  border-radius: 50%;
  margin: auto;
}
#countdown-number { color: black; display: inline-block; line-height: 60px; height: 60px; width: 60px; text-align: center; font-size: 1.375rem; padding-left: -30px; }
svg { position: absolute; top: 0; right: 0; width: 60px; height: 60px; transform: rotateY(-180deg) rotateZ(-90deg); }
svg circle {  stroke-dasharray: 183px; stroke-dashoffset: 0px; stroke-linecap: round; stroke-width: 3px; stroke: #60C3AD; fill: none; animation: countdown 60s linear 1 forwards;}

@keyframes countdown {
  from {
    stroke-dashoffset: 0px;
  }
  to {
    stroke-dashoffset: 183px;
  }
}
.accordion { margin-bottom: 2rem; }
.accordion-body { padding: 1.8rem 2rem 1rem 2rem; }
#accordionProof .accordion-body { padding: 0.875rem 2.375rem 1rem 2.0625rem; }

@media only screen and (min-width: 767px) {
    .accordion-body { padding: 1.425rem 2rem 1rem 3.125rem; }
    #accordionProof .accordion-body { padding: 0.875rem 2.375rem 1rem 2.0625rem; }
}
.accordion-item {
    background-color: #fff;
    border: 1px solid #E8E8E8;
    border-radius: 0.5rem;
}
.accordion-button {
    padding: 0;
    display: block;
    background-color: #F6F6F6;
    color: #212529 !important;
}

.accordion-button::after {
    width: 0;
    height: 0;
    background-image: none;
}

.accordion-button:not(.collapsed)::after {
    background-image: none;
    transform: none;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-item:last-of-type {
    border-bottom-right-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
}
.accordion-item:first-of-type {
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}
.accordion-item:first-of-type .accordion-button {
    border-radius: 0.5rem;
}
.accordion-item:first-of-type .accordion-button.collapsed {
    border-radius: 0.5rem;
}
.accordion-item:first-of-type .accordion-button:not(.collapsed) {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}
.accordion-item:last-of-type .accordion-button.collapsed {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.accordion-item:first-of-type .accordion-button:not(.collapsed) .card {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

/* BEGIN: credit-information page styles */

.credit-commitment h4 { font-size: 1rem; font-weight: 500; margin-bottom: 0.3125rem;}
.credit-commitment-dates { font-size: 0.875rem; font-weight: 400; color: #808080; margin-bottom: 1.0625rem; }
.credit-commitment-excluded { color: #E23D2D; margin-top: 1rem; font-style: italic; }

.credit-info-panel {
  width: 100%;
}

.credit-info-title {
  width: 75%;
  float: left;
}

.credit-info-amount {
  width: 20%;
  float: right;
  overflow-wrap: normal;
  text-align: right;
  min-width: 4rem;
}

/* END: credit-information page styles */

.tab-pane { padding-top: 1.375rem; }
.your-loan, .reloan-basic { margin-bottom: 1rem; border-bottom: 1px solid #E8E8E8; padding-right:  10px; /* padding-bottom: 1rem; */ }
.reloan-basic { padding-bottom: 1rem; }
.your-loan-terms ul { list-style-type:none; list-style-position: outside; padding-left: 1rem; }
.your-loan-terms p, .your-loan-terms li { font-size: 0.75rem }
.your-loan:last-child { border-bottom: 1px solid transparent; }

.your-loan-headers { font-size: 0.875rem; margin-bottom: 1rem; }
.reloan-basic .your-loan-headers { font-size: 0.75rem; margin-bottom: 1.5rem; }

#accordionProof .your-loan { margin-bottom: 0; border-bottom: none; padding-bottom: 1rem; }
#accordionProof .your-loan-headers { margin-bottom: 0.5rem; }

.your-loan-values { font-size: 1rem; font-weight: 700; color: #60C3AD; text-align: end; }
.reloan-basic .your-loan-values { font-weight: 500; color: var(--New-Green, #28443E); }


.your-loan-fees {font-size: 0.875rem; color: #666666}
.accordion-button:not(.collapsed) .card-proof .your-loan-headers {
  color: #212529 !important;
}

label.btn-primary {
  font-size: var(--unifi-font-size-label, 16px) !important;
  padding-top: 15px;
}

a.btn-primary {
  font-size: var(--unifi-font-size-button, 14px) !important;
  padding-top: 15px;
  align-text: center;
}

.btn-primary {
  font-size: var(--unifi-font-size-button, 14px);
  font-weight: var(--unifi-font-weight-title, 800);
  border-color: var(--unifi-button-background-color, #28443E);
  background-color: var(--unifi-button-background-color, #28443E);
  border-radius: var(--unifi-button-border-radius, 28px);
  border-width: var(--unifi-border-width, 2px);
  height: var(--unifi-button-height, 28px);
  color: white;
  padding: 0.75rem 2rem;
  align-text: center;
}

.btn-primary:focus {
  color: var(--unifi-button-background-color, #28443E);
  border-color: var(--unifi-button-background-color, #28443E);
  background-color: white;
  box-shadow: none;
  cursor: pointer;
}

.btn-primary:hover {
  color: var(--unifi-button-background-color, #28443E) !important;
  border-color: var(--unifi-button-background-color, #28443E);
  background-color: white;
}

.btn-primary:disabled {
  color: var(--unifi-button-background-color, #28443E);
  border-color: var(--unifi-button-background-color, #28443E);
  background-color: white;
  opacity: 0.6;
}

.btn-primary:active {
  color: var(--unifi-button-background-color, #28443E);
  border-color: var(--unifi-button-background-color, #28443E);
  background-color: white;
  opacity: 0.6;
}

label.btn-secondary {
  font-size: var(--unifi-font-size-label, 16px) !important;
  height: unset;
  width: 50%;
}

a.btn-secondary {
  font-size: var(--unifi-font-size-button, 14px) !important;
  padding-top: 15px;
  align-text: center;
}

.btn-secondary {
  font-size: var(--unifi-font-size-button, 14px);
  font-weight: var(--unifi-font-weight-title, 800);
  border-radius: var(--unifi-button-border-radius, 28px);
  border-width: var(--unifi-border-width, 2px);
  height: var(--unifi-button-height, 28px);
  border-color: #A6A6A6;
  background-color: #A6A6A6;
  color: #fff;
  padding: 0.75rem 2rem;
  align-text: center;
}

.btn-secondary:focus {
  color: #A6A6A6;
  background-color: white;
  box-shadow: none;
  cursor: pointer;
}

.btn-secondary:hover {
  color: #A6A6A6;
  background-color: white;
}

.btn-secondary:disabled {
  color: #A6A6A6;
  background-color: white;
  opacity: 0.6;
}

.btn-secondary:active {
  color: #A6A6A6;
  background-color: white;
  opacity: 0.6;
}

.btn-link { text-decoration: none; padding-right: 0; padding-left: 0; color: #60C3AD; }
.btn-light { font-size: 1rem; font-weight: 500; border-radius: 6.25rem; margin:0; border-color: #F6F6F6; background-color: #F6F6F6; color: var(--New-Green, #28443E); padding: 0.75rem 2rem; }
.btn-darker {
  margin:0;
  border-color: #A6A6A6;
  background-color: #A6A6A6;
  color: #fff;
  padding: 0.75rem 2rem;
  font-size: var(--unifi-font-size-button, 14px);
  font-weight: var(--unifi-font-weight-title, 800);
  border-radius: var(--unifi-button-border-radius, 28px);
  border-width: var(--unifi-border-width, 2px);
}

.btn-darker:hover {
  background-color: white !important;
  color: black !important;
}

.btn-darker:focus {
  background-color: white !important;
  color: black !important;
}

.btn-darker:hover {
  background-color: white !important;
  color: black !important;
}

.btn-darker:active {
  background-color: white !important;
  color: black !important;
}

.btn-offers {text-decoration: none; color: #3E3E3E !important; font-weight:500 !important; border: none; line-height: 1.25;}
.btn-offers:hover { color: #A6A6A6 !important; }
.btn-offers img {margin-right:  1.5rem}

.btn-otp {font-size: 0.875rem; text-decoration: none; color: #3E3E3E !important; font-weight:500 !important; border: none; line-height: 1.25;}
.btn-otp-disabled {font-size: 0.875rem; text-decoration: none; color: #A6A6A6 !important; font-weight:500 !important; border: none; line-height: 1.25; cursor: default;}
.btn-otp:hover { color: #A6A6A6 !important; }
.btn-otp img {margin-right:  0.75rem}

.btn-trueid { color: #60C3AD; border-color: #F6F6F6; background-color: #F6F6F6; border-radius: 0.5rem; font-weight: 500; font-style: italic; font-size: 0.875rem; padding: 1.5625rem 0 1.375rem; margin-bottom: 5.25rem }
.btn-autowidth { width: auto !important; }
.accordion-header .btn-credit-less {pointer-events: none; font-size: 0.875rem }
.accordion-body .btn-credit-less, .btn-excluded-less  { font-size: 0.875rem }


#personalInformationOne .card.card-info h4 { margin-bottom:0; }
#personalInformationOne .card.card-info p { line-height: 20px }

.btn-dark { font-size: 1rem; margin-bottom: 1rem; border-radius: 0.5rem; color: var(--New-Green, #28443E) !important; background-color: #C6C6C6; border-color: #C6C6C6; font-weight: 500 !important; }
.btn-dark:hover {border-color: #38AC9C; background-color: var(--Sage, #60C3AD); color: #fff !important;}
.btn-check:focus+.btn-dark, .btn-dark:focus {
    color: #fff;
    background-color: var(--Sage, #60C3AD);
    border-color: #38AC9C;
    box-shadow: none;
}

.btn-check:active+.btn-secondary, 
.btn-check:checked+.btn-secondary, 
.btn-secondary.active, 
.btn-secondary:active,
.show>.btn-secondary.dropdown-toggle { color: #fff;background-color: var(--Sage, #60C3AD);border-color: #38AC9C;}

.proof-of-income-btns .btn-primary, 
.proof-of-income-btns .btn-secondary { width: 100%;  }
.buttons-switch .btn:nth-child(2) { border-top-right-radius: 0; border-bottom-right-radius: 0; margin-left: 2px; margin-right: 2px; }
.buttons-switch .btn:last-child { border-top-left-radius: 0; border-bottom-left-radius: 0; margin-left: 2px; margin-right: 2px; }
.buttons-switch.btn-switch-login .btn:nth-child(2) { border-top-right-radius: 0; border-bottom-right-radius: 0; margin-left: 2px; margin-right: 2px; }
.buttons-switch.btn-switch-login .btn:nth-child(4) { border-radius: 0; margin-left: 2px; margin-right: 2px; }
.buttons-switch.btn-switch-login .btn:last-child { border-top-left-radius: 0; border-bottom-left-radius: 0; margin-left: 2px; margin-right: 2px; }
.invalid-feedback { margin-top: -1rem; }
.btn-remove {
    display: inline-block;
    border-radius: 10px;
    background-color: #60C3AD;
    border: solid transparent;
    font-weight: 400;
    text-align: center;
    text-decoration: if($link-decoration == none, null, none);
    cursor: if($enable-button-pointers, pointer, null);
    user-select: none;
}
.btn-remove:hover {
    color: #fff;
}

.main-footer {
    background-color: #3C3C3B;
    padding: 16px 0 16px;
    color: white;
    font-family: nexabook, sans-serif;
}
.main-footer p {
    margin-top: 0;
    margin-bottom: 0;
}

.btn-full-width { width: 100%; }

@media only screen and (min-width: 767px) {
    .credit-commitment h4 { font-size: 1.25rem; margin-bottom: 0.5rem;}
    .credit-commitment-dates { font-size: 1rem; margin-bottom: 1.5rem; }
    .accordion-header .btn-credit-less, .accordion-body .btn-credit-less, .btn-excluded-less { font-size: 1rem; }
    .btn-dark { margin-bottom: 1rem; border-radius: 0.5rem; font-size: 1.125rem; }
    .btn-light { font-size: 1rem; border-radius: 6.25rem;  padding: 0.75rem 3.5625rem; }
    .btn-primary { font-size: 1rem; border-radius: 6.25rem;  padding: 0.75rem 3.5625rem; }
    .your-loan-terms p, .your-loan-terms li { font-size: 0.875rem }
}

@media (min-width: 992px) {
  footer { margin-top: 90px; }
}

#pills-your-loan-tab, #pills-can-get-tab { height: 100%; }

.btn-file-action{
margin-top: 20px;

}


.tab-unifi.nav-pills .nav-link.nav-arrow {
  width:100%;
  background-color: #d0797c; 
  color: white;
  border-radius:0;
  max-width: 258px; 
  font-size: 1rem; 
  font-weight: 500; 
  background-color: rgba(208,121,124,1);
}

.tab-unifi.nav-pills .nav-link.active { 
  background-color: #60C3AD;
}
.tab-unifi.nav-pills #pills-can-get-tab.nav-link.nav-arrow > span {font-weight: 700}

/* arrows for tabs buttons */
.tab-unifi.nav-pills .nav-link.nav-arrow.active:after,
.tab-unifi.nav-pills .nav-link.nav-arrow.active:before {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.tab-unifi.nav-pills .nav-link.nav-arrow.active:after {
  border-color: transparent;
  border-top-color: transparent;
  border-width: 10px;
  margin-left: -10px;
}

.btn-accept, .btn-decline { width: auto; }
.fancy-line {
  line-height: 0.5;
  text-align: center;
  margin: 1.3125rem 0;width: 100%; max-width: 100%;
}
.fancy-line span {
  display: inline-block;
  position: relative;  
}
.fancy-line span:before,
.fancy-line span:after {
  content: "";
  position: absolute;
  height: 5px;
  border-top: 1px solid #E8E8E8;
  top: 50%;
  width: 243px;
}
.fancy-line span:before {
  right: 100%;
  margin-right: 15px;
}
.fancy-line span:after {
  left: 100%;
  margin-left: 15px;
}

.loader {
  margin: auto;
  border: 20px solid #EAF0F6;
  border-radius: 50%;
  border-top: 20px solid #60C3AD;
  width: 200px;
  height: 200px;
  animation: spinner 4s linear infinite;
}

@keyframes spinner {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.fancy-line {
  line-height: 0.5;
  text-align: center;
  margin: 1.3125rem 0 2.3125rem 0;width: 100%; max-width: 100%;
}
.fancy-line span {
  display: inline-block;
  position: relative;  
}
.fancy-line span:before,
.fancy-line span:after {
  content: "";
  position: absolute;
  height: 5px;
  border-top: 1px solid #E8E8E8;
  top: 50%;
  width: 243px;
}
.fancy-line span:before {
  right: 100%;
  margin-right: 15px;
}
.fancy-line span:after {
  left: 100%;
  margin-left: 15px;
}

.body-calc {
  font-family: var(--unifi-font-family, Courier);
  font-weight: var(--unifi-font-family-default, 400);
  background-image: none;
  background-size: cover;
  background-color: transparent;
  padding-top: 0;
  margin: 0;
  height: 100%;
  width: 100%;
}


.collapsible-quote-afford {
  cursor: pointer;
  padding: 0;
  width: 100%;
  text-align: left;
  outline: none;
  margin:0;
  outline: none;
}

    

.content-quote-afford {
  padding: 18px 0;
  display: none;
  overflow: hidden;
}	

input[type='checkbox'], input[type='radio'] { filter: grayscale(1) }

a {
  color: #60C3AD; 
}
.spinner-submit{ color: #60C3AD; }
.text-primary{ color: #60C3AD!important; }

.panel {
  background-color: inherit;
}

.panel-heading {
  border-radius: var(--unifi-block-border-radius, 15px);
  margin-bottom: var(--unifi-page-margin, 1rem);
}

.panel-page-heading {
  background-color: var(--Sage,#60C3AD) !important;
}

.panel-page-heading > .panel-title {
  font-size: var(--unifi-font-size-page-title, 42px) !important;
  font-weight: var(--unifi-font-weight-title, 800) !important;;
  color: var(--Dark-Green, #28443E);
  font-color: black;
  margin-left: 30px;
  margin-top: 0px !important;
}

.align-step-items {
  display: flex;
  align-items: flex-end;
}



table.bankStatementInstructions {
  background-color: #EEEEEE;
  width: 100%;
  text-align: left;
  border-collapse: collapse;
}
table.bankStatementInstructions td, table.bankStatementInstructions th {
  padding: 3px 4px;
}


table.bankStatementInstructions  tr:nth-child(even) {
  background-color: #afafaf; /* Light grey background for even rows */
  }

/* Optional: Apply a different background color to odd rows */
table.bankStatementInstructions  tr:nth-child(odd) {
  background-color:#FFFFFF ; /* White background for odd rows (or omit for default) */
}

table.bankStatementInstructions thead th {
  font-size: 15px;
  font-weight: bold;
  color: rgb(83, 83, 83);
  background-color: #afafaf;
}
table.bankStatementInstructions thead th:nth-child(2) {
  border-top-right-radius: var(--unifi-block-border-radius, 15px) !important;
}

table.bankStatementInstructions thead th:nth-child(1) {
  border-top-left-radius: var(--unifi-block-border-radius, 15px) !important;
}

table.bankStatementInstructions tfoot td {
  font-size: 14px;
}
table.bankStatementInstructions tfoot .links {
  text-align: right;
}
table.bankStatementInstructions tfoot .links a{
  display: inline-block;
  background: #1C6EA4;
  color: #FFFFFF;
  padding: 2px 8px;
}

table.bankStatementInstructions .centered-column {
  text-align: center;
}

.proofOfIncome{
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 20px;
  height: auto;
}

div .standard-spacing-1-line {
  padding: auto;
  padding-top: 1px;
  width: 100%;
}