/*************************
  VARIABLES
*************************/
:root {
  --link-color: #0075c1;
  --link-color-hover: #3498db;
  --text-color: #333;
  --accent-color: #2980b9;
  --color-gray: #dadada;
  --color-gray-light: whitesmoke;
  --color-navy: #5D89AA;
  --color-navy-light: #eaf6ff;
  --color-navy-dark: #2c3e50;
  --color-red: #b62616;
  --color-red-dark: #71180e;
  --color-red-light: #fceae8;
  --color-green: #387a58;
  --color-green-dark: #004c37;
  --color-green-light: #e7f4ed;
  --body-background-color: var(--color-gray-light);
  --drawer-width: 600px;
  --section-spacing: calc(2 * var(--gap));
  --width-default: calc(100% - calc(2 * var(--gutter)));
  --width-max: 1600px;
  --gap: 25px;
  --gutter: 5vw;
  --line-height-default: 1.6;
  --font-size-default: 16px;
}
*, *::before, *::after  {
  box-sizing: border-box;
}
/*************************
  WRAPPERS
*************************/
html, body {
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  color: var(--text-color);
  font-size: var(--font-size-default);
  line-height: var(--line-height-default);
}
body {
  background-color: var(--body-background-color);
  margin: 0;
}
#page {
  transition: margin-left .3s;
}
.aks-display-flex {
  display: flex;
}
.aks-display-grid {
  display: grid;
}
.aks-container {
  width: var(--width-default);
  max-width: var(--width-max);
  margin: 0 auto;
}
#inputs, .aks-run-calc-wrapper {
  --width-max: 700px;
}
.aks-main-content {
  padding-top: 30px;
}
.aks-note {
  background-color: var(--color-gray-light);
  padding: var(--gap);
}
/*************************
    ACCESSIBILITY
*************************/
.sr-only {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
/*************************
  TEXT
*************************/
h1, h2, h3, h4, h5, h6 {
  margin: 1em 0 .5em 0;
  line-height: 1.2;
}
h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}
.aks-h2 {
  font-size: 2.1rem;
}
.aks-h3 {
  color: var(--color-navy-dark);
  font-size: 1.6rem;
  margin-bottom: 0;
}
.aks-h3::after {
  content: "";
  display: block;
  max-width: 70px;
  height: 3px;
  background-color: var(--color-gray);
  margin: 10px auto 20px 0;
}
.aks-h4 {
  text-transform: uppercase;
  font-weight: 700;
  border-bottom: 1px solid;
  color: var(--color-navy-dark);
  margin-bottom: 10px;
  margin-top: 10px;
  line-height: 1.2;
  padding-bottom: 3px;
  font-size: 1.1rem;
}
p {
  margin: 0 0 1rem 0;
}
ol, ul {
  margin: 0 0 1rem 20px;
  padding-left: 20px;
}
.aks-list li {
  margin-bottom: 5px;
  padding-left: 3px;
}
.aks-list li::marker {
  color: var(--color-navy);
}
.aks-list li:last-child {
  margin-bottom: 0;
}
h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
  margin-top: 0;
}
p:last-child, ol:last-child, ul:last-child {
  margin-bottom: 0;
}
/* TABLES */
table {
  border-collapse: collapse;
}
.aks-table {
  line-height: calc(.9 * var(--line-height-default));
  width: 100%;
}
.aks-table caption {
  text-align: left;
}
table thead {
  line-height: 1.3;
}
.aks-table tbody tr {
  border-bottom: 1px solid var(--color-gray);
}
.aks-table th,
.aks-table td {
  padding: 7px 10px;
}
.aks-table thead,
.aks-table th[scope="col"] {
  vertical-align: bottom;
  text-align: left;
}
.aks-table thead {
  background-color: var(--color-navy-dark);
  color: #fff;
}
table th {
  font-weight: 600;
}
.aks-table td {
  vertical-align: top;
}
.aks-table-hover tbody tr:hover {
  background-color: #f1f8ff !important;
}
.aks-table-overflow-wrapper {
  overflow-x: auto;
}
/*************************
  MEDIA
*************************/
img {
  max-width: 100%;
  vertical-align: middle;
}
figure {
  margin: 0;
}
/*************************
  LINKS
*************************/
a {
  color: var(--link-color);
  transition: all .3s;
}
a:hover, a:focus {
  color: var(--link-color-hover);
}
.aks-color-inherit {
  color: inherit !important;
}
.aks-color-inherit:hover {
  color: var(--link-color-hover) !important;
}
.aks-color-inherit:focus {
  color: var(--link-color-focus) !important;
}
button.aks-link {
  border: none;
  background-color: transparent;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
}
/* BUTTON COLOR VARIABLES */
.aks-btn {
  --btn-background-color: var(--link-color);
  --btn-background-color-hover: var(--link-color-hover);
  --btn-text-color: #fff;
  --btn-text-color-hover: #fff;
  --btn-border-color: var(--btn-background-color);
  --btn-border-color-hover: var(--btn-background-color-hover);
}
.aks-has-dark-background .aks-btn {
  --btn-background-color: #fff;
  --btn-background-color-hover: var(--link-background-color-focus);
  --btn-text-color: var(--link-color);
  --btn-text-color-hover: var(--text-color);
}
.aks-btn-stroke {
  --btn-background-color: transparent;
  --btn-background-color-hover: transparent;
  --btn-text-color: var(--link-color);
  --btn-text-color-hover: var(--link-color-hover);
  --btn-border-color: var(--btn-text-color);
  --btn-border-color-hover: var(--btn-text-color-hover);
}
.aks-has-dark-background .aks-btn-stroke {
  --btn-background-color: transparent;
  --btn-background-color-hover: transparent;
  --btn-text-color: #fff;
  --btn-text-color-hover: var(--link-background-color-focus);
}
.aks-btn-stroke-hover-fill {
  --btn-background-color: transparent;
  --btn-background-color-hover: var(--link-color);
  --btn-text-color: var(--link-color);
  --btn-text-color-hover: #fff;
  --btn-border-color: var(--link-color);
}
.aks-has-dark-background .aks-btn-stroke-hover-fill {
  --btn-background-color: transparent;
  --btn-background-color-hover: #fff;
  --btn-text-color: #fff;
  --btn-text-color-hover: var(--link-color);
  --btn-border-color: var(--btn-text-color);
}
.aks-btn-hover-stroke {
  --btn-background-color-hover: transparent;
  --btn-text-color-hover: var(--btn-background-color);
  --btn-border-color-hover: var(--btn-background-color);
}
/* BUTTON COLOR SETUPS */
.aks-btn, .aks-btn:link, .aks-btn:visited {
  display: inline-flex;
  justify-content: center;
  text-transform: uppercase;
  background-color: var(--btn-background-color);
  color: var(--btn-text-color);
  border: 2px solid var(--btn-border-color);
  line-height: calc(.8 * var(--line-height-default));
  transition: 0.3s all ease;
  position: relative;
  letter-spacing: 0.02em;
  font-weight: 500;
  text-decoration: none;
  font-size: 1rem;
  padding: .8rem 1.7rem;
  cursor: pointer;
  border-radius: 4px;
}
.aks-btn:not(:disabled):hover, .aks-btn:not(:disabled):focus {
  background-color: var(--btn-background-color-hover);
  border-color: var(--btn-border-color-hover);
  color: var(--btn-text-color-hover);
}
.aks-btn:focus-visible {
  outline: 2px solid;
  outline-offset: 2px;
}
/* DISABLED BUTTON */
.aks-btn:disabled {
  background-color: var(--color-gray-dark);
  border: 2px solid var(--color-gray-dark);
  cursor: not-allowed;
}
/* BUTTON WITH ARROW */
.aks-btn.aks-btn-arrow,
.aks-btn.aks-btn-arrow-left,
.aks-btn.aks-btn-arrow-right {
  padding-left: 1.8rem;
  padding-right: 1.8rem;
}
.aks-btn.aks-btn-arrow-left > span,
.aks-btn.aks-btn-arrow-right > span {
  position: relative;
}
.aks-btn.aks-btn-arrow-left > span::before,
.aks-btn.aks-btn-arrow-right > span::after {
  content: "";
  position: absolute;
  width: 0.5rem;
  height: 0.5rem;
  top: calc(50% - 0.25rem);
  opacity: 0;
  transition: 0.3s all ease;
  border-top: 2px solid currentColor;
}
.aks-btn.aks-btn-arrow-right > span::after {
  transform: rotate(45deg);
  margin-left: -1rem;
  border-right: 2px solid currentColor;
  right: -1rem;
}
.aks-btn.aks-btn-arrow-left > span::before {
  transform: rotate(-45deg);
  margin-right: -1rem;
  border-left: 2px solid currentColor;
  left: -1rem;
}
.aks-btn.aks-btn-arrow-right:not(:disabled):hover,
.aks-btn.aks-btn-arrow-right:not(:disabled):focus {
  padding-right: 2.3rem;
  padding-left: 1.3rem;
}
.aks-btn.aks-btn-arrow-left:not(:disabled):hover,
.aks-btn.aks-btn-arrow-left:not(:disabled):focus {
  padding-left: 2.3rem;
  padding-right: 1.3rem;
}
.aks-btn.aks-btn-arrow-right:not(:disabled):hover > span::after,
.aks-btn.aks-btn-arrow-right:not(:disabled):focus > span::after {
  opacity: 1;
  margin-left: 0.5rem;
}
.aks-btn.aks-btn-arrow-left:not(:disabled):hover > span::before,
.aks-btn.aks-btn-arrow-left:not(:disabled):focus > span::before {
  opacity: 1;
  margin-right: 0.5rem;
}
/*************************
  ALERT BOXES
*************************/
.aks-alert {
  color: var(--text-color);
  position: relative;
  padding: .75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 4px;
}
.aks-alert-error {
  background-color: var(--color-red-light);
  border-color: var(--color-red);
}
.aks-alert-info {
  background-color: var(--color-navy-light);
  border-color: var(--color-navy-dark);
}
.aks-alert-success {
  background-color: var(--color-green-light);
  border-color: var(--color-green);
}
.aks-alert:last-child {
  margin-bottom: 0;
}
/*************************
  MENU AND HEADER
*************************/
.aks-header {
  background-color: #fff;
  padding: var(--gap) 0;
  border-bottom: 1px solid var(--color-gray);
}
.aks-header > .aks-display-grid {
  gap: var(--section-spacing);
  grid-template-columns: 350px 1fr;
}
.logo a {
  display: block;
  background-color: #fff;
  border-radius: 8px;
  padding: 5px 5px 3px 5px;
  margin: -5px -5px -3px -5px;
}
.logo a:hover {
  box-shadow: 0 0 0 2px;
}
.aks-header .aks-text-holder p {
  font-size: 1.2rem;
}
@media (max-width: 767px) {
  .aks-header > .aks-display-grid {
    grid-template-columns: 1fr;
    gap: var(--gap);
  }
}
/*************************
  DRAWER
*************************/
.aks-drawer {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: var(--drawer-width);
  transform-origin: left;
  transition: all .3s;
  transform: translateX(-100%);
  visibility: hidden;
  opacity: 0;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: auto;
}
.aks-drawer-open .aks-drawer {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
}
#toggleDrawer {
  position: fixed;
  left: 0;
  transition: all .3s;
  border: none;
  --btn-text-color: var(--link-color);
  background-color: #fff;
  padding: 5px 10px 0 10px;
  height: 60px;
  border-radius: 0 50px 50px 0;
  top: 20px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  align-items: center;
  --btn-text-color-hover: var(--link-color-hover);
}
#toggleDrawer .aks-icon {
  transition: all .3s;
  font-size: 2rem;
}
#toggleDrawer .aks-icon::after {
  content: "\e88e";
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
#toggleDrawer:hover {
  background-color: var(--link-color-hover);
  color: #fff;
  padding-left: 20px;
}
.aks-drawer-open #toggleDrawer:hover {
  padding-left: 5px;
}
.aks-drawer-open #toggleDrawer {
  left: var(--drawer-width);
}
.aks-drawer-open #toggleDrawer .aks-icon {
  position: relative;
  left: 5px;
}
.aks-drawer-open #toggleDrawer .aks-icon::after {
  content: "\e5e0";
}
.drawer-inner {
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
}
.drawer-inner p:not(:last-child) {
  margin-bottom: 10px;
}
@media (min-width: 1000px) {
  .aks-drawer-open #page {
    margin-left: var(--drawer-width);
  }
}
/*************************
  FOOTER
*************************/
footer {
  text-align: center;
  color: #777;
  font-size: 0.9rem;
}
footer .aks-container {
  padding: var(--gap) 0;
}
.aks-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
body:not(.aks-proj-showing) footer .aks-container {
  margin-top: var(--gap);
  border-top: 1px solid var(--color-gray);
}
/*************************
  FORM ELEMENTS
*************************/
/* basic */
input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  line-height: calc(.9 * var(--line-height-default));
}
button {
  font-family: inherit;
  transition: .3s all;
}
button, select, input[type="checkbox"], input[type="radio"] {
  cursor: pointer;
}
input, textarea {
  padding: 10px 15px;
  border: 1px solid #dadce0;
  border-radius: 4px;
  transition: all 0.2s;
  outline: none;
}
legend {
  font-weight: 600;
}
label, legend {
  line-height: calc(.9 * var(--line-height-default));
}
label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: var(--color-navy-dark);
}
input[type="number"], input[type="text"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}
input[type="number"]:focus, input[type="text"]:focus {
  border-color: var(--link-color-hover);
  outline: none;
  box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.3);
}
input:checked {
  accent-color: var(--link-color-hover);
}
input:hover, select:hover, textarea:hover {
  border-color: #bfc3ca !important;
}
input:focus, select:focus, textarea:focus,
input:focus-visible, select:focus-visible, textarea:focus-visible {
  border-color: var(--link-color);
  box-shadow: 0 0 0 1px var(--link-color);
}
select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  background-color: white;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
  padding-right: 40px;
}
select:focus {
  border-color: var(--link-color-hover);
  outline: none;
  box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.3);
}
select:hover {
  border-color: #bbb;
}
/* styled forms */
.form-group {
  margin-bottom: 15px;
}
.form-group .aks-btn {
  border-radius: 4px;
}
/* toggle switch */
.aks-switch-wrapper-outer {
  gap: 5px;
  margin-bottom: 20px;
}
.aks-switch-wrapper-inner {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}
.aks-switch-wrapper-label {
  display: inline-flex;
  flex-direction: column;
  margin-bottom: 0;
}
.aks-switch-wrapper-label .aks-label-text {
  margin-bottom: 5px;
}
.aks-switch-wrapper-inner .aks-slider-round {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 50px;
}
.aks-switch-wrapper-inner .aks-slider-round::before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: #fff;
  transition: .4s;
  border-radius: 100%;
}
.aks-switch-wrapper-inner input:checked + .aks-slider-round {
  background-color: var(--link-color-hover);
}
.aks-switch-wrapper-inner input:focus + .aks-slider-round {
  box-shadow: 0 0 1px var(--link-color-hover);
}
.aks-switch-wrapper-inner input:checked + .aks-slider-round::before {
  transform: translateX(26px);
}
/* tooltip */
.aks-tooltip-wrapper {
  position: relative;
  align-self: flex-start;
}
.aks-tooltip-btn::after {
  content: "\e887";
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.aks-tooltip-info {
  top: 50%;
  right: 0;
  transform: translate(calc(100% + 12px),-50%);
  background-color: #121943;
  border-radius: 4px;
  color: #fff;
  display: flex;
  opacity: 0;
  padding: 12px;
  position: absolute;
  transition: opacity 0.25s ease-in-out;
  visibility: hidden;
  z-index: 10;
  width: 350px;
  line-height: 1.4;
  font-size: .9rem;
}
.aks-tooltip-info::before {
  content: "";
  top: 50%;
  left: -32px;
  transform: translate(calc(100% + 5px), -50%) rotate(-90deg);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #121943;
  height: 0;
  position: absolute;
  width: 0;
  z-index: 10;
}
.aks-tooltip-btn:hover + .aks-tooltip-info {
  transition-delay: 0.2s;
}
.aks-tooltip-btn:hover + .aks-tooltip-info,
.aks-tooltip-btn:focus + .aks-tooltip-info {
  opacity: 1;
  transition-property: opacity;
  transition: 0.25s ease-in-out;
  visibility: visible;
}
/*************************
  PASSWORD ENTRY
*************************/
#password-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--body-background-color);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 500;
}
.aks-form-title {
  font-size: 2rem;
}
.aks-login-form-wrapper {
  background-color: white;
  padding: var(--section-spacing);
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 650px;
}
.aks-form-password-field {
  max-width: 450px;
  margin: 1rem auto;
}
.aks-form-password-field input {
  flex: 1 1 auto;
  border-radius: 4px 0 0 4px;
}
.aks-form-password-field button {
line-height: 1;
  border-radius: 0 4px 4px 0;
  font-size: 1.25rem;
  padding: 10px 10px 8px 10px;
  background-color: transparent;
  border: 1px solid #dadce0 !important;
  border-left: none !important;
}
.aks-login-form-password button:hover {
  color: var(--link-color-hover);
}
.aks-form-password-field .aks-icon-eye::after {
  content: "\e8f4";
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.aks-form-password-field .is-revealed .aks-icon-eye::after {
  content: "\e8f5";
}
.aks-form-password-field button:hover {
  color: var(--link-color-hover);
}
.aks-login-form .aks-btn {
  justify-content: center;
  margin-bottom: 1rem;
  min-width: 200px;
}
/*************************
  ACTION BUTTONS
*************************/
.aks-actions-wrapper {
  gap: 5px;
  position: fixed;
  flex-direction: column;
  bottom: 15px;
  right: 15px;
  align-items: end;
}
.aks-actions-wrapper .aks-btn {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  border-radius: 100%;
  width: 50px;
  height: 50px;
  padding: 0 0 0 12px;
  overflow: hidden;
  justify-content: left;
  transition: all .4s;
}
.aks-actions-wrapper .aks-btn .aks-btn-label {
  opacity: 0;
  white-space: nowrap;
  transition: .2s all;
}
.aks-actions-wrapper .aks-btn .aks-icon {
  font-size: 1.5rem;
}
.aks-actions-wrapper .aks-btn .aks-icon::before {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
#printReport .aks-icon::before {
  content: "\e8ad";
}
#saveCaseButton .aks-icon::before {
  content: "\e161";
}
#loadCaseButton .aks-icon::before {
  content: "\e881";
}
.aks-actions-wrapper .aks-btn:hover,
.aks-actions-wrapper .aks-btn:focus {
  width: 150px;
  border-radius: 100px;
}
.aks-actions-wrapper .aks-btn:hover .aks-btn-label,
.aks-actions-wrapper .aks-btn:focus .aks-btn-label {
  opacity: 1;
}
.aks-actions-wrapper #printReport:hover,
.aks-actions-wrapper #printReport:focus {
  width: 170px;
}
/*************************
  ANALYSIS RESULTS
*************************/
.aks-calc-wrapper-inner {
  flex-direction: column;
  gap: 20px;
}
.aks-run-calc-wrapper {
  margin-top: var(--gap);
}
.aks-run-calc-wrapper .aks-btn {
  width: 100%;
}
.aks-proj-summary-wrapper-outer {
  margin-bottom: 20px;
}
.aks-proj-summary-wrapper-inner {
  gap: var(--gap);
  grid-template-columns: 1fr 1fr;
}
body:not(.aks-drawer-open) .aks-chart-holder-outer {
  margin-bottom: -90px;
}
.aks-chart-holder-inner {
  height: 100%;
}
.aks-drawer-open .aks-proj-summary-wrapper-inner {
  grid-template-columns: 1fr;
}
.card {
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  padding: var(--section-spacing);
}
#projection {
  background-color: #fff;
  padding: var(--section-spacing) 0;
  margin-top: var(--section-spacing);
}
#projection .card {
  box-shadow: 2px 4px 8px 0 rgb(46 61 73 / 20%);
  border: 1px solid var(--color-gray);
}
.results {
  margin: 30px 0 0 0;
  list-style: none;
  padding: 0;
}
.result-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  gap: 10px;
  border-bottom: 1px solid var(--color-gray);
  background-color: var(--body-background-color);
  border-left: var(--gap) solid var(--body-background-color);
  border-right: var(--gap) solid var(--body-background-color);
}
.result-item:nth-last-child(2) {
  border-bottom: none;
}
.result-item.highlight {
  border-right: none;
  border-bottom: none;
}
.results .highlight {
  margin-top: 15px;
}
.results .highlight .result-label {
  line-height: 1.3;
  padding-top: 2px;
  padding-bottom: 2px;
}
.advCell {
  background-color:var(--color-navy-light);
}
.aks-table-hover tr:hover .advCell {
  background-color: var(--color-navy);
  color: #fff;
}
.highlight {
  color: var(--color-navy-dark);
  font-size: 1.1rem;
  background-color: var(--color-navy-light);
  border-radius: 4px;
  border-left: 4px solid;
  padding: 10px var(--gap) 10px 21px;
}
.highlight-updated {
  animation: highlight-pulse 2s ease-in-out;
}
@keyframes highlight-pulse {
0% { background-color: transparent; }
30% { background-color: rgba(52, 152, 219, 0.2); }
100% { background-color: transparent; }
}
#projectionTable {
  border: 2px solid var(--color-gray);
}
#projectionTable th, #projectionTable td {
  border-right: 1px solid #fff;
}
#projectionTable thead > tr:first-child th {
  border-bottom: 1px solid #fff;
  text-align: center;
}
#projectionTable thead > tr:nth-child(2) {
  font-style: italic;
}
#projectionTableBody td:nth-child(2), 
#projectionTableBody td:nth-child(7), 
#projectionTableBody td:nth-child(16), 
#projectionTable thead > tr:first-child th:nth-child(2), 
#projectionTable thead > tr:first-child th:nth-child(3), 
#projectionTable thead > tr:first-child th:nth-child(4), 
#projectionTable thead > tr:nth-child(2) th:nth-child(5), 
#projectionTable thead > tr:nth-child(2) th:nth-child(14) {
  border-right: 2px solid var(--color-gray);
}
#projectionTableBody tr {
  border: none;
}
#projectionTableBody tr:nth-child(odd) {
  background-color: rgba(225, 230, 234, .7);
}
#projectionTable tbody td:nth-child(n+3) {
  min-width: 110px;
}
/* negative number formatting */
[data-val*="-"] {
  color: var(--color-red);
}