@import url("/styles.css?__frsh_c=123b678680ef9df727e83c50acc77c88e60a2a9c");
@import url("/desktop.css?__frsh_c=123b678680ef9df727e83c50acc77c88e60a2a9c");

.topbar {
  z-index: 50;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0;
  font-size: 0;
}

.brand-logo {
  display: block;
  width: 128px;
  height: auto;
}

.login-logo {
  display: block;
  width: min(100%, 300px);
  height: auto;
  margin: 0 auto 24px;
}

.profile-menu {
  position: relative;
}
.profile-menu summary {
  list-style: none;
  cursor: pointer;
}
.profile-menu summary::-webkit-details-marker {
  display: none;
}
.profile-chevron {
  margin-left: 2px;
  color: var(--muted);
  font-size: 13px;
  transition: transform 140ms ease;
}
.profile-menu[open] .profile-chevron {
  transform: rotate(180deg);
}
.profile-menu-panel {
  position: absolute;
  z-index: 60;
  top: calc(100% + 12px);
  right: 0;
  width: 290px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(52, 16, 34, 0.16);
}
.profile-menu-panel::before {
  position: absolute;
  top: -6px;
  right: 18px;
  width: 11px;
  height: 11px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: #fff;
  content: "";
  transform: rotate(45deg);
}
.profile-menu-person {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  padding: 10px;
  border-bottom: 1px solid var(--line);
}
.profile-menu-person > span,
.profile-menu-panel a > span:last-child,
.profile-menu-panel button > span:last-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
}
.profile-menu-person strong, .profile-menu-person small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.profile-menu-person small, .profile-menu-panel small {
  color: var(--muted);
  font-size: 11px;
}
.profile-menu-panel a, .profile-menu-panel button {
  display: grid;
  width: 100%;
  grid-template-columns: 25px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  padding: 10px;
  border: 0;
  border-radius: 10px;
  text-align: left;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}
.profile-menu-panel a:hover, .profile-menu-panel button:hover {
  background: var(--pink-soft);
}
.profile-menu-panel form {
  margin-top: 5px;
  padding-top: 5px;
  border-top: 1px solid var(--line);
}
.profile-menu-panel form input {
  display: none;
}
.profile-menu-panel form button {
  color: var(--red);
}

.settings-layout {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  align-items: start;
  gap: 18px;
}
.settings-identity {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 25px 20px 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  text-align: center;
  background: #fff;
  box-shadow: var(--shadow);
}
.settings-identity h3 {
  margin: 14px 0 3px;
}
.settings-identity p {
  max-width: 240px;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.settings-provider {
  margin: 14px 0 8px;
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--pink-dark);
  background: var(--pink-soft);
  font-size: 11px;
  font-weight: 800;
}
.settings-pix-card {
  gap: 15px;
}
.settings-pix-card label {
  gap: 8px;
}
.settings-pix-card input, .settings-pix-card select {
  min-height: 52px;
  height: 52px;
  padding: 0 14px;
  border-radius: 12px;
  line-height: 52px;
}
.settings-pix-card select {
  line-height: normal;
}
.settings-pix-card label small {
  min-height: 16px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  line-height: 16px;
}
.settings-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.settings-card-head h3 {
  margin: 0;
}
.pix-status {
  padding: 5px 9px;
  border-radius: 999px;
  color: #8a5000;
  background: #fff3d8;
  font-size: 11px;
  font-weight: 800;
}
.pix-status.configured {
  color: var(--green);
  background: #e8f7f1;
}
.settings-help {
  margin: -4px 0 2px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 24px;
}

.quick-actions .button {
  width: auto;
}

.status {
  width: fit-content;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--pink-soft);
  color: var(--pink-dark) !important;
  font-weight: 750;
}

.status.settled,
.status.forgiven {
  background: #e8f7f1;
  color: var(--green) !important;
}

.person-balance-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
}

.person-balance-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(52, 16, 34, 0.04);
}

.person-balance-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.person-net {
  display: flex;
  flex-direction: column;
  text-align: right;
}

.person-net span,
.person-gross span {
  color: var(--muted);
  font-size: 11px;
}

.person-net strong {
  font-size: 22px;
}

.person-net.due strong {
  color: var(--red);
}

.person-net.receive strong {
  color: var(--green);
}

.person-gross {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 16px 0;
}

.person-gross > div {
  display: flex;
  flex-direction: column;
  padding: 12px;
  border-radius: 13px;
  background: var(--bg);
}

.person-requests {
  margin: 0 0 16px;
  border-top: 1px solid var(--line);
  padding-top: 13px;
}

.person-requests summary {
  cursor: pointer;
  color: var(--pink-dark);
  font-weight: 750;
}

.person-requests a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.person-requests a > span {
  display: flex;
  flex-direction: column;
}

.person-requests small {
  color: var(--muted);
}

.history-section {
  margin-top: 34px;
}
.history-head {
  align-items: flex-end;
}
.history-head h3 {
  margin: 0;
}
.history-count {
  display: grid;
  min-width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 999px;
  color: var(--pink-dark);
  background: var(--pink-soft);
  font-size: 12px;
  font-weight: 850;
}
.history-list {
  border-top: 1px solid var(--line);
}
.history-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto auto;
  align-items: center;
  gap: 12px;
  padding: 14px 2px;
  border-bottom: 1px solid var(--line);
}
.history-item:hover {
  background: rgba(255, 240, 245, 0.45);
}
.history-status-icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  color: var(--muted);
  background: var(--bg);
  font-weight: 850;
}
.history-status-icon.settled {
  color: var(--green);
  background: #e8f7f1;
}
.history-status-icon.forgiven {
  color: var(--amber);
  background: #fff3d8;
}
.history-item-main {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 3px;
}
.history-item-main > span:last-child {
  color: var(--muted);
  font-size: 12px;
}
.history-status, .request-status {
  width: max-content;
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--muted);
  background: var(--bg);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}
.history-status.settled, .request-status.settled {
  color: var(--green);
  background: #e8f7f1;
}
.history-status.forgiven, .request-status.forgiven {
  color: #8a5000;
  background: #fff3d8;
}
.request-status.accepted {
  color: var(--red);
  background: #fff0f1;
}
.request-detail-hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding: 22px;
  border: 1px solid #f6d2df;
  border-radius: 22px;
  background: linear-gradient(135deg, #fff0f5, #fff);
}
.request-detail-hero h2 {
  margin: 2px 0 6px;
}
.request-detail-hero p:last-child {
  max-width: 530px;
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}
.request-detail-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.request-detail-summary > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
}
.request-detail-summary span, .request-requester {
  color: var(--muted);
  font-size: 12px;
}
.request-detail-summary strong {
  font-size: 19px;
}
.request-requester {
  margin: 12px 2px 25px;
}
.request-requester strong {
  color: var(--ink);
}
.request-people .section-head {
  margin-bottom: 10px;
}
.request-people-list {
  border-top: 1px solid var(--line);
}
.request-person-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 4px;
  border-bottom: 1px solid var(--line);
}
.request-person-row.focused {
  margin: 0 -10px;
  padding-right: 14px;
  padding-left: 14px;
  border-radius: 13px;
  background: var(--pink-soft);
}
.request-person-value {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 3px;
  text-align: right;
}
.request-person-value span {
  color: var(--muted);
  font-size: 11px;
}

.balance-person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.balance-person h2 {
  margin: 0;
}
.balance-explainer {
  padding: 24px;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(145deg, #2c1c27, #160e14);
  box-shadow: 0 16px 34px rgba(31, 12, 24, 0.18);
  text-align: center;
}
.balance-explainer > span {
  color: #d5cad1;
}
.balance-explainer > strong {
  display: block;
  margin: 5px 0 20px;
  font-size: 42px;
}
.balance-explainer.due > strong {
  color: #ff7e88;
}
.balance-explainer.receive > strong {
  color: #6edbb3;
}
.balance-equation {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.08);
}
.balance-equation div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.balance-equation small {
  color: #c9bec5;
}
.balance-equation i {
  color: #9f939b;
  font-size: 20px;
  font-style: normal;
}
.settlement-section {
  margin-top: 28px;
}

.settlement-section .select-debt {
  flex-direction: row;
  text-align: left;
}

.settlement-section .select-debt > input {
  flex: 0 0 auto;
}
.selection-count {
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--pink-dark);
  background: var(--pink-soft);
  font-size: 12px;
  font-weight: 750;
}
.select-debt.unavailable {
  cursor: not-allowed;
  opacity: 0.55;
}
.offset-choice {
  margin: 16px 0;
  padding: 16px;
  border: 1px solid #bce5d5;
  border-radius: 16px;
  background: #eef9f5;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.offset-choice input {
  width: 21px;
  height: 21px;
  accent-color: var(--green);
}
.offset-choice span {
  display: flex;
  flex-direction: column;
}
.offset-choice small {
  color: #527367;
}
.settlement-preview {
  margin-top: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
}
.preview-totals > div {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 8px 0;
  color: var(--muted);
}
.settlement-preview .preview-final {
  margin: 7px 0 15px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 19px;
}
.preview-offset {
  color: var(--green);
}
.receivables-panel {
  margin-top: 22px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}
.receivables-panel summary, .credit-note {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  font-weight: 800;
  cursor: pointer;
}
.receivables-panel .request-list {
  margin-top: 14px;
}
.credit-note {
  margin-top: 10px;
  padding: 15px 17px;
  border-radius: 15px;
  color: var(--green);
  background: #eef9f5;
}
.receive-only {
  margin-top: 22px;
}

.composer-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}
.composer-title h3 {
  margin: 0;
}
.settlement-items {
  border-top: 1px solid var(--line);
}
.settlement-item {
  border-bottom: 1px solid var(--line);
}
.settlement-item.unavailable {
  opacity: 0.58;
}
.settlement-item-main {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 12px;
  padding: 13px 0;
}
.settlement-item-main > input {
  width: 20px;
  height: 20px;
  accent-color: var(--pink);
}
.settlement-item-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.settlement-item-label {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 7px;
}
.info-tip {
  position: relative;
  display: inline-grid;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  place-items: center;
  border: 1px solid var(--muted);
  border-radius: 50%;
  color: var(--muted);
  font-family: Georgia, serif;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  cursor: help;
}
.info-tip::after {
  position: absolute;
  z-index: 20;
  bottom: calc(100% + 8px);
  left: 50%;
  width: max-content;
  max-width: min(280px, 70vw);
  padding: 8px 10px;
  border-radius: 8px;
  color: #fff;
  background: var(--ink);
  box-shadow: 0 7px 20px rgb(34 20 30 / 18%);
  content: attr(data-tooltip);
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 4px);
  transition: opacity 120ms ease, transform 120ms ease;
  white-space: normal;
}
.info-tip:hover::after, .info-tip:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, 0);
}
.date-pill {
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--pink-dark);
  background: var(--pink-soft);
  font-size: 11px;
  font-weight: 750;
  line-height: 1.2;
  white-space: nowrap;
}
.signed-value {
  white-space: nowrap;
}
.signed-value.negative {
  color: var(--red);
}
.signed-value.positive {
  color: var(--green);
}
.processing-marker {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 5px;
  padding: 4px 8px;
  border-radius: 999px;
  color: #8a5000 !important;
  background: #fff3d8;
  font-size: 11px !important;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}
.processing-marker::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d47a00;
  content: "";
}
.processing-marker.compact {
  padding: 3px 6px;
  font-size: 10px !important;
}

.score-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 22px 24px 20px;
  overflow: visible;
  border: 1px solid var(--line);
  border-radius: 24px;
  color: var(--ink);
  background: #fff;
  box-shadow: var(--shadow);
}
.score-card::after {
  display: none;
}
.score-gauge {
  position: relative;
  width: min(100%, 430px);
  margin: 0 auto;
}
.score-gauge svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}
.score-gauge path {
  transition: stroke 220ms ease;
}
.score-gauge-value {
  position: absolute;
  top: 44%;
  left: 50%;
  display: flex;
  align-items: center;
  flex-direction: column;
  transform: translate(-50%, -25%);
}
.score-gauge-value strong {
  color: #30354e;
  font-size: clamp(52px, 12vw, 76px);
  font-weight: 850;
  letter-spacing: -0.065em;
  line-height: 0.88;
}
.score-gauge-value span {
  margin-top: 10px;
  color: #999aa4;
  font-size: 19px;
  line-height: 1;
}
.score-card-copy {
  margin-top: -4px;
  text-align: center;
}
.score-card-copy p {
  margin: 7px auto 0;
  max-width: 420px;
  color: var(--muted);
}
.score-badge {
  color: var(--ink);
}
.score-summary {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(190px, 0.8fr);
  gap: 22px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  color: var(--ink);
  background: #fff;
  box-shadow: var(--shadow);
}
.score-summary .score-gauge {
  width: 100%;
}
.public-profile .score-gauge {
  width: min(100%, 350px);
  margin-top: 12px;
}
.score-summary .score-gauge-value strong {
  font-size: clamp(44px, 8vw, 62px);
}
.score-summary-details {
  display: flex;
  align-self: center;
  flex-direction: column;
  gap: 7px;
}
.score-summary-details > span:first-child {
  color: var(--muted);
}
.payment-hero > .processing-marker {
  margin: 7px auto 4px;
}
.compensation-item > input {
  accent-color: var(--green);
}
.preview-totals {
  margin-top: 10px;
}
.settlement-composer {
  margin-top: 22px;
}

.payment-breakdown {
  margin: 20px 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}
.payment-breakdown-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}
.payment-breakdown-title h3 {
  margin: 0;
}
.payment-breakdown-title > span {
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}
.payment-breakdown-list {
  border-top: 1px solid var(--line);
}
.payment-breakdown-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.payment-equation {
  margin-top: 14px;
}
.payment-equation > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 7px 0;
  color: var(--muted);
}
.payment-equation > div strong {
  color: var(--ink);
}
.payment-equation > div .positive {
  color: var(--green);
}
.payment-equation .payment-equation-final {
  margin-top: 7px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 18px;
  font-weight: 850;
}

.charge-page-title {
  margin-bottom: 18px;
}
.charge-page-title h2 {
  margin-bottom: 7px;
}
.charge-form {
  gap: 0;
  padding: 0;
  overflow: visible;
}
.charge-form > input[type="hidden"] {
  display: none;
}
.charge-basics, .charge-split {
  padding: 22px;
}
.charge-split {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.charge-section-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 17px;
}
.charge-section-title h3 {
  margin: 0;
}
.charge-section-title .text-link:disabled {
  opacity: 0.45;
  cursor: default;
}
.charge-basics-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 14px;
}
.charge-basics-grid input {
  min-height: 52px;
}
.charge-total-field {
  margin-bottom: 18px;
}
.charge-money-input {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 15px;
  border: 1px solid #ddcfd7;
  border-radius: 13px;
  background: #fff;
  min-height: 52px;
}
.charge-money-input:focus-within {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(215, 25, 95, 0.09);
}
.charge-money-input > span {
  color: var(--muted);
  font-size: 17px;
}
.charge-money-input input {
  padding: 13px 0;
  border: 0;
  border-radius: 0;
  font-size: 25px;
  font-weight: 800;
  box-shadow: none !important;
}
.people-picker {
  position: relative;
  z-index: 5;
  margin-bottom: 20px;
}
.people-picker > label {
  display: block;
  margin-bottom: 7px;
  font-size: 13px;
  font-weight: 700;
}
.people-search-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 13px;
  border: 1px solid #ddcfd7;
  border-radius: 12px;
  background: #fff;
  min-height: 52px;
}
.people-search-wrap:focus-within {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(215, 25, 95, 0.09);
}
.people-search-wrap > span {
  color: var(--muted);
  font-size: 21px;
}
.people-search-wrap input {
  padding-left: 0;
  border: 0;
  box-shadow: none !important;
}
.people-results {
  position: absolute;
  top: calc(100% + 7px);
  right: 0;
  left: 0;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(52, 16, 34, 0.14);
  max-height: 330px;
  overflow-y: auto;
}
.people-results-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3px 5px 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.people-results-head button {
  border: 0;
  color: var(--muted);
  background: transparent;
  font-size: 18px;
  cursor: pointer;
}
.people-results > button {
  display: grid;
  width: 100%;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 9px;
  border: 0;
  border-radius: 10px;
  text-align: left;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}
.people-results > button:hover {
  background: var(--pink-soft);
}
.people-results > button.selected {
  color: var(--green);
  background: #eef9f5;
}
.people-results > button > strong {
  color: var(--pink);
  font-size: 18px;
}
.people-results > p {
  margin: 8px;
  color: var(--muted);
  font-size: 13px;
}
.selected-people-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 7px;
}
.selected-people-head span {
  color: var(--muted);
  font-size: 12px;
}
.selected-people {
  border-top: 1px solid var(--line);
}
.selected-person {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}
.person-amount {
  display: flex;
  width: 120px;
  align-items: center;
  flex-direction: row;
  gap: 5px;
  padding: 0 9px;
  border: 1px solid #ddcfd7;
  border-radius: 10px;
  color: var(--muted);
  background: #fff;
}
.person-amount input {
  min-width: 0;
  padding: 8px 0;
  border: 0;
  text-align: right;
  box-shadow: none !important;
}
.remove-person {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--muted);
  background: transparent;
  font-size: 20px;
  cursor: pointer;
}
.remove-person-spacer {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
}
.remove-person:hover {
  color: var(--red);
  background: #fff0f1;
}
.charge-split .split-total {
  margin-top: 14px;
}
.charge-description {
  margin: 20px 22px 0;
}
.charge-description > span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}
.charge-submit {
  width: auto !important;
  margin: 20px 22px 22px !important;
}

@media (max-width: 600px) {
  .balance-explainer {
    padding: 19px 15px;
  }
  .balance-explainer > strong {
    font-size: 36px;
  }
  .balance-equation {
    grid-template-columns: 1fr;
    gap: 7px;
  }
  .balance-equation i {
    line-height: 1;
  }
  .balance-equation div {
    flex-direction: row;
    justify-content: space-between;
  }

  .composer-title {
    align-items: flex-start;
  }
  .settlement-composer {
    padding: 16px;
  }
  .settlement-item-main {
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    gap: 8px;
    padding: 12px 0;
  }
  .payment-breakdown {
    padding: 16px;
  }
  .payment-breakdown-row {
    gap: 8px;
  }
  .score-card {
    padding: 18px 14px;
  }
  .score-summary {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .score-summary-details {
    align-items: center;
    margin-top: -5px;
    text-align: center;
  }
  .history-item {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 8px;
  }
  .history-item > .date-pill {
    grid-column: 2;
    justify-self: start;
  }
  .history-item > .history-status {
    display: none;
  }
  .history-item > .signed-value {
    grid-column: 3;
    grid-row: 1 / 3;
  }
  .request-detail-hero {
    padding: 18px;
  }
  .request-detail-summary {
    grid-template-columns: 1fr;
  }
  .request-detail-summary > div {
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    padding: 12px 14px;
  }
  .charge-basics, .charge-split {
    padding: 18px 16px;
  }
  .charge-basics-grid {
    grid-template-columns: 1fr;
  }
  .charge-section-title {
    align-items: flex-end;
  }
  .selected-person {
    gap: 8px;
  }
  .person-amount {
    width: 105px;
  }
  .charge-description {
    margin-right: 16px;
    margin-left: 16px;
  }
  .charge-submit {
    margin-right: 16px !important;
    margin-left: 16px !important;
  }
  .profile-menu-panel {
    position: fixed;
    top: 58px;
    right: 10px;
    width: min(290px, calc(100vw - 20px));
  }
  .profile-menu-panel::before {
    right: 20px;
  }
  .settings-layout {
    grid-template-columns: 1fr;
  }
  .settings-identity {
    flex-direction: row;
    gap: 14px;
    padding: 18px;
    text-align: left;
  }
  .settings-identity .avatar-xl {
    width: 66px;
    height: 66px;
    font-size: 22px;
  }
  .settings-identity > div {
    min-width: 0;
    flex: 1;
  }
  .settings-identity h3 {
    margin: 0 0 3px;
  }
  .settings-identity .settings-provider {
    display: none;
  }
  .settings-identity .button {
    display: none;
  }
  .selection-count {
    white-space: nowrap;
  }
  .request-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .request-row > .button {
    grid-column: 2 / 4;
    width: 100%;
  }
}
