:root {
  --accent500: hsl(47, 97%, 54%);
  --accent600: hsl(47, 97%, 48%);
  --primary500: hsl(197, 42%, 42%);
  --primary600: hsl(197, 58%, 30%);
  --neutral0: hsl(0, 0%, 100%);
  --neutral100: hsl(210, 20%, 98%);
  --neutral200: hsl(220, 14%, 96%);
  --neutral300: hsl(220, 13%, 91%);
  --neutral400: hsl(217, 10%, 84%);
  --neutral500: hsl(219, 9%, 65%);
  --neutral600: hsl(221, 8%, 46%);
  --neutral700: hsl(217, 12%, 34%);
  --neutral800: hsl(219, 17%, 27%);
  --neutral900: hsl(217, 24%, 17%);
  --neutral1000: hsl(222, 36%, 11%);
  --error500: hsl(0, 100%, 33%);

  --fs12: 1.2rem;
  --fs14: 1.4rem;
  --fs16: 1.6rem;
  --fs18: 1.8rem;
  --fs24: 2.4rem;
  --fs40: 4rem;

  --fw-regular: 400;
  --fw-medium: 500;
  --fw-bold: 700;
  --fw-black: 900;

  --text-clr: var(--neutral900);
  --text-clr-secondary: var(--neutral800);
  --text-clr-tertiary: var(--neutral700);

  --gap: 12px;
}

/*************************************
**************************************
**************************************
General Styles
**************************************
**************************************
**************************************/

html {
  font-size: 10px;
}

html,
html a {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  background-color: var(--neutral100);
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: var(--text-clr);
}

* {
  box-sizing: border-box;
  vertical-align: top;
}

:focus:not(:focus-visible) {
  outline: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

a,
a:link,
a:visited {
  color: inherit;
  text-decoration: none;
}

a.link {
  text-decoration: underline;
}
a.link:is(:hover, :focus-visible) {
  color: var(--neutral1000);
}

.hidden {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.page-width {
  width: 100%;
  max-width: 100rem;
  padding-inline: 1.2rem;
  margin-inline: auto;
}
.page-width--lg {
  width: 100%;
  max-width: 120rem;
  padding-inline: 1.2rem;
  margin-inline: auto;
}
.full-width {
  width: 100vw;
  margin-left: 50%;
  transform: translate3d(-50%, 0, 0);
}
.page-width--calendar {
  padding-inline: 0.8rem;
}
.page-width--calendar.sticky-header {
  position: fixed;
  top: 0;
  z-index: 10;
  margin: 0;
  width: 100%;
}

@media only screen and (min-width: 75em) {
  .page-width--calendar {
    display: grid;
    place-content: center;
  }
  .page-width--calendar .card,
  .page-width--calendar #sticky-header-container {
    min-width: 97.6rem;
  }
}

.text-section {
  width: 100%;
  max-width: 60rem;
  padding-inline: 1.2rem;
  margin-inline: auto;
  margin-block: 7.2rem;
}

.title {
  margin: 0;
  font-size: var(--fs24);
  font-weight: var(--fw-black);
  color: var(--neutral0);
}

.title-subtext {
  margin: 1.6rem 0 0;
  font-size: var(--fs18);
  font-weight: var(--fw-medium);
  color: var(--neutral200);
  line-height: 1.5;
  max-width: 70rem;
}

.subtitle {
  margin: 0;
  font-size: var(--fs24);
  font-weight: var(--fw-bold);
}
.subtitle--sm {
  margin: 0;
  font-size: var(--fs16);
  font-weight: var(--fw-bold);
}
.subtitle--sm i {
  font-size: var(--fs24);
  color: var(--primary600);
}
.subtitle--xs {
  margin: 0;
  font-size: var(--fs14);
  font-weight: var(--fw-bold);
}
.subtitle--white {
  margin: 0;
  font-size: var(--fs24);
  font-weight: var(--fw-bold);
  color: var(--neutral0);
}
.subtitle--white-alt {
  margin: 0;
  font-size: var(--fs24);
  font-weight: var(--fw-medium);
  color: var(--neutral0);
  line-height: 1.1;
}
.subtitle--white-alt b {
  font-weight: var(--fw-bold);
}

.text {
  margin: 0;
  font-size: var(--fs16);
  font-weight: var(--fw-regular);
  color: var(--text-clr);
  line-height: 1.5;
}
.text + .text {
  margin-top: 1.5em;
}
.text .link {
  color: var(--primary600);
}
.text--xs {
  margin: 0;
  font-size: var(--fs14);
  font-weight: var(--fw-regular);
  color: var(--text-clr);
  line-height: 1.5;
}

.subtext {
  margin: 0;
  font-size: var(--fs12);
  font-weight: var(--fw-regular);
  color: var(--text-clr-tertiary);
  line-height: 1.5;
}

.label {
  font-size: var(--fs14);
  font-weight: var(--fw-medium);
  color: var(--text-clr);
}
.label.has-tooltip {
  position: relative;
  padding-right: 3.2rem;
}
.label.has-tooltip button {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.label.nowrap {
  white-space: nowrap;
}

.unordered-list {
  font-size: var(--fs16);
  padding-left: 1.6rem;
  list-style-type: disc;
  margin: 1.2rem 0 1.5em;
}
.unordered-list li {
  font-size: var(--fs16);
  font-weight: var(--fw-regular);
  color: var(--text-clr);
  line-height: 1.5;
  padding-left: 0.8rem;
}

.no-touch {
  pointer-events: none;
}

.primary-clr-section {
  background: linear-gradient(45deg, var(--primary600), var(--primary500));
  /* to contain card section margin */
  overflow: hidden;
}
.primary-clr-section .card-section {
  margin-block: 4.8rem 7.2rem;
}

.result-combo h4,
.result-combo h3 {
  margin: 0;
  font-size: var(--fs16);
  font-weight: var(--fw-medium);
}
.result-combo p {
  margin: 0.4rem 0 0;
  font-size: var(--fs18);
  font-weight: var(--fw-bold);
}
.result-combo p#total-payment,
.result-combo p#total-paid {
  font-size: var(--fs16);
}

.u-relative {
  isolation: isolate;
  position: relative;
}
.u-flex {
  display: flex;
}
.u-flex.flex-start {
  align-items: flex-start;
}
.u-flex.align-center {
  align-items: center;
}
.u-flex.justify-center {
  justify-content: center;
}
.u-flex.align-bottom {
  align-items: flex-end;
}
.u-flex.space-between {
  justify-content: space-between;
}
.u-flex.flex-end {
  justify-content: flex-end;
}
.u-flex.direction-column {
  flex-direction: column;
}
.u-flex.wrap {
  flex-wrap: wrap;
}
.u-flex.flex-1 {
  flex: 1;
}
.u-flex.gap-32 {
  gap: 3.2rem;
}
.u-flex.gap-24 {
  gap: 2.4rem;
}
.u-flex.gap-16 {
  gap: 1.6rem;
}
.u-flex.gap-8 {
  gap: 0.8rem;
}

.u-mt-4 {
  margin-top: 0.4rem;
}
.u-mt-8 {
  margin-top: 0.8rem;
}
.u-mt-12 {
  margin-top: 1.2rem;
}
.u-mt-16 {
  margin-top: 1.6rem;
}
.u-mt-24 {
  margin-block-start: 2.4rem !important;
}
.u-mt-32 {
  margin-block-start: 3.2rem !important;
}
.u-mt-48 {
  margin-block-start: 4.8rem !important;
}
.u-mt-64 {
  margin-top: 6.4rem;
}
.u-mt-72 {
  margin-block-start: 7.2rem !important;
}

.u-mr-8 {
  margin-right: 0.8rem;
}

.u-ml-auto {
  margin-left: auto;
}

.u-mb-24 {
  margin-block-end: 2.4rem !important;
}
.u-mb-48 {
  margin-block-end: 4.8rem !important;
}

.u-max-height {
  height: 100%;
}
.u-max-width-text {
  max-width: 60rem;
}
.u-max-width-160 {
  max-width: 16rem;
}
.u-max-width-120 {
  max-width: 12rem;
}
.u-full-width {
  width: 100%;
}

.no-overflow {
  overflow-x: hidden;
  overflow-y: hidden;
}

@media only screen and (min-width: 48em) {
  .title {
    font-size: var(--fs40);
  }
}

/*************************************
**************************************
**************************************
Button Styles
**************************************
**************************************
**************************************/

.btn {
  display: inline-flex;
  align-items: center;
  border: none;
  background: none;
  font-size: var(--fs16);
  font-weight: var(--fw-medium);
  color: var(--neutral1000);
  padding: 0.8rem 1.6rem;
  gap: 0.8rem;
  min-height: 4.8rem;
  border-radius: 5px;
  transition: background-color 100ms ease, border 100ms ease;
}
.btn:hover {
  cursor: pointer;
}
.btn:focus-visible {
  outline: 2px solid var(--neutral800);
  outline-offset: 2px;
}
.btn:disabled {
  opacity: 0.5;
  background-color: var(--neutral300);
  pointer-events: none;
}

.btn--primary {
  background-color: var(--accent500);
}
.btn--primary:hover {
  background-color: var(--accent600);
}

.btn--secondary {
  border: 2px solid var(--neutral700);
}
.btn--secondary:hover {
  background-color: hsl(217 24% 17% / 5%);
}

.btn--tertiary {
  background-color: var(--neutral300);
}
.btn--tertiary:hover {
  background-color: var(--neutral400);
}

.btn--link,
a.btn--link {
  display: inline-block;
  border: none;
  background: none;
  padding: 0;
  font-size: var(--fs14);
  font-weight: var(--fw-regular);
  color: var(--text-clr-tertiary);
  text-decoration: underline;
}
.btn--link:hover,
a.btn--link:hover {
  cursor: pointer;
  color: var(--text-clr);
}
.btn--link:active,
a.btn--link:active {
  transform: translateY(1px);
}

.btn-icon {
  background: none;
  border: none;
  height: 4.8rem;
  width: 4.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  transition: background-color 100ms ease;
}
.btn-icon:hover {
  cursor: pointer;
  background-color: hsl(217 24% 17% / 5%);
}
.btn-icon:focus-visible {
  outline: 2px solid var(--neutral800);
  outline-offset: 2px;
}
.btn-icon i {
  font-size: var(--fs24);
  color: var(--text-clr-tertiary);
}

.btn-icon--sm {
  height: 3.2rem;
  width: 3.2rem;
}
.btn-icon--sm i {
  color: var(--neutral600);
}

.btn-icon--xs {
  height: 3.2rem;
  width: 3.2rem;
}
.btn-icon--xs i {
  font-size: var(--fs18);
  color: var(--neutral600);
}

.is-nowrap {
  white-space: nowrap;
}

/*************************************
**************************************
**************************************
Top Styles
**************************************
**************************************
**************************************/

.skip-to {
  display: inline-flex;
  background-color: var(--neutral0);
  padding: 8px 16px;
  font-size: var(--fs14);
  font-weight: var(--fw-medium);
  border-radius: 5px;
  position: absolute;
  z-index: 99;
  transform: translateY(-150%);
  transition: transform 100ms ease;
}
.skip-to:focus-visible {
  transform: translateY(0);
  outline: 2px solid var(--neutral800);
}

.top {
  min-height: 3.6rem;
  background-color: var(--neutral100);
  border-bottom: 1px solid var(--neutral300);
}

.top__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: var(--fw-medium);
  font-size: var(--fs12);
}
.top__content p {
  color: var(--text-clr-tertiary);
  font-style: italic;
}

.top__links {
  display: flex;
  align-items: center;
  color: var(--text-clr);
}
.top__links a {
  padding: 0.8rem 1.6rem;
}
.top__links a:is(:hover, :focus-visible) {
  text-decoration: underline;
}
.top__links a:focus-visible {
  outline: 2px solid var(--neutral800);
  outline-offset: 2px;
}

@media only screen and (max-width: 48em) {
  .top {
    min-height: 0;
  }
  .top__content {
    display: none;
  }
}

/*************************************
**************************************
**************************************
Tab Styles
**************************************
**************************************
**************************************/

.tabs {
  background-color: var(--neutral0);
  box-shadow: 0 3px 3px hsl(0 0% 0% / 15%);
  position: relative;
  z-index: 2;
}

.tabs__content {
  min-height: 6.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  max-height: 3.2rem;
}
.logo:focus-visible {
  outline: 2px solid var(--neutral800);
  outline-offset: 2px;
}

.nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  box-shadow: 0 0.6rem 0.6rem hsl(0 0% 0% / 15%);
}
.nav.is-active {
  display: block;
}
.nav li {
  position: relative;
}

.nav-link {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
  min-height: 4rem;
  border: none;
  background-color: var(--neutral0);
  border-top: 1px solid var(--neutral300);
  padding: 0.8rem 1.6rem;
  font-size: var(--fs14);
  font-weight: var(--fw-medium);
  color: var(--text-clr);
  transition: background-color 100ms ease;
}
.nav-link i {
  color: inherit;
}
.nav-link:hover {
  cursor: pointer;
  background-color: var(--neutral200);
}
.nav-link:active {
  background-color: var(--neutral300);
}
.nav-link:focus-visible {
  outline: 2px solid var(--neutral800);
  outline-offset: 2px;
  z-index: 2;
}

.nav-link.dropdown-toggle {
  padding-right: 0.8rem;
}
.nav-link.dropdown-toggle.is-active {
  background-color: var(--neutral200);
}

.nav__btn {
  background: none;
  height: 4.8rem;
  width: 4.8rem;
  border-radius: 50%;
  border: none;
  position: relative;
  padding: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.nav__btn > div {
  width: 20px;
  height: 14px;
  position: relative;
}
.nav__btn > div div {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  transition: transform 0.5s ease;
}
.nav__btn > div div span {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
}
.nav__btn > div div span:first-child {
  top: 0;
}
.nav__btn > div div span:first-child:before,
.nav__btn > div div span:first-child:after {
  top: 0;
}
.nav__btn > div div span:last-child {
  bottom: 0;
}
.nav__btn > div div span:last-child:before,
.nav__btn > div div span:last-child:after {
  bottom: 0;
}
.nav__btn > div div span:before,
.nav__btn > div div span:after {
  content: "";
  display: block;
  width: 47%;
  height: 2px;
  border-radius: 1px;
  background: #1e293b;
  position: absolute;
  -webkit-backface-visibility: hidden;
  transition: transform 0.5s ease, border-radius 0.3s ease, background 0.4s ease;
}
.nav__btn > div div span:before {
  left: 0;
  transform-origin: 0 50%;
  transform: translate(1px, 0) scaleX(1.1);
}
.nav__btn > div div span:after {
  right: 0;
  transform-origin: 100% 50%;
  transform: translate(-1px, 0) scaleX(1.1);
}
.nav__btn > div svg {
  fill: none;
  stroke: #1e293b;
  stroke-width: 2px;
  width: 44px;
  height: 44px;
  stroke-linecap: round;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -22px 0 0 -22px;
  stroke-dasharray: 0 82.801 8 82.801;
  stroke-dashoffset: 82.801;
  transform-origin: 50% 50%;
  -webkit-backface-visibility: hidden;
  transform: scale(1);
  transition: stroke-dashoffset 0.5s ease, stroke-dasharray 0.6s ease,
    transform 0.5s ease, stroke 0.4s ease;
}
.nav__btn > div svg:nth-child(3) {
  transform: rotate(180deg) scale(1);
}
.nav__btn.is-active > div div {
  transform: rotate(90deg);
}
.nav__btn.is-active > div div span:before,
.nav__btn.is-active > div div span:after {
  background: #1e293b;
}
.nav__btn.is-active > div div span:first-child:before {
  transform: rotate(45deg) translate(2.2px, -3px) scaleX(1.05);
}
.nav__btn.is-active > div div span:first-child:after {
  transform: rotate(-45deg) translate(-2.2px, -3px) scaleX(1.05);
}
.nav__btn.is-active > div div span:last-child:before {
  transform: rotate(-45deg) translate(2.2px, 3px) scaleX(1.05);
}
.nav__btn.is-active > div div span:last-child:after {
  transform: rotate(45deg) translate(-2.2px, 3px) scaleX(1.05);
}
.nav__btn.is-active > div svg {
  stroke-dashoffset: 62;
  stroke-dasharray: 0 82.801 62 82.801;
  transform: rotate(90deg);
  stroke: #1e293b;
}
.nav__btn.is-active > div svg:nth-child(3) {
  transform: rotate(270deg);
}

.dropdown-menu {
  display: none;
  background-color: var(--neutral100);
}

.dropdown-menu.is-active {
  display: block;
}

.dropdown-item {
  border-top: 1px solid var(--neutral300);
  min-height: 4rem;
  padding: 0.8rem 1.6rem;
  display: flex;
  align-items: center;
  font-weight: var(--fw-medium);
  font-size: var(--fs14);
  color: var(--text-clr);
  white-space: nowrap;
  transition: background-color 100ms ease;
}
.dropdown-item:hover {
  cursor: pointer;
  background-color: var(--neutral200);
}
.dropdown-item:active {
  background-color: var(--neutral300);
}

.input.no-display,
.no-display {
  display: none;
}

@media only screen and (min-width: 42em) {
  .hide-md-up {
    display: none;
  }

  .nav {
    position: initial;
    display: flex;
    align-items: center;
    box-shadow: none;
  }

  .nav-link {
    width: auto;
    display: inline-flex;
    justify-content: unset;
    border-radius: 5px;
    border: none;
  }

  .nav__btn {
    display: none;
  }

  .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding-block: 0.8rem;
    border-radius: 5px;
    background-color: var(--neutral0);
    box-shadow: 0 0.1rem 0.3rem hsl(0 0% 0% / 50%);
  }

  .dropdown-menu.is-active {
    display: block;
  }

  .dropdown-item {
    border: none;
  }
}

/*************************************
**************************************
**************************************
Card Styles
**************************************
**************************************
**************************************/

.card-section {
  margin-block: 7.2rem;
}
.card-section--sm {
  margin-block: 4.8rem;
}
.card-section.no-margin {
  margin-block: 0;
}

.card {
  border-radius: 5px;
  background-color: var(--neutral0);
  box-shadow: 0 1rem 3rem hsl(0 0% 0% / 15%);
}

.card.has-overflow {
  overflow-x: auto;
}

.card--gray {
  border-radius: 5px;
  background-color: var(--neutral300);
}

.center-content {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.card--blue {
  border-radius: 5px;
  background-color: var(--primary600);
  box-shadow: 0 1rem 3rem hsl(0 0% 0% / 15%);
}
.card--blue > .result-combo * {
  color: var(--neutral100);
}
.card--blue .result-combo * {
  text-align: center;
}

.card--light-gray {
  border-radius: 5px;
  background-color: var(--neutral200);
}

.card--dark {
  border-radius: 5px;
  background-color: var(--neutral1000);
  box-shadow: 0 1rem 3rem hsl(0 0% 0% / 15%);
}
.card--dark * {
  color: var(--neutral200);
}

.card--yellow-highlight {
  box-shadow: -0.4rem 0.4rem 0 0 var(--accent500),
    0 1rem 3rem hsl(0 0% 0% / 15%);
}

.card-padding {
  padding: 1.6rem;
}
.card-padding--sm {
  padding: 1.6rem;
}
.card-padding--alt {
  position: relative;
  isolation: isolate;
  padding: 2.4rem 1.6rem;
}

.card__title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  min-height: 4.8rem;
  margin-bottom: 1.2rem;
}
.card__title .subtitle {
  flex: 0 0 100%;
}

@media only screen and (min-width: 48em) {
  .card-padding {
    padding: 3.2rem;
  }
  .card-padding--alt {
    padding: 2.4rem 3.2rem;
  }
  .card__title .subtitle {
    flex: 1;
    width: auto;
  }
}

/*************************************
**************************************
**************************************
Table Styles
**************************************
**************************************
**************************************/

.table-seperator {
  border: none;
  border-top: 8px solid var(--neutral300);
  margin: 0;
}

.table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 5px;
}

.table--bordered {
  border-collapse: separate;
  border-spacing: 0;
  border: solid var(--neutral400);
  border-width: 0 1px 1px 1px;
}

.table thead tr th {
  padding: 2rem 0.8rem;
  background: none;
  font-size: var(--fs14);
  font-weight: var(--fw-medium);
  color: var(--text-clr);
  text-align: left;
  vertical-align: middle;
}
.table tbody tr td.has-tooltip,
.table thead tr th.has-tooltip {
  padding-right: 4rem;
  position: relative;
}
.table tbody tr td.has-tooltip button,
.table thead tr th.has-tooltip button,
.table thead tr th.has-tooltip a {
  position: absolute;
  right: 0.8rem;
  top: 50%;
  transform: translatey(-50%);
}
.table thead tr th:first-of-type {
  border-top-left-radius: 5px;
}
.table thead tr th:last-of-type {
  border-top-right-radius: 5px;
}
.table tbody tr td,
.table tbody tr th {
  vertical-align: middle;
  text-align: left;
  padding: 1.6rem 0.8rem;
  border-top: 1px solid var(--neutral400);
  font-size: var(--fs16);
  font-weight: var(--fw-regular);
}
.table tbody tr td .input {
  margin-top: 0;
}
.table tbody tr td .input label {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.table tbody tr:last-of-type td:first-of-type {
  border-bottom-left-radius: 5px;
}
.table tbody tr:last-of-type td:last-of-type {
  border-bottom-right-radius: 5px;
}
.table.has-vertical-lines thead tr th,
.table.has-vertical-lines tbody tr td,
.table.has-vertical-lines tbody tr th {
  border-right: 1px solid var(--neutral400);
}
.table.has-vertical-lines thead tr th:last-of-type,
.table.has-vertical-lines tbody tr td:last-of-type {
  border-right: none;
}

.table--enter-debt {
  border-bottom: 1px solid var(--neutral400);
}
.table--enter-debt .odd-row,
.table--enter-debt .odd-row + .creditor-extra-info {
  background-color: var(--neutral100);
}
.table--enter-debt .creditor-extra-info > td {
  border-top: none;
}
.table--enter-debt > thead > tr > th:nth-of-type(1),
.table--enter-debt > tbody > tr > td:nth-of-type(1) {
  padding: 0;
  width: 3.2rem;
}
.table--enter-debt > tbody > tr > td:nth-of-type(1) > .btn-icon--sm {
  height: 4.8rem;
}
.table--enter-debt > tbody > tr > td:nth-of-type(1) > .btn-icon--sm:hover {
  cursor: move;
  background: none;
}
.table--enter-debt > thead > tr > th:nth-of-type(2),
.table--enter-debt > tbody > tr > td:nth-of-type(2) {
  width: 24.8rem;
  padding-left: 0;
}
.table--enter-debt > tbody > tr > td:nth-of-type(3) {
  width: 17.6rem;
}
.table--enter-debt > tbody > tr > td:nth-of-type(4) {
  width: 13.6rem;
}
.table--enter-debt > tbody > tr > td:nth-of-type(5) {
  width: 13.6rem;
}
.table--enter-debt > tbody > tr > td:nth-of-type(6) p {
  margin: 0;
  font-weight: var(--fw-regular);
  font-size: var(--fs14);
  color: var(--text-clr);
}
.table--enter-debt > tbody > tr > td:nth-of-type(6) p:last-of-type {
  flex: 1 0 100%;
  margin: 0.6rem 0 0;
  font-size: var(--fs12);
  color: var(--text-clr-tertiary);
}
.table--enter-debt > tbody > tr > td:nth-of-type(6) .label {
  display: none;
}
.table--enter-debt > thead > tr > th:nth-of-type(7),
.table--enter-debt tbody tr > td:nth-of-type(7) {
  padding-right: 1.6rem;
}

#new-debt,
#new-payment,
#extra-payments-section,
#emergency-fund-section {
  display: none;
}

#new-debt.is-active,
#new-payment.is-active {
  display: table-row;
}

#extra-payments-section.is-active,
#emergency-fund-section.is-active {
  display: block;
}

table.no-accounts #deleteNewDebt {
  display: none;
}

/* Emergency fund has an end date, so show the button to switch to balance */
form.end-on-date #switch-ef-date {
  display: block;
}

form.end-on-date #switch-ef-balance {
  display: none;
}

/* Emergency fund has an end balance, so show the button to switch to end date */
form.end-on-balance #switch-ef-balance {
  display: block;
}

form.end-on-balance #switch-ef-date {
  display: none;
}

#stop-balance-input.is-active {
  display: flex;
}

#ef-end-date-inputs.is-active {
  display: flex;
}
@media only screen and (max-width: 64em) {
  .table--enter-debt > thead {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
  }
  .table--enter-debt > tbody > tr {
    padding: 2.4rem 1.6rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.6rem 0;
    width: 100%;
    border-top: 1px solid var(--neutral400);
  }
  #new-debt.is-active {
    display: flex;
  }

  .table--enter-debt > tbody > tr:first-of-type {
    border-top: none;
  }
  .table--enter-debt .creditor-extra-info {
    padding: 0;
    border-top: none;
  }
  .table--enter-debt > tbody > tr.nodrag > td[colspan="7"] {
    width: 100%;
  }
  .table--enter-debt > tbody > tr > td {
    display: inline-block;
    padding: 0;
    border: none;
  }
  .table--enter-debt > tbody > tr > td:nth-of-type(2) .input.is-240,
  .table--enter-debt > tbody > tr > td:nth-of-type(3) .input.is-160 {
    max-width: 100%;
  }
  .table--enter-debt > tbody > tr > td:nth-of-type(1) {
    width: auto;
  }
  .table--enter-debt > tbody > tr > td:nth-of-type(2) {
    flex: 1 0 calc(60% - 3.2rem);
  }
  .table--enter-debt > tbody > tr > td:nth-of-type(3) {
    flex: 1 0 calc(40% - 1.6rem);
    margin-left: 1.6rem;
  }
  .table--enter-debt > tbody > tr > td:nth-of-type(4) {
    width: 12rem;
  }
  .table--enter-debt > tbody > tr > td:nth-of-type(5) {
    width: 16rem;
    margin-left: 1.6rem;
  }
  .table--enter-debt > tbody > tr > td:nth-of-type(5) .input.is-120 {
    max-width: 16rem;
  }
  .table--enter-debt > tbody > tr > td:nth-of-type(6) {
    flex: 1;
    margin-left: 1.6rem;
  }
  .table--enter-debt > tbody > tr > td:nth-of-type(6) .label {
    display: inline;
    flex: 1 0 100%;
    margin-bottom: 0.4rem;
  }
  .table--enter-debt > tbody > tr > td:nth-of-type(6) p:last-of-type {
    flex: 1;
    margin: 0 0 0 0.4rem;
    font-size: var(--fs14);
    color: var(--text-clr-tertiary);
  }
  .table--enter-debt > tbody > tr > td:nth-of-type(6) p:last-of-type::before {
    content: "(";
  }
  .table--enter-debt > tbody > tr > td:nth-of-type(6) p:last-of-type::after {
    content: ")";
  }

  .table--enter-debt tbody tr td .input {
    margin-top: 0.6rem;
  }
  .table--enter-debt tbody tr td .input label {
    position: absolute;
    top: 0px;
    left: 1.2rem;
    width: auto;
    height: auto;
    overflow: initial;
  }
}
@media only screen and (max-width: 48em) {
  .table--enter-debt > tbody > tr > td:nth-of-type(2),
  .table--enter-debt > tbody > tr > td:nth-of-type(3) {
    flex: 1 0 calc(100% - 3.2rem);
  }
  .table--enter-debt > tbody > tr > td:nth-of-type(3) {
    margin: 0;
  }
  .table--enter-debt > tbody > tr > td:nth-of-type(4),
  .table--enter-debt > tbody > tr > td:nth-of-type(5) {
    flex: 1 0 calc(50% - 0.8rem);
  }
  .table--enter-debt > tbody > tr > td:nth-of-type(4) .input.is-120,
  .table--enter-debt > tbody > tr > td:nth-of-type(5) .input.is-120 {
    max-width: 100%;
  }
  .table--enter-debt > tbody > tr > td:nth-of-type(6) {
    margin-left: 0;
  }
}
@media only screen and (max-width: 30em) {
  .table--enter-debt > tbody > tr > td:nth-of-type(2),
  .table--enter-debt > tbody > tr > td:nth-of-type(3) {
    flex: 1 0 calc(100% - 3.2rem);
  }
  .table--enter-debt > tbody > tr > td:nth-of-type(3),
  .table--enter-debt > tbody > tr > td:nth-of-type(5) {
    margin: 0;
  }
  .table--enter-debt > tbody > tr > td:nth-of-type(4),
  .table--enter-debt > tbody > tr > td:nth-of-type(5) {
    flex: 1 0 100%;
  }
  .table--enter-debt > tbody > tr > td:nth-of-type(4) .input.is-120,
  .table--enter-debt > tbody > tr > td:nth-of-type(5) .input.is-120 {
    max-width: 100%;
  }
  .table--enter-debt > tbody > tr > td:nth-of-type(6) {
    margin-left: 0;
  }
}

.table--promo-rate,
.table--min-payment {
  border-radius: 3px;
}
.table--min-payment thead tr th:first-of-type {
  border-top-left-radius: 3px;
}
.table--min-payment thead tr th:last-of-type {
  border-top-right-radius: 3px;
}
.table--promo-rate tbody tr th {
  border-bottom-left-radius: 3px;
}
.table--promo-rate tbody tr td:last-of-type {
  border-bottom-right-radius: 3px;
}
.table--promo-rate thead tr th,
.table--min-payment thead tr th {
  font-size: var(--fs14);
  font-weight: var(--fw-medium);
  padding: 0.8rem;
}
.table--promo-rate thead tr th:first-of-type,
.table--promo-rate tbody tr th,
.table--min-payment thead tr th:first-of-type,
.table--min-payment tbody tr td:first-of-type {
  padding-left: 1.2rem;
}
.table--promo-rate thead tr th:last-of-type,
.table--min-payment thead tr th:last-of-type {
  width: 9.6rem;
}
.table--promo-rate tbody tr th,
.table--promo-rate tbody tr td,
.table--min-payment tbody tr th,
.table--min-payment tbody tr td {
  padding-block: 0;
}
.table--promo-rate tbody tr td:last-of-type,
.table--min-payment tbody tr td:last-of-type {
  padding-inline: 0;
}
.table--min-payment thead tr th:first-of-type {
  width: 20rem;
}
@media only screen and (max-width: 48em) {
  .table--promo-rate thead,
  .table--min-payment thead {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
  }
  .table--promo-rate tbody tr,
  .table--min-payment tbody tr {
    position: relative;
    padding: 1.6rem 4.8rem 1.6rem 1.2rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.6rem 0;
    min-height: 9.6rem;
    width: 100%;
    border-bottom: 1px solid var(--neutral400);
  }
  .table--promo-rate tbody tr th,
  .table--promo-rate tbody tr td,
  .table--min-payment tbody tr td {
    position: relative;
    display: flex;
    align-items: center;
    border: none;
    padding: 0 0 0 11rem;
    flex: 1 0 100%;
  }
  .table--min-payment tbody tr td:first-of-type {
    padding: 0 0 0 11rem;
  }
  .table--promo-rate tbody tr td:last-of-type,
  .table--min-payment tbody tr td:last-of-type {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    width: 4.8rem;
  }
  .table--promo-rate tbody tr th::before,
  .table--promo-rate tbody tr td::before,
  .table--min-payment tbody tr th::before,
  .table--min-payment tbody tr td::before {
    position: absolute;
    top: 0.1rem;
    left: 0;
    width: 10rem;
    font-size: var(--fs14);
    font-weight: var(--fw-medium);
    text-align: right;
  }
  .table--promo-rate tbody tr th::before {
    content: "Promotional Rate:";
    top: -0.6rem;
  }
  .table--promo-rate tbody tr td:nth-of-type(1)::before {
    content: "Sub-Balance:";
  }
  .table--promo-rate tbody tr td:nth-of-type(2)::before {
    content: "Interest Rate:";
  }
  .table--promo-rate tbody tr td:nth-of-type(3)::before {
    content: "Termination:";
  }
  .table--min-payment tbody tr td:nth-of-type(1)::before {
    content: "Minimum Payment:";
    top: -0.6rem;
  }
  .table--min-payment tbody tr td:nth-of-type(2)::before {
    content: "% of Balance:";
  }
}

.table--extra-payments {
  border-bottom: 1px solid var(--neutral400);
}
.table--extra-payments thead tr th:first-of-type,
.table--extra-payments tbody tr td:first-of-type {
  width: 24rem;
  padding-left: 3.2rem;
}
.table--extra-payments thead tr th:nth-of-type(2),
.table--extra-payments tbody tr td:nth-of-type(2) {
  width: 16.8rem;
}
.table--extra-payments thead tr th:nth-of-type(3),
.table--extra-payments tbody tr td:nth-of-type(3) {
  width: 18.8rem;
}
.table--extra-payments thead tr th:nth-of-type(4),
.table--extra-payments tbody tr td:nth-of-type(4) {
  width: 14.8rem;
}
.table--extra-payments thead tr th:last-of-type,
.table--extra-payments tbody tr td:last-of-type {
  width: 9.6rem;
}
.table--extra-payments tbody tr:nth-of-type(odd) td {
  background-color: var(--neutral100);
}
@media only screen and (max-width: 64em) {
  .table--extra-payments thead {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
  }
  .table--extra-payments tbody tr {
    padding: 2.4rem 1.6rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.6rem;
    width: 100%;
    border-bottom: 1px solid var(--neutral400);
  }
  #new-payment.is-active {
    display: flex;
  }
  .table--extra-payments tbody tr:nth-of-type(odd) {
    background-color: var(--neutral100);
  }
  .table--extra-payments tbody tr td {
    display: inline-block;
    padding: 0;
    border: none;
    width: auto;
  }
  .table--extra-payments tbody tr td:first-of-type {
    flex: 1 0 calc(50% - 1.6rem);
    padding-left: 0;
  }
  .table--extra-payments tbody tr td:first-of-type .input.is-200 {
    max-width: 100%;
  }
  .table--extra-payments tbody tr td:nth-of-type(2) {
    flex: 1 0 calc(50% - 1.6rem);
  }
  .table--extra-payments tbody tr td:nth-of-type(2) .input.is-160 {
    max-width: 100%;
  }
  .table--extra-payments tbody tr td:nth-of-type(3) {
    flex: 1 0 calc(35% - 1.6rem);
  }
  .table--extra-payments tbody tr td:nth-of-type(3) .input.is-180 {
    max-width: 100%;
  }
  .table--extra-payments tbody tr td:nth-of-type(4) {
    flex: 0 0 14rem;
  }
  .table--extra-payments tbody tr td:nth-of-type(5) {
    flex: 0 0 12rem;
  }
  .table--extra-payments tbody tr td:nth-of-type(5) .input.is-96 {
    max-width: 12rem;
  }
  .table--extra-payments tbody tr td:last-of-type {
    width: auto;
    margin-left: auto;
  }

  .table--extra-payments tbody tr td .input {
    margin-top: 0.6rem;
  }
  .table--extra-payments tbody tr td .input label {
    position: absolute;
    top: 0px;
    left: 1.2rem;
    width: auto;
    height: auto;
    overflow: initial;
  }
}
@media only screen and (max-width: 30em) {
  .table--extra-payments tbody tr td:nth-of-type(2) {
    flex: 1 0 calc(100% - 1.6rem);
  }
  .table--extra-payments tbody tr td:nth-of-type(3) {
    flex: 1 0 100%;
  }
}

.table--consolidate {
  border-bottom: 1px solid var(--neutral400);
}
.table--consolidate:not(.no-checkbox) thead tr th:first-of-type {
  padding-left: 5.6rem;
}
.table--consolidate.no-checkbox thead tr th:first-of-type {
  padding-left: 2rem;
}
.table--consolidate tbody tr:nth-of-type(odd) td,
.table--consolidate tbody tr:nth-of-type(odd) th {
  background-color: var(--neutral100);
}
.table--consolidate tbody tr th,
.table--consolidate tbody tr th span {
  padding-left: 2rem;
  font-weight: var(--fw-medium);
}
.table--consolidate tbody tr th .checkbox span {
  padding-left: 3.6rem;
}
.table--consolidate thead tr th:last-of-type,
.table--consolidate tbody tr td:last-of-type {
  width: 16rem;
}
.table--consolidate tbody tr td:last-of-type p {
  margin: 0;
  font-weight: var(--fw-regular);
  font-size: var(--fs14);
  color: var(--text-clr);
}
.table--consolidate tbody tr td:last-of-type p:last-of-type {
  margin: 0.6rem 0 0;
  font-size: var(--fs12);
  color: var(--text-clr-tertiary);
}
.table-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.6rem;
  padding: 1.6rem 3.2rem;
}
.table-bottom .result-combo h4 {
  font-weight: var(--fw-medium);
  font-size: var(--fs14);
}
.table-bottom .result-combo p {
  font-weight: var(--fw-regular);
}
@media only screen and (min-width: 64.01em) {
  .table-bottom .result-combo {
    flex: 1;
  }
  .debts-temp-spacing {
    padding-inline: 258px 0;
    gap: 152px !important;
  }
}

.complicated {
  position: relative;
  isolation: isolate;
}
.complicated::before {
  content: "";
  position: absolute;
  inset: 3.2rem 0 0 0;
  border-radius: 5px;
  background-color: var(--neutral0);
  box-shadow: 0 1rem 3rem hsl(0 0% 0% / 15%);
  z-index: -1;
}
.complicated-overflow {
  padding-top: 3.2rem;
  overflow-x: auto;
}
.complicated-overflow .card {
  box-shadow: none;
}

.table--emergency-fund thead tr th,
.table--interest-saved thead tr th,
.table--calendar thead tr th,
.table--comparison thead tr th,
.table--payoff-time thead tr th {
  padding: 1.2rem 0.8rem;
}
.table--calendar thead tr:nth-of-type(2) th,
.table--emergency-fund thead tr:nth-of-type(2) th {
  border-top: 1px solid var(--neutral400);
}
.table--emergency-fund tbody tr td,
.table--emergency-fund tbody tr th,
.table--interest-saved tbody tr td,
.table--interest-saved tbody tr th,
.table--calendar tbody tr td,
.table--calendar tbody tr th,
.table--comparison tbody tr td,
.table--comparison tbody tr th,
.table--payoff-time tbody tr td,
.table--payoff-time tbody tr th {
  font-size: var(--fs14);
}
.table--comparison tbody tr th {
  font-weight: var(--fw-medium);
}
.table--emergency-fund tbody tr:nth-of-type(odd) th,
.table--emergency-fund tbody tr:nth-of-type(odd) td,
.table--interest-saved tbody tr:nth-of-type(odd) th,
.table--interest-saved tbody tr:nth-of-type(odd) td,
.table--calendar tbody tr:nth-of-type(odd) th,
.table--calendar tbody tr:nth-of-type(odd) td,
.table--comparison tbody tr:nth-of-type(odd) th,
.table--comparison tbody tr:nth-of-type(odd) td,
.table--payoff-time tbody tr:nth-of-type(odd) th,
.table--payoff-time tbody tr:nth-of-type(odd) td,
.table--profiles tbody tr:nth-of-type(odd) td {
  background-color: var(--neutral100);
}
.table--comparison.highest thead tr th:nth-of-type(6),
.table--comparison.highest tbody tr td:nth-of-type(5),
.table--comparison.entered thead tr th:nth-of-type(5),
.table--comparison.entered tbody tr td:nth-of-type(4),
.table--comparison.shortest thead tr th:nth-of-type(4),
.table--comparison.shortest tbody tr td:nth-of-type(3),
.table--comparison.lowest thead tr th:nth-of-type(3),
.table--comparison.lowest tbody tr td:nth-of-type(2) {
  border-left: 2px solid var(--primary600);
  border-right: 2px solid var(--primary600);
}
.table--comparison.highest tbody tr:last-of-type td:nth-of-type(5),
.table--comparison.entered tbody tr:last-of-type td:nth-of-type(4),
.table--comparison.shortest tbody tr:last-of-type td:nth-of-type(3),
.table--comparison.lowest tbody tr:last-of-type td:nth-of-type(2) {
  font-weight: var(--fw-bold);
  border-bottom: 2px solid var(--primary600);
}
.table--comparison.highest thead tr:last-of-type th:nth-of-type(6),
.table--comparison.entered thead tr:last-of-type th:nth-of-type(5),
.table--comparison.shortest thead tr:last-of-type th:nth-of-type(4),
.table--comparison.lowest thead tr:last-of-type th:nth-of-type(3) {
  border-top: 2px solid var(--primary600);
  position: relative;
}
.table--comparison.highest thead tr:last-of-type th:nth-of-type(6)::before,
.table--comparison.entered thead tr:last-of-type th:nth-of-type(5)::before,
.table--comparison.shortest thead tr:last-of-type th:nth-of-type(4)::before,
.table--comparison.lowest thead tr:last-of-type th:nth-of-type(3)::before {
  content: "Most Savings";
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs14);
  font-weight: var(--fw-bold);
  color: var(--neutral0);
  width: calc(100% + 4px);
  height: 3.2rem;
  border-radius: 5px 5px 0 0;
  background-color: var(--primary600);
  position: absolute;
  top: -3.2rem;
  left: -2px;
  right: -2px;
}

.table--emergency-fund tbody tr:last-of-type td:first-of-type,
.table--interest-saved tbody tr:last-of-type td:first-of-type,
.table--calendar tbody tr:last-of-type td:first-of-type {
  font-weight: var(--fw-medium);
}

.table--calendar tr.collapsed,
.table--interest-saved tr.collapsed {
  display: none;
}

.table--calendar.has-vertical-lines thead tr:nth-of-type(2) th:last-of-type {
  border-right: 1px solid var(--neutral400);
}
.table--calendar thead tr th:first-of-type {
  width: 10rem;
}
.table--calendar tbody tr td,
.table--calendar tbody tr th {
  height: 4.8rem;
  padding: 0.8rem;
}
.table--calendar tbody tr td.first-pp {
  border: 2px solid var(--primary500);
}
.table--calendar tbody tr td.first-pp::after {
  content: "Power Payment";
  display: block;
  margin-block-start: 2px;
  font-size: var(--fs12);
  font-style: italic;
  color: var(--primary600);
}

.page-width--calendar.sticky-header .table {
  display: none;
}

.page-width--calendar.sticky-header .table--calendar tbody {
  visibility: collapse;
}

.page-width--calendar.sticky-header .table--calendar thead {
  background-color: white;
}

.page-width--calendar.sticky-header .table--calendar tbody tr td.first-pp {
  border-color: var(--neutral400);
}

.table--profiles thead tr th:first-of-type,
.table--profiles tbody tr td:first-of-type {
  padding-left: 3.2rem;
}
.table--profiles tbody tr td:first-of-type a {
  color: var(--primary600);
}
.table--profiles tbody tr td:first-of-type a:hover {
  color: var(--text-clr);
  text-decoration: underline;
}
.table--profiles thead tr th:last-of-type,
.table--profiles tbody tr td:last-of-type {
  padding-right: 3.2rem;
  width: 8.8rem;
}

.table--spending {
  border-bottom: 1px solid var(--neutral400);
}
.table--spending thead tr th:first-of-type,
.table--spending tbody tr td:first-of-type {
  padding-left: 1.6rem;
}
.table--spending tbody tr td {
  font-size: var(--fs14);
  padding: 0.8rem;
}
.table--spending tbody tr td:nth-of-type(1) {
  width: 45% !important;
}
.table--spending tbody tr td:nth-of-type(2) {
  width: 14rem;
}
.table--spending tbody tr td:nth-of-type(2) div {
  display: inline-flex;
  position: relative;
  width: 100%;
  max-width: 14rem;
}
.table--spending tbody tr td:nth-of-type(2) div::before {
  content: "$";
  color: var(--neutral600);
  position: absolute;
  left: 1.6rem;
  top: 50%;
  transform: translateY(-51%);
  font-size: var(--fs16);
  font-weight: var(--fw-regular);
}
.table--spending tbody tr td:nth-of-type(3) {
  width: 10rem;
}
.table--spending tbody tr td input {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 4.8rem;
  padding: 0 1.6rem 0 3.4rem;
  font-size: var(--fs16);
  font-weight: var(--fw-regular);
  border-radius: 0.3rem;
  border: 1px solid var(--neutral500);
  background: none;
  color: var(--text-clr);
  text-align: left;
}
.table--spending tbody tr td input:hover {
  border-color: var(--neutral800);
}
.table--spending tbody tr td input:focus {
  outline: 2px solid var(--neutral800);
  outline-offset: -1px;
}

.table--bi-weekly thead tr th,
.table--bi-weekly tbody tr th,
.table--bi-weekly tbody tr td {
  padding: 1.6rem;
  font-size: var(--fs14);
  width: 33.333%;
}
.table--bi-weekly tbody tr th {
  font-weight: var(--fw-medium);
}
.table--bi-weekly tbody tr td:last-of-type {
  font-weight: var(--fw-bold);
}

.table-expand-toggle td {
  padding: 0 !important;
}
.table-expand-toggle td button {
  background: none;
  border: none;
  color: var(--primary600);
  font-size: var(--fs14);
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.6rem 1.2rem;
  transition: background-color 100ms ease;
}
.table-expand-toggle td button:hover {
  background-color: rgba(0, 0, 0, 0.03);
  cursor: pointer;
}
.table-expand-toggle td button:active {
  background-color: rgba(0, 0, 0, 0.06);
}
.table-expand-toggle td button:focus-visible {
  outline: 2px solid var(--neutral800);
  outline-offset: -2px;
}

.table-highlight {
  background-color: var(--neutral100) !important;
}

/*************************************
**************************************
**************************************
Debt Related Styles
**************************************
**************************************
**************************************/

.debt-accordion.is-open .debt-accordion__btn i {
  transform-origin: center;
  transform: rotate(90deg);
}
.debt-accordion.is-open .debt-accordion__content {
  display: block;
}
.debt-accordion__btn {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  width: 100%;
  border: none;
  background: none;
  padding: 0 0.4rem 1.6rem 3.2rem;
  position: relative;
  isolation: isolate;
}
.debt-accordion__btn::before {
  content: "";
  position: absolute;
  inset: -1.6rem 0 0 0;
  background: none;
  transition: 100ms ease;
}
.debt-accordion__btn i {
  position: absolute;
  left: 0.4rem;
  top: -0.4rem;
  color: var(--neutral700);
}
.debt-accordion__btn:hover {
  cursor: pointer;
}
.debt-accordion__btn:hover::before {
  background-color: hsl(217 24% 17% / 5%);
}
.debt-accordion__btn:active::before {
  background-color: hsl(217 24% 17% / 8%);
}
.debt-accordion__btn span {
  display: inline-flex;
  align-items: center;
  font-size: var(--fs14);
  font-weight: var(--fw-regular);
  color: var(--text-clr-secondary);
}
.debt-accordion__btn span + span::before {
  content: "";
  display: inline-block;
  height: 0.6rem;
  width: 0.6rem;
  border-radius: 50%;
  background-color: var(--neutral600);
  margin-right: 1.2rem;
}
.debt-accordion__content {
  display: none;
  padding: 0.8rem 3.2rem 3.2rem;
}
.debt-accordion__content > * + * {
  margin-top: 2.4rem;
}
.deferr-container {
  border: 1px solid var(--neutral400);
  border-radius: 3px;
  display: flex;
  align-items: center;
  padding-left: 1.2rem;
  width: 100%;
  font-size: var(--fs16);
  font-weight: var(--fw-regular);
}
.deferr-container span {
  flex: 1;
}

@media only screen and (max-width: 64em) {
  .debt-accordion__btn {
    flex-wrap: wrap;
    gap: 0.8rem;
    padding: 0 1.6rem 1.6rem 4.8rem;
  }
  .debt-accordion__btn i {
    left: 1.6rem;
  }
  .debt-accordion__btn span {
    flex: 1 0 100%;
  }
  .debt-accordion__btn span + span::before {
    display: none;
  }
  .debt-accordion__content {
    padding: 0.8rem 1.6rem 2.4rem;
  }
  .debt-accordion__content > * + * {
    margin-top: 1.6rem;
  }
}

/*************************************
**************************************
**************************************
Input Styles
**************************************
**************************************
**************************************/

.input {
  --label-bg-color: var(--neutral0);
  display: inline-flex;
  flex-wrap: wrap;
  position: relative;
  width: 100%;
  margin-top: 0.6rem;
}
.input::before {
  color: var(--neutral600);
  position: absolute;
  left: 1.6rem;
  top: 1.5rem;
  font-size: var(--fs16);
  font-weight: var(--fw-regular);
}
.input.is-money::before {
  content: "$";
}
.input.is-money input {
  padding-left: 3.4rem;
}
.input.is-percentage::before {
  content: "%";
}
.input.is-percentage input {
  padding-left: 3.7rem;
}
.input.is-bold input {
  font-weight: var(--fw-medium);
}
.input label {
  position: absolute;
  top: 0px;
  left: 1.2rem;
  max-width: 95%;
  transform: translateY(-50%);
  background-color: var(--label-bg-color);
  color: var(--text-clr);
  text-align: center;
  font-size: var(--fs14);
  font-weight: var(--fw-medium);
  text-align: left;
  pointer-events: none;
  padding: 0 0.4rem;
  z-index: 2;
}
.input input {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 4.8rem;
  padding: 0 1.6rem;
  font-size: var(--fs16);
  font-weight: var(--fw-regular);
  border-radius: 0.3rem;
  border: 1px solid var(--neutral500);
  background: none;
  color: var(--text-clr);
  text-align: left;
}
.input input:hover {
  border-color: var(--neutral800);
}
.input input:focus {
  outline: 2px solid var(--neutral800);
  outline-offset: -1px;
}
.input input.has-error {
  border-color: var(--error500);
}

.input.is-96 {
  max-width: 9.6rem;
}
.input.is-120 {
  max-width: 12rem;
}
.input.is-140 {
  max-width: 14rem;
}
.input.is-160 {
  max-width: 16rem;
}
.input.is-180 {
  max-width: 18rem;
}
.input.is-200 {
  max-width: 20rem;
}
.input.is-240 {
  max-width: 24rem;
}
.input.is-400 {
  max-width: 40rem;
}

.input input:read-only {
  border: none;
  background-color: var(--neutral200);
}
.input input.form-control-file {
  padding: 1.2rem;
}
.input__error {
  flex: 1 0 100%;
  margin: 0.4rem 0 0;
  font-weight: var(--fw-medium);
  font-size: var(--fs14);
  color: var(--error500);
}
.input__message {
  flex: 1 0 100%;
  margin: 0.4rem 0 0;
  font-weight: var(--fw-regular);
  font-size: var(--fs14);
  color: var(--text-clr-tertiary);
}

.input.has-tooltip button {
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
}
.input.has-tooltip input {
  padding-right: 4.8rem;
}

.select::after {
  content: "\e5c5";
  font-family: "Material Icons Outlined";
  display: inline-block;
  line-height: 1;
  position: absolute;
  right: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-clr-secondary);
  font-size: var(--fs24);
  pointer-events: none;
}
.select select {
  width: 100%;
  text-align: left;
  min-height: 4.8rem;
  padding: 1.1rem 3.2rem 1.1rem 1.6rem;
  font-size: var(--fs16);
  font-weight: var(--fw-regular);
  color: var(--text-clr);
  border-radius: 0.3rem;
  background: none;
  border: 1px solid var(--neutral500);
  -moz-appearance: none;
  -webkit-appearance: none;
}
.select select:hover {
  border-color: var(--neutral800);
}
.select select:focus {
  outline: 2px solid var(--neutral800);
  outline-offset: -1px;
}

.checkbox,
.radio {
  display: block;
  text-align: left;
}
.checkbox span,
.radio span {
  display: inline-block;
  cursor: pointer;
  position: relative;
  font-weight: var(--fw-regular);
  font-size: var(--fs16);
  color: var(--text-clr);
  padding-left: 2.7rem;
  text-align: left;
}
.checkbox span::before,
.radio span::before {
  content: "";
  position: absolute;
  top: 0.1rem;
  left: 0;
  width: 1.2rem;
  height: 1.2rem;
  border: 0.2rem solid var(--neutral600);
}
.checkbox span::after,
.radio span::after {
  content: "";
  position: absolute;
  display: none;
}
.checkbox input[type="checkbox"] + span:before {
  border-radius: 0.3rem;
}
.radio input[type="radio"] + span:before {
  border-radius: 50%;
}
.checkbox input[type="checkbox"]:checked ~ span::before,
.radio input[type="radio"]:checked ~ span::before {
  background-color: var(--primary600);
  border-color: var(--primary600);
}
.checkbox input[type="checkbox"]:checked ~ span::after {
  display: block;
  top: 0.2rem;
  left: 0.5rem;
  width: 0.4rem;
  height: 0.9rem;
  border: solid var(--neutral0);
  border-width: 0 0.2rem 0.2rem 0;
  transform: rotate(45deg);
}
.radio input[type="radio"]:checked ~ span::after {
  display: block;
  top: 0.6rem;
  left: 0.5rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background-color: var(--neutral0);
}
/* Focus styles */
.checkbox input:focus ~ span,
.radio input:focus ~ span {
  outline: thin dotted #333;
}
.checkbox input,
.radio input {
  opacity: 0;
  margin: 0;
  height: 0.01rem;
  width: 0.01rem;
  position: absolute;
}

/*************************************
**************************************
**************************************
Modal Styles
**************************************
**************************************
**************************************/

.modal__bg {
  display: none;
  position: fixed;
  inset: 0;
  background-color: hsl(0 0% 100% / 75%);
  grid-template-columns: minmax(1rem, 1fr) minmax(30rem, 60rem) minmax(
      1rem,
      1fr
    );
  padding: 1.2rem 0;
  overflow: auto;
  z-index: 999;
}
.modal__bg.is-active {
  display: grid;
}

.modal {
  border-radius: 5px;
  background-color: var(--neutral0);
  padding: 2.4rem;
  box-shadow: 0 1rem 3rem hsl(0 0% 0% / 50%);
  place-self: center stretch;
  grid-column: 2 / 3;
}

.modal__top {
  display: flex;
  align-items: center;
}
.modal__top h2 {
  flex: 1;
  font-weight: var(--fw-bold);
  font-size: var(--fs18);
  color: var(--text-clr);
  margin: 0;
}

.modal__content {
  padding-top: 2.4rem;
}
.modal__content.is-form {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.6rem;
}

.modal__accordion {
  display: none;
  margin-top: 2.4rem;
  position: relative;
  isolation: isolate;
  background-color: var(--neutral200);
  padding-block: 2.4rem;
  font-size: var(--fs16);
  font-weight: var(--fw-regular);
}
.modal__accordion::before {
  content: "";
  position: absolute;
  z-index: -1;
  background-color: var(--neutral200);
  inset: 0 -3.2rem 0;
}
.modal__accordion.is-active {
  display: block;
}
.modal__accordion p {
  margin: 0;
  line-height: 1.5;
}
.modal__accordion p + p {
  margin-top: 1.5em;
}

.modal__bottom {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.8rem;
  padding-top: 3.2rem;
}

@media only screen and (min-width: 48em) {
  .modal {
    padding: 3.2rem;
  }
}

/*************************************
**************************************
**************************************
Menu Styles
**************************************
**************************************
**************************************/

.menu {
  position: relative;
  display: inline-block;
}

.menu.is-active .menu__dropdown {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 0.1rem 0.3rem hsl(0 0% 0% / 25%);
  transition: opacity 150ms ease-out, transform 150ms ease-out;
}
.menu.is-active > button {
  background-color: var(--neutral200);
}

.menu__dropdown {
  visibility: hidden;
  opacity: 0;
  transform-origin: top right;
  transform: scale(0.5);
  position: absolute;
  top: 50%;
  right: 50%;
  padding: 0.8rem 0;
  margin: 0;
  background-color: var(--neutral0);
  border-radius: 5px;
  box-shadow: none;
  list-style-type: none;
  z-index: 99;
  transition: opacity 100ms ease-in, transform 100ms ease-in;
}

.menu__item,
a.menu__item {
  display: inline-block;
  width: 100%;
  min-height: 4rem;
  background: none;
  border: none;
  padding: 1.2rem 1.6rem;
  font-size: var(--fs14);
  font-weight: var(--fw-medium);
  color: var(--text-clr);
  white-space: nowrap;
  text-align: left;
}
.menu__item:hover {
  cursor: pointer;
  background-color: var(--neutral100);
}
.menu__item:active {
  background-color: var(--neutral200);
}

/*************************************
**************************************
**************************************
Hero Styles
**************************************
**************************************
**************************************/

.hero {
  background-color: #233142;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 1600 800'%3E%3Cg %3E%3Cpath fill='%2324384c' d='M486 705.8c-109.3-21.8-223.4-32.2-335.3-19.4C99.5 692.1 49 703 0 719.8V800h843.8c-115.9-33.2-230.8-68.1-347.6-92.2C492.8 707.1 489.4 706.5 486 705.8z'/%3E%3Cpath fill='%23244056' d='M1600 0H0v719.8c49-16.8 99.5-27.8 150.7-33.5c111.9-12.7 226-2.4 335.3 19.4c3.4 0.7 6.8 1.4 10.2 2c116.8 24 231.7 59 347.6 92.2H1600V0z'/%3E%3Cpath fill='%23234961' d='M478.4 581c3.2 0.8 6.4 1.7 9.5 2.5c196.2 52.5 388.7 133.5 593.5 176.6c174.2 36.6 349.5 29.2 518.6-10.2V0H0v574.9c52.3-17.6 106.5-27.7 161.1-30.9C268.4 537.4 375.7 554.2 478.4 581z'/%3E%3Cpath fill='%2322546d' d='M0 0v429.4c55.6-18.4 113.5-27.3 171.4-27.7c102.8-0.8 203.2 22.7 299.3 54.5c3 1 5.9 2 8.9 3c183.6 62 365.7 146.1 562.4 192.1c186.7 43.7 376.3 34.4 557.9-12.6V0H0z'/%3E%3Cpath fill='%23206079' d='M181.8 259.4c98.2 6 191.9 35.2 281.3 72.1c2.8 1.1 5.5 2.3 8.3 3.4c171 71.6 342.7 158.5 531.3 207.7c198.8 51.8 403.4 40.8 597.3-14.8V0H0v283.2C59 263.6 120.6 255.7 181.8 259.4z'/%3E%3Cpath fill='%23256680' d='M1600 0H0v136.3c62.3-20.9 127.7-27.5 192.2-19.2c93.6 12.1 180.5 47.7 263.3 89.6c2.6 1.3 5.1 2.6 7.7 3.9c158.4 81.1 319.7 170.9 500.3 223.2c210.5 61 430.8 49 636.6-16.6V0z'/%3E%3Cpath fill='%232b6d86' d='M454.9 86.3C600.7 177 751.6 269.3 924.1 325c208.6 67.4 431.3 60.8 637.9-5.3c12.8-4.1 25.4-8.4 38.1-12.9V0H288.1c56 21.3 108.7 50.6 159.7 82C450.2 83.4 452.5 84.9 454.9 86.3z'/%3E%3Cpath fill='%2331738c' d='M1600 0H498c118.1 85.8 243.5 164.5 386.8 216.2c191.8 69.2 400 74.7 595 21.1c40.8-11.2 81.1-25.2 120.3-41.7V0z'/%3E%3Cpath fill='%23377892' d='M1397.5 154.8c47.2-10.6 93.6-25.3 138.6-43.8c21.7-8.9 43-18.8 63.9-29.5V0H643.4c62.9 41.7 129.7 78.2 202.1 107.4C1020.4 178.1 1214.2 196.1 1397.5 154.8z'/%3E%3Cpath fill='%233E7E97' d='M1315.3 72.4c75.3-12.6 148.9-37.1 216.8-72.4h-723C966.8 71 1144.7 101 1315.3 72.4z'/%3E%3C/g%3E%3C/svg%3E");
  background-attachment: fixed;
  background-size: cover;
  padding-block: 4.8rem 5.4rem;
}

.banner {
  display: grid;
  position: absolute;
  top: -6rem;
  right: 2.4rem;
  width: 12rem;
  height: 14rem;
  background-image: url("/includes/files/graphics/banner.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
  place-content: center;
}
.banner img {
  width: 9.5rem;
}

.banner.is-calendar {
  top: 85%;
  right: 50%;
  transform: translateX(50%);
  z-index: -1;
}

.hero .link {
  display: block;
  color: var(--neutral0);
  font-size: var(--fs18);
}
.hero .link:hover {
  color: var(--neutral300);
}

@media only screen and (min-width: 48em) {
  .hero {
    background-size: contain;
  }
}

/*************************************
**************************************
**************************************
Time Value Styles
**************************************
**************************************
**************************************/

#time-value-form > .row {
  gap: 0;
}
#time-value-form > .row > .col-xs-12.col-sm-6:nth-of-type(1) {
}
#time-value-form > .row > .col-xs-12.col-sm-6:nth-of-type(2) {
  border-left: none;
}
#time-value-form > .row > .col-xs-12:last-of-type .card-padding--alt {
  border-top: 1px solid var(--neutral400);
}
@media only screen and (min-width: 48em) {
  #time-value-form > .row > .col-xs-12.col-sm-6:nth-of-type(1) {
    padding-right: 0;
  }
  #time-value-form > .row > .col-xs-12.col-sm-6:nth-of-type(2) {
    padding-left: 0;
    border-left: 1px solid var(--neutral400);
  }
}

/*************************************
**************************************
**************************************
Spending Plan Styles
**************************************
**************************************
**************************************/

.sticky {
  position: sticky;
  top: 1.2rem;
}
.accordion {
}
.accordion__section {
}
.accordion__top h2 {
  margin: 0;
}
.accordion__btn {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  width: 100%;
  padding: 1.6rem;
  font-size: var(--fs16);
  font-weight: var(--fw-medium);
  color: var(--text-clr-secondary);
  background-color: var(--neutral100);
  border: none;
  border-bottom: 1px solid var(--neutral400);
}
.accordion__btn i {
  transform: rotate(90deg);
}
.accordion__btn:hover {
  cursor: pointer;
  background-color: var(--neutral200);
}
.accordion__btn:active {
  background-color: var(--neutral300);
}
.accordion__btn.collapsed i {
  transform: rotate(0);
}

.accordion__section .accordion__section {
  border-bottom: 1px solid var(--neutral400);
}
.accordion__section .accordion__section h3 {
  margin: 0;
}
.accordion__section .accordion__section .accordion__btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: 100%;
  padding: 0.6rem 1.6rem;
  min-height: 4rem;
  font-size: var(--fs14);
  font-weight: var(--fw-regular);
  color: var(--text-clr-secondary);
  background-color: var(--neutral0);
  border: none;
}
.accordion__section .accordion__section .accordion__btn:hover {
  cursor: pointer;
  background-color: var(--neutral100);
}
.accordion__section .accordion__section ul {
  list-style-type: none;
  margin: 0 1.6rem 1.6rem;
  padding: 0;
  border: 0.1rem solid var(--neutral300);
  border-radius: 0.5rem;
}
.accordion__section .accordion__section li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.6rem;
  font-size: var(--fs14);
  font-weight: var(--fw-regular);
  color: var(--text-clr);
}
.accordion__section .accordion__section li + li {
  border-top: 0.1rem solid var(--neutral300);
}
.accordion__section .accordion__section li.no-display {
  display: none;
}
.accordion__section .accordion__section li button {
  background: none;
  border: none;
  text-decoration: underline;
  font-size: inherit;
  font-weight: inherit;
  color: var(--primary600);
}
.accordion__section .accordion__section li button:hover {
  cursor: pointer;
  color: var(--text-clr);
}

.accordion__section .collapse {
  display: none;
}
.accordion__section .collapse.show {
  display: block;
}

/*************************************
**************************************
**************************************
Login Styles
**************************************
**************************************
**************************************/

.login__width {
  width: 100%;
  max-width: 41.6rem;
  margin-inline: auto;
  padding: 4.8rem 0.8rem;
}
.login__width .btn.btn--primary {
  justify-content: center;
}
.login__width img[alt="PowerPay logo"] {
  max-height: 2.8rem;
}
.login__options {
  padding: 1.6rem 3.2rem;
  border-top: 1px solid var(--neutral300);
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-size: var(--fs14);
  color: var(--primary500);
}

/*************************************
**************************************
**************************************
Tippy Styles
**************************************
**************************************
**************************************/

.tippy-tooltip {
  background-color: var(--neutral1000);
  color: var(--neutral100);
  padding: 12px;
  font-size: var(--fs12);
  font-weight: var(--fw-medium);
  line-height: 1.5;
}
.tippy-content {
  padding: 0;
}

/*************************************
**************************************
**************************************
Footer Styles
**************************************
**************************************
**************************************/

.footer {
  margin-top: 24rem;
  padding: 2.4rem 0;
  background-color: var(--neutral0);
}
.footer * {
  font-size: var(--fs14);
  font-weight: var(--fw-regular);
  color: var(--text-clr-secondary);
  line-height: 1.5;
  text-align: center;
  max-width: 75ch;
}
.footer p {
  margin: 0;
}
.footer p + p {
  margin-top: 1.5em;
}
.footer a {
  text-decoration: underline;
  color: var(--primary600);
}
.footer a:hover {
  color: var(--text-clr);
}

/*************************************
**************************************
**************************************
Grid Styles
**************************************
**************************************
**************************************/

.row {
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: calc(var(--gap) * -1);
  margin-left: calc(var(--gap) * -1);
  gap: calc(var(--gap) * 2) 0;
}
.row.gap-48 {
  row-gap: 4.8rem;
}

.row.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.col.reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.col-xs,
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  padding-right: var(--gap);
  padding-left: var(--gap);
}

.col-xs {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  max-width: 100%;
}

.col-xs-1 {
  -ms-flex-preferred-size: 8.33333333%;
  flex-basis: 8.33333333%;
  max-width: 8.33333333%;
}

.col-xs-2 {
  -ms-flex-preferred-size: 16.66666667%;
  flex-basis: 16.66666667%;
  max-width: 16.66666667%;
}

.col-xs-3 {
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%;
}

.col-xs-4 {
  -ms-flex-preferred-size: 33.33333333%;
  flex-basis: 33.33333333%;
  max-width: 33.33333333%;
}

.col-xs-5 {
  -ms-flex-preferred-size: 41.66666667%;
  flex-basis: 41.66666667%;
  max-width: 41.66666667%;
}

.col-xs-6 {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
}

.col-xs-7 {
  -ms-flex-preferred-size: 58.33333333%;
  flex-basis: 58.33333333%;
  max-width: 58.33333333%;
}

.col-xs-8 {
  -ms-flex-preferred-size: 66.66666667%;
  flex-basis: 66.66666667%;
  max-width: 66.66666667%;
}

.col-xs-9 {
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
  max-width: 75%;
}

.col-xs-10 {
  -ms-flex-preferred-size: 83.33333333%;
  flex-basis: 83.33333333%;
  max-width: 83.33333333%;
}

.col-xs-11 {
  -ms-flex-preferred-size: 91.66666667%;
  flex-basis: 91.66666667%;
  max-width: 91.66666667%;
}

.col-xs-12 {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}

.u-show-sm,
.u-show-md,
.u-show-lg {
  display: none;
}

@media only screen and (min-width: 48em) {
  .col-sm,
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-right: var(--gap);
    padding-left: var(--gap);
  }

  .col-sm {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-sm-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-sm-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-sm-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-sm-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-sm-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-sm-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-sm-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-sm-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-sm-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .u-show-sm {
    display: block;
  }
}

@media only screen and (min-width: 64em) {
  :root {
    --gap: 16px;
  }

  .row {
    margin-left: calc(var(--gap) * -1);
    margin-right: calc(var(--gap) * -1);
  }

  .col-xs,
  .col-xs-1,
  .col-xs-2,
  .col-xs-3,
  .col-xs-4,
  .col-xs-5,
  .col-xs-6,
  .col-xs-7,
  .col-xs-8,
  .col-xs-9,
  .col-xs-10,
  .col-xs-11,
  .col-xs-12 {
    padding-right: var(--gap);
    padding-left: var(--gap);
  }

  .col-sm,
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12 {
    padding-right: var(--gap);
    padding-left: var(--gap);
  }

  .col-md,
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-right: var(--gap);
    padding-left: var(--gap);
  }

  .col-md {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-md-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-md-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-md-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-md-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-md-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-md-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-md-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-md-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-md-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-md-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-md-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-md-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .u-show-md {
    display: block;
  }
}

@media only screen and (min-width: 75em) {
  :root {
    --gap: 24px;
  }

  .col-xs,
  .col-xs-1,
  .col-xs-2,
  .col-xs-3,
  .col-xs-4,
  .col-xs-5,
  .col-xs-6,
  .col-xs-7,
  .col-xs-8,
  .col-xs-9,
  .col-xs-10,
  .col-xs-11,
  .col-xs-12 {
    padding-right: var(--gap);
    padding-left: var(--gap);
  }

  .col-sm,
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12 {
    padding-right: var(--gap);
    padding-left: var(--gap);
  }

  .col-md,
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12 {
    padding-right: var(--gap);
    padding-left: var(--gap);
  }

  .col-lg,
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-right: var(--gap);
    padding-left: var(--gap);
  }

  .col-lg {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-lg-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-lg-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-lg-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-lg-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-lg-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-lg-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-lg-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-lg-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-lg-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .u-show-lg {
    display: block;
  }
}

/*************************************
**************************************
**************************************
Extra Styles
**************************************
**************************************
**************************************/

.container {
  width: 100%;
  max-width: 100rem;
  padding-inline: 1.2rem;
  margin-inline: auto;
}
.container.large {
  max-width: 120rem;
}
.container .row {
  margin: 0;
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
}
.tabletab {
  border-radius: 5px;
  background-color: var(--neutral0);
  box-shadow: 0 1rem 3rem hsl(0 0% 0% / 15%);
  padding: 3.2rem;
}
.horiz-menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.6rem;
}
.container a {
  font-size: var(--fs14);
  font-weight: var(--fw-medium);
  display: inline-block;
  padding: 0.8rem 0;
  text-decoration: underline;
}
.container a.btn {
  font-size: var(--fs16);
  font-weight: var(--fw-medium);
  display: inline-flex;
  padding: 0.8rem 1.6rem;
  text-decoration: none;
}
.item-list li {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-size: var(--fs14);
  position: relative;
}
.item-list li::before {
  counter-increment: section;
  content: counter(section) ".";
  position: absolute;
  left: -1.6rem;
}

.text-section--editable {
  width: 100%;
  max-width: 60rem;
  padding-inline: 1.2rem;
  margin-inline: auto;
}
.text-section--editable h2 {
  margin: 4.8rem 0 0 0;
  font-size: var(--fs24);
  font-weight: var(--fw-bold);
}
.text-section--editable p {
  margin-block: 1em;
  font-size: var(--fs16);
  font-weight: var(--fw-regular);
  color: var(--text-clr);
  line-height: 1.5;
}
.text-section--editable blockquote {
  border-radius: 1rem;
  background-color: var(--neutral300);
  padding: 2.4rem;
  margin: 1.6rem 0;
}
.text-section--editable blockquote p {
  font-style: italic;
  margin: 0;
}
.text-section--editable a {
  text-decoration: underline;
  color: var(--primary600);
}
.text-section--editable a:is(:hover, :focus-visible) {
  color: var(--neutral1000);
}
.text-section--editable .socials {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
@media print {
  .no-print {
    display: none !important;
  }

  .card {
    box-shadow: none !important;
  }

  .table--calendar tr.collapsed,
  .table--interest-saved tr.collapsed {
    display: table-row !important;
  }

  .accordion__section .collapse {
    display: block !important;
  }

  #spendingPlanAccordion .table-spending-header {
    display: none !important;
  }

  #spendingPlanAccordion .table-spending-header:first-of-type {
    display: table-row !important;
  }

  .accordion__removed_types {
    display: none !important;
  }
}
