@import url(https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap);
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

article, aside, details,
figcaption, figure, footer,
header, hgroup, main, menu,
nav, section, summary {
  display: block;
}

html {
  line-height: 1;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
  font-optical-sizing: auto;
  font-variation-settings: "slnt" 0;
}

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizelegibility;
  line-height: 1.75;
  background-color: #f5f7fa;
  color: #1a1a1a;
}

html,
body {
  width: 100%;
  font-size: 100%;
}

*,
*::after,
*::before {
  box-sizing: inherit;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

a {
  outline: none;
  text-decoration: underline;
}

body {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

strong {
  font-weight: 700;
}
p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Inter', sans-serif;
    margin: 3rem 0 1.38rem;
    line-height: 1.3;
    font-weight: 200;
}

h1 {
    font-size: 3.815rem;
}

h2 {
    font-size: 3.052rem;
}

h3 {
    font-size: 2.441rem;
}

h4 {
    font-size: 1.953rem;
}

h5 {
    font-size: 1.563rem;
}

@media (max-width: 767px) {
    h1 {
        font-size: 2.488rem;
    }

    h2 {
        font-size: 1.953rem;
    }

    h3 {
        font-size: 1.563rem;
    }

    h4 {
        font-size: 1.25rem;
    }

    h5 {
        font-size: 1rem;
    }
}

small,
.text_small {
    font-size: 0.8rem;
}

/* LINKS */

.text-link,
.text-link:visited,
.text-link:hover,
.text-link:active {
    color: #006aff;
    text-decoration: none;
    font-weight: 500;
}

.text-link--red,
.text-link--red:visited,
.text-link--red:hover,
.text-link--red:active {
    color: #ff4433;
    text-decoration: none;
    font-weight: 500;
}

.ol-default {
    list-style-type: decimal;
    padding-left: 1.5rem;
}

.ol-default li {
    margin-bottom: .5rem;
}

.ul-default {
    list-style-type: disc;
    padding-left: 1.5rem;
}

.ul-default li {
    margin-bottom: .5rem;
}
#root {
    min-height: 100vh;
}

.main-well {
    min-height: calc(100vh - 89px);
    padding: 4rem 1rem 1rem;
}

@media (max-width: 500px) {
    .main-well {
        padding: 4rem 0.5rem 1rem;
    }
}

.main-well-content {
    margin: 0 auto;
}

.content-wrapper {
    background-color: #f5f7fa;
}

.content-width-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.content-width-container--slim {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}
/* FORMS */

.formStandard {
    max-width: 600px;
    margin: 0 auto;
}

.formStandard--large {
    max-width: 1000px;
}

.formField {
    width: 100%;
    padding: 0.5rem 0;
}

.formFieldRow {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 767px) {
    .formFieldRow {
        flex-direction: column;
    }
}

.formField label {
    display: block;
    margin-bottom: 0.15rem;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #444;
    user-select: none;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .formField label {
        font-size: 0.8rem;
    }
}

.formField-description,
.rcf__control-description {
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.15rem;
}

.formField input[type='text'],
.formField input[type='email'],
.formField input[type='tel'],
.formField input[type='number'],
.formField input[type='date'],
.formField input[type='search'],
.formField select,
.formField option,
.mock-disabled-input {
    appearance: none;
    width: 100%;
    min-height: 40px;
    padding: 0.5rem;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    box-shadow: none;
    border: 1px solid #d1d5db;
    background-color: #fff;
}

@media (max-width: 767px) {
    .formField input[type='text'],
    .formField input[type='email'],
    .formField input[type='tel'],
    .formField input[type='number'],
    .formField input[type='date'],
    .formField input[type='search'],
    .formField select,
    .formField option {
        font-size: 16px;
    }
}

.formField input:read-only,
.formField select:disabled,
.formField textarea:disabled {
    background-color: #f6f6f6;
}

.formField-inline-checkbox,
.formField-inline-radio,
.rcf__control-checkwrap {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    padding: 0.25rem 0;
}

.formField-inline-checkbox input,
.formField-inline-radio input {
    margin: 0 0.5rem .15rem 0;
    vertical-align: middle;
}

.formField-inline-checkbox label,
.formField-inline-radio label {
    margin-bottom: 0;
    cursor: pointer;
    font-size: 0.9rem;
}

@media (max-width: 767px) {
    .formField-inline-checkbox label,
    .formField-inline-radio label {
        font-size: 0.8rem;
    }
}

.formField-radio-tile {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    cursor: pointer;
    border: 1px solid #d1d5db;
    padding: 0;
}

.formField-radio-tile:hover {
    border-color: #3366cc;
}

.formField-radio-tile input:checked ~ label {
    border-color: #3366cc;
    background-color: #fff;
}

.formField-radio-tile input {
    display: none;
}

.formField-radio-tile label {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    width: 100%;
    height: 100%;
    padding: 1rem;
    cursor: pointer;
    font-size: 0.9rem;
    border: 1px solid #d1d5db;
    background-color: #d1d5db;
}

@media (max-width: 767px) {
    .formField-radio-tile label {
        font-size: 0.8rem;
    }
}

.formField-textarea textarea {
    width: 100%;
    padding: 0.5rem;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    border: 1px solid #d1d5db;
    background-color: #fff;
    box-shadow: none;
}

.mock-disabled-input {
    border: 1px solid #d1d5db;
    background-color: #fcfcfd;
    color: #999;
    cursor: not-allowed;
    line-height: 1;
}

.standardFormWrap {
    display: block;
    width: 100%;
    max-width: 650px;
    margin: 2rem auto;
    padding: 2rem;
    border: 1px solid #d1d5db;
    background-color: #fcfcfd;
}

.standardFormWrap--large {
    max-width: 1000px;
}

@media (max-width: 767px) {
    .standardFormWrap {
        padding: 1rem;
    }
}

@media (max-width: 500px) {
    .standardFormWrap {
        padding: 0.5rem;
    }
}

.standardFormHeading {
    margin: 1rem auto;
    margin-top: 0;
    text-align: center;
}

@media (max-width: 767px) {
    .standardFormHeading {
        font-size: 1.8rem;
    }
}

.conditional-field {
    display: none;
}

.input-reveal-wrap label {
    display: block;
    margin-bottom: 0.15rem;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #444;
    user-select: none;
    text-transform: uppercase;
    opacity: 0;
}

.input-reveal-wrap.selected label {
    opacity: 1;
}

.rcf__control-error-message {
    color: #ff0000;
    font-size: 0.8rem;
    margin-top: 0.15rem;
}

@media (min-width: 600px) {
    .formField-row {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }
    
    .formField-row .formField {
        width: 48%;
    }
}
/* BUTTONS */

.button {
    appearance: none;
    display: inline-block;
    border: 0;
    border-radius: 5px;
    padding: 1rem 1.5rem;
    background-color: #ef4444;
    color: #fff;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    line-height: 1;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
    transition: background-color 0.2s, box-shadow 0.2s;
}

@media (max-width: 767px) {
    .button {
        font-size: .875rem;
        padding: .75rem 1rem;
    }
}

.button:hover {
    box-shadow: rgba(0, 0, 0, 0.15) 0px 1px 1px 0px;
}

.button-unstyled {
    appearance: none;
    display: inline-block;
    border: 0;
    padding: 0;
    text-transform: none;
    text-decoration: none;
    font-weight: 400;
    line-height: 1;
    cursor: pointer;
    box-shadow: none;
    border: none;
    background-color: transparent;
}



/* Stroke Button */

.button-stroke {
    background-color: transparent;
    color: #ef4444;
    box-shadow: 0 0 0 2px #ef4444;
}

.button-stroke:hover {
    background-color: #ef4444;
    color: #fff;
    box-shadow: 0 0 0 2px #ef4444;
}

.button-stroke-blue {
    background-color: transparent;
    color: #3366cc;
    box-shadow: 0 0 0 2px #3366cc;
}

.button-stroke-blue:hover {
    background-color: #3366cc;
    color: #fff;
    box-shadow: 0 0 0 2px #3366cc;
}

.button-stroke-green {
    background-color: transparent;
    color: #10b981;
    box-shadow: 0 0 0 2px #10b981;
}

.button-stroke-green:hover {
    background-color: #10b981;
    color: #fff;
    box-shadow: 0 0 0 2px #10b981;
}




/* Size Variants */

.button.button-slim {
    padding: 0.5rem 1rem;
}

.button-small {
    padding: 0.35rem 0.5rem;
    font-size: .8rem;
}

@media (max-width: 767px) {
    .button-small {
        font-size: 0.75rem;
    }
}



/* Color Variants */

.button-green {
    background-color: #10b981;
    color: #000;
    color: #fff;
}

.button-gray {
    background-color: #d1d5db;
    color: #000;
}

.button-blue {
    background-color: #3366cc;
    color: #fff;
}

.button-transparent {
    background-color: transparent;
    color: #000;
    box-shadow: none;
}

.button.button-transparent:hover {
    box-shadow: none;
}




/* Icon Button */

.button .svg-icon-wrap {
    font-weight: inherit;
    font-size: inherit;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
}

.button .svg-icon-wrap svg {
    display: inline-block;
    height: 1em;
    width: 1em;
    line-height: 1;
    vertical-align: -0.15em;
}




/* Button States */

.button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}






/* Load More Button */

.button--load-more {
    appearance: none;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #444;
    font-size: .875rem;
    padding: 1rem;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    border: 0;
    background-color: transparent;
    box-shadow: none;
    letter-spacing: 1px;
    transition: all 0.2s;
}

.button--load-more .icon--chevron-down-load-more {
    margin-top: 0.5rem;
}



/* Sort Button */

.sortButtonRow {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 1rem 0;
}

.sortButton {
    display: block;
    margin: 0;
    padding: 0.5rem;
    font-size: 1rem;
    text-align: center;
    border: 1px solid #d1d5db;
    box-shadow: none;
    white-space: nowrap;
    cursor: pointer;
}

.sortButton.default::after {
    content: '';
}

.sortButton.ascending::after {
    content: '\25B2';
}

.sortButton.descending::after {
    content: '\25BC';
}



/* Toggle Button */

.button-toggle {
    display: inline-block;
    font-weight: 400;
    line-height: 1.25;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    margin: 0 1rem;
    padding: 0;
    position: relative;
    border: none;
    height: 1.5rem;
    width: 3rem;
    border-radius: 1.5rem;
    color: #6b7381;
    background: #bdc1c8;
    cursor: pointer;
}

.button-toggle-label {
    position: static;
    line-height: 1.5rem;
    width: 2rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    bottom: 0;
    transition: opacity 0.25s;
    color: #6b7381;
}

.button-toggle .handle {
    position: absolute;
    top: 0.1875rem;
    left: 0.1875rem;
    width: 1.125rem;
    height: 1.125rem;
    border-radius: 1.125rem;
    background: #fff;
    transition: left 0.25s;
}

.button-toggle-label--off {
    opacity: 1;
}

.button-toggle-label--on {
    opacity: .5;
}

/* active state */

.button-toggle-wrap--active .button-toggle {
    background-color: #29b5a8;
    transition: background-color 0.25s;
}

.button-toggle-wrap--active .handle {
    left: 1.6875rem;
    transition: left 0.25s;
}

.button-toggle-wrap--active .button-toggle-label--off {
    opacity: 0.5;
}

.button-toggle-wrap--active .button-toggle-label--on {
    opacity: 1;
}



/* Button Row */

.button-row,
.button-row-xs-up {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

.button-row .button,
.button-row .button-loading-wrap,
.button-row-xs-up .button,
.button-row-xs-up .button-loading-wrap {
    margin: 0.5rem 1rem 0.5rem 0;
}

.button-row-xs-up .button:last-child {
    margin-right: 0;
}

@media (max-width: 480px) {
    .button-row {
        flex-direction: column;
    }

    .button-row .button,
    .button-row .button-loading-wrap {
        width: 100%;
        margin: 0 auto;
    }

    .button-row .button {
        margin: 0 auto 1rem;
    }
}


/* TABLES */

.responsive-table-wrap {
    position: relative;
    overflow-x: auto;
    width: 100%;
    max-width: 100%;
}  

.table-default {
    background-color: #fcfcfd;
    border: 1px solid #d1d5db;
    font-family: 'Inter', sans-serif;
}

.table-default th {
    padding: 1rem;
    border: 1px solid #d1d5db;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
}

@media (max-width: 767px) {
    .table-default th {
        padding: .5rem;
        font-size: 1rem;
    }
}

@media (max-width: 500px) {
    .table-default th {
        font-size: .9rem;
    }
}

.table-default td {
    padding: 1rem;
    border: 1px solid #d1d5db;
    font-size: .9rem;
    font-weight: 400;
    text-align: left;
}

@media (max-width: 767px) {
    .table-default td {
        padding: .5rem;
        font-size: .8rem;
    }
}

@media (max-width: 500px) {
    .table-default td {
        font-size: .85rem;
    }
}

.table-3-col td {
    width: 33.33%;
}

.table-cells-center td,
.table-cells-center th {
    text-align: center
}


/* Standard Table */

.standardTableWrap {}

.standardTable {
    display: table;
    margin: 1rem auto;
    padding: 1rem;
    border: 1px solid #d1d5db;
    font-family: 'Inter', sans-serif;
    background-color: #fcfcfd;
}

.standardTable thead,
.standardTable .thead {
    position: sticky;
    top: 0;
    background-color: #fcfcfd;
    box-shadow: inset 0 0 0 1px #999;
}

.standardTable tbody,
.standardTable .tbody {
    box-shadow: inset 0 0 0 1px #999;
}

.standardTable tr,
.standardTable .tr {
    display: table-row;
}

.standardTable tr.hiddenRow,
.standardTable .tr.hiddenRow {
    display: none;
}

.standardTable.allRowsVisible tr.hiddenRow,
.standardTable.allRowsVisible .tr.hiddenRow {
    display: table-row;
}

.standardTable th,
.standardTable .th {
    display: table-cell;
    padding: .5rem 1rem;
    border: 1px solid #d1d5db;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
}

.standardTable td,
.standardTable .td {
    display: table-cell;
    padding: .5rem 1rem;
    border: 1px solid #d1d5db;
    font-size: 1rem;
    font-weight: 400;
    text-align: left;
    white-space: nowrap;
}

.standardTable .firstInstance td,
.standardTable .firstInstance .td {
    border-top: 2px solid #000;
}

.standardTable tbody .firstInstance:first-child td,
.standardTable tbody .firstInstance:first-child .td {
    border-top: 0;
}

td.currencyValue,
.td.currencyValue {
    text-align: right;
    font-weight: 600;
}

td.positiveNumber,
.td.positiveNumber {
    color: #009a0d;
}

td.negativeNumber,
.td.negativeNumber {
    color: #e6200e;
}

.negativeNumber td,
.negativeNumber .td {
    background-color: #ff9f9b;
}

.under1000 td,
.under1000 .td {
    background-color: #ffefef;
}

.exceptions {
    list-style-type: disc;
    margin: 0;
    padding: 1rem 0 1rem 1rem;
}

.exceptions li {
    margin: 0;
    padding: 0;
    line-height: 1.1;
    font-size: 85%;
}

.legendTable tr th:first-child,
.legendTable .tr .th:first-child {
    border-right: 2px solid #000;
    text-decoration: none;
    background-color: #444;
    color: #fff;
}

.info-notification {
    padding: 1rem;
    font-size: 1.2rem;
    background-color: #10b981;
}

.info-warning {
    padding: 1rem;
    font-size: 1.2rem;
    background-color: #ff1a1a;
    color: #fff;
}

@media (max-width: 767px) {
    .info-notification,
    .info-warning {
        font: 1rem;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        top: -50px;
    }
    to {
        opacity: 1;
        top: 70px;
    }
}

.response-message-wrapper {
    position: fixed;
    top: 70px;
    max-width: 100%;
    width: auto;
    left: 50%;
    transform: translateX(-50%);
    z-index: 101;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out, top 0.3s ease-in-out;
}

.response-message-wrapper.visible {
    opacity: 1;
    pointer-events: auto;
    animation: fadeIn 0.3s ease;
    filter: drop-shadow(1px 2px 3px rgba(0, 0, 0, 0.5));
}

@media (min-width: 992px) {
    .response-message-wrapper {
    }
}

.response-message {
    margin-bottom: .15rem;
    padding: 1rem;
    font-size: 1.1rem;
    background-color: #10b981;
    color: #000;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    text-align: center;
}

@media (max-width: 767px) {
    .response-message {
        font-size: 1rem;
    }
}

.response-message.response-message--notification {
    background-color: #10b981;
    border-color: #10b981;
    color: #000;
}

.response-message.response-message--warning {
    background-color: #ff1a1a;
    border-color: #ff1a1a;
    color: #fff;
}

.response-message p {
    margin: 0;
    line-height: 1.2;
    text-wrap: balanced;
}

.recharts-responsive-container {
    max-width: 100%;
    margin: 0 auto;
}

.recharts-wrapper {
    margin-left: auto;
    margin-right: auto;
}

.recharts-brush {
    transform: translateY(20px);
}

.recharts-legend-wrapper {
    bottom: -15px !important;
}

.recharts-cartesian-axis-tick {
    font-size: 0.85em;
}

.recharts-cartesian-axis-tick-value {
    font-size: 0.9em;
}


/* Tooltip styling */

@media (max-width: 600px) {
    .recharts-default-tooltip {
        padding: .5rem !important;
    }
    .recharts-tooltip-item {
        font-size: .85em;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .recharts-tooltip-label {
        font-size: .9em;
    }
}
.tabs-wrapper {
    display: flex;
    justify-content: center;
    align-items: stretch;
    margin: 1rem 0;
}

.tab {
    margin: 0.25rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    background-color: #f8f9fa;
    color: #495057;
    font-size: .8rem;
    font-weight: 600;
    border: 1px solid #495057;
    border-radius: 5px;
}

.tab.active {
    background-color: #3366cc;
    color: #fff;
    border-color: #3366cc;
}

.svg-icon-wrap {
    font-weight: inherit;
    font-size: inherit;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
}

.svg-icon-wrap svg {
    display: inline-block;
    height: 1em;
    width: 1em;
    line-height: 1;
    vertical-align: -0.15em;
}

.loader {
    height: 5rem;
    width: 5rem;
    margin: auto;
    animation: spin 2s infinite linear;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.icon-circle-red {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    width: 2.5rem;
    min-width: 2.5rem;
    height: 2.5rem;
    min-height: 2.5rem;
    margin-right: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    background-color: #ff4433;
    color: #fff;
    border-radius: 50%;
}


/* UTILITIES */

.text-left {
    text-align: left !important;
}

.text-center {
    text-align: center !important;
}

.text-right {
    text-align: right !important;
}

.text-weight-bold {
    font-weight: bold;
}

.text-weight-normal {
    font-weight: normal;
}

.text-weight-light {
    font-weight: lighter;
}

.text-weight-100 {
    font-weight: 100;
}

.text-weight-200 {
    font-weight: 200;
}

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

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

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

.text-weight-600 {
    font-weight: 600;
}

.text-weight-700 {
    font-weight: 700;
}

.text-weight-800 {
    font-weight: 800;
}

.text-weight-900 {
    font-weight: 900;
}

.text-transform-uppercase {
    text-transform: uppercase;
}

.text-transform-none {
    text-transform: none;
}

.spc-m-x-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

.spc-m-0 {
    margin: 0 !important;
}

.spc-m-t-0 {
    margin-top: 0 !important;
}

.spc-m-b-0 {
    margin-bottom: 0 !important;
}

.spc-m-l-0 {
    margin-left: 0 !important;
}

.spc-m-r-0 {
    margin-right: 0 !important;
}

.spc-m-half {
    margin: .5rem !important;
}

.spc-m-t-half {
    margin-top: .5rem !important;
}

.spc-m-b-half {
    margin-bottom: .5rem !important;
}

.spc-m-l-half {
    margin-left: .5rem !important;
}

.spc-m-r-half {
    margin-right: .5rem !important;
}

.spc-m-1 {
    margin: 1rem !important;
}

.spc-m-t-1 {
    margin-top: 1rem !important;
}

.spc-m-b-1 {
    margin-bottom: 1rem !important;
}

.spc-m-l-1 {
    margin-left: 1rem !important;
}

.spc-m-r-1 {
    margin-right: 1rem !important;
}

.spc-m-2 {
    margin: 2rem !important;
}

.spc-m-t-2 {
    margin-top: 2rem !important;
}

.spc-m-b-2 {
    margin-bottom: 2rem !important;
}

.spc-m-l-2 {
    margin-left: 2rem !important;
}

.spc-m-r-2 {
    margin-right: 2rem !important;
}



.spc-p-0 {
    padding: 0 !important;
}

.spc-p-t-0 {
    padding-top: 0 !important;
}

.spc-p-b-0 {
    padding-bottom: 0 !important;
}

.spc-p-l-0 {
    padding-left: 0 !important;
}

.spc-p-r-0 {
    padding-right: 0 !important;
}

.spc-p-half {
    padding: .5rem !important;
}

.spc-p-t-half {
    padding-top: .5rem !important;
}

.spc-p-b-half {
    padding-bottom: .5rem !important;
}

.spc-p-l-half {
    padding-left: .5rem !important;
}

.spc-p-r-half {
    padding-right: .5rem !important;
}

.spc-p-x-half {
    padding-left: .5rem !important;
    padding-right: .5rem !important;
}

.spc-p-y-half {
    padding-top: .5rem !important;
    padding-bottom: .5rem !important;
}

.spc-p-1 {
    padding: 1rem !important;
}

.spc-p-t-1 {
    padding-top: 1rem !important;
}

.spc-p-b-1 {
    padding-bottom: 1rem !important;
}

.spc-p-l-1 {
    padding-left: 1rem !important;
}

.spc-p-r-1 {
    padding-right: 1rem !important;
}

.spc-p-x-1 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

.spc-p-y-1 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

.spc-p-2 {
    padding: 2rem !important;
}

.spc-p-t-2 {
    padding-top: 2rem !important;
}

.spc-p-b-2 {
    padding-bottom: 2rem !important;
}

.spc-p-l-2 {
    padding-left: 2rem !important;
}

.spc-p-r-2 {
    padding-right: 2rem !important;
}

.spc-p-x-1 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

.spc-p-y-1 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}

/* SIZING */

.size-w-auto {
    width: auto !important;
}

/* DISPLAY */

.dis-flex {
    display: flex !important;
}

.dis-inline-flex {
    display: inline-flex !important;
}

.dis-inline-block {
    display: inline-block !important;
}

.dis-block {
    display: block !important;
}

@media (max-width: 480px) {
    .dis-block-xs {
        display: block !important;
    }
}


/* BACKGROUND */

.bg-white {
    background-color: #fff !important;
}

.bg-gray {
    background-color: #d1d5db !important;
}

.bg-blue {
    background-color: #3366cc !important;
}

.bg-green {
    background-color: #10b981 !important;
}

.bg-light-green {
    background-color: #dbeae4 !important;
}

.bg-red {
    background-color: #ef4444 !important;
}

.bg-red-light {
    background-color: #ffcccc !important;
}

.bg-amber {
    background-color: #f59e0b !important;
}

.bg-indigo {
    background-color: #6366f1 !important;
}

.bg-slate {
    background-color: #64748b !important;
}

/* COLOR */

.color-white {
    color: #fff !important;
}

.color-black {
    color: #1a1a1a !important;
}

.color-gray {
    color: #d1d5db !important;
}

.color-blue {
    color: #3366cc !important;
}

/* BORDER */

.border-gray {
    border: 1px solid #d1d5db !important;
}

.border-none {
    border: none !important;
}



/* HEADER */

.main-header {
  position: fixed;
  width: 100%;
  top: 0;
  background-color: #1e1e2f;
  font-family: 'Inter', sans-serif;
  z-index: 102;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,.2);
}

@media (max-width: 991px) {
  .main-header {
    max-height: 100vh;
    overflow-y: auto;
  }

  .main-header--active {
    height: 100%;
    max-height: 100vh;
    overflow-y: auto;
  }
}

.main-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 0;
}

@media (max-width: 991px) {
  .main-header-inner {
    padding: .5rem 0;
    flex-wrap: wrap;
  }
  .main-header--active .main-header-inner {
    padding-bottom: 0;
  }
}

@media (min-width: 992px) {
  .main-header-inner {
    padding: 0;
  }
}

/* TOOLS */

.main-header-tools {
  display: flex;
  justify-content: space-between;
  align-items: center;
  order: 3;
}

@media (max-width: 991px) {
  .main-header-tools {
    padding-left: .25rem;
  }
  .main-header--active .main-header-tools {
    order: 1;
  }
}

/* PROFILE BUTTONS */

.user-nav-buttons {
  margin-left: auto;
  padding-right: 1rem;
}

@media (max-width: 991px) {
  .user-nav-buttons {
      margin: 0;
      padding: 0 1rem 0 0;
  }
}

/* MAIN NAV */

.main-header-nav {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 991px) {
  .main-header-nav {
    display: none;
    width: 100%;
    margin-top: .5rem;
    padding: 1rem 0 0 0;
    order: 3;
    border-top: 1px solid rgba(255, 255, 255, .2);
  }
  .main-header--active .main-header-nav {
    display: block;
  }
}

@media (min-width: 992px) {
  .main-header-nav {
    display: flex;
    margin-right: auto;
  }
}

.main-header-nav-list {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  list-style-type: none;
  position: relative;
  width: 100%;
}

@media (max-width: 991px) {
  .main-header-nav-list {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 1rem;
  }
}

.main-header-nav-list li {
  position: relative;
  color: white;
  user-select: none;
}

@media (max-width: 991px) {
  .main-header-nav-list li {
    width: 100%;
  }

  .main-header-nav-list li:last-child {
    margin-bottom: .25rem;
  }
}

.main-header-nav-list > li > a,
.main-header-nav-submenu-trigger {
  display: block;
  padding: 1rem 1.5rem;
  font-size: 1.2rem;
  font-weight: 400;
  text-decoration: none;
  color: white;
  text-align: center;
  text-transform: none;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color .2s;
}

@media (max-width: 1199px) {
  .main-header-nav-list > li > a,
  .main-header-nav-submenu-trigger {
    padding: 1rem;
    font-size: 1.1rem;
  }
}

@media (max-width: 991px) {
  .main-header-nav-list > li > a,
  .main-header-nav-submenu-trigger {
    text-align: left;
    padding: .75rem 1.75rem;
    font-size: 1.5rem;
  }
}

.main-header-nav-submenu-trigger {
  appearance: none;
  background-color: transparent;
  border: 0;
  cursor: pointer;
}

@media (min-width: 992px) {
  .main-header-nav-list > li > a:hover,
  .main-header-nav-submenu-trigger:hover {
    background-color: rgba(0, 0, 0, .2);
  }
}

.main-header-nav-submenu-trigger .main-header-nav-submenu-trigger-icon {
  width: .8rem;
  margin-left: .5rem;
  fill: white;
  transform: rotate(0deg);
  transition: transform .2s;
}

.main-header-nav-submenu-trigger .main-header-nav-submenu-trigger-icon.active {
  transform: rotate(180deg);
}


/* SUBMENU */

.main-header-sub-menu {
  text-align: center;
  text-align: left;
  font-family: 'Inter', sans-serif;
}

@media (max-width: 991px) {
  .main-header-sub-menu {
    width: 100%;
    background-color: transparent;
    text-align: left;
  }
}

@media (min-width: 992px) {
  .main-header-sub-menu {
    position: absolute;
    min-width: 100%;
    padding: .5rem;
    top: 100%;
    left: 0;
    z-index: 1;
    background-color: #d9e1ed;
    background-color: #1e1e2f;
    box-shadow: 2px 2px 3px 2px rgba(0,0,0,.2);
  }
}

.main-header-sub-menu li {
  font-size: 1rem;
}

.main-header-sub-menu li a {
  padding: .25rem 1rem .25rem 2rem;
}

@media (min-width: 992px) {
  .main-header-sub-menu li a {
    white-space: nowrap;
    padding: .5rem 1.5rem;
  }
}

.main-header-sub-menu li a,
.main-header-sub-menu li a:link,
.main-header-sub-menu li a:visited {
    display: block;
    color: #fff;
    text-decoration: none;
    background-color: inherit;
    transition: background-color .2s, color .2s;
}

.main-header-sub-menu li a:hover,
.main-header-sub-menu li a:active {
    color: #000;
    background-color: #fff;
}

/* Logo */

.main-header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-header-logo img {
  width: 200px;
  height: auto;
}

@media (max-width: 1199px) {
  .main-header-logo {
    padding: .5rem 1rem;
  }
  .main-header-logo img {
    width: 150px;
  }
}

@media (max-width: 991px) {
  .main-header-logo {
    padding: .5rem 0 .5rem 1rem;
  }
  .main-header-logo img {
    width: 120px;
  }
}

@media (max-width: 400px) {
  .main-header .user-nav-buttons .button__logout {
    display: none;
  }
}

.main-header-mobile-footer {
  display: none;
  width: 100%;
  margin-top: 1rem;
  padding: 2rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .2);
}

@media (max-width: 400px) {
  .main-header--active .main-header-mobile-footer {
    display: block;
  }
}
/* BUTTON */

.hamburger {
	display: block;
	position: relative;
	outline: 0;
	padding: .5rem;
	cursor: pointer;
	transition-property: opacity, filter;
	transition-duration: 0.15s;
	transition-timing-function: linear;
	font: inherit;
	color: inherit;
	text-transform: none;
	background-color: transparent;
	border: 0;
	margin: 0 0 0 1rem;
	line-height: 0;
	overflow: visible;
	z-index: 10;
}

.hamburger:hover {
	opacity: 0.7;
}

@media (min-width: 992px) {
	.hamburger {
		display: none;
	}
}

/* ICON WRAP */

.hamburger-icon-wrap {
	width: 32px;
	height: 20px;
	display: inline-block;
	position: relative;
}

/* ICON */

.hamburger-icon {
	display: block;
	top: 50%;
}

.hamburger-icon,
.hamburger-icon::before,
.hamburger-icon::after {
	width: 32px;
	height: 2px;
	background-color: #f5f5f5;
	border-radius: 2px;
	position: absolute;
	transition-property: transform;
	transition-duration: 0.15s;
	transition-timing-function: ease;
}

.hamburger-icon::before,
.hamburger-icon::after {
	content: "";
	display: block;
}

.hamburger-icon::before {
	top: -8px;
}

.hamburger-icon::after {
	bottom: -8px;
}


/* ANIMATIONS */

.hamburger--stand .hamburger-icon {
	transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}

.hamburger--stand .hamburger-icon::before {
	transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand .hamburger-icon::after {
	transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand.is-active .hamburger-icon {
	transform: rotate(90deg);
	background-color: transparent;
	transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}

.hamburger--stand.is-active .hamburger-icon::before {
	top: 0;
	transform: rotate(-45deg);
	transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--stand.is-active .hamburger-icon::after {
	bottom: 0;
	transform: rotate(45deg);
	transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}


/* ACTIVE STATE */

.hamburger.is-active {
	background-color: transparent;
}

.hamburger.is-active .hamburger-icon {
	background-color: transparent;
}

.hamburger.is-active .hamburger-icon::before,
.hamburger.is-active .hamburger-icon::after {
	background-color: #f5f5f5;
}
/* FOOTER */

.main-footer {
  width: 100%;
  background-color: rgba(22, 12, 12, 1);
}

.main-footer__inner {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
}

.footer-logo {
  display: block;
  margin: 0 auto;
  width: 100px;
}

.support-link {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
}

.support-link:hover {
  text-decoration: underline;
  color: #ff4433;
}

.copyright-text {
  margin: 1rem 0 0;
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
}

.kWQXe {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 350px;
    height: 100%;
    background-color: #373737;
    color: #fff;
    padding: 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    overflow: visible;
    z-index: 99;
    
    position: fixed;
    top: 0;
    left: -350px;
    transition: left 0.3s ease;
}

.kWQXe.hTUF9 {
    left: 0;
}

.lFQkP {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 0;
    right: -3rem;
    z-index: 100;
    width: 3rem;
    height: 3rem;
    text-align: center;
    background-color: #10b981;
    transition: all 0.3s ease .3s;
}

.kWQXe.hTUF9 .lFQkP {
    right: 0;
    width: 100%;
    text-align: right;
    justify-content: flex-end;
}

.lFQkP svg {
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    right: 0;
}

.kWQXe.hTUF9 .lFQkP svg {
    right: 1rem;
}


.N18ik {
    position: relative;
    padding: 4rem 1rem;
    overflow-y: auto;
}

.Fp1OC {
    box-shadow: inset 0 0 10px 0 rgba(0, 0, 0, 0.1);
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
}

.wv_El {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: .5rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
}

.dtaMS {
    display: flex;
    align-items: center;
    justify-content: center;
}

.dtaMS svg {
    width: 1.5rem;
    height: 1.5rem;
    fill: #fff;
    opacity: 0.2;
}

.J8ck2 {
}

.hkWRE {
    margin-top: 0;
    font-size: 1.25rem;
    font-weight: 500;
}

.CcO_9 {
    font-size: 1rem;
    color: #d1d5db;
}

.wv_El.tzYST .dtaMS svg {
    opacity: 1;
}
/* Engagement Message Styles */
.engagement-message {
    position: relative;
    margin-bottom: 1rem;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: slideIn 0.5s ease-out;
    transition: all 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Message Types */
.engagement-message--celebration {
    background: linear-gradient(135deg, #10b981, #34d399);
    color: white;
    border-left: 5px solid #059669;
}

.engagement-message--milestone {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    color: white;
    border-left: 5px solid #2563eb;
}

.engagement-message--streak {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: white;
    border-left: 5px solid #d97706;
}

.engagement-message--warning {
    background: linear-gradient(135deg, #ef4444, #f87171);
    color: white;
    border-left: 5px solid #dc2626;
}

.engagement-message--encouragement {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    color: white;
    border-left: 5px solid #7c3aed;
}

.engagement-message--ultimate {
    background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706);
    color: white;
    border: 3px solid #92400e;
    box-shadow: 0 8px 24px rgba(217, 119, 6, 0.4);
    animation: pulse 2s infinite, slideIn 0.5s ease-out;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 24px rgba(217, 119, 6, 0.4);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 12px 32px rgba(217, 119, 6, 0.6);
    }
}

/* Header */
.engagement-message__header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 0.75rem;
}

.engagement-message__icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.engagement-message__title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    flex-grow: 1;
}

.engagement-message__dismiss {
    background: none;
    border: none;
    color: currentColor;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    padding: 0.25rem;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.engagement-message__dismiss:hover {
    opacity: 1;
}

/* Content */
.engagement-message__content {
    margin-bottom: 1rem;
}

.engagement-message__content p {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    line-height: 1.5;
}

.engagement-message__stats {
    margin-top: 0.5rem;
    opacity: 0.9;
    font-size: 0.875rem;
}

/* Actions */
.engagement-message__actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.engagement-message__action {
    padding: 0.5rem 1rem;
    border: 2px solid currentColor;
    background: transparent;
    color: currentColor;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.875rem;
}

.engagement-message__action:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.engagement-message__action--primary {
    background: rgba(255, 255, 255, 0.9);
    color: #374151;
    border-color: rgba(255, 255, 255, 0.9);
}

.engagement-message__action--primary:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Ultimate Celebration Extras */
.engagement-message__celebration-extras {
    margin-top: 1rem;
    text-align: center;
}

.engagement-message__achievement-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Responsive Design */
@media (max-width: 768px) {
    .engagement-message {
        padding: 1rem;
        margin-left: -0.5rem;
        margin-right: -0.5rem;
    }
    
    .engagement-message__header {
        gap: 0.5rem;
    }
    
    .engagement-message__title {
        font-size: 1.125rem;
    }
    
    .engagement-message__actions {
        flex-direction: column;
    }
    
    .engagement-message__action {
        width: 100%;
        text-align: center;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .engagement-message {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
    
    .engagement-message__action--primary {
        background: rgba(31, 41, 55, 0.9);
        color: #f9fafb;
        border-color: rgba(31, 41, 55, 0.9);
    }
    
    .engagement-message__action--primary:hover {
        background: #374151;
    }
}
.MSKrZ {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

@media (max-width: 576px) {
    .MSKrZ {
        padding: 1rem;
    }
}
.UPpTj {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: calc(50% - 2rem);
    margin: 1rem;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

@media (max-width: 576px) {
    .UPpTj {
        width: calc(100% - 1rem);
        text-align: center;
    }
}

.UPpTj:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.Hn8yB {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.Hn8yB svg {
    width: auto;
    max-width: 100%;
    height: auto;
}

.hywHB {
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: 600;
}

.TP_oL {
    font-size: 1rem;
    margin-bottom: 1rem;
    text-align: center;
}

.fcI67 {
    margin-top: auto;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}
.QdvXo {
    margin: 0 auto;
    max-width: 800px;
}

.YhWxJ {
    display: block;
    margin: 3rem auto;
    padding: 0 0.5rem;
    text-transform: uppercase;
    text-align: center;
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 1;
}

.cEUoh {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    margin: 2rem 0 0;
    padding: 0 0.5rem 1rem;
    overflow-x: auto;
    /* Modern scrollbar styling */
    scrollbar-width: thin;
    scrollbar-color: #cbd5e0 #f7fafc;
}

/* Webkit scrollbar styling for Chrome, Safari, etc. */
.cEUoh::-webkit-scrollbar {
    height: 12px;
}

.cEUoh::-webkit-scrollbar-track {
    background: #f7fafc;
    border-radius: 6px;
}

.cEUoh::-webkit-scrollbar-thumb {
    background: #cbd5e0;
    border-radius: 6px;
    border: 2px solid #f7fafc;
}

.cEUoh::-webkit-scrollbar-thumb:hover {
    background: #a0aec0;
}

.Rknod {
    display: block;
    min-width: 70px;
    margin: .15rem;
    padding: .25rem .75rem;
    border: 1px solid #495057;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    background-color: #f8f9fa;
    font-size: .9rem;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    color: #495057;
    cursor: pointer;
}

.Rknod.WcMdf {
    background-color: #3366cc;
    color: #fff;
    border: 1px solid #3366cc;
}

.aKnTw {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin: .25rem 0;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 5px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 1px;
    background-color: #fcfcfd;
}

.aKnTw._HRsM {
    background-color: rgba(255, 80, 80, 0.05);
}

.aKnTw.nuVF1 {
    background-color: rgba(255, 80, 80, 0.1);
}

.MSfwD {
    display: none;
}

.MSfwD.rH0gf {
    display: block;
}

/* Info */

.bRD2a {
    flex: 2;
    padding: 0.5rem;
}

.KcKVr {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.3;
}

.oqc0D {
    font-size: 1rem;
    font-weight: 300;
}

/* Amount */

.gbOLx {
    flex: 1;
    padding: 0.5rem;
}

.z87R2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #009a0d;
    white-space: nowrap;
}

.AQP9A {
    font-size: 1.4rem;
}

.z87R2.sKG9z {
    color: #e6200e;
}

.z_p4_ {
    font-size: 0.8rem;
    font-weight: 400;
    color: #000;
}

.z_p4_.nuVF1 {
    color: #e6200e;
}

@media (max-width: 767px) {
    .KcKVr {
        font-size: 1.1rem;
    }

    .oqc0D {
        font-size: 0.9rem;
    }

    .z87R2 {
        font-size: 1.1rem;
    }

    .z_p4_ {
        font-size: 0.75rem;
    }
}

@media (max-width: 500px) {
    .YhWxJ {
        font-size: 3.5vw;
    }

    .KcKVr {
        font-size: 3.5vw;
    }

    .oqc0D {
        font-size: 2.75vw;
    }

    .z87R2 {
        font-size: 3.5vw;
    }

    .z_p4_ {
        font-size: 2.25vw;
    }
}

.dK6HR {
    margin-right: 0.5rem;
    text-align: center;
}

.qhI1g {
    width: 60px;
    text-align: center;
    line-height: 1.1;
    margin: 0.25rem 0;
}

.FsFZn {
    padding: 0.25rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 5px;
    background-color: #eeeff1;
}

.gO3FO {
    font-size: 0.6rem;
    text-transform: uppercase;
    font-weight: 500;
}

.DRk9E {
    font-size: 1.4rem;
    font-weight: 900;
    line-height: 1.3;
}

.mFM1G {
    font-size: 0.6rem;
    font-weight: 500;
}

.JwcvO {
    text-align: left;
    margin-top: .15rem;
    font-size: .7rem;
    line-height: 1;
    font-weight: 300;
    color: #333;
}

.KlREg {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    align-self: stretch;
    margin: -.75rem -.75rem -.75rem auto;
    padding: .75rem;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border-left: 1px solid #ddd;
    background-color: rgba(248,248,248,.9);
}

.PAp9y {
    display: block;
    font-size: 1.2rem;
    line-height: 1;
    margin-bottom: 0.25rem;
}

/* Variants */

.QdvXo._oFir {
    max-width: 1000px;
}

.aKnTw.NKMnm {
    justify-content: flex-start;
    text-decoration: none;
    transition: transform 0.2s, background-color 0.2s;
}

.aKnTw.NKMnm:hover {
    transform: scale(1.025);
    background-color: #fff;
}

@media (max-width: 500px) {
    .aKnTw.NKMnm {
        padding: 1rem 0.5rem;
    }
}

.aKnTw.NKMnm .dK6HR {
    text-align: left;
}

.aKnTw.NKMnm .bRD2a {
    flex: 1;
}

.aKnTw.NKMnm .gbOLx {
    flex: 1;
    line-height: 1.2;
    text-align: right;
}

@media (max-width: 767px) {
    .aKnTw.NKMnm .bRD2a {
        flex: 2;
    }

    .aKnTw.NKMnm .gbOLx {
        flex: 1;
    }
}

@media (max-width: 500px) {
    .aKnTw.NKMnm .gbOLx {
        align-self: flex-end;
    }
}

.aKnTw.NKMnm .dK6HR {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.iddTw,
.xiZ1b {
    font-size: .8rem;
    font-weight: 300;
    line-height: 1.3;
}

.U5MJo {
    display: block;
    position: absolute;
    margin: 0;
    padding: 0.25rem 0.5rem;
    border: 1px solid #d1d5db;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    background-color: rgba(240, 240, 240, 0.9);
    font-size: .875rem;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    top: .5rem;
    right: .5rem;
}

@media (max-width: 767px) {
    .U5MJo {
        padding: 0.25rem;
        font-size: 0.75rem;
        top: .25rem;
        right: .25rem;
    }
}

@media (max-width: 500px) {
    .U5MJo,
    .iddTw,
    .xiZ1b {
        font-size: 2.75vw;
    }
}

.XdHMq {
    background-color: #f3ecec;
}
.PF2Ko {
    opacity: .1;
    transition: opacity .2s ease-in-out;
}

.C8Mt5 {
    opacity: 1;
}

.PF2Ko:hover,
.C8Mt5,
.PF2Ko.C8Mt5 {
    opacity: 1;
}

.o4zZ8 {
    position: absolute;
    top: 0;
    right: 0;
    background-color: rgba(240,240,240,0.9);
    border: 1px solid #d1d5db;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
    padding: 2rem;
    z-index: 10;
}

.NfTLY {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.5rem;
    cursor: pointer;
}

.XPyRU {
    border-top: 1px solid #d1d5db;
    margin-top: 1rem;
    padding-top: 1rem;
}

.gpSYC {
    list-style-type: none;
    margin: 1rem 0 0;
    padding: .5rem 1rem;
    background-color: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.gpSYC > li {
    margin: 0 0 0.5rem;
    padding: 0.5rem 0;
    line-height: 1.4;
    font-size: 80%;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.gpSYC > li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

/* Special handling for the Effects item with nested list */
.gpSYC > li:has(.ZPzyA) {
    flex-direction: column;
    align-items: stretch;
}

.ZPzyA {
    list-style-type: none;
    margin: 0.75rem 0 0 0;
    padding: 0;
    background-color: #ffffff;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.ZPzyA > li {
    margin: 0;
    padding: 0.75rem 1rem;
    line-height: 1.4;
    font-size: 85%;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.ZPzyA > li:last-child {
    border-bottom: none;
}

.ZPzyA > li:before {
    content: "•";
    color: #64748b;
    font-weight: bold;
    font-size: 1.2em;
    flex-shrink: 0;
    width: 1.5em;
    text-align: center;
}

.ZPzyA > li > div {
    flex: 1;
}

/* Exception type specific styling */
.ZPzyA > li:has([data-type="amount"]):before {
    content: "💰";
}

.ZPzyA > li:has([data-type="paid"]):before {
    content: "✅";
}

.ZPzyA > li:has([data-type="cancelled"]):before {
    content: "❌";
}

.ZPzyA > li:has([data-type="rescheduled"]):before {
    content: "📅";
}

.ZPzyA > li:has([data-type="highlight"]):before {
    content: "⭐";
}

.cC6Vw {
    padding: 0;
    font-size: inherit;
}

.x9SsD {
    background-color: #d1d5db;
}
._dJxr {
    display: inline-block;
    width: 80px;
    height: 80px;
  }
  ._dJxr:after {
    content: ' ';
    display: block;
    width: 64px;
    height: 64px;
    margin: 8px;
    border-radius: 50%;
    border: 6px solid teal;
    border-color: teal transparent teal transparent;
    animation: _dJxr 1.2s linear infinite;
  }
  @keyframes _dJxr {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  .VhK8C {
    text-align: center;
  }
.iYTbO {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-bottom: 1px solid #d1d5db;
    margin-bottom: .5rem;
    padding-bottom: 1rem;
}

.MR6CF {
    font-size: 2.5rem;
    margin-bottom: 0;
    line-height: 1;
    font-weight: 300;
}

@media (max-width: 500px) {
    .MR6CF {
        font-size: 2rem;
    }
}

.forecast-filters{position:fixed;top:14px;right:0;width:auto;max-width:100%;z-index:2;padding:1rem;padding-right:4rem;background-color:rgba(249,249,249,.95);transform:translateY(calc(-100% + 1rem));border-radius:5px;box-shadow:0 0 10px rgba(0,0,0,.1);transition:all .3s ease}@media(min-width: 1200px){.forecast-filters{top:16px}}.forecast-filters.filters-visible{transform:translateY(0)}.forecast-filters .formStandard{display:flex;align-items:flex-start;justify-content:space-evenly;flex-direction:column;width:100%;background-color:rgba(0,0,0,0)}.forecast-filters__btn-toggle{position:absolute;display:flex;align-items:center;justify-content:center;bottom:-60px;right:0;z-index:100;width:3rem;height:4rem;text-align:center;background-color:#10b981;border-bottom-left-radius:5px;border-bottom-right-radius:5px;transition:all .3s ease .3s}@media(min-width: 992px){.forecast-filters__btn-toggle{bottom:-65px}}.forecast-filters.filters-visible .forecast-filters__btn-toggle{height:100%;align-items:flex-end;bottom:-1px;border-radius:0}.forecast-filters__btn-toggle svg{position:relative;width:1.25rem;height:1.25rem;bottom:0;margin:0 auto}.forecast-filters.filters-visible .forecast-filters__btn-toggle svg{bottom:1rem}
.get-started-row{width:100%;max-width:800px;margin:0 auto}@media(min-width: 768px){.get-started-row{display:flex;flex-direction:row;align-items:stretch;justify-content:space-evenly}}.get-started__item{display:flex;flex-direction:column;align-items:center;position:relative;margin-bottom:1rem;padding:20px;box-shadow:0px 0px 10px rgba(0,0,0,.1);background-color:#fcfcfd;border-radius:10px;text-align:center}@media(min-width: 768px){.get-started-row .get-started__item{width:calc(50% - 2rem);margin-bottom:0}}.get-started__flag{position:absolute;display:inline-block;top:-10px;left:50%;font-size:.875rem;font-weight:500;clip-path:polygon(5% 0%, 95% 0%, 100% 50%, 95% 100%, 5% 100%, 0% 50%);background-color:#00a4b3;color:#fff;padding:.5em 1.5em;margin:.5rem 0;text-align:center;line-height:1;letter-spacing:1px;transform:translate(-50%, -50%)}.get-started__title{font-size:1.3rem;font-weight:600;color:#333;margin:10px 0}.get-started__description{font-size:.875rem;color:#555;margin:10px 0 20px}.get-started__button{margin-top:auto;white-space:normal;line-height:1.2}
.faq-item{margin-bottom:1rem;border:1px solid #d1d5db;border-radius:5px;background-color:#fcfcfd;transition:all .3s}.faq-item:hover{background-color:#f0f0f0}.faq-item .faq-item-question{position:relative;margin:0;padding:1rem 3rem 1rem 1rem;font-size:1.2rem;font-weight:500;cursor:pointer}.faq-item .faq-item-answer{padding:1rem;border-top:1px solid #d1d5db}.faq-item .faq-item-toggle-icon{position:absolute;right:1rem;top:50%;transform:translateY(-50%)}
.itemDetail{display:flex;flex-direction:row;justify-content:flex-start;align-items:center;position:relative;margin:.25rem 0;padding:.75rem;border:1px solid #d1d5db;border-radius:5px;box-shadow:0 0 5px rgba(0,0,0,.1);background-color:#fcfcfd;transition:transform .1s,background-color .1s}.itemDetail:hover{transform:scale(1.015);background-color:#fff}@media(max-width: 500px){.itemDetail{flex-direction:column;align-items:stretch;padding:.5rem}}.itemDetail-left{flex:1;padding:.5rem}@media(max-width: 500px){.itemDetail-left{padding-bottom:0}}.itemTitle{font-size:1.2rem;font-weight:400;line-height:1.3;color:#36c}.itemCategory{font-size:1rem;font-weight:400;color:#686868}.itemDetail-right{display:flex;flex-direction:column;justify-content:center;align-items:flex-end;padding:.5rem;position:relative}@media(max-width: 500px){.itemDetail-right{justify-content:space-between;flex-direction:row;align-items:center}}.itemAmountWrap{flex:1;padding:.5rem;flex:1;line-height:1.2;text-align:right}.itemAmount{font-size:1.4rem;font-weight:700;color:#009a0d;white-space:nowrap}.itemAmount.negativeAmount{color:#e6200e}@media(max-width: 500px){.itemAmount{font-size:4vw}}.itemDate{display:flex;justify-content:flex-start;align-items:center;margin-right:.5rem;text-align:left}.itemDateStart,.itemDateEnd{font-size:.8rem;font-weight:400;line-height:1.3;color:#686868}.itemFrequency{display:block;margin:0 0 .5rem;padding:.25rem .5rem;border:1px solid #d1d5db;border-radius:5px;box-shadow:0 0 5px rgba(0,0,0,.1);background-color:rgba(240,240,240,.9);font-size:.875rem;font-weight:400;line-height:1;text-align:center}@media(max-width: 500px){.itemFrequency{margin-bottom:0}}@media(max-width: 767px){.itemInfoWrap{flex:2}.itemAmountWrap{flex:1}.itemAmount{font-size:1.1rem}.itemFrequency{padding:.25rem;font-size:.75rem}.itemTitle{font-size:1.1rem}.itemCategory{font-size:.9rem}}@media(max-width: 500px){.itemAmountWrap{align-self:flex-end}.itemFrequency,.itemDateStart,.itemDateEnd{font-size:2.75vw}.itemTitle{font-size:3.5vw}.itemCategory{font-size:2.75vw}}
.mgpxW {
    position: relative;
    margin: 0 auto 1rem;
    max-width: 1400px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem;
}

@media (max-width: 991px) {
    .mgpxW {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .mgpxW {
        grid-template-columns: 1fr;
    }
}

.bfw6b {
    position: relative;
    margin: 0.25rem 0;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    background-color: rgb(240, 240, 240);
    visibility: visible;
    opacity: 1;
    grid-column: span 1;
    transition: grid-column 0.3s, box-shadow 0.65s 0.65s, background-color 0.65s 0.65s;
}

.mRezL {
    width: 100%;
    text-align: center;
    padding-bottom: 1rem;
}

.FWJZO {
    margin-top: .5rem;
}

.G7VM9 {
    padding: 1rem 0;
    font-size: 4rem;
    line-height: 1;
}

.fD5eN {
    margin: 0 0 .5rem;
    text-align: center;
}

.snmOK {
    margin: 0 0 1rem;
    text-align: center;
    font-size: .875rem;
    font-weight: 300;
    font-style: italic;
}

.UT4cN {
    flex: 1;
    padding: 0.5rem;
}

.R4aJw {
    font-size: 1.2rem;
    font-weight: 700;
    color: #009a0d;
}

.R4aJw.C3AUL {
    color: #e6200e;
}

.IjVUf {
    margin: 0;
    text-align: center;
}

/* Expanded */

.mgpxW.nNbK9 .bfw6b:not(.uddnt) {
    display: none;
}

.mgpxW.nNbK9 .bfw6b:not(.uddnt) .FWJZO {
    display: none;
}

.bfw6b.uddnt {
    grid-column: span 3;
    box-shadow: 0 0 16px rgba(0, 0, 0, .5);
    background-color: rgb(255, 255, 255);
}

.bfw6b.uddnt .G7VM9 {
    font-size: 2.5rem;
}

.bfw6b.uddnt .snmOK,
.bfw6b.uddnt .R4aJw,
.bfw6b.uddnt .IjVUf {
    display: none;
}

/* Created Transactions */

.NCowP {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.NCowP.kYX7v {
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
}

.h_XlT {
    position: absolute;
    top: .5rem;
    right: .5rem;
    padding: 0.5rem;
    font-size: 1.25rem;
    cursor: pointer;
}

.h1gwH {
    text-align: right;
}

.KJ_98 {
    display: inline-block;
    cursor: pointer;
    font-size: 1.25rem;

    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: rgba(51, 136, 255,.7);
    color: #fff;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    line-height: 1;
    filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.25));
    transition: all 0.3s;
}

.KJ_98:hover {
    background-color: rgba(51, 136, 255, 1);
    filter: none;
}

.upoIR {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 3rem 1.5rem 1.5rem;
    background-color: rgba(51, 136, 255,.98);
    text-align: left;
    overflow-y: auto;
}

.RsbNE {
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.2;
    color: #000;
}

.MCzBj {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
}

.MCzBj li {
    margin: 0 0 0.2rem;
}

.MCzBj li a,
.MCzBj li a:visited,
.MCzBj li a:active {
    color: #fff;
    font-weight: 500;
}

.MCzBj li a:hover {
    color: #fff;
    text-decoration: underline;
}
.eYMd0{display:flex;flex-direction:column;align-items:center;justify-content:center;padding:2rem;background-color:#f8f8f8;border-radius:1rem;box-shadow:0 0 1rem rgba(0,0,0,.1);text-align:center}.uhPR7{max-width:700px}.wlAme{margin-top:0;font-size:1.8rem;margin-bottom:1rem}.aBdtl{font-size:1.1rem;margin-bottom:1rem}.eYMd0 button{padding:1rem 2rem;font-size:1.25rem;background-color:#36c;color:#fff;border:none;border-radius:.5rem;cursor:pointer;transition:background-color .2s}.eYMd0 button:hover{background-color:#0056b3}.tz9CH{margin-top:1rem;margin-bottom:0;font-size:.9rem;font-style:italic}
/* Card Header */

.LplcQ {
    border: 0 solid #d1d5db;
    background-color: #fff;
}

.VVNGK {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap;
    padding: .75rem;
    text-decoration: none;
}

.X_wzT {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: stretch;
}

.CaOUJ {
    padding: 0 .5rem 0 0;
}

.F8T_m {
    margin-left: auto;
    padding: 0 0 0 .5rem;
}

.W7BYr {
    display: inline-flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    margin-left: .5rem;
}

.IT6oW {
    margin-right: .25rem;
    margin-bottom: .25rem;
}

.KNcaH {
    margin: 0 0 .25rem;
    line-height: 1;
    font-size: 1.2rem;
    font-weight: 400;
    color: #000;
}

.fH0dO {
    display: block;
    font-size: .8rem;
    font-weight: 300;
    margin: 0;
    color: #555;
}

.NQ_qr {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1;
    font-weight: 300;
    text-align: right;
    color: #000;
}

@media (max-width: 500px) {
    .KNcaH {
        font-size: 1rem;
    }

    .fH0dO {
        font-size: .7rem;
    }

    .NQ_qr {
        font-size: .9rem;
    }
}

.hc2s4 {
    background-color: rgba(0, 213, 126, .15);
    border: 0 solid #d1d5db;
}

.NEJw1 {
    border-width: 1px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
}
.uh5Hf {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 100;
}

.hVv1L {
  position: absolute;
  overflow: auto;
  z-index: 100;
  background-color: #fff;
  width: calc(100% - 2rem);
  max-height: calc(100% - 2rem);
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
}

@media (min-width: 768px) {
  .hVv1L {
    width: auto;
    max-width: 90%;
    height: auto;
    max-height: 90%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

.r93T8 {
  position: relative;
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.26);
}

.WHFm5 .r93T8 {
  width: 800px;
  max-width: 100%;
}

.moijF {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1rem 2.5rem 1rem 1.5rem;
  background-color: #f6f6f6;
}

.ZigV8 {
  margin: 0;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.1;
}

._zM6I {
  position: absolute;
  top: 50%;
  right: .5rem;
  padding: .5rem;
  cursor: pointer;
  background-color: transparent;
  border: none;
  transform: translateY(-50%);
  font-size: 1rem;
}
/* Accounts Group */

.o_Mpy {
    width: 100%;
    max-width: 800px;
    margin: 1rem auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.26);
    background-color: #fff;
}

.efzQH {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    padding: 1rem;
    border-bottom: 1px solid #d1d5db;
}

@media (max-width: 500px) {
    .efzQH {
        padding: .75rem;
    }
}

.h61xL,
.fSHUL {
    margin: 0;
    font-size: 1.4rem;
    line-height: 1;
    font-weight: 400;
}

.fSHUL {
    margin-left: .75rem;
    white-space: nowrap;
}

@media (max-width: 500px) {
    .h61xL,
    .fSHUL {
        font-size: 1.2rem;
    }
}

.refinance-account-item {
  background-color: #fff;
  border: 2px solid #ddd;
  border-radius: 12px;
  padding: 1.5rem;
  position: relative;
  transition: all 0.2s ease;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.refinance-account-item:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.refinance-account-item--selected {
  border-color: #2196f3;
  box-shadow: 0 4px 12px rgba(33, 150, 243, 0.2);
}

.refinance-account-item--selected:hover {
  box-shadow: 0 6px 20px rgba(33, 150, 243, 0.3);
}

.refinance-account-item__checkbox {
  position: absolute;
  top: 1rem;
  right: 1rem;
  transform: scale(1.3);
  cursor: pointer;
}

.refinance-account-item__delete-button {
  position: absolute;
  top: 1rem;
  right: 3.5rem;
  background: none;
  border: none;
  color: #d32f2f;
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 4px;
  font-size: 1rem;
  transition: background-color 0.2s ease;
}

.refinance-account-item__delete-button:hover {
  background-color: #ffebee;
}

.refinance-account-item__header {
  margin-bottom: 1.5rem;
  padding-right: 4rem;
}

.refinance-account-item__name {
  font-weight: bold;
  color: #333;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.refinance-account-item__institution {
  font-size: 0.9rem;
  color: #666;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.refinance-account-item__manual-badge {
  background-color: #e3f2fd;
  color: #1976d2;
  padding: 0.15rem 0.5rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: bold;
}

.refinance-account-item__details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.refinance-account-item__detail {
  /* Base detail item styling */
}

.refinance-account-item__detail-label {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 0.25rem;
}

.refinance-account-item__detail-value {
  font-weight: bold;
  font-size: 1.1rem;
}

.refinance-account-item__detail-value--balance {
  color: #d32f2f;
}

.refinance-account-item__detail-note {
  font-size: 0.7rem;
  color: #666;
  margin-top: 0.25rem;
}

.refinance-account-item__type-badge {
  font-size: 0.85rem;
  background-color: #e8f5e8;
  color: #2e7d32;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  display: inline-block;
  font-weight: 500;
}

.refinance-account-item__selection-indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-color: #2196f3;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
/* Refinance Calculator Page Styles */

.refinance-calculator {
  width: 1400px;
  max-width: 100%;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.refinance-calculator__header {
  text-align: center;
  margin-bottom: 3rem;
}

.refinance-calculator__title {
  margin: 0 0 0.5rem 0;
  color: #333;
}

.refinance-calculator__subtitle {
  margin: 0;
  color: #666;
  font-size: 1.1rem;
}

.refinance-calculator__action-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.refinance-calculator__loading-state,
.refinance-calculator__no-accounts {
  text-align: center;
  padding: 3rem;
  background-color: #f8f9fa;
  border-radius: 8px;
  margin: 2rem 0;
}

.refinance-calculator__no-accounts-title {
  margin: 0 0 1rem 0;
  color: #333;
}

.refinance-calculator__no-accounts-text {
  margin: 0 0 2rem 0;
  color: #666;
}

.refinance-calculator__loading-text {
  margin: 0;
  font-size: 1.1rem;
}

.refinance-calculator__section {
  margin-bottom: 2rem;
}

.refinance-calculator__section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.refinance-calculator__section-title {
  margin: 0 0 0.25rem 0;
}

.refinance-calculator__section-description {
  margin: 0;
  color: #666;
}

.refinance-calculator__accounts-section {
  margin-bottom: 2rem;
}

.refinance-calculator__accounts-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1rem;
  gap: 2rem;
}

.refinance-calculator__accounts-header-info {
  flex: 1;
}

.refinance-calculator__accounts-title {
  margin: 0 0 0.25rem 0;
}

.refinance-calculator__accounts-subtitle {
  margin: 0;
  color: #666;
}

.refinance-calculator__accounts-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.refinance-calculator__sort-control {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.refinance-calculator__sort-label {
  font-weight: 500;
  color: #333;
  white-space: nowrap;
}

.refinance-calculator__sort-select {
  padding: 0.5rem 0.75rem;
  border: 2px solid #ddd;
  border-radius: 6px;
  background-color: white;
  font-size: 0.9rem;
  color: #333;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.refinance-calculator__sort-select:hover {
  border-color: #2196f3;
}

.refinance-calculator__sort-select:focus {
  outline: none;
  border-color: #2196f3;
  box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
}

.refinance-calculator__toggle-all-button {
  min-width: 120px;
}

.refinance-calculator__accounts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  padding: 0;
  margin: 2rem auto;
}

.refinance-calculator__selected-summary {
  background-color: #e3f2fd;
  border: 2px solid #2196f3;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.refinance-calculator__selected-summary-title {
  margin: 0 0 1rem 0;
  color: #1976d2;
}

.refinance-calculator__selected-summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* Responsive Design */
@media (max-width: 991px) {
    .refinance-calculator__accounts-controls {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
  .refinance-calculator {
    padding: 1rem 0.5rem;
  }
  
  .refinance-calculator__header {
    margin-bottom: 2rem;
  }
  
  .refinance-calculator__accounts-header {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  
  .refinance-calculator__sort-control {
    justify-content: space-between;
  }
  
  .refinance-calculator__sort-select {
    min-width: 200px;
    align-items: stretch;
    gap: 1rem;
  }
  
  .refinance-calculator__toggle-button {
    min-width: auto;
    width: 100%;
  }
  
  .refinance-calculator__account-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .refinance-calculator__selected-summary-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .refinance-calculator {
    padding: 1rem 0.25rem;
  }
  
  .refinance-calculator__action-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .refinance-calculator__loading-state,
  .refinance-calculator__no-accounts {
    padding: 2rem 1rem;
  }
}
.WkL9U {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1rem;
    border: 1px solid #d1d5db;
    border-radius: 5px;
    background-color: #fff;
}

.Eq1aS {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: nowrap;
    padding: 0.5rem;
    margin: 0.5rem;
    border: 1px solid #d1d5db;
    border-radius: 5px;
    background-color: #f6f6f6;
    width: calc(25% - 1rem);
}

.zRw49 .Eq1aS {
    background-color: #f6f6f6;
}

@media (max-width: 991px) {
    .Eq1aS {
        width: calc(50% - 1rem);
    }
}

@media (max-width: 767px) {
    .Eq1aS {
        width: 100%;
    }
}

.kKPDc {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    width: 2.5rem;
    min-width: 2.5rem;
    height: 2.5rem;
    min-height: 2.5rem;
    margin-right: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    background-color: #ff4433;
    color: #fff;
    border-radius: 50%;
}

.gF2s_ {
    margin: .5rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: #000;
}

.gN7M0 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-self: stretch;
    flex: 1;
}

.zR5Zl {
    margin: auto 0 0;
    font-size: 0.9rem;
    font-weight: 400;
    color: #000;
}

.NXSK5 {
    margin-top: .5rem;
    padding: 0.25rem .5rem;
    font-size: .8rem;
    font-weight: 600;
    color: #ff4433;
    border: 1px solid #ff4433;
    border-radius: 5px;
    cursor: pointer;
}

.zRw49 .Eq1aS button {
    background-color: #10b981;
    color: #fff;
    border: 0;
}
.Xv3p5 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.DnuS1 {
    display: block;
    width: 120px;
    height: 120px;
    margin-right: 1rem;
    margin-bottom: 1rem;
}

.s6FRS {
    padding: 1rem;
}

.H3qGx {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: #000;
}

._Cy67,
.TfeMN {
    margin: .25rem 0 0;
    font-size: 1rem;
    font-weight: 300;
    color: #000;
}


/*# sourceMappingURL=main.c4932bfb867c331b3c64.css.map*/