.Bhq87W_spinnerRoot.Bhq87W_center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.Bhq87W_spinner {
  width: 100px;
  animation: 2s linear infinite Bhq87W_svg-animation;
}

.Bhq87W_spinner circle {
  fill: #0000;
  stroke: #fff;
  stroke-linecap: round;
  stroke-dasharray: 283;
  stroke-dashoffset: 280px;
  stroke-width: 10px;
  transform-origin: 50%;
  animation: 2s ease-in-out infinite both Bhq87W_circle-animation;
  display: block;
}

@keyframes Bhq87W_svg-animation {
  0% {
    transform: rotateZ(0);
  }

  100% {
    transform: rotateZ(360deg);
  }
}

@keyframes Bhq87W_circle-animation {
  0% {
    stroke-dashoffset: 280px;
    transform: rotate(0);
  }

  50% {
    stroke-dashoffset: 45px;
    transform: rotate(45deg);
  }

  100% {
    stroke-dashoffset: 280px;
    transform: rotate(360deg);
  }
}

.uTo1Bq_form {
  gap: var(--space-md);
  flex-direction: column;
  display: flex;
}

.-ij8EW_modal {
  --modal-backdrop-color: transparent;
  --modal-backdrop-filter: none;
  background: none;
  border: none;
  width: 100vw;
  max-width: 100vw;
  height: 100dvh;
  max-height: 100dvh;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.-ij8EW_modal::backdrop {
  background-color: var(--modal-backdrop-color);
  backdrop-filter: var(--modal-backdrop-filter);
  transition: background-color var(--modal-transition-duration, .1s), backdrop-filter var(--modal-transition-duration, .1s);
}

.-ij8EW_modal.modalOpen::backdrop {
  --modal-backdrop-color: #00000080;
  --modal-backdrop-filter: blur(2px);
}

.KLFdxq_root {
  background-color: var(--bg-1);
  border-radius: var(--radius);
  padding: var(--space-md);
}

.KLFdxq_root.KLFdxq_scrollable {
  overflow: auto;
}

.oum7ya_dialog {
  background-color: var(--bg-1);
  border-radius: var(--radius);
  opacity: 0;
  max-width: 100vw;
  max-height: 100dvh;
  box-shadow: 0 5px var(--space-sm) #0006;
  transition: opacity var(--modal-transition-duration);
  color: var(--fg-0);
  position: absolute;
  top: 16.5%;
  left: 50%;
  overflow: hidden;
  transform: translateX(-50%);
}

.modalOpen .oum7ya_dialog {
  opacity: 1;
}

@media (width <= 600px) {
  .oum7ya_dialog.oum7ya_fullscreenOnMobile {
    border-radius: 0;
    width: 100vw;
    height: 100dvh;
    top: 0;
    left: 0;
    transform: none;
  }
}

.CQkFIG_icon {
  width: var(--iconSize);
  height: var(--iconSize);
  pointer-events: none;
}

.CQkFIG_icon.CQkFIG_xs {
  --iconSize: .5rem;
}

.CQkFIG_icon.CQkFIG_sm {
  --iconSize: 1rem;
}

.CQkFIG_icon.CQkFIG_md {
  --iconSize: 2rem;
}

.CQkFIG_icon.CQkFIG_lg {
  --iconSize: 3rem;
}

.kNdrzq_iconButton {
  color: inherit;
  background-color: #0000;
  place-content: center;
  display: grid;
}

.RDrpHW_alert {
  column-gap: var(--space-sm);
  border-radius: var(--radius);
  padding: var(--space-sm);
  grid-template-columns: auto 1fr;
  grid-template-areas: "RDrpHW_icon RDrpHW_title"
                       ". RDrpHW_content";
  display: grid;
}

.RDrpHW_alert .RDrpHW_icon {
  grid-area: RDrpHW_icon;
}

.RDrpHW_alert .RDrpHW_title {
  grid-area: RDrpHW_title;
  place-self: center start;
  font-size: 1.3rem;
  font-weight: 500;
}

.RDrpHW_alert .RDrpHW_content {
  padding: var(--space-xs) 0;
  grid-area: RDrpHW_content;
}

.RDrpHW_alert.RDrpHW_error {
  background-color: var(--danger);
}

.RDrpHW_alert.RDrpHW_warning {
  background-color: var(--warning);
  color: var(--bg-0);
}

.y5hlDa_crudOperationDialog {
  padding: var(--space-sm);
  grid-template-rows: auto auto 1fr;
  max-height: 100dvh;
  padding: 0;
  display: grid;
}

@media (width >= 600px) {
  .y5hlDa_crudOperationDialog {
    width: max-content;
    min-width: 400px;
  }
}

.y5hlDa_crudOperationDialog .y5hlDa_header {
  justify-content: flex-end;
  display: flex;
}

.y5hlDa_crudOperationDialog .y5hlDa_header .y5hlDa_secondaryAction {
  margin: var(--space-sm);
  margin-right: auto;
}

.y5hlDa_crudOperationDialog .y5hlDa_secondaryAction {
  background-color: var(--danger);
}

.y5hlDa_crudOperationDialog .y5hlDa_form {
  padding: 0 var(--space-sm);
  padding-block-end: var(--space-sm);
  overflow-y: auto;
}

.y5hlDa_crudOperationDialog .y5hlDa_submit {
  gap: var(--space-sm);
  background-color: inherit;
  padding: var(--space-sm);
  flex-direction: row;
  display: flex;
}

.y5hlDa_crudOperationDialog .y5hlDa_submit .y5hlDa_saveButton {
  flex: 1;
  margin-bottom: auto;
}

@media (width >= 600px) {
  .y5hlDa_crudOperationDialog .y5hlDa_submit .y5hlDa_saveButton {
    flex: 0;
    margin-left: auto;
  }
}

._8ZrUOG_drawer {
  background-color: var(--bg-1);
  color: var(--fg-0);
  width: min(100vw, 400px);
  height: 100vh;
  transition: transform var(--modal-transition-duration);
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
}

.modalOpen ._8ZrUOG_drawer {
  transform: translateX(0);
}

._8ZrUOG_drawer ._8ZrUOG_header {
  justify-content: end;
  height: 56px;
  display: flex;
}

._8ZrUOG_drawer {
  box-shadow: 0 5px var(--space-sm) #0006;
}

.dmU65G_categorySelectionList li {
  display: grid;
}

.dmU65G_categorySelectionList li button {
  background-color: var(--bg-2);
}

.qlTlEa_field {
  gap: var(--space-sm);
  flex-direction: column;
  display: flex;
}

.qlTlEa_field .qlTlEa_control {
  width: 100%;
  display: flex;
}

.qlTlEa_field .qlTlEa_control > * {
  flex: 1;
}

.M1YWGG_input {
  background-color: var(--bg-2);
  outline-offset: 0;
  outline: 2px solid #0000;
  height: 44px;
  display: flex;
  position: relative;
}

.M1YWGG_input:focus-within {
  outline-offset: 2px;
  outline-color: #fff;
}

.M1YWGG_input {
  border-radius: var(--radius);
  transition: outline-offset var(--time-sm), outline-color var(--time-md), background var(--time-sm);
}

.M1YWGG_input.M1YWGG_disabled {
  border: 1px solid var(--bg-2);
  background-color: #0000;
}

.M1YWGG_input.M1YWGG_disabled, .M1YWGG_input.M1YWGG_disabled * {
  cursor: not-allowed;
}

.M1YWGG_input .M1YWGG_icon {
  width: 28px;
  height: 28px;
  position: absolute;
  top: 50%;
  left: 6px;
  transform: translateY(-50%);
}

.M1YWGG_input .M1YWGG_component {
  font: inherit;
  border-radius: inherit;
  padding: var(--space-sm);
  transition: color var(--time-sm);
  color: var(--fg-0);
  background-color: #0000;
  border: none;
  outline: none;
  flex: 1;
}

.M1YWGG_input .M1YWGG_component.M1YWGG_withIcon {
  padding-inline-start: 38px;
}

.W210ma_amountField label {
  transform: translateY(1rem);
}

.W210ma_amountInput {
  gap: var(--space-sm);
  flex-direction: column;
  margin-top: -1.5rem;
  display: flex;
}

.W210ma_amountInput .W210ma_amountValue {
  justify-content: flex-end;
  align-items: center;
  font-family: monospace;
  font-size: 2rem;
  font-weight: 500;
  display: flex;
}

@media (width >= 600px) {
  .W210ma_amountField.W210ma_horizontalOnDesktop label {
    transform: none;
  }

  .W210ma_amountField.W210ma_horizontalOnDesktop .W210ma_amountInput {
    flex-direction: row;
    margin-top: 0;
  }

  .W210ma_amountField.W210ma_horizontalOnDesktop .W210ma_amountInput .W210ma_amountValue {
    text-align: right;
    width: 10ch;
    max-width: 10ch;
    font-size: 1.3rem;
  }

  .W210ma_amountField.W210ma_horizontalOnDesktop .W210ma_amountInput input {
    text-align: right;
  }
}

.J7Qg7a_expenseEditView {
  gap: var(--space-md);
  flex-direction: column;
  display: flex;
}

.J7Qg7a_expenseEditView .J7Qg7a_amountField label {
  transform: translateY(1rem);
}

.J7Qg7a_expenseEditView .J7Qg7a_amountInput {
  gap: var(--space-sm);
  flex-direction: column;
  margin-top: -1.5rem;
  display: flex;
}

.J7Qg7a_expenseEditView .J7Qg7a_amountInput .J7Qg7a_amountValue {
  justify-content: flex-end;
  align-items: center;
  font-family: monospace;
  font-size: 2rem;
  font-weight: 500;
  display: flex;
}

@media (width >= 600px) {
  .J7Qg7a_expenseEditView {
    flex-direction: row;
  }

  .J7Qg7a_expenseEditView .J7Qg7a_amountField label {
    transform: none;
  }

  .J7Qg7a_expenseEditView .J7Qg7a_amountInput {
    flex-direction: row;
    margin-top: 0;
  }

  .J7Qg7a_expenseEditView .J7Qg7a_amountInput .J7Qg7a_amountValue {
    text-align: right;
    width: 10ch;
    max-width: 10ch;
    font-size: 1.3rem;
  }

  .J7Qg7a_expenseEditView .J7Qg7a_amountInput input {
    text-align: right;
  }
}

.BTuWWa_createExpenseFab {
  bottom: var(--space-md);
  right: var(--space-md);
  background-color: var(--primary);
  color: #fff;
  width: var(--createButtonSize);
  height: var(--createButtonSize);
  box-shadow: 0 5px var(--space-sm) #0006;
  border-radius: 50%;
  place-content: center;
  padding: 0;
  font-size: 60px;
  text-decoration: none;
  display: grid;
  position: fixed;
}

.wnXwMG_mainMenu {
  background-color: var(--bg-1);
  padding: 0;
}

.wnXwMG_mainMenu .wnXwMG_menuItem {
  color: inherit;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  cursor: pointer;
  background-color: #0000;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.wnXwMG_mainMenu .wnXwMG_menuItem:hover {
  background-color: var(--bg-2);
}

.wnXwMG_mainMenu ul {
  flex-direction: column;
  height: 100%;
  display: flex;
}

.wnXwMG_mainMenu li {
  border-top: 1px solid var(--bg-2);
  display: grid;
}

.wnXwMG_mainMenu li:last-of-type {
  border-bottom: 1px solid var(--bg-2);
  margin-top: auto;
}

.ThThOG_syncStatusView {
  padding-inline: var(--space-sm);
  --transition-duration: .5s;
  background-color: #0000;
  display: flex;
  position: relative;
}

.ThThOG_syncStatusView > * {
  position: absolute;
  top: 50%;
  left: 50%;
}

.ThThOG_syncStatusView .ThThOG_cloud {
  width: 32px;
  fill: var(--sync-color, transparent);
  transition: fill var(--transition-duration), opacity var(--transition-duration);
  transform: translate(-50%, -50%)scaleY(90%);
}

.ThThOG_syncStatusView .ThThOG_cloud.ThThOG_offline {
  --sync-color: var(--danger);
}

.ThThOG_syncStatusView .ThThOG_cloud.ThThOG_syncing {
  --sync-color: var(--warning);
}

.ThThOG_syncStatusView .ThThOG_cloud.ThThOG_online {
  --sync-color: var(--good);
  opacity: .6;
}

.ThThOG_syncStatusView .ThThOG_icon {
  color: #fff;
  opacity: 0;
  transition: opacity var(--transition-duration);
  transform: translate(-50%, -41%);
}

.ThThOG_syncStatusView .ThThOG_icon.ThThOG_active {
  opacity: 1;
}

.YkyzEq_root {
  --headerHeight: 56px;
  --createButtonSize: 88px;
}

.YkyzEq_root > main {
  padding: var(--space-md);
}

.YkyzEq_root > header {
  background-color: var(--bg-1);
  height: var(--headerHeight);
  align-items: stretch;
  display: flex;
  position: sticky;
  top: 0;
}

.YkyzEq_root > header a {
  color: inherit;
  padding: var(--space-md);
  font-family: monospace;
  text-decoration: none;
}

.YkyzEq_root > header .YkyzEq_headerActions {
  align-items: center;
  gap: var(--space-sm);
  margin-inline-start: auto;
  display: flex;
}

.YkyzEq_root > header .YkyzEq_headerActions .YkyzEq_menuButton {
  background-color: #0000;
  height: 100%;
  display: grid;
}

.YkyzEq_root > header .YkyzEq_headerActions .YkyzEq_menuButton > * {
  margin: auto;
}

.YkyzEq_root > header .YkyzEq_headerActions .YkyzEq_menuButton {
  padding-inline-end: var(--space-md);
}

.YkyzEq_root.YkyzEq_withCreateExpenseButton {
  padding-bottom: calc(var(--createButtonSize)  + var(--space-md));
}

.YkyzEq_root > header, .YkyzEq_root .YkyzEq_createExpenseButton {
  box-shadow: 0 5px var(--space-sm) #0006;
}

.YkyzEq_root main.YkyzEq_narrow {
  max-width: 80ch;
  margin: 0 auto;
}

.T7Hm0W_categoriesPage header {
  gap: var(--space-md);
  flex-direction: column;
  display: flex;
}

@media (width >= 600px) {
  .T7Hm0W_categoriesPage header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.T7Hm0W_categoriesPage .T7Hm0W_listCategoriesView .T7Hm0W_category {
  grid-template-columns: 1fr auto;
  place-items: center start;
  display: grid;
}

.VqOSAG_expenseList {
  gap: var(--space-sm);
  flex-direction: column;
  display: flex;
}

.VqOSAG_expenseList li {
  gap: var(--space-sm);
  background-color: var(--bg-1);
  border-radius: var(--radius);
  padding: var(--space-sm);
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.VqOSAG_expenseList li .VqOSAG_details {
  flex-direction: column;
  gap: 5px;
  display: flex;
}

.pZno5G_table {
  flex: 1;
}

.pZno5G_table thead td {
  text-align: center;
  font-weight: 500;
}

.pZno5G_table thead {
  border-block-end: 1px solid var(--neutral);
}

.pZno5G_table td, .pZno5G_table th {
  padding: var(--space-sm);
  border-inline-end: 1px solid var(--neutral);
}

:is(.pZno5G_table td, .pZno5G_table th):last-child {
  border-inline-end: none;
}

:is(.pZno5G_table table > tr, .pZno5G_table tbody > tr):nth-child(2n) {
  background-color: #fff1;
}

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 {
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  border: 0;
  margin: 0;
  padding: 0;
}

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

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

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

html {
  box-sizing: border-box;
}

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

:root {
  --bg-0: #23262c;
  --bg-1: #373c44;
  --bg-2: #4d535e;
  --neutral: #6f7887;
  --fg-0: #f0f1f3;
  --primary: #017fc0;
  --warning: #ffbf00;
  --danger: #c52f21;
  --good: #2fc521;
  --space-xs: .25rem;
  --space-sm: .5rem;
  --space-md: 1rem;
  --time-sm: .1s;
  --time-md: .2s;
  --time-lg: .4s;
  --radius: .5rem;
}

body {
  background-color: var(--bg-0);
  color: var(--fg-0);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Open Sans, Helvetica Neue, sans-serif;
  font-size: 18px;
  position: relative;
}

#root {
  isolation: isolate;
  flex-direction: column;
  min-height: 100dvh;
  display: flex;
}

#root > .debugLog {
  margin-top: auto;
  padding: .5rem;
}

button {
  padding: var(--space-sm);
  border-radius: var(--radius);
  background-color: var(--primary);
  color: #fff;
  font-size: inherit;
  cursor: pointer;
  border: none;
  font-weight: 500;
}

button:disabled {
  cursor: not-allowed;
  opacity: .5;
  background-color: var(--bg-1);
}

button.danger {
  background-color: var(--danger);
}

h1 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
}

strong {
  font-weight: 500;
}

hr {
  border: none;
  border-bottom: 1px solid var(--neutral);
  width: 100%;
}

.smallText {
  font-size: 14px;
}

.monoText {
  font-family: monospace;
}

.increase {
  color: var(--good);
}

.decrease {
  color: var(--danger);
}

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

.stack-sm, .stack-md {
  gap: var(--space-sm);
  flex-direction: column;
  display: flex;
}

.stack-lg {
  gap: var(--space-md);
  flex-direction: column;
  display: flex;
}

.visuallyHidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  width: 1px;
  height: 1px;
  position: absolute;
  overflow: hidden;
}
/*# sourceMappingURL=www.f4e3e809.css.map */
