@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');.generic-card {
  background-color: var(--neutral-0);
  border: 1px solid var(--neutral-50);
  border-radius: 12px;
  box-shadow:
    0 2px 6px rgb(15 23 42 / 4%),
    0 12px 28px rgb(15 23 42 / 7%);
  box-sizing: border-box;
  margin-top: 12px;
  padding: 20px 24px;
  width: 100%;
}

.generic-card-title {
  color: var(--neutral-95);
  font-weight: 600;
  margin-bottom: 8px;
}
.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;
  }
}
.dev-support-cta {
  border-top: 1px solid var(--neutral-50);
  margin-top: 36px;
  padding-top: 24px;
}

.dev-support-cta-content {
  align-items: center;
  background: linear-gradient(90deg, rgb(11 51 68 / 5%), rgb(11 51 68 / 2%));
  border: 1px solid rgb(11 51 68 / 14%);
  border-left: 4px solid var(--tertiary);
  border-radius: 10px;
  display: flex;
  gap: 16px;
  padding: 16px 20px;
}

.dev-support-cta-icon {
  flex-shrink: 0;
  font-size: 22px;
  line-height: 1;
}

.dev-support-cta-text {
  flex: 1;
  min-width: 0;
}

.dev-support-cta-heading {
  color: var(--text-default);
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 2px;
}

.dev-support-cta-body {
  color: var(--text-light);
  font-size: 13px;
  margin: 0;
}

.dev-support-cta-link {
  background: var(--tertiary);
  border: 1px solid var(--tertiary);
  border-radius: 10px;
  box-shadow: 0 1px 2px rgb(11 51 68 / 18%);
  color: #fff;
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 14px;
  text-decoration: none;
  transition: all 0.16s ease;
  white-space: nowrap;
}

.dev-support-cta-link:hover {
  background: #12465a;
  border-color: #12465a;
  transform: translateY(-1px);
}

@media (max-width: 680px) {
  .dev-support-cta-content {
    flex-direction: column;
    align-items: flex-start;
  }
}
.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;
}
.okta-login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: #f5f7fa;
}

.okta-login-card {
  width: 100%;
  max-width: 420px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  padding: 24px;
}

.okta-login-card h1 {
  margin: 0 0 8px;
}

.okta-login-card p {
  margin: 0 0 16px;
  color: #546173;
}

.okta-login-error {
  color: #b42318;
  background: #fef3f2;
  border: 1px solid #fecaca;
  border-radius: 6px;
  padding: 10px;
  margin-bottom: 12px;
}

.okta-login-loading {
  margin-top: 12px;
  color: #667085;
  font-size: 14px;
}
.applications-page {
  width: 100%;
}

.applications-page-heading {
  margin-bottom: 20px;
}

.applications-breadcrumb {
  color: var(--text-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.applications-page-title {
  color: var(--text-default);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.4px;
  margin: 0;
}

/* Toolbar */
.applications-toolbar {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.applications-search {
  border: 1px solid var(--neutral-50);
  border-radius: 8px;
  color: var(--text-default);
  flex: 1;
  font-size: 13px;
  min-width: 200px;
  padding: 9px 12px;
}

.applications-search:focus {
  border-color: var(--tertiary);
  outline: none;
}

.applications-filter-select {
  border: 1px solid var(--neutral-50);
  border-radius: 8px;
  color: var(--text-default);
  font-size: 13px;
  padding: 9px 12px;
}

.applications-filter-select:focus {
  border-color: var(--tertiary);
  outline: none;
}

/* Status multi-select dropdown */
.applications-status-dropdown {
  position: relative;
}

.applications-status-trigger {
  appearance: none;
  background: var(--neutral-0);
  cursor: pointer;
  min-width: 140px;
  text-align: left;
}

.applications-status-dropdown-panel {
  background: var(--neutral-0);
  border: 1px solid var(--neutral-50);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgb(0 0 0 / 12%);
  margin-top: 4px;
  padding: 6px 0;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  z-index: 100;
}

.applications-status-option {
  align-items: center;
  cursor: pointer;
  display: flex;
  gap: 10px;
  padding: 8px 14px;
  font-size: 13px;
}

.applications-status-option:hover {
  background: #f8fafc;
}

.applications-status-option input {
  margin: 0;
}

/* State boxes */
.applications-state-box {
  background: var(--neutral-0);
  border: 1px solid var(--neutral-50);
  border-radius: 10px;
  padding: 24px;
  text-align: center;
}

.applications-error {
  background: rgb(239 68 68 / 6%);
  border-color: rgb(239 68 68 / 30%);
  color: #991b1b;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.applications-retry-btn {
  background: var(--tertiary);
  border: 1px solid var(--tertiary);
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
}

/* Table */
.applications-table-wrapper {
  background: var(--neutral-0);
  border: 1px solid var(--neutral-50);
  border-radius: 10px;
  overflow: hidden;
  overflow-x: auto;
}

.applications-table {
  border-collapse: collapse;
  min-width: 640px;
  width: 100%;
}

.applications-table thead tr {
  background: #f8fafc;
  border-bottom: 1px solid var(--neutral-50);
}

.applications-table th {
  color: var(--text-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  padding: 0;
  position: sticky;
  text-align: left;
  text-transform: uppercase;
  top: 0;
  background: #f8fafc;
}

.col-sort-btn {
  align-items: center;
  background: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
  display: flex;
  font-size: inherit;
  font-weight: inherit;
  gap: 5px;
  letter-spacing: inherit;
  padding: 12px 16px;
  text-transform: inherit;
  white-space: nowrap;
  width: 100%;
}

.col-sort-btn:hover {
  color: var(--tertiary);
}

.sort-icon {
  font-size: 10px;
}

.sort-icon-neutral {
  opacity: 0.4;
}

.sort-icon-active {
  color: var(--tertiary);
}

.applications-table-row {
  border-bottom: 1px solid var(--neutral-50);
  cursor: pointer;
  transition: background 0.1s ease;
}

.applications-table-row:last-child {
  border-bottom: none;
}

.applications-table-row:hover td {
  background-color: #f0f6ff;
}

.applications-td {
  color: var(--text-default);
  font-size: 13px;
  padding: 13px 16px;
  vertical-align: middle;
}

.applications-merchant {
  font-weight: 600;
}

.applications-submitted-at {
  color: var(--text-light);
  white-space: nowrap;
}

.applications-platform-id code {
  background: #f8fafc;
  border: 1px solid #d9e2ec;
  border-radius: 6px;
  font-family: monospace;
  font-size: 12px;
  padding: 3px 7px;
}

.applications-empty-row {
  color: var(--text-light);
  font-size: 13px;
  padding: 32px 16px;
  text-align: center;
}

.applications-pagination-bar {
  align-items: center;
  border-top: 1px solid var(--neutral-50);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  padding: 10px 16px;
}

.applications-result-count {
  color: var(--text-light);
  margin: 0;
}

.applications-pagination-controls {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.applications-page-size-label {
  align-items: center;
  display: flex;
  gap: 8px;
  font-size: 12px;
  color: var(--text-light);
}

.applications-page-size-label span {
  white-space: nowrap;
}

.applications-page-size-select {
  border: 1px solid var(--neutral-50);
  border-radius: 6px;
  font-size: 12px;
  padding: 4px 8px;
}

.applications-page-buttons {
  align-items: center;
  display: flex;
  gap: 12px;
}

.applications-page-btn {
  background: #f1f5f9;
  border: 1px solid #d9e2ec;
  border-radius: 6px;
  color: var(--text-default);
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
}

.applications-page-btn:hover:not(:disabled) {
  background: #e7edf4;
  border-color: #ced8e4;
}

.applications-page-btn:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.applications-page-indicator {
  color: var(--text-light);
  font-size: 12px;
}

/* Status badges */
.applications-status-badge {
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  white-space: nowrap;
}

.status-approved {
  background: rgb(59 130 246 / 12%);
  border-color: rgb(59 130 246 / 28%);
  color: #1d4ed8;
}

.status-pending {
  background: rgb(245 158 11 / 12%);
  border-color: rgb(245 158 11 / 28%);
  color: #b45309;
}

.status-declined {
  background: rgb(239 68 68 / 10%);
  border-color: rgb(239 68 68 / 28%);
  color: #b91c1c;
}

.status-funded {
  background: rgb(34 197 94 / 12%);
  border-color: rgb(34 197 94 / 28%);
  color: #15803d;
}

.status-review {
  background: rgb(168 85 247 / 10%);
  border-color: rgb(168 85 247 / 28%);
  color: #6b21a8;
}

@media (max-width: 700px) {
  .applications-toolbar {
    flex-direction: column;
    align-items: stretch;
  }
}
.app-detail-page {
  width: 100%;
}

/* Breadcrumb */
.app-detail-breadcrumb {
  align-items: center;
  color: var(--text-light);
  display: flex;
  font-size: 13px;
  gap: 8px;
  margin-bottom: 16px;
}

.app-detail-breadcrumb-btn {
  background: transparent;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  padding: 0;
}

.app-detail-breadcrumb-btn:hover {
  color: var(--tertiary);
  text-decoration: underline;
}

.app-detail-breadcrumb-sep {
  color: var(--text-light);
  opacity: 0.5;
}

.app-detail-breadcrumb-current {
  color: var(--text-default);
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Heading block: title + key metrics + use of funds */
.app-detail-heading-block {
  background: var(--neutral-0);
  border: 1px solid var(--neutral-50);
  border-radius: 12px;
  margin-bottom: 16px;
  padding: 20px 24px;
}

.app-detail-heading-row {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}

.app-detail-title {
  color: var(--text-default);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.4px;
  margin: 0;
}

.app-detail-key-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 32px;
  margin-bottom: 16px;
}

.app-detail-metric {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.app-detail-metric-label {
  color: var(--text-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.app-detail-metric-value {
  color: var(--text-default);
  font-size: 15px;
  font-weight: 600;
}

.app-detail-metric-value code {
  background: #f1f5f9;
  border: 1px solid var(--neutral-50);
  border-radius: 6px;
  font-family: monospace;
  font-size: 13px;
  font-weight: 600;
  padding: 2px 8px;
}

.app-detail-use-of-funds {
  border-top: 1px solid var(--neutral-50);
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 14px;
}

.app-detail-use-of-funds-label {
  color: var(--text-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.app-detail-use-of-funds-value {
  color: var(--text-default);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
}

/* Sections */
.app-detail-section {
  background: var(--neutral-0);
  border: 1px solid var(--neutral-50);
  border-radius: 12px;
  margin-bottom: 16px;
  padding: 24px;
}

.app-detail-section-title {
  border-bottom: 1px solid var(--neutral-50);
  color: var(--text-light);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  margin-bottom: 16px;
  margin-top: 0;
  padding-bottom: 12px;
  text-transform: uppercase;
}

/* Fields grid: max 2 columns for easier scanning, less cognitive load */
.app-detail-fields-grid {
  display: grid;
  gap: 16px 32px;
  grid-template-columns: repeat(2, 1fr);
}

.app-detail-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.app-detail-field-label {
  color: var(--text-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.app-detail-field-value {
  color: var(--text-default);
  font-size: 14px;
  font-weight: 500;
}

.app-detail-field-value code {
  background: #f8fafc;
  border: 1px solid #d9e2ec;
  border-radius: 6px;
  font-family: monospace;
  font-size: 13px;
  padding: 2px 6px;
}

/* Owners */
.app-detail-owners {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.app-detail-owner-card {
  background: #f8fafc;
  border: 1px solid var(--neutral-50);
  border-radius: 10px;
  padding: 16px;
}

.app-detail-owner-name {
  color: var(--text-default);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

/* State boxes */
.app-detail-state-box {
  background: var(--neutral-0);
  border: 1px solid var(--neutral-50);
  border-radius: 10px;
  color: var(--text-light);
  font-size: 14px;
  padding: 40px;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .app-detail-fields-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .app-detail-fields-grid {
    grid-template-columns: 1fr;
  }

  .app-detail-heading-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}
.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;
  }
}
.developer-hub-page {
  width: 100%;
}

.developer-hub-page-heading {
  margin-bottom: 24px;
}

.developer-hub-page-title {
  color: var(--text-default);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.4px;
  margin: 0 0 8px;
}

.developer-hub-intro {
  color: var(--text-light);
  font-size: 14px;
  margin: 0;
  max-width: 800px; /* 2/3 of 1200px page width */
}

.developer-hub-docs-link {
  margin: 0 0 24px;
}

.developer-hub-docs-link a {
  color: var(--tertiary);
  font-size: 14px;
  font-weight: 600;
}

.developer-hub-docs-link a:hover {
  text-decoration: underline;
}

.developer-hub-loading {
  color: var(--text-light);
  font-size: 14px;
}

.developer-hub-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

.developer-hub-grid-single {
  max-width: 680px;
}

.developer-hub-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.developer-hub-card-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.developer-hub-status-badge {
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 10px;
}

.developer-hub-status-badge.active {
  background: rgb(34 197 94 / 12%);
  border-color: rgb(34 197 94 / 28%);
  color: #15803d;
}

.developer-hub-status-badge.inactive {
  background: #f1f5f9;
  border-color: #d9e2ec;
  color: #526277;
}

.developer-hub-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.developer-hub-label {
  color: var(--text-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.developer-hub-copy-row {
  align-items: flex-start;
  display: flex;
  gap: 10px;
}

.developer-hub-copy-row code {
  flex: 1;
  min-width: 0;
}

.developer-hub-row code {
  background: #f8fafc;
  border: 1px solid #d9e2ec;
  border-radius: 8px;
  display: block;
  font-family: monospace;
  font-size: 13px;
  padding: 10px;
  overflow-wrap: anywhere;
}

.developer-hub-copy-btn {
  background: #f1f5f9;
  border: 1px solid #d9e2ec;
  border-radius: 8px;
  color: var(--text-default);
  cursor: pointer;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 600;
  min-width: 84px;
  padding: 8px 12px;
  transition: background 0.16s ease, border-color 0.16s ease;
}

.developer-hub-copy-btn:hover {
  background: #e7edf4;
  border-color: #ced8e4;
}

.developer-hub-copy-btn:focus-visible {
  outline: 2px solid var(--tertiary);
  outline-offset: 2px;
}

.developer-hub-copy-failed {
  color: #b91c1c;
  font-size: 12px;
  margin: 0 0 4px;
}

.developer-hub-secret-masked {
  letter-spacing: 2px;
  user-select: none;
}

.developer-hub-rotate-btn {
  min-width: 84px;
}

.developer-hub-secret-info {
  margin: 0;
}

.developer-hub-metadata {
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  font-size: 12px;
  gap: 2px;
}

.developer-hub-metadata > div {
  margin: 0;
}

.developer-hub-error-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.developer-hub-inline-error {
  background: rgb(239 68 68 / 10%);
  border: 1px solid rgb(239 68 68 / 35%);
  border-left: 3px solid #ef4444;
  border-radius: 8px;
  color: #991b1b;
  padding: 10px;
}

.developer-hub-retry-btn {
  align-self: flex-start;
}

.developer-hub-reveal-panel {
  background: #fffbef;
  border: 1px solid #f7d89f;
  border-radius: 10px;
  padding: 12px;
}

.developer-hub-reveal-note-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  margin-bottom: 10px;
}

.developer-hub-reveal-note {
  font-size: 12px;
  font-weight: 600;
  margin: 0;
}

.developer-hub-reveal-done {
  background: none;
  border: none;
  color: var(--tertiary);
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 0;
}

.developer-hub-reveal-done:hover {
  text-decoration: underline;
}

.developer-hub-reveal-done:focus-visible {
  outline: 2px solid var(--tertiary);
  outline-offset: 2px;
}

.developer-hub-action {
  background: var(--tertiary);
  border: 1px solid var(--tertiary);
  border-radius: 10px;
  box-shadow: 0 1px 2px rgb(11 51 68 / 18%);
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  padding: 10px 14px;
  transition: all 0.16s ease;
}

.developer-hub-action:hover:not(:disabled) {
  background: #12465a;
  border-color: #12465a;
  transform: translateY(-1px);
}

.developer-hub-action:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.developer-hub-action-secondary {
  background: #f1f5f9;
  border-color: #d9e2ec;
  color: var(--text-default);
}

.developer-hub-action-secondary:hover:not(:disabled) {
  background: #e7edf4;
  border-color: #ced8e4;
}

.developer-hub-action-danger {
  background: #dc2626;
  border-color: #dc2626;
}

.developer-hub-action-danger:hover:not(:disabled) {
  background: #b91c1c;
  border-color: #b91c1c;
}

.developer-hub-confirm-modal {
  padding: 0 24px 24px;
}

.developer-hub-modal-body {
  font-size: 14px;
  margin: 8px 0 0;
}

.developer-hub-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 24px;
}

@media (max-width: 900px) {
  .developer-hub-grid {
    grid-template-columns: 1fr;
  }
}
.webhooks-page {
  width: 100%;
}

.webhooks-page-heading {
  margin-bottom: 24px;
}

.webhooks-page-title {
  color: var(--text-default);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.4px;
  margin: 0 0 8px;
}

.webhooks-intro {
  color: var(--text-light);
  font-size: 14px;
  margin: 0;
  max-width: 800px; /* 2/3 of 1200px page width */
}

.webhooks-docs-link {
  margin: 0 0 24px;
}

.webhooks-docs-link a {
  color: var(--tertiary);
  font-size: 14px;
  font-weight: 600;
}

.webhooks-docs-link a:hover {
  text-decoration: underline;
}

.webhooks-context-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.webhooks-context-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.webhooks-context-title {
  color: var(--text-default);
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.webhooks-context-subtitle {
  color: var(--text-light);
  font-size: 13px;
}

.webhooks-add-btn {
  align-self: flex-start;
}

.webhooks-add-section {
  margin-bottom: 24px;
}

.webhooks-add-form {
  background: #f8fafc;
  border: 1px solid var(--neutral-50);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
}

.webhooks-add-title {
  font-size: 15px;
  margin: 0;
}

.webhooks-form-label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.webhooks-form-label span {
  color: var(--text-light);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.webhooks-form-label input {
  border: 1px solid var(--neutral-50);
  border-radius: 8px;
  font-size: 14px;
  padding: 9px 12px;
}

.webhooks-form-label input:focus {
  border-color: var(--tertiary);
  outline: none;
}

/* Event checkboxes */
.webhooks-events-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.webhooks-events-label {
  color: var(--text-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  margin: 0;
  text-transform: uppercase;
}

.webhooks-events-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.webhooks-event-checkbox {
  align-items: flex-start;
  background: #f8fafc;
  border: 1px solid var(--neutral-50);
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  gap: 8px;
  padding: 8px 12px;
  transition: border-color 0.14s ease;
}

.webhooks-event-checkbox:hover {
  border-color: var(--tertiary);
}

.webhooks-event-checkbox input[type='checkbox'] {
  margin-top: 2px;
}

.webhooks-event-checkbox input[type='checkbox']:checked ~ .webhooks-event-code code {
  color: var(--tertiary);
}

.webhooks-event-code {
  flex-shrink: 0;
}

.webhooks-event-code code {
  font-size: 12px;
}

.webhooks-event-desc {
  color: var(--text-light);
  font-size: 11px;
  line-height: 1.3;
}

.webhooks-form-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

/* Empty state */
.webhooks-empty {
  background: var(--neutral-0);
  border: 1px dashed var(--neutral-50);
  border-radius: 10px;
  color: var(--text-light);
  font-size: 14px;
  padding: 24px;
  text-align: center;
}

/* Endpoint list */
.webhooks-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.webhooks-endpoint-card {
  background: var(--neutral-0);
  border: 1px solid var(--neutral-50);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 20px;
}

.webhooks-endpoint-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.webhooks-endpoint-url-row {
  align-items: center;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.webhooks-endpoint-url {
  color: var(--text-default);
  font-size: 14px;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.webhooks-endpoint-meta {
  color: var(--text-light);
  margin: 0;
}

/* Event pills on existing endpoints */
.webhooks-endpoint-events {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.webhooks-event-pill {
  background: #f1f5f9;
  border: 1px solid var(--neutral-50);
  border-radius: 6px;
  display: inline-block;
}

.webhooks-event-pill code {
  color: var(--text-light);
  font-size: 11px;
  padding: 3px 8px;
  display: block;
}

/* Ping result */
.webhooks-ping-result {
  border-radius: 8px;
  font-size: 13px;
  padding: 10px 12px;
}

.webhooks-ping-success {
  background: rgb(34 197 94 / 10%);
  border: 1px solid rgb(34 197 94 / 26%);
  color: #15803d;
}

.webhooks-ping-failure {
  background: rgb(239 68 68 / 10%);
  border: 1px solid rgb(239 68 68 / 28%);
  color: #b91c1c;
}

/* Endpoint actions */
.webhooks-endpoint-actions {
  display: flex;
  gap: 8px;
}

.webhooks-ping-btn {
  min-width: 100px;
}

/* Inline confirm delete */
.webhooks-confirm-delete {
  background: rgb(220 38 38 / 5%);
  border: 1px solid rgb(220 38 38 / 20%);
  border-radius: 8px;
  padding: 14px;
}

.webhooks-confirm-delete p {
  margin: 0 0 12px;
}

.webhooks-confirm-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}
.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%;
  position: relative;
  .footer {
    color: var(--text-light);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1px;
    line-height: 18px;
    margin: 36px auto 0;
    padding-bottom: 32px;
    width: 100%;
    max-width: 1140px;
  }

  .footer-text,
  .footerText {
    color: var(--text-light);
    font-size: 13px;
    letter-spacing: 0.1px;
    line-height: 20px;
  }

  .header-bar {
    align-items: center;
    background-color: rgb(255 255 255 / 92%);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid var(--neutral-50);
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    height: 76px;
    justify-content: center;
    margin-bottom: 28px;
    position: relative;
    width: 100%;
    z-index: 100;
  }

  .header-centered {
    align-items: center;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
  }

  .header-right-controls {
    align-items: center;
    display: flex;
    gap: 8px;
    margin-left: auto;
  }

  .profile-menu-container {
    position: relative;
  }

  .profile-trigger {
    align-items: center;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 12px;
    color: var(--text-default);
    display: flex;
    gap: 10px;
    padding: 8px 10px;
    transition: all 0.16s ease;
  }

  .profile-trigger:hover {
    background: #f8fafc;
    border-color: var(--neutral-50);
  }

  .profile-avatar {
    align-items: center;
    background: var(--tertiary);
    border-radius: 999px;
    color: var(--neutral-0);
    display: inline-flex;
    font-size: 12px;
    font-weight: 700;
    height: 34px;
    justify-content: center;
    width: 34px;
  }

  .profile-meta {
    display: flex;
    flex-direction: column;
    text-align: left;
  }

  .profile-name {
    font-size: 13px;
    font-weight: 600;
    line-height: 16px;
  }

  .profile-menu {
    background: var(--neutral-0);
    border: 1px solid var(--neutral-50);
    border-radius: 10px;
    box-shadow:
      0 8px 24px rgb(15 23 42 / 10%),
      0 2px 8px rgb(15 23 42 / 6%);
    display: flex;
    flex-direction: column;
    margin-top: 8px;
    min-width: 232px;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 100%;
    z-index: 20;
  }

  .profile-menu-item {
    background: transparent;
    border: none;
    color: var(--text-default);
    font-size: 13px;
    font-weight: 500;
    padding: 12px 14px;
    text-align: left;
  }

  .profile-menu-item:hover {
    background: #f8fafc;
  }

  .profile-menu-item.active {
    background: #eef4ff;
    color: #1e3a8a;
    font-weight: 600;
  }

  .profile-menu-section-label {
    border-top: 1px solid var(--neutral-50);
    color: var(--text-light);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.7px;
    padding: 10px 14px 6px;
    text-transform: uppercase;
  }

  .profile-menu-item.logout {
    border-top: 1px solid var(--neutral-50);
    color: #b42318;
    font-weight: 600;
  }

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

  .header-logo-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    padding: 0;
  }

.header-logo-btn:hover .header-icon {
  opacity: 0.85;
  }

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

  .page {
    box-sizing: border-box;
    background-color: var(--background-light-grey);
    width: 100%;
  }

  .title {
    color: var(--text-default);
    font-size: 21px;
    font-weight: 600;
    letter-spacing: -0.2px;
  }
  .body {
    min-height: 200px;
    width: 100%;
    color: var(--text-default);
  }

  .body-centered {
    box-sizing: border-box;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
  }

  .prototype-logout-banner {
    background: #eef4ff;
    border: 1px solid #c8d9ff;
    border-left: 4px solid #3b82f6;
    border-radius: 10px;
    color: #1e3a8a;
    margin: 0 0 16px;
    padding: 10px 12px;
  }

  .dev-tools-menu-container {
    position: relative;
  }

  .dev-tools-trigger {
    align-items: center;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 8px;
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    height: 36px;
    justify-content: center;
    min-width: 44px;
    padding: 0 6px;
    transition: all 0.16s ease;
  }

  .dev-tools-trigger:hover {
    background: #f8fafc;
    border-color: var(--neutral-50);
    color: var(--text-default);
  }

  .dev-tools-trigger.open,
  .dev-tools-trigger.active {
    background: #eef4ff;
    border-color: #c8d9ff;
    color: #1e3a8a;
  }

  .dev-tools-menu {
    background: var(--neutral-0);
    border: 1px solid var(--neutral-50);
    border-radius: 10px;
    box-shadow:
      0 8px 24px rgb(15 23 42 / 10%),
      0 2px 8px rgb(15 23 42 / 6%);
    display: flex;
    flex-direction: column;
    margin-top: 8px;
    min-width: 210px;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 100%;
    z-index: 200;
  }

  .dev-tools-menu-label {
    color: var(--text-light);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 10px 14px 6px;
    text-transform: uppercase;
  }

  .dev-tools-external-link {
    cursor: pointer;
    justify-content: space-between;
    text-decoration: none;
  }

  .dev-tools-external-icon {
    color: var(--text-light);
    font-size: 12px;
  }

  .portal-nav-bar {
    background-color: var(--neutral-0);
    border-bottom: 1px solid var(--neutral-50);
    width: 100%;
  }

  .portal-nav-centered {
    display: flex;
    gap: 0;
    margin: 0 auto;
    overflow-x: auto;
    padding: 0 24px;
  }

  .portal-nav-tab {
    align-items: center;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    gap: 6px;
    padding: 12px 14px 10px;
    transition:
      color 0.15s ease,
      border-color 0.15s ease;
    white-space: nowrap;
  }

  .portal-nav-tab:hover:not(:disabled) {
    color: var(--text-default);
  }

  .portal-nav-tab.active {
    border-bottom-color: var(--tertiary);
    color: var(--tertiary);
    font-weight: 600;
  }

  .portal-nav-tab-soon {
    cursor: default;
    opacity: 0.55;
  }

  .portal-nav-soon-badge {
    background: #edf2f7;
    border-radius: 4px;
    color: var(--text-light);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 2px 5px;
    text-transform: uppercase;
  }
}

.profile-modal-content {
  padding: 0 24px 28px;
}

.profile-modal-subtitle {
  color: var(--text-light);
  margin: 8px 0 18px;
}

.profile-form-grid {
  display: grid;
  gap: 12px;
}

.profile-form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
}

.profile-form-field span {
  color: var(--text-light);
  font-size: 12px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.profile-form-field input {
  border: 1px solid var(--neutral-50);
  border-radius: 8px;
  color: var(--text-default);
  padding: 10px 12px;
}

.profile-form-field input:focus {
  border-color: var(--tertiary);
}

.profile-modal-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 20px;
}

.profile-action {
  background: var(--tertiary);
  border: 1px solid var(--tertiary);
  border-radius: 10px;
  color: var(--neutral-0);
  font-weight: 600;
  padding: 10px 14px;
}

.profile-action.profile-action-secondary {
  background: #f8fafc;
  border-color: var(--neutral-50);
  color: var(--text-default);
}
.profile-page {
  width: 100%;
}

/* Loading & Error States */
.profile-loading,
.profile-error {
  padding: 40px;
  text-align: center;
  color: var(--text-light);
  font-size: 16px;
}

.profile-error {
  color: var(--error-red);
}

/* Success Banner */
.profile-success-banner {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  border-radius: 8px;
  color: #155724;
  padding: 12px 16px;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 500;
}

/* Header */
.profile-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.profile-title {
  color: var(--text-default);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.4px;
  margin: 0 0 8px;
}

.profile-intro {
  color: var(--text-light);
  font-size: 14px;
  margin: 0;
  max-width: 600px;
}

.profile-edit-btn {
  background: var(--tertiary);
  border: none;
  border-radius: 8px;
  color: var(--neutral-0);
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 18px;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.profile-edit-btn:hover {
  opacity: 0.9;
}

/* Profile Card */
.profile-card {
  background: var(--neutral-0);
  border: 1px solid var(--neutral-50);
  border-radius: 10px;
  overflow: hidden;
}

.profile-section {
  padding: 32px;
  border-bottom: 1px solid var(--neutral-50);
}

.profile-section:last-child {
  border-bottom: none;
}

.profile-section-title {
  color: var(--text-default);
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 20px;
}

.profile-fields {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.profile-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.profile-field-label {
  color: var(--text-light);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.profile-field-value {
  color: var(--text-default);
  font-size: 15px;
  font-weight: 500;
}

.profile-field-code {
  font-family: 'Courier New', monospace;
  font-size: 14px;
  color: var(--text-light);
}

/* Modal Styling */
.profile-modal-content {
  padding: 32px;
  max-width: 600px;
}

.profile-modal-title {
  color: var(--text-default);
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 8px;
}

.profile-modal-subtitle {
  color: var(--text-light);
  font-size: 14px;
  margin: 0 0 24px;
}

.profile-form {
  width: 100%;
}

.profile-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.profile-form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.profile-form-field-full {
  grid-column: 1 / -1;
}

.profile-form-label {
  color: var(--text-default);
  font-size: 14px;
  font-weight: 500;
}

.profile-form-required {
  color: var(--error-red);
}

.profile-form-input {
  border: 1px solid var(--neutral-100);
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 14px;
  color: var(--text-default);
  font-family: inherit;
  transition: border-color 0.2s;
}

.profile-form-input:focus {
  outline: none;
  border-color: var(--tertiary);
}

.profile-form-input:disabled {
  background: var(--neutral-25);
  color: var(--text-light);
  cursor: not-allowed;
}

.profile-form-error {
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  border-radius: 6px;
  color: #721c24;
  padding: 10px 12px;
  font-size: 14px;
  margin-top: -8px;
  margin-bottom: 16px;
}

.profile-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--neutral-50);
}

.profile-action {
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  cursor: pointer;
  transition: opacity 0.2s;
  background: var(--tertiary);
  color: var(--neutral-0);
}

.profile-action:hover:not(:disabled) {
  opacity: 0.9;
}

.profile-action:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.profile-action-secondary {
  background: var(--neutral-0);
  color: var(--text-default);
  border: 1px solid var(--neutral-100);
}

.profile-action-secondary:hover:not(:disabled) {
  background: var(--neutral-25);
  opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .profile-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .profile-edit-btn {
    width: 100%;
  }

  .profile-fields {
    grid-template-columns: 1fr;
  }

  .profile-form-grid {
    grid-template-columns: 1fr;
  }
}
.invite-accept-page {
  max-width: 640px;
}

.invite-accept-form-shell {
  border: 1px solid #d0d7de;
  border-radius: 8px;
  padding: 24px;
  background: #fff;
}

.invite-accept-form-shell__description {
  margin-top: 8px;
  margin-bottom: 8px;
}

.invite-accept-form-shell__greeting {
  margin-top: 0;
  margin-bottom: 8px;
  color: #344054;
}

.invite-accept-form-shell__email {
  margin-top: 0;
  margin-bottom: 16px;
  color: #475467;
}

.invite-accept-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.invite-accept-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.invite-accept-field input {
  border: 1px solid #98a2b3;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 14px;
}

.invite-accept-password-rules {
  margin: 4px 0 0;
  padding-left: 20px;
  color: #475467;
}

.invite-accept-form-error {
  margin: 0;
  color: #b42318;
}

.invite-accept-submit-btn {
  width: fit-content;
  border: 0;
  border-radius: 6px;
  padding: 10px 16px;
  background: #1d4ed8;
  color: #fff;
  cursor: pointer;
}

.invite-accept-submit-btn:hover {
  background: #1e40af;
}

.invite-accept-feedback {
  border-radius: 8px;
  padding: 20px;
}

.invite-accept-feedback--loading {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
}

.invite-accept-feedback--success {
  background: #ecfdf3;
  border: 1px solid #abefc6;
}

.invite-accept-feedback--error {
  background: #fff5f5;
  border: 1px solid #fecaca;
}

.invite-accept-feedback__title {
  margin: 0;
}

.invite-accept-feedback__message,
.invite-accept-feedback__details {
  margin: 8px 0 0;
}

.invite-accept-feedback__actions {
  margin-top: 12px;
}

.invite-accept-action-link {
  color: #1d4ed8;
  font-weight: 600;
  text-decoration: none;
}

.invite-accept-action-link:hover {
  text-decoration: underline;
}
.forgot-password-page {
  max-width: 560px;
}

.forgot-password-page__title {
  margin: 0;
}

.forgot-password-page__description {
  margin-top: 8px;
  margin-bottom: 0;
}

.forgot-password-page__form {
  margin-top: 20px;
  display: grid;
  gap: 16px;
}

.forgot-password-page__field {
  display: grid;
  gap: 8px;
}

.forgot-password-page__field span {
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.forgot-password-page__field input {
  width: 100%;
  box-sizing: border-box;
  border-radius: 10px;
  border: 1px solid #d0d5dd;
  padding: 10px 12px;
}

.forgot-password-page__field input:focus {
  outline: none;
  border-color: #0a66ff;
  box-shadow: 0 0 0 2px rgba(10, 102, 255, 0.16);
}

.forgot-password-page__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.forgot-password-page__action {
  border: 0;
  border-radius: 10px;
  padding: 10px 16px;
  background: #0a66ff;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.forgot-password-page__action:disabled {
  cursor: not-allowed;
  opacity: 0.65;
}

.forgot-password-page__feedback {
  margin-top: 20px;
}

.forgot-password-page__feedback-title {
  margin-top: 0;
  margin-bottom: 8px;
}

.forgot-password-page__integration-note {
  margin-top: 0;
}

.forgot-password-page__link {
  color: #0a66ff;
}

.forgot-password-page__error {
  color: #b42318;
}
.reset-password-page {
  max-width: 560px;
}

.reset-password-page__title {
  margin: 0;
}

.reset-password-page__description,
.reset-password-page__status-copy {
  margin-top: 8px;
  margin-bottom: 0;
}

.reset-password-page__integration-note {
  margin-top: 8px;
  margin-bottom: 0;
}

.reset-password-page__form {
  margin-top: 20px;
  display: grid;
  gap: 16px;
}

.reset-password-page__field {
  display: grid;
  gap: 8px;
}

.reset-password-page__field span {
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.reset-password-page__field input {
  width: 100%;
  box-sizing: border-box;
  border-radius: 10px;
  border: 1px solid #d0d5dd;
  padding: 10px 12px;
}

.reset-password-page__field input:focus {
  outline: none;
  border-color: #0a66ff;
  box-shadow: 0 0 0 2px rgba(10, 102, 255, 0.16);
}

.reset-password-page__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reset-password-page__action {
  border: 0;
  border-radius: 10px;
  padding: 10px 16px;
  background: #0a66ff;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.reset-password-page__action:disabled {
  cursor: not-allowed;
  opacity: 0.65;
}

.reset-password-page__link {
  color: #0a66ff;
}

.reset-password-page__error {
  color: #b42318;
}
.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;
    margin-top: -6px; /* sit close btn over accent line to save vertical space */
  }

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

  .modal-close-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: block;
    margin: 6px 6px 0 0;
    padding: 4px;
  }

  .modal-close-btn:hover .x-close,
  .modal-close-btn:focus .x-close {
    opacity: 0.8;
  }

  .modal-close-btn:focus-visible {
    outline: 2px solid var(--tertiary);
    outline-offset: 2px;
  }

  .x-close {
    display: block;
    height: 24px;
    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;
}
.user-management-page {
  width: 100%;
}

.user-management-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.user-management-title {
  color: var(--text-default);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.4px;
  margin: 0 0 8px;
}

.user-management-intro {
  color: var(--text-light);
  font-size: 14px;
  margin: 0;
  max-width: 800px; /* 2/3 of 1200px page width */
}

.user-management-add-btn {
  background: var(--tertiary);
  border: none;
  border-radius: 8px;
  color: var(--neutral-0);
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 18px;
  white-space: nowrap;
}

.user-management-add-btn:hover {
  opacity: 0.9;
}

.user-management-add-btn:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.user-management-preview-hint {
  color: var(--text-light);
  font-size: 13px;
  margin: 6px 0 0;
}

.user-management-invite-banner {
  align-items: center;
  background: #eef6ff;
  border: 1px solid #bfdcff;
  border-radius: 8px;
  color: #1e3a8a;
  display: flex;
  font-size: 14px;
  justify-content: space-between;
  margin-bottom: 14px;
  padding: 10px 12px;
}

.user-management-invite-banner button {
  background: transparent;
  border: none;
  color: #1e3a8a;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
}

.user-management-table-wrap {
  background: var(--neutral-0);
  border: 1px solid var(--neutral-50);
  border-radius: 10px;
  overflow: auto;
}

.user-management-table {
  border-collapse: collapse;
  font-size: 14px;
  width: 100%;
}

.user-management-table th,
.user-management-table td {
  border-bottom: 1px solid var(--neutral-50);
  padding: 12px 16px;
  text-align: left;
}

.user-management-table th {
  background: #f8fafc;
  color: var(--text-light);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.user-management-th-actions {
  width: 48px;
  text-align: right;
}

.user-management-cell-actions {
  align-items: center;
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  text-align: right;
  vertical-align: middle;
}

.user-management-resend-btn {
  background: #eef2ff;
  border: 1px solid #c7d2fe;
  border-radius: 6px;
  color: #4338ca;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 8px;
  white-space: nowrap;
}

.user-management-resend-btn:hover {
  background: #e0e7ff;
}

.user-management-resend-btn:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

.user-management-edit-btn {
  align-items: center;
  background: none;
  border: none;
  border-radius: 6px;
  color: var(--text-light);
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  padding: 6px;
}

.user-management-edit-btn:hover {
  background: #f1f5f9;
  color: var(--text-default);
}

.user-management-table tbody tr:last-child td {
  border-bottom: none;
}

.user-management-table tbody tr:hover {
  background: #f8fafc;
}

/* Modals */
.user-management-modal {
  padding: 0 24px 24px;
}

.user-management-modal-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 20px;
}

.user-management-form-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 20px;
}

.user-management-field-full {
  grid-column: 1 / -1;
}

.user-management-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.user-management-field-label {
  color: var(--text-light);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.user-management-field input {
  border: 1px solid var(--neutral-50);
  border-radius: 8px;
  font-size: 14px;
  padding: 9px 12px;
}

.user-management-field input:focus {
  border-color: var(--tertiary);
  outline: none;
}

.user-management-input-readonly {
  background: #f8fafc !important;
  color: var(--text-light);
  cursor: not-allowed;
}

.user-management-readonly-hint {
  color: var(--text-light);
  font-size: 12px;
  margin-top: 2px;
}

.user-management-field-error {
  color: #b91c1c;
  font-size: 12px;
  margin-top: 4px;
}

.user-management-roles-fieldset {
  border: none;
  margin: 0 0 24px;
  padding: 0;
}

.user-management-roles-fieldset .user-management-field-label {
  margin-bottom: 4px;
}

.user-management-roles-hint {
  color: var(--text-light);
  font-size: 13px;
  margin: 0 0 12px;
}

.user-management-role-option {
  align-items: flex-start;
  cursor: pointer;
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}

.user-management-role-option:last-of-type {
  margin-bottom: 0;
}

.user-management-role-option input[type='checkbox'] {
  margin-top: 4px;
}

.user-management-role-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.user-management-role-label {
  font-weight: 600;
  font-size: 14px;
}

.user-management-role-desc {
  color: var(--text-light);
  font-size: 13px;
  line-height: 1.4;
}

.user-management-role-option input[type='checkbox']:checked + .user-management-role-text .user-management-role-label {
  color: var(--tertiary);
}

.user-management-pending-invite {
  align-items: center;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 8px;
  color: #9a3412;
  display: flex;
  font-size: 13px;
  gap: 10px;
  justify-content: space-between;
  margin-top: 12px;
  padding: 10px 12px;
}

.user-management-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.user-management-modal-btn {
  background: var(--tertiary);
  border: none;
  border-radius: 8px;
  color: var(--neutral-0);
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 18px;
}

.user-management-modal-btn:hover {
  opacity: 0.9;
}

.user-management-modal-btn-secondary {
  background: #f1f5f9;
  color: var(--text-default);
  border: 1px solid var(--neutral-50);
}

.user-management-modal-btn-secondary:hover {
  background: #e2e8f0;
}


@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;
}
}
:root {
  --neutral-0: #ffffff;
  --neutral-15: #f7fafc;
  --neutral-25: #edf2f7;
  --neutral-50: #d9e2ec;
  --neutral-95: #1f2f46;
  --text-default: #22344d;
  --text-light: #5a6d85;
  --background-light-grey: #f7fafc;
  --tertiary: #0b3344;
  --warning: #e6893d;
  --slider-blue: #0b3344;
  --slider-grey: #d7e0ea;
}
body {
  margin: 0;
  background-color: var(--neutral-15);
  color: var(--text-default);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-image:
    radial-gradient(circle at 15% 20%, rgb(217 226 236 / 60%) 0%, transparent 38%),
    radial-gradient(circle at 85% 0%, rgb(217 226 236 / 50%) 0%, transparent 40%),
    radial-gradient(circle at 35% 85%, rgb(230 137 61 / 8%) 0%, transparent 42%);
  input {
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI',
      sans-serif;
  }
  input:focus,
  select:focus,
  textarea:focus,
  button:focus {
    outline: none;
  }
}
.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;
}
.calculator-unavailable {
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  font-size: 18px;
  height: 100%;
  max-width: 600px;
  justify-content: center;
  text-align: center;
  background-color: white;
  padding: 3rem 5rem;
  align-items: center;

  p {
    margin: 0rem;
    margin-bottom: 1rem;
  }

  .file-x-icon-container {
    background-color: var(--neutral-25);
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    flex-direction: row;
  }
  .file-x-icon {
    color: var(--slider-blue);
    height: 42px;
    width: 42px;
  }
}
/* Setup pages breadcrumb (Home › Page name) */
.setup-breadcrumb {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  gap: 6px;
  margin-bottom: 16px;
}
.setup-breadcrumb-link {
  color: var(--tertiary);
  font-weight: 600;
  text-decoration: none;
}
.setup-breadcrumb-link:hover {
  text-decoration: underline;
}
.setup-breadcrumb-sep {
  color: var(--text-light);
  font-weight: 400;
}
.setup-breadcrumb-current {
  color: var(--text-light);
}
