@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');.generic-card {
  background-color: var(--neutral-0);
  border-radius: 4px;
  box-shadow: 0 13px 14px 0 rgba(19, 72, 89, 0.04);
  box-sizing: border-box;
  margin-top: 10px;
  padding: 16px 32px;
  width: 100%;
}

.generic-card-title {
  color: var(--neutral-95);
}
.input-slider-container {
  display: flex;
  flex-direction: row;
  width: 652px;

  .label {
    color: var(--text-default);
  }

  .label-block {
    display: flex;
    flex: 1;
    flex-direction: column;
    input {
      :disabled {
        background-color: var(--neutral-15);
        border: none;
      }
    }
  }

  .lock-slider {
    &::-webkit-slider-runnable-track {
      background-color: var(--slider-grey);
    }

    &::-webkit-slider-thumb {
      opacity: 0;
    }

    &::-moz-range-thumb {
      opacity: 0;
    }

    &::-ms-thumb {
      opacity: 0;
    }
  }

  .min-and-max-label,
  .max-label,
  .min-label {
    color: var(--text-light);
    flex: 1;
  }

  .max-label {
    text-align: right;
  }

  .min-label {
    text-align: left;
  }

  .general-slider {
    &::-webkit-slider-runnable-track {
      border: solid 1px var(--slider-grey);
      height: 6px;
      margin-top: -1px;
    }
    &::-webkit-slider-thumb {
      -webkit-appearance: none;
      background-color: var(--tertiary);
      border: 2px solid white;
      border-radius: 10px;
      box-shadow: 0 2px 14px 0 rgba(0, 0, 0, 0.15);
      cursor: pointer;
      height: 39px;
      margin-top: -16px;
      width: 17.62px;
    }
    &::-moz-range-thumb {
      background-color: var(--tertiary);
      border: 2px solid white;
      border-radius: 10px;
      box-shadow: 0 2px 14px 0 rgba(0, 0, 0, 0.15);
      cursor: pointer;
      height: 39px;
      width: 17.62px;
    }
    &::-ms-thumb {
      background-color: var(--tertiary);
      border: 2px solid white;
      border-radius: 10px;
      box-shadow: 0 2px 14px 0 rgba(0, 0, 0, 0.15);
      cursor: pointer;
      height: 39px;
      width: 17.62px;
    }
    &::-moz-range-track {
      border: solid 1px var(--slider-grey);
      height: 6px;
      margin-top: -1px;
    }
  }

  .partial-slider {
    &::-webkit-slider-thumb {
      opacity: 1;
    }

    &::-moz-range-thumb {
      opacity: 1;
    }

    &::-ms-thumb {
      opacity: 1;
    }
  }

  .shadowed-value {
    color: var(--text-light);
    text-align: right;
  }

  .slider-block {
    box-sizing: border-box;
    display: flex;
    flex: 3;
    flex-direction: column;
    margin-left: 40px;
    padding-top: 24px;

    input[type='range'] {
      -webkit-appearance: none;
      appearance: none;
      background-color: transparent;
    }
    input[type='range'] :focus {
      outline: none;
    }
  }

  .slider-labels {
    display: flex;
    flex-direction: row;
    margin-top: 10px;
    width: 100%;
  }

  .text-input-unlocked,
  .text-input-locked {
    box-sizing: border-box;
    color: var(--text-default);
    height: 39px;
    letter-spacing: 0.45px;
    line-height: 24px;
    padding-right: 10px;
    text-align: right;
    width: 100%;
  }
  .text-input-unlocked {
    background-color: var(--text-default-on-dark);
    border: 1px solid #d1d1d1;
    border-radius: 3px;
  }

  .text-input-locked {
    background-color: var(--neutral-15);
    border: none;
  }

  .lock-icon-div {
    background: url('/imgs/lock-icon.svg') center no-repeat scroll;
    border-width: 0;
    height: 24px;
    padding-left: 10px;
    padding-top: 60px;
    position: absolute;
    width: 24px;
  }
}

.hide-additional-info {
  max-height: 0;
  max-width: 652px;
  overflow: hidden;
  transition: max-height 0.5s, overflow 0s;
}

.show-additional-info {
  max-height: 128px;
  max-width: 652px;
  transition: max-height 0.5s, overflow 1s;
}
.information-section-info {
  background-color: var(--info-light);
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  padding: 10px;

  div {
    color: var(--tertiary);
    padding-left: 10px;
  }

  .information-section-info-icon {
    fill: var(--tertiary);
    height: 18.33px;
    position: relative;
    top: 2px;
    width: 18.33px;
  }
}
.percentage-tool-tip-wrapper {
  position: relative;
  height: 0px;
  width: 0px;

  .percentage-tool-tip-text {
    margin: 0px;
    padding: 2px 8px;

    ::before {
      border: 10px solid transparent;
      border-top-color: var(--primary);
      content: '';
      display: block;
      height: 0;
      left: 190px;
      position: absolute;
      top: 100%;
      width: 0;
    }
  }

  ::after {
    border: 9px solid transparent;
    border-top-color: var(--neutral-0);
    content: '';
    display: block;
    left: 191px;
    top: 100%;
    width: 0;
    height: 0;
    position: absolute;
  }

  .percentage-tool-tip-text-iso {
    color: var(--tertiary);
  }

  .tool-tip-percent {
    color: var(--primary-dark);
    font-weight: 600;
    padding-right: 10px;
    padding-right: 5px;
  }

  .tool-tip-style {
    left: 220px;
    bottom: 40px;
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    border: 1px solid var(--primary);
    background: rgba(255, 255, 255);
    width: 265px;
    border-radius: 2px;
    box-shadow: 0 2px 14px 0 rgba(0, 0, 0, 0.14);
    margin-bottom: 15px;
    text-align: center;
  }
  .hidden {
    display: none;
  }
}
.multi-thumb-slider-container {
  display: flex;
  padding-bottom: 15px;

  input[type='range'] {
    -webkit-appearance: none;
    appearance: none;
    background-color: transparent;
  }

  input[type='range'] :focus {
    outline: none;
  }

  .slider {
    box-shadow: 0 2px 14px 0 rgba(0, 0, 0, 0.15);
    position: relative;
    width: 100%;
  }

  .slider-default-track {
    background-color: var(--slider-grey);
    height: 6px;
    position: absolute;
    width: 100%;
    z-index: 0;
  }

  .thumb,
  .main-range-slider,
  .sub-range-slider {
    height: 0;
    outline: none;
    position: absolute;
    width: 100%;
  }

  .main-range-slider {
    z-index: 4;
    &::-webkit-slider-thumb {
      -webkit-appearance: none;
      -webkit-tap-highlight-color: transparent;
      background-color: var(--tertiary);
      border: 2px solid white;
      border-radius: 10px;
      box-shadow: 0 2px 14px 0 rgba(0, 0, 0, 0.15);
      cursor: pointer;
      height: 39px;
      margin-top: -14px;
      pointer-events: all;
      width: 17.62px;
    }

    &::-moz-range-thumb {
      background-color: var(--tertiary);
      border: 2px solid white;
      border-radius: 10px;
      box-shadow: 0 2px 14px 0 rgba(0, 0, 0, 0.15);
      cursor: pointer;
      height: 39px;
      pointer-events: all;
      width: 17.62px;
    }

    &::-moz-range-progress {
      background-color: var(--slider-blue);
      height: 6px;
    }
  }

  .sub-range-slider {
    z-index: 3;

    &::-webkit-slider-thumb {
      -webkit-appearance: none;
      -webkit-tap-highlight-color: transparent;
      background-color: var(--primary);
      border: 2px solid white;
      border-radius: 10px;
      box-shadow: 0 2px 14px 0 rgba(0, 0, 0, 0.15);
      cursor: pointer;
      height: 20px;
      margin-top: -7px;
      pointer-events: all;
      position: relative;
      width: 9px;
    }

    &::-moz-range-thumb {
      background-color: var(--primary);
      border: 2px solid white;
      border-radius: 10px;
      box-shadow: 0 2px 14px 0 rgba(0, 0, 0, 0.15);
      cursor: pointer;
      height: 15px;
      pointer-events: all;
      position: relative;
      width: 5px;
    }
  }
}
.checkbox-button-container,
.checkbox-button-container-active {
  cursor: pointer;
  margin-left: 10px;
  padding: 5px;
  padding-left: 10px;
  box-sizing: border-box;
  height: 42px;
  width: 240px;
  vertical-align: middle;
  border: 1px solid var(--text-default);
  background-color: var(--text-default-on-dark);

  input {
    float: right;
  }
  input[type='radio'] {
    -webkit-appearance: none;
    appearance: none;
    display: inline-flex;
    height: 24px;
    position: relative;
    width: 24px;
  }
  input[type='radio']::before {
    background-image: url('/imgs/empty-circle.svg');
    content: '';
    height: 24px;
    left: 0;
    position: absolute;
    top: 0;
    transform: translateY(-2px);
    transition: 120ms all ease-in-out;
    width: 24px;
  }
  input[type='radio']:checked::before {
    background-image: url('/imgs/circle-checkmark.svg');
    content: '';
    height: 24px;
    left: 0;
    position: absolute;
    top: 0;
    transition: 120ms all ease-in-out;
    transform: translateY(-2px);
    width: 24px;
  }
}

.checkbox-container-active {
  border: 2px solid var(--primary);
  input {
    &:checked {
      background-color: var(--text-default-on-dark);
    }
  }
}

.checkbox-button-checkmark-label {
  color: var(--text-default);
  cursor: pointer;
  flex: 1;
  font-weight: 600;
  text-align: left;
  text-transform: uppercase;
  vertical-align: middle;
}
.checked-list-item-block {
  display: flex;
  flex-direction: row;

  .check-icon {
    height: 12px;
    width: 16px;
  }

  .check-icon-wrapper {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-right: 10px;
    margin-top: 5px;
    width: 16px;
  }

  .text {
    color: var(--text-default);
    font-size: 16px;
    letter-spacing: 0.3px;
  }
}
.error-modal-body {
  align-items: center;
  color: var(--text-default);
  display: flex;
  flex-direction: column;
  padding-bottom: 50px;
}

.error-modal-title {
  color: var(--text-default);
  margin: 22px 0 32px 0;
}

.error-modal-text {
  margin: 0 55px 35px 55px;
  text-align: center;
}
.dropdown-section-block {
  background-color: #f3f6f7;
  border-radius: 4px;
  flex: 3;
  height: 65px;
  margin: 2px;
  margin-bottom: 10px;
  padding-left: 15px;
  padding-top: 10px;

  .dropdown-block {
    color: var(--shade-blue);
    height: 24px;
  }

  .dropdown-section {
    display: flex;
    flex-direction: row;
  }

  .dropdown-title {
    color: var(--tertiary);
    font-weight: 600;
    height: 20px;
    padding-bottom: 5px;
  }

  .dropdown-container {
    display: flex;
    flex-direction: column;
    margin: 0;
    text-align: left;
    width: auto;

    select {
      appearance: none;
      background: url('/imgs/chevron-down.svg') 97% 50% no-repeat scroll;
      background-color: #ffffff;
      background-repeat: no-repeat;
      color: var(--tertiary);
      padding-left: 12px;
      width: 251px;
      height: 32px;
      font-family: Montserrat;
      font-size: 16px;
      font-weight: 400;
      line-height: 24px;
      letter-spacing: 0.03em;
      border: 1px solid #cfd4d6;
      text-transform: capitalize;
    }

    select > option {
      align-items: center;
      color: var(--tertiary);
      display: flex;
      margin-right: 20px;
      input {
        cursor: pointer;
      }
    }
  }
}
.input-display-box-error-wrapper {
  position: relative;

  .display-box,
  .text-input {
    background-color: var(--neutral-15);
    box-sizing: border-box;
    padding: 10px;
  }

  .text-input,
  .text-input-error {
    border: 1px solid var(--neutral-60);
    box-sizing: border-box;
    color: var(--text-light);
    height: 40px;
    padding: 10px;
    width: 100%;
  }

  .text-input-error {
    border-color: var(--error);
  }

  .input-error-message {
    color: var(--error);
    position: absolute;
  }

  .hide-me {
    display: none;
  }
}
.item-card-wrapper {
  background-color: var(--tertiary-dark);
  border-radius: 6px;
  box-sizing: border-box;
  width: 100%;

  .item-card {
    background-color: var(--tertiary-dark);
    border-radius: 6px;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    margin-top: 10px;
    padding: 8px 25px;
  }

  .item-card-with-children {
    background-color: var(--tertiary-dark);
    border-radius: 6px;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    margin-top: 10px;
    max-height: 60px;
    padding: 8px 25px;
    width: 100%;
  }

  .label,
  .label-with-children {
    /* tobe used with typog body */
    color: var(--neutral-0);
    flex: 3;
    font-weight: 600;
  }

  .label-with-children {
    padding-top: 8px;
  }

  .spacer {
    flex: 1;
  }

  .value {
    color: var(--neutral-0);
    font-size: 20px;
    font-weight: 600;
    text-align: right;
  }

  .value-block {
    display: flex;
    flex: 2;
    flex-direction: row;
  }

  .vertical-separator {
    border-left: 2px solid white;
    margin: 0 10px;
  }

  .item-card-subtext-wrapper {
    padding-bottom: 10px;
  }

  .item-card-subtext {
    background-color: rgba(62, 105, 119, 0.5);
    border-radius: 6px;
    height: 45px;
    margin: auto;
    width: 90%;
  }

  .subtext {
    display: flex;
    flex-direction: row;
    padding: 10px;
  }

  .subtext-label {
    /* tobe used with typog body */
    color: var(--neutral-0);
    flex: 3;
    font-weight: 600;
    height: 24px;
    width: 225px;
  }

  .info-icon {
    height: 18.33px;
    padding-left: 5px;
    padding-top: 3px;
    width: 18.33px;
  }
}
.about-text {
  height: 20px;
  width: 100%;
  color: var(--shade-blue);
  font-size: 14px;
  letter-spacing: 0.3px;
  line-height: 20px;
  text-align: center;
}

.about-input {
  height: 40px;
  width: 345px;
  color: var(--blue-grey);
}

.about-single-Line {
  box-sizing: border-box;
  padding: 40px;
  width: 100%;
  display: inline-flex;
}
.create-loan-agreement-body-content-wrapper {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 40px 0 0 0 0;

  .offer-title {
    margin-top: 44px;
  }

  .offer-text {
    color: var(--text-light);
    margin-bottom: 70px;
    margin-top: 27px;
    text-align: center;
  }

  .width-750-px {
    width: 750px;
  }

  .section-title {
    color: var(--text-default);
  }

  .shaded-iso-contact-email-block {
    background-color: var(--neutral-25);
    margin-bottom: 50px;
    margin-top: 22px;
    padding: 22px;
  }

  .shaded-guarantor-block {
    background-color: var(--neutral-25);
    box-sizing: border-box;
    margin-bottom: 50px;
    margin-top: 22px;
    padding: 40px 33px;
  }

  .auth-sig-text {
    color: var(--text-default);
    font-weight: 600;
  }

  .missing-email-text {
    color: var(--text-default);
    font-weight: 600;
    padding: 10px 0px 10px 0px;
  }

  .review-text {
    color: var(--tertiary);
    margin-top: 8px;
  }

  .dark-box {
    align-items: center;
    background-color: var(--tertiary);
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .dark-box-text {
    color: var(--text-default-on-dark);
    font-weight: 600;
    margin-top: 35px;
  }

  .dark-box-fine-print {
    color: var(--text-default-on-dark);
    margin: 30px 0;
    text-align: center;
    width: 650px;
  }

  .radio-row {
    margin-bottom: 26px;
    margin-top: 10px;
    display: flex;
    align-items: center;

    input[type='radio'] {
      -webkit-appearance: none;
      appearance: none;
      cursor: pointer;
      display: inline-flex;
      height: 24px;
      position: relative;
      width: 24px;
    }
    input[type='radio']::before {
      background-image: url('/imgs/radio-button-default-icon.svg');
      content: '';
      height: 24px;
      left: 0;
      position: absolute;
      top: 0;
      transform: translateY(-2px);
      transition: 120ms all ease-in-out;
      width: 24px;
    }
    input[type='radio']:checked::before {
      background-image: url('/imgs/radio-button-selected-icon.svg');
      content: '';
      height: 24px;
      left: 0;
      position: absolute;
      top: 0;
      transition: 120ms all ease-in-out;
      transform: translateY(-2px);
      width: 24px;
    }
  }

  .radio-label {
    color: var(--text-default-on-dark);
    flex: 3;
    height: 24px;
    margin: 5px;
    width: 40px;
  }

  .radio-value {
    color: var(--shade-blue);
    height: 24px;
    text-align: right;
  }

  .margin-left {
    margin-left: 19px;
  }
}
.go-back-section {
  cursor: pointer;
  display: flex;
  margin-bottom: 20px;
  .go-back-link {
    color: var(--link);
    font-weight: 500;
  }

  .go-back-chevron-icon {
    margin-right: 10px;
  }
}
.signee-white-block {
  background-color: var(--neutral-0);
  width: 100%;
  margin-top: 25px;
  padding: 35px 33px;
  box-sizing: border-box;

  .label {
    /* to be used with typog body small; */
    color: var(--text-default);
  }
  .display-box {
    background-color: var(--neutral-15);
    padding: 10px;
    box-sizing: border-box;
  }
  .add-margin {
    margin-top: 26px;
  }
}
.ad-banner-row {
  margin-bottom: 13px;
  margin-top: -20px;
  text-align: center;
}

.arrowIcon {
  width: 24px;
  height: 24px;
}

.arrow-icon-wrapper {
  align-items: center;
  justify-content: center;
  cursor: pointer;
  display: flex;
  height: 32px;
  width: 32px;
  min-width: 32px;
}

.block {
  background-color: var(--neutral-15);
  display: flex;
  flex: 1;
  flex-direction: row;
}

.horizontal-separator {
  border-top: 1px solid var(--neutral-15);
  margin: 20px 0 20px 0;
  opacity: 0.24;
}

.info-icon {
  position: relative;
  top: 2px;
}

.circle-arrow-icon {
  padding-right: 10px;
  position: relative;
  top: 6px;
}

.left-block {
  box-sizing: border-box;
  flex: 3;
  margin-right: 22px;
}

.left-button {
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}

.line-block {
  display: flex;
  flex-direction: row;
  margin-top: 6px;
  width: 100%;
}

.line-label {
  color: var(--neutral-0);
  flex: 1;
  font-weight: 600;
}

.line-value {
  color: var(--neutral-0);
  flex: 1;
  font-weight: 600;
  text-align: right;
}

.repayment-amount {
  color: var(--text-default);
  font-size: 44px;
  font-weight: 600;
  line-height: 61px;
  text-align: right;
}

.repayment-block {
  align-items: center;
  background-color: var(--neutral-0);
  border-radius: 6px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  margin: 10px 0 20px 0;
  padding: 10px 20px;
}

.repayment-title {
  color: var(--text-light);
  font-weight: 700;
  text-align: center;
}

.right-block {
  flex: 2;
}

.right-block-contents {
  background-color: var(--tertiary);
  background-image: url('/imgs/pattern-background-dark.png');
  border-radius: 4px;
  box-sizing: border-box;
  padding: 16px 32px;
  color: var(--neutral-0);
  width: 458px;
}

.rtf-block {
  box-sizing: border-box;
  padding: 8px 16px;
  width: 100%;
  border-radius: 4px;
  background-color: var(--neutral-15);
  margin-top: 5px;
}

.rtf-contents {
  margin-top: 16px;
}

.rtf-title-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 24px;
}

.rtf-title {
  flex: 1;
  color: var(--tertiary);
  font-weight: 600;
}

.bullet {
  position: relative;
  bottom: 1px;
}

.req-to-fund-req-line {
  margin-left: 2em;
  text-indent: -2em;
  margin-bottom: 4px;
}

.requirement-bullet {
  line-height: 1.1em;
  margin-bottom: 6px;
  font-size: smaller;
  letter-spacing: -0.5px;
}

.requirement-list-bullets {
  padding-inline-start: 1em;
}

.req-note-1 {
  margin-top: 11px;
  font-style: italic;
  letter-spacing: -0.1px;
}

.section-heading {
  color: var(--neutral-0);
  font-weight: 600;
  text-align: center;
}

.button-wrapper {
  margin: 20px 0;
}
.go-back-modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-default);
}

export const title {
  margin: 22px 0 32px 0;
}

.text {
  text-align: center;
  margin: 0 55px 35px 55px;
}

.cancel-link {
  margin-bottom: 65px;
  color: var(--link);
  cursor: pointer;
}
.tool-tip-text {
  color: var(--text-default);
  margin: 0px;
  text-align: left;
  padding: 2px;

  ::before {
    content: '';
    display: block;
    position: absolute;
    left: 130px;
    top: 100%;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-top-color: var(--primary);
  }

  ::after {
    content: '';
    display: block;
    position: absolute;
    left: 131px;
    top: 100%;
    width: 0;
    height: 0;
    border: 9px solid transparent;
    border-top-color: var(--neutral-0);
  }
}

.tool-tip-hidden {
  display: none;
}

.tool-tip-wrapper {
  background: rgba(255, 255, 255);
  border: 1px solid var(--primary);
  border-radius: 2px;
  bottom: 105px;
  box-shadow: 0 2px 14px 0 rgba(0, 0, 0, 0.14);
  cursor: default;
  display: inline-block;
  left: -130px;
  margin-bottom: -37px;
  padding: 5px;
  position: relative;
  width: 155px;
}
.offer-selected-body-content-wrapper {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 30px 0 60px 0;

  .icon-tooltip-wrapper {
    display: inline-block;
    height: 0;
    position: absolute;
    width: 0;
  }

  .offer-selected {
    align-items: center;
    color: var(--text-default);
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
    width: 750px;
  }

  .offer-title {
    color: var(--text-default);
    margin-top: 24px;
  }

  .offer-text {
    margin-top: 25px;
    text-align: center;
  }

  .shaded-block-repayment {
    align-items: center;
    background-color: var(--neutral-25);
    color: var(--text-default);
    display: flex;
    flex-direction: column;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    width: 750px;
  }

  .offer-details-white-block {
    background-color: var(--neutral-0);
    border-radius: 4px;
    box-sizing: border-box;
    margin: 25px 25px 0 25px;
    padding-bottom: 23px;
    padding-top: 30px;
    width: calc(100% - 50px);
  }

  .total-repayment {
    color: var(--neutral-80);
    font-weight: 700;
  }

  .total-repayment-amount {
    /* Non-standard Sizing */
    color: var(--text-default);
    font-size: 44px;
    font-weight: 600;
    letter-spacing: -0.3;
    line-height: 54px;
    margin-bottom: 7px;
    margin-top: 5px;
  }

  .repayment-details {
    color: var(--neutral-80);
    font-weight: 500;
    margin-top: 2px;
    position: relative;
  }

  .icon-info {
    display: inline-block;
    left: 3px;
    position: absolute;
    top: 4px;
  }

  .offer-details-tri-column {
    box-sizing: border-box;
    display: flex;
    margin-bottom: -2px;
    padding: 23px 10px;
    width: 100%;
  }

  .offer-details-column {
    align-items: center;
    display: flex;
    flex: 1;
    flex-direction: column;
  }

  .offer-details-line-item {
    align-items: center;
    display: flex;
    flex-direction: column;
    margin: 10px 0;
  }

  .offer-details-label {
    color: #454646;
    margin-bottom: 6px;
  }

  .offer-details-value {
    color: var(--text-default);
    font-weight: 600;
  }

  .shaded-block-req-to-fund {
    background-color: var(--neutral-25);
    box-sizing: border-box;
    margin-bottom: 40px;
    padding: 25px;
    width: 750px;
  }

  .bullet {
    bottom: 1px;
    position: relative;
  }

  .req-to-fund-title {
    color: var(--text-default);
    font-weight: 600;
    margin-bottom: 13px;
  }

  .req-to-fund-req-line {
    margin-bottom: 4px;
    margin-left: 2em;
    text-indent: -2em;
  }

  .req-note-1 {
    font-style: italic;
    margin-top: 11px;
  }

  .semi-bold {
    font-weight: 600;
  }
}

.offer-selected-go-back-section {
  cursor: pointer;
  display: flex;
  margin-bottom: 20px;

  .go-back-link {
    color: var(--link);
    font-size: 16px;
    font-weight: 500;
  }

  .go-back-chevron-icon {
    margin-right: 10px;
  }
}
.error-card-container {
  display: flex;
  justify-content: center;
}

.error-card {
  background-color: var(--neutral-0);
  border-radius: 4px;
  box-shadow: 0 13px 14px 0 rgb(19 72 89 / 10%);
  box-sizing: border-box;
  color: var(--tertiary);
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  padding: 16px;
  max-width: 75%;

  @media (width >= 1024px) {
    padding: 24px;
  }
}

.error-content-wrapper {
  align-items: flex-start;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-bottom: 20px;
}

.error-notice {
  color: var(--tertiary);
  font-weight: 600;
  margin-bottom: 8px;
}

.error-message-wrapper {
  align-items: flex-start;
  border-radius: 4px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: left;
  padding: 16px;

  @media (width >= 768px) {
    align-items: center;
    flex-direction: row;
  }
}

.error-info-wrapper {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;

  a {
    align-items: center;
    color: var(--link);
    justify-content: center;
    text-decoration: none;
  }
}

.error-megaphone {
  img {
    height: 56px;
    margin-right: 24px;
    width: 64px;
  }
}

.go-back-button-container {
  margin: auto;
  display: flex;
  justify-content: center;
}
.page-wrapper {
  background-color: var(--neutral-15);
  display: flex;
  flex-direction: column;
  width: 100%;

  .footer {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.3px;
    line-height: 18px;
    margin-top: 40px;
    padding-bottom: 40px;
    width: 100%;
  }

  .footer-text {
    color: var(--text-light);
    font-size: 14px;
    letter-spacing: 0.3px;
    line-height: 20px;
  }

  .header-bar {
    align-items: center;
    background-color: var(--neutral-0);
    border-bottom: 1px solid var(--neutral-50);
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    height: 72px;
    justify-content: center;
    margin-bottom: 40px;
    width: 100%;
  }

  .header-centered {
    align-items: center;
    display: flex;
    flex-direction: row;
    width: 1140px;
  }

  .header-divider {
    background-color: var(--neutral-50);
    height: 36px;
    margin: 0 15px;
    width: 1px;
  }

  .header-icon {
    height: 32px;
    width: 265px;
  }

  .page {
    box-sizing: border-box;
    background-color: var(--background-light-grey);
    margin: 0 auto;
  }

  .title {
    color: var(--text-default);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.3px;
  }
  .body {
    min-height: 200px;
    width: 100%;
    color: #67696a;
  }
}
.merchant-card {
  background-color: white;
  border-radius: 4px;
  box-shadow: 0 13px 14px 0 rgba(19, 72, 89, 0.04);
  margin-top: 0;
  padding: 16px 32px;

  .merchant-label {
    color: var(--text-default);
    flex: 2;
  }

  .line-css,
  .line,
  .line-margin-bottom {
    display: flex;
    flex-direction: row;
  }

  .line-margin-bottom {
    margin-bottom: 10px;
  }

  .merchant-tier-block {
    display: flex;
    flex-direction: row;
  }

  .merchant-value {
    color: var(--text-default);
    flex: 3;
    text-align: right;
  }

  .specialist-block {
    border-top: 2px solid #e7ecee;
    padding-top: 10px;
  }

  .specialist-contact {
    display: flex;
    flex-direction: column;
  }

  .specialist-details {
    align-items: right;
    display: flex;
    flex-direction: row;
  }

  .specialist-name {
    color: var(--text-default);
    text-align: right;
  }
}
.radio-button-group-section-block {
  background-color: #f3f6f7;
  border-radius: 4px;
  flex: 3;
  height: 65px;
  margin: 2px;
  margin-bottom: 10px;
  padding-left: 15px;
  padding-top: 10px;

  .radio-block {
    color: var(--shade-blue);
    height: 24px;
  }

  .radio-group {
    display: flex;
    flex-direction: row;
    input[type='radio'] {
      -webkit-appearance: none;
      appearance: none;
      display: inline-flex;
      height: 24px;
      position: relative;
      width: 24px;
    }
    input[type='radio']::before {
      background-image: url('/imgs/radio-button-default-icon.svg');
      content: '';
      height: 24px;
      left: 0;
      position: absolute;
      top: 0;
      transform: translateY(-2px);
      transition: 120ms all ease-in-out;
      width: 24px;
    }
    input[type='radio']:checked::before {
      background-image: url('/imgs/radio-button-selected-icon.svg');
      content: '';
      height: 24px;
      left: 0;
      position: absolute;
      top: 0;
      transition: 120ms all ease-in-out;
      transform: translateY(-2px);
      width: 24px;
    }
  }

  .radio-button-group-title {
    color: var(--tertiary);
    font-weight: 600;
    height: 20px;
    padding-bottom: 5px;
  }

  .value {
    color: var(--tertiary);
    display: inline;
  }

  .radio-option {
    align-items: center;
    color: var(--tertiary);
    display: flex;
    margin-right: 20px;
    input {
      cursor: pointer;
    }
  }
}
.message-page-wrapper {
  text-align: center;
  img {
    margin-top: 35px;
  }
}

.message-page-title {
  color: var(--text-default);
}

.message-page-text {
  margin: 30px auto 260px auto;
  width: 720px;
}

.message-page-link {
  color: var(--link);
}
.modal-overlay {
  background-color: var(--neutral-95);
  display: block;
  height: 100%;
  left: 0;
  opacity: 0.4;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.modal-content-wrapper {
  background-color: var(--neutral-0);
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 570px;
  z-index: 1010;

  .header {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
  }

  .accentLine {
    background-color: var(--secondary-light);
    height: 6px;
    width: 100%;
  }

  .x-close {
    cursor: pointer;
    height: 24px;
    margin: 20px;
    opacity: 0.5;
    width: 24px;
  }
}
@keyframes rotatation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}

.rotate {
  animation: rotation 2s infinite linear;
}

.spinner-frame {
  border-radius: 50%;
  display: inline-block;
  height: 100px;
  overflow: hidden;
  padding: 10px;
  position: relative;
  vertical-align: middle;
  width: 100px;
}

.page-container {
  background: rgba(238, 238, 238, 0.75);
  bottom: 0;
  height: 100%;
  left: 0;
  position: fixed;
  right: 0;
  text-align: center;
  top: 0;
  z-index: 2000;

  &:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
  }
}
.button-wrapper {
  background-color: var(--primary);
  color: var(--text-default-on-dark);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  font-weight: 600;
  height: 45px;
  justify-content: center;
  padding: 0 10px;
  text-align: center;
}

.submit {
  margin-bottom: 30px;
}


@layer fe-style{
/* Theme Variables */
:root {
  /* Responsive Screen Size Breakpoints 
    Note: CSS Vars are not usable within media queries */
  --min-mobile: 390px;
  --max-mobile: 767px;
  --min-tablet: 768px;
  --max-tablet: 1023px;
  --min-desktop: 1024px;
  --max-desktop: 1199px;
  --min-hd: 1200px;

  /* Theme Colors */

  --default-icon-background: #f3f6f7;
  --default-icon-text: #8b8e8f;
  --destructive-icon-background: #fce7e6;
  --destructive-icon-text: #e3170a;
  --error: #e3170a;
  --error-dark: #880e06;
  --error-light: #fce7e6;
  --font-family: montserrat, sans-serif;
  --font-mono-family: azeret mono, monospace;
  --info: #4392f1;
  --info-dark: #285891;
  --info-light: #e7eff8;
  --link: #1172e8;
  --link-icon-background: #e7f1fd;
  --link-icon-text: #1172e8;
  --neutral-0: #fff;
  --neutral-15: #f8f9fa;
  --neutral-25: #f3f6f7;
  --neutral-35: #eef2f3;
  --neutral-50: #e7ecee;
  --neutral-55: #cfd4d6;
  --neutral-60: #b8bcbe;
  --neutral-70: #8b8e8f;
  --neutral-80: #5c5e5f;
  --neutral-95: #171818;
  --primary: #f37028;
  --primary-dark: #c25a20;
  --primary-darker: #7a3814;
  --primary-light: #f58d53;
  --primary-lighter: #f9b894;
  --secondary: #fcaf1a;
  --secondary-dark: #ca8c15;
  --secondary-darker: #7e580d;
  --secondary-light: #fdbf48;
  --secondary-lighter: #fed78d;
  --success: #4a825c;
  --success-dark: #2c4e37;
  --success-light: #ecf2ee;
  --tertiary: #0e4455;
  --tertiary-dark: #0b3644;
  --tertiary-darker: #07222b;
  --tertiary-light: #3e6977;
  --tertiary-lighter: #87a2aa;
  --text-default: #0e4455;
  --text-default-on-dark: #fff;
  --text-disabled-1: #cfd4d6;
  --text-disabled-2: #b8bcbe;
  --text-light: #5c5e5f;
  --warning: #e98a15;
  --warning-dark: #8c530d;
  --warning-light: #fcf3e7;

  /* Toastify Colors */
  --toastify-color-light: var(--neutral-0);
  --toastify-color-transparent: rgba(255, 255, 255, 70%);
  --toastify-toast-width: 450px;
  --toastify-toast-background: var(--neutral-0);
  --toastify-toast-min-height: 60px;
  --toastify-toast-max-height: 800px;
  --toastify-z-index: 9999;
  --toastify-color-progress-info: var(--info);
  --toastify-color-progress-success: var(--success);
  --toastify-color-progress-warning: var(--warning);
  --toastify-color-progress-error: var(--error);

  /* Other */
  --z-index-modal: 9000;
  --z-index-overlay: 8000;
  --logo-width: 169px;
  --logo-height: 46px;
  --mobile-logo-width: 141px;
  --mobile-logo-height: 39px;
  --dashboard-logo-tablet-height: 24px;
  --dashboard-logo-tablet-width: 198px;
  --dashboard-logo-mobile-height: 31px;
  --dashboard-logo-mobile-width: 110px;
  --fw500: 500;
  --fw600: 600;
}

/* Typography - Desktop/Tablet */

/* Note - the order of these blocks is important
  If the Typography isn't before the individual classes
  giving an element both a typography class AND an single 
  attribute class doesn't work because the rules of CSS
  give precedence to the last style IN THE FILE */

.typog-hero-large {
  font-weight: 500;
  font-size: 40px;
  line-height: 50px;
  letter-spacing: -0.3px;

  @media screen and (width <= 767px) {
    font-size: 36px;
    line-height: 46px;
  }
}

.typog-hero-small {
  font-weight: 500;
  font-size: 36px;
  line-height: 46px;
  letter-spacing: -0.3px;

  @media screen and (width <= 767px) {
    font-size: 32px;
    line-height: 42px;
  }
}

.typog-h1-extra-large {
  font-weight: 500;
  font-size: 32px;
  line-height: 42px;
  letter-spacing: -0.3px;

  @media screen and (width <= 767px) {
    font-size: 28px;
    line-height: 38px;
  }
}

.typog-h2-large {
  font-weight: 500;
  font-size: 28px;
  line-height: 38px;
  letter-spacing: -0.3px;

  @media screen and (width <= 767px) {
    font-size: 24px;
    line-height: 34px;
  }
}

.typog-h3-med {
  font-weight: 500;
  font-size: 24px;
  line-height: 34px;
  letter-spacing: -0.3px;

  @media screen and (width <= 767px) {
    font-size: 20px;
    line-height: 30px;
  }
}

.typog-h4-small {
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: -0.3px;

  @media screen and (width <= 767px) {
    font-size: 18px;
    line-height: 28px;
  }
}

.typog-body-large {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.3px;
}

.typog-body {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.3px;
}

.typog-tagline {
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 1.25px;
}

.typog-tagline-small {
  font-weight: 700;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 1.25px;
}

.typog-body-small {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.3px;
}

.typog-body-small-subtitle {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 1.25px;
}

/* Font Sizes */
.font-size-14 {
  font-size: 14px;
}

.font-size-16 {
  font-size: 16px;
}

.font-size-18 {
  font-size: 18px;
}

.font-size-20 {
  font-size: 20px;
}

.font-size-24 {
  font-size: 24px;
}

.font-size-28 {
  font-size: 28px;
}

.font-size-32 {
  font-size: 32px;
}

.font-size-36 {
  font-size: 36px;
}

.font-size-40 {
  font-size: 40px;
}

/* Font Weights */
.font-weight-bold {
  font-weight: 700;
}

.font-weight-light {
  font-weight: 300;
}

.font-weight-med {
  font-weight: 500;
}

.font-weight-reg {
  font-weight: 400;
}

.font-weight-reg-cell {
  font-weight: 300;
}

.font-weight-semi-bold {
  font-weight: 600;
}

/* Letter Spacing */
.letter-spacing-neg-p3 {
  letter-spacing: -0.3px;
}

.letter-spacing-neg-p5 {
  letter-spacing: -0.5px;
}

.letter-spacing-pos-p3 {
  letter-spacing: 0.3px;
}

.letter-spacing-pos-1p25 {
  letter-spacing: 1.25px;
}

/* Line Height */
.line-height-20 {
  line-height: 20px;
}

.line-height-24 {
  line-height: 24px;
}

.line-height-26 {
  line-height: 26px;
}

.line-height-28 {
  line-height: 28px;
}

.line-height-30 {
  line-height: 30px;
}

.line-height-34 {
  line-height: 34px;
}

.line-height-38 {
  line-height: 38px;
}

.line-height-42 {
  line-height: 42px;
}

.line-height-46 {
  line-height: 46px;
}

.line-height-50 {
  line-height: 50px;
}

/* Opacity */
.opac-30 {
  opacity: 0.3;
}

.opac-15 {
  opacity: 0.15;
}

.opac-02 {
  opacity: 0.02;
}
}
body {
  margin: 0;
  background-color: var(--neutral-15);
  font-family: Montserrat;
  input {
    font-family: Montserrat;
  }
  input:focus,
  select:focus,
  textarea:focus,
  button:focus {
    outline: none;
  }

  --slider-blue: #3e6977;
  --slider-grey: #cbcbcb;
}
.app-background {
  box-sizing: border-box;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
}
.page {
  flex: 1;
}
.partner-portal-react-app {
  height: 100vh;
  width: 100vw;
}
