.yumobm-app,
.yumobm-demo {
  --yumobm-bg: #fafafa;
  --yumobm-card: #ffffff;
  --yumobm-ink: #1a2a42;
  --yumobm-muted: #747e8c;
  --yumobm-yellow: #ffce1a;
  --yumobm-blue: #1a5495;
  --yumobm-green: #00b956;
  --yumobm-green-line: #ccf1dd;
  --yumobm-line: #e7e9ec;
  --yumobm-font: "Proxima Nova", "Mont", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --yumobm-ease: cubic-bezier(.22, 1, .36, 1);
}

.yumobm-app,
.yumobm-app *,
.yumobm-app *::before,
.yumobm-app *::after,
.yumobm-demo,
.yumobm-demo *,
.yumobm-demo *::before,
.yumobm-demo *::after {
  box-sizing: border-box;
}

.yumobm-app {
  position: relative;
  isolation: isolate;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  overflow: clip;
  color: var(--yumobm-ink);
  background: var(--yumobm-bg);
  font-family: var(--yumobm-font);
  font-size: 14px;
  line-height: 1.3;
  container: yumobm-app / inline-size;
  user-select: none;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  touch-action: manipulation;
}

/*
 * A normal-flow stage is the definitive containing block for every app layer.
 * Keeping it separate from the named size-query container prevents Chromium
 * from resolving absolutely positioned screens against the document in
 * transformed/shared phone hosts.
 */
.yumobm-stage {
  position: relative;
  isolation: isolate;
  contain: layout paint;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  overflow: clip;
}

.yumobm-app :is(button, input) {
  margin: 0;
  color: inherit;
  font: inherit;
}

.yumobm-app button {
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.yumobm-app input {
  user-select: text;
}

.yumobm-app :is(button, input, summary):focus-visible {
  outline: 3px solid rgba(26, 84, 149, .48);
  outline-offset: 2px;
}

.yumobm-app img {
  display: block;
  flex: 0 0 auto;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.yumobm-app :is(h1, h2, h3, p, fieldset) {
  margin: 0;
}

.yumobm-sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.yumobm-view {
  position: absolute;
  z-index: 1;
  inset: 0 0 74px;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  overflow: clip;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(14px, 0, 0);
  transition: opacity .24s ease, transform .34s var(--yumobm-ease), visibility 0s .34s;
}

.yumobm-view.yumobm-is-active {
  z-index: 2;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: none;
  transition-delay: 0s;
}

.yumobm-view--news-detail,
.yumobm-view--chat {
  bottom: 0;
}

.yumobm-scroll {
  height: 100%;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.yumobm-scroll::-webkit-scrollbar {
  display: none;
}

.yumobm-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 20px 24px 18px;
}

.yumobm-brand {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  margin-bottom: 22px;
  color: var(--yumobm-ink);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.035em;
}

.yumobm-brand b,
.yumobm-demo__brand b {
  display: inline-grid;
  width: 24px;
  height: 24px;
  margin-right: 3px;
  place-items: center;
  border-radius: 50%;
  color: var(--yumobm-ink);
  background: var(--yumobm-yellow);
  font-size: 14px;
  font-weight: 800;
}

.yumobm-header h2 {
  color: var(--yumobm-ink);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.02em;
}

.yumobm-header p {
  margin-top: 4px;
  color: var(--yumobm-muted);
  font-size: 13px;
}

.yumobm-status {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  gap: 7px;
  margin-top: 2px;
  padding: 0 10px;
  border: 1px solid var(--yumobm-green-line);
  border-radius: 8px;
  color: var(--yumobm-green);
  background: #f6fff9;
  font-size: 11px;
  font-weight: 700;
}

.yumobm-balance-card,
.yumobm-card,
.yumobm-support-card,
.yumobm-operator-card {
  width: calc(100% - 48px);
  max-width: 327px;
  margin-inline: auto;
  border: 1px solid rgba(26, 42, 66, .055);
  border-radius: 8px;
  background: var(--yumobm-card);
  box-shadow: 0 7px 22px rgba(26, 42, 66, .055);
}

.yumobm-balance-card {
  display: flex;
  min-height: 104px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 16px 18px 20px;
}

.yumobm-balance-card p,
.yumobm-card-heading p {
  color: var(--yumobm-muted);
  font-size: 12px;
}

.yumobm-balance-card strong {
  display: block;
  margin-top: 6px;
  color: var(--yumobm-ink);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1;
}

.yumobm-balance-card strong small {
  font-size: 19px;
  font-weight: 600;
}

.yumobm-primary {
  display: inline-flex;
  min-width: 112px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 18px !important;
  border-radius: 8px !important;
  color: #15243a !important;
  background: var(--yumobm-yellow) !important;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform .18s ease, filter .18s ease;
}

.yumobm-primary:active {
  filter: brightness(.97);
  transform: scale(.98);
}

.yumobm-card {
  margin-top: 12px;
  padding: 19px 20px;
}

.yumobm-card-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.yumobm-card-heading h2 {
  margin-top: 5px;
  color: var(--yumobm-ink);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.015em;
}

.yumobm-round-control,
.yumobm-back-head > button,
.yumobm-sheet header > button {
  display: inline-grid;
  width: 44px;
  height: 44px;
  min-width: 44px;
  place-items: center;
  border: 1px solid var(--yumobm-line) !important;
  border-radius: 50% !important;
  background: #fff !important;
}

.yumobm-round-control img {
  transform: rotate(-90deg);
}

.yumobm-usage-row {
  display: grid;
  grid-template-columns: 1fr 82px;
  align-items: center;
  gap: 22px;
  margin-top: 20px;
}

.yumobm-usage-copy span,
.yumobm-usage-copy strong,
.yumobm-usage-copy small {
  display: block;
}

.yumobm-usage-copy span {
  color: var(--yumobm-muted);
  font-size: 11px;
}

.yumobm-usage-copy strong {
  margin-top: 7px;
  color: var(--yumobm-blue);
  font-size: 27px;
  font-weight: 700;
  letter-spacing: -.04em;
}

.yumobm-usage-copy small {
  margin-top: 3px;
  color: var(--yumobm-muted);
  font-size: 11px;
  font-weight: 500;
}

.yumobm-usage-ring {
  position: relative;
  display: grid;
  width: 82px;
  height: 82px;
  place-content: center;
  border-radius: 50%;
  color: var(--yumobm-ink);
  background: conic-gradient(var(--yumobm-yellow) 0 17deg, #eef0f3 17deg 360deg);
  text-align: center;
}

.yumobm-usage-ring::before {
  position: absolute;
  inset: 7px;
  content: "";
  border-radius: inherit;
  background: #fff;
}

.yumobm-usage-ring :is(span, small) {
  position: relative;
  z-index: 1;
}

.yumobm-usage-ring span {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.yumobm-usage-ring small {
  margin-top: 3px;
  color: var(--yumobm-muted);
  font-size: 9px;
}

.yumobm-tariff footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 17px;
  padding-top: 14px;
  border-top: 1px solid var(--yumobm-line);
}

.yumobm-tariff footer span {
  color: var(--yumobm-muted);
  font-size: 11px;
}

.yumobm-tariff footer button {
  min-height: 44px;
  padding-inline: 8px;
  color: var(--yumobm-blue);
  font-size: 12px;
  font-weight: 700;
}

.yumobm-services {
  margin-bottom: 24px;
}

.yumobm-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 17px;
}

.yumobm-service-grid article {
  min-width: 0;
  padding: 12px 8px;
  border-radius: 8px;
  background: #f5f7f9;
}

.yumobm-service-grid :is(span, strong, small) {
  display: block;
}

.yumobm-service-grid span {
  overflow: hidden;
  color: var(--yumobm-blue);
  font-size: 15px;
  font-weight: 700;
  text-overflow: ellipsis;
}

.yumobm-service-grid strong {
  margin-top: 7px;
  color: var(--yumobm-ink);
  font-size: 11px;
}

.yumobm-service-grid small {
  margin-top: 2px;
  color: var(--yumobm-muted);
  font-size: 8px;
}

.yumobm-page-head {
  padding: 27px 24px 19px;
}

.yumobm-page-head span {
  color: var(--yumobm-muted);
  font-size: 12px;
}

.yumobm-page-head h2 {
  margin-top: 4px;
  color: var(--yumobm-ink);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -.035em;
}

.yumobm-news-list {
  display: grid;
  gap: 12px;
  padding: 0 24px 26px;
}

.yumobm-news-card {
  display: block;
  min-height: 182px;
  padding: 20px !important;
  border: 1px solid rgba(26, 42, 66, .065) !important;
  border-radius: 8px !important;
  color: var(--yumobm-ink) !important;
  background: #fff !important;
  box-shadow: 0 7px 22px rgba(26, 42, 66, .05);
  text-align: left;
  transition: transform .18s ease;
}

.yumobm-news-card:active {
  transform: scale(.985);
}

.yumobm-news-card--yellow {
  background: #fff5c9 !important;
}

.yumobm-news-card--blue {
  color: #f8fbff !important;
  background: var(--yumobm-blue) !important;
}

.yumobm-news-card__date {
  display: block;
  color: var(--yumobm-muted);
  font-size: 10px;
}

.yumobm-news-card--blue .yumobm-news-card__date,
.yumobm-news-card--blue .yumobm-news-card__copy {
  color: rgba(255, 255, 255, .68);
}

.yumobm-news-card strong {
  display: block;
  max-width: 270px;
  margin-top: 16px;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.05;
}

.yumobm-news-card__copy {
  display: block;
  margin-top: 9px;
  color: var(--yumobm-muted);
  font-size: 11px;
  line-height: 1.42;
}

.yumobm-news-card i {
  display: inline-block;
  margin-top: 15px;
  color: inherit;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
}

.yumobm-back-head {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  min-height: 76px;
  align-items: center;
  gap: 12px;
  padding: 12px 20px 8px;
  border-bottom: 1px solid var(--yumobm-line);
  background: rgba(250, 250, 250, .95);
  backdrop-filter: blur(16px);
}

.yumobm-back-head > button img {
  transform: rotate(90deg);
}

.yumobm-back-head > span,
.yumobm-back-head > div {
  grid-column: 2;
  grid-row: 1;
  text-align: center;
}

.yumobm-back-head > button {
  grid-column: 1;
  grid-row: 1;
}

.yumobm-back-head h2 {
  color: var(--yumobm-ink);
  font-size: 17px;
  font-weight: 700;
}

.yumobm-back-head > div span {
  display: block;
  margin-top: 2px;
  color: var(--yumobm-green);
  font-size: 10px;
}

.yumobm-article {
  padding: 25px 24px 42px;
}

.yumobm-article > span {
  color: var(--yumobm-muted);
  font-size: 11px;
}

.yumobm-article h2 {
  margin-top: 12px;
  color: var(--yumobm-ink);
  font-size: 29px;
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: .98;
}

.yumobm-article-visual {
  position: relative;
  display: grid;
  height: 204px;
  margin-top: 25px;
  overflow: hidden;
  place-items: center;
  border-radius: 8px;
  background: var(--yumobm-yellow);
}

.yumobm-article-visual b {
  position: relative;
  z-index: 1;
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--yumobm-ink);
  font-size: 38px;
}

.yumobm-article-visual i {
  position: absolute;
  width: 260px;
  height: 90px;
  border: 2px solid rgba(26, 42, 66, .18);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.yumobm-article > p {
  margin-top: 20px;
  color: var(--yumobm-ink);
  font-size: 14px;
  line-height: 1.55;
}

.yumobm-article > p + p {
  color: var(--yumobm-muted);
}

.yumobm-support-card {
  padding: 20px;
}

.yumobm-support-card h3,
.yumobm-operator-card h3 {
  color: var(--yumobm-ink);
  font-size: 18px;
  font-weight: 700;
}

.yumobm-faq {
  margin-top: 9px;
}

.yumobm-faq details {
  border-bottom: 1px solid var(--yumobm-line);
}

.yumobm-faq details:last-child {
  border-bottom: 0;
}

.yumobm-faq summary {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--yumobm-ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  list-style: none;
}

.yumobm-faq summary::-webkit-details-marker {
  display: none;
}

.yumobm-faq summary img {
  transition: transform .2s ease;
}

.yumobm-faq details[open] summary img {
  transform: rotate(180deg);
}

.yumobm-faq details p {
  padding: 0 24px 16px 0;
  color: var(--yumobm-muted);
  font-size: 11px;
  line-height: 1.48;
}

.yumobm-operator-card {
  margin-top: 12px;
  margin-bottom: 24px;
  padding: 20px;
  background: #edf4fc;
}

.yumobm-operator-card span {
  color: var(--yumobm-green);
  font-size: 11px;
  font-weight: 700;
}

.yumobm-operator-card h3 {
  margin-top: 7px;
}

.yumobm-operator-card p {
  margin-top: 8px;
  color: var(--yumobm-muted);
  font-size: 12px;
  line-height: 1.45;
}

.yumobm-operator-card .yumobm-primary {
  width: 100%;
  margin-top: 17px;
}

.yumobm-view--chat {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  background: var(--yumobm-bg);
}

.yumobm-chat-log {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
}

.yumobm-message {
  display: flex;
  max-width: 87%;
  align-items: flex-end;
  gap: 8px;
}

.yumobm-message > span {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  place-items: center;
  border-radius: 50%;
  color: var(--yumobm-ink);
  background: var(--yumobm-yellow);
  font-size: 13px;
  font-weight: 800;
}

.yumobm-message p {
  padding: 11px 13px;
  border-radius: 8px 8px 8px 2px;
  color: var(--yumobm-ink);
  background: #fff;
  box-shadow: 0 5px 16px rgba(26, 42, 66, .05);
  font-size: 12px;
  line-height: 1.45;
}

.yumobm-message--user {
  align-self: flex-end;
  justify-content: flex-end;
}

.yumobm-message--user p {
  color: #fff;
  background: var(--yumobm-blue);
  border-radius: 8px 8px 2px 8px;
}

.yumobm-message--user span {
  display: none;
}

.yumobm-chat-form {
  padding: 12px 16px 16px;
  border-top: 1px solid var(--yumobm-line);
  background: #fff;
}

.yumobm-chat-form > label {
  display: block;
  margin-bottom: 7px;
  color: var(--yumobm-muted);
  font-size: 10px;
  font-weight: 600;
}

.yumobm-chat-form > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  gap: 8px;
}

.yumobm-chat-form input {
  width: 100%;
  min-width: 0;
  height: 48px;
  padding: 0 14px;
  border: 1px solid #cfd4da;
  border-radius: 8px;
  color: var(--yumobm-ink);
  background: #fff;
  font-size: 13px;
  outline: none;
}

.yumobm-chat-form input::placeholder {
  color: #747e8c;
  opacity: 1;
}

.yumobm-chat-form button {
  display: grid;
  width: 44px;
  height: 48px;
  place-items: center;
  border-radius: 8px !important;
  color: var(--yumobm-ink) !important;
  background: var(--yumobm-yellow) !important;
  font-size: 20px;
  font-weight: 700;
}

.yumobm-chat-form > p,
.yumobm-form-error {
  margin-top: 7px;
  color: #a62832;
  font-size: 11px;
}

.yumobm-nav {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  height: 74px;
  padding: 5px 8px 8px;
  border-top: 1px solid var(--yumobm-line);
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(16px);
}

.yumobm-nav button {
  display: flex;
  min-width: 0;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  border-radius: 8px !important;
  color: var(--yumobm-muted);
}

.yumobm-nav button img {
  width: 24px;
  height: 24px;
  opacity: .72;
}

.yumobm-nav button span {
  overflow: hidden;
  max-width: 100%;
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.yumobm-nav button.yumobm-is-active {
  color: var(--yumobm-ink);
  background: #fff9df;
  font-weight: 700;
}

.yumobm-nav button.yumobm-is-active img {
  opacity: 1;
}

.yumobm-nav.yumobm-nav--hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}

.yumobm-overlay {
  position: absolute;
  z-index: 20;
  inset: 0;
  visibility: hidden;
  pointer-events: none;
}

.yumobm-overlay.yumobm-is-open {
  visibility: visible;
  pointer-events: auto;
}

.yumobm-overlay__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 42, 66, .42) !important;
  opacity: 0;
  transition: opacity .24s ease;
}

.yumobm-overlay.yumobm-is-open .yumobm-overlay__backdrop {
  opacity: 1;
}

.yumobm-sheet {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  max-height: calc(100% - 24px);
  overflow-y: auto;
  padding: 10px 24px 24px;
  border-radius: 18px 18px 0 0;
  background: #fff;
  box-shadow: 0 -18px 55px rgba(26, 42, 66, .16);
  transform: translateY(102%);
  transition: transform .36s var(--yumobm-ease);
}

.yumobm-overlay.yumobm-is-open .yumobm-sheet {
  transform: none;
}

.yumobm-sheet__handle {
  display: block;
  width: 38px;
  height: 4px;
  margin: 0 auto 15px;
  border-radius: 4px;
  background: #d9dde2;
}

.yumobm-sheet header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.yumobm-sheet header p {
  color: var(--yumobm-muted);
  font-size: 11px;
}

.yumobm-sheet header h2 {
  margin-top: 5px;
  color: var(--yumobm-ink);
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -.03em;
}

.yumobm-amount-label,
.yumobm-payment-methods legend {
  display: block;
  margin-top: 22px;
  color: var(--yumobm-ink);
  font-size: 12px;
  font-weight: 700;
}

.yumobm-amount-field {
  position: relative;
  margin-top: 8px;
}

.yumobm-amount-field input {
  width: 100%;
  height: 55px;
  padding: 0 47px 0 16px;
  border: 1px solid #cbd1d8;
  border-radius: 8px;
  color: var(--yumobm-ink);
  background: #fff;
  font-size: 22px;
  font-weight: 700;
  outline: none;
}

.yumobm-amount-field > span {
  position: absolute;
  top: 50%;
  right: 17px;
  color: var(--yumobm-muted);
  font-size: 18px;
  transform: translateY(-50%);
}

.yumobm-sheet form > p:not(.yumobm-form-error) {
  margin-top: 6px;
  color: var(--yumobm-muted);
  font-size: 10px;
}

.yumobm-amount-presets {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.yumobm-amount-presets button {
  min-height: 44px;
  border: 1px solid var(--yumobm-line) !important;
  border-radius: 8px !important;
  background: #f6f7f9 !important;
  font-size: 12px;
  font-weight: 700;
}

.yumobm-amount-presets button.yumobm-is-selected {
  border-color: #e0af00 !important;
  background: #fff7cf !important;
}

.yumobm-payment-methods {
  padding: 0;
  border: 0;
}

.yumobm-payment-methods label {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 22px;
  min-height: 58px;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  padding: 8px 12px;
  border: 1px solid var(--yumobm-line);
  border-radius: 8px;
  cursor: pointer;
}

.yumobm-payment-methods input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.yumobm-payment-methods label > span {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
}

.yumobm-payment-methods label > span img {
  grid-row: 1 / 3;
  justify-self: center;
}

.yumobm-payment-methods b,
.yumobm-payment-methods small {
  display: block;
}

.yumobm-payment-methods b {
  color: var(--yumobm-ink);
  font-size: 12px;
}

.yumobm-payment-methods small {
  margin-top: 2px;
  color: var(--yumobm-muted);
  font-size: 9px;
}

.yumobm-payment-methods label > i {
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #aab1ba;
  border-radius: 50%;
}

.yumobm-payment-methods input:checked ~ i {
  border: 6px solid var(--yumobm-blue);
}

.yumobm-payment-methods input:focus-visible ~ i {
  outline: 3px solid rgba(26, 84, 149, .35);
  outline-offset: 2px;
}

.yumobm-sheet-submit {
  width: 100%;
  margin-top: 18px !important;
}

.yumobm-success {
  padding: 22px 0 5px;
  text-align: center;
}

.yumobm-success > span {
  display: grid;
  width: 68px;
  height: 68px;
  margin: 0 auto;
  place-items: center;
  border: 1px solid var(--yumobm-green-line);
  border-radius: 50%;
  color: var(--yumobm-green);
  background: #f4fff8;
}

.yumobm-success > span svg {
  width: 28px;
  height: 28px;
}

.yumobm-success h2 {
  margin-top: 17px;
  color: var(--yumobm-ink);
  font-size: 24px;
  font-weight: 700;
}

.yumobm-success p {
  margin-top: 7px;
  color: var(--yumobm-muted);
  font-size: 13px;
}

.yumobm-success p strong {
  color: var(--yumobm-green);
}

.yumobm-success .yumobm-primary {
  width: 100%;
  margin-top: 24px;
}

.yumobm-toast {
  position: absolute;
  z-index: 30;
  right: 18px;
  bottom: 88px;
  left: 18px;
  min-height: 48px;
  padding: 14px 16px;
  border-radius: 8px;
  color: #fff;
  background: var(--yumobm-ink);
  box-shadow: 0 14px 32px rgba(26, 42, 66, .24);
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}

/* Standalone presentation */
.yumobm-demo {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(420px, 1.18fr);
  align-items: center;
  gap: clamp(44px, 8vw, 128px);
  overflow: hidden;
  padding: clamp(54px, 7vw, 96px);
  border-radius: 36px;
  color: var(--yumobm-ink);
  background: #edf3f8;
  font-family: var(--yumobm-font);
}

.yumobm-demo__copy {
  position: relative;
  z-index: 2;
  max-width: 530px;
}

.yumobm-demo__brand {
  display: inline-flex;
  align-items: center;
  color: var(--yumobm-ink);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.035em;
}

.yumobm-demo__brand b {
  width: 30px;
  height: 30px;
  font-size: 17px;
}

.yumobm-demo__kicker {
  margin: 68px 0 13px;
  color: var(--yumobm-blue);
  font-size: 11px;
  font-weight: 700;
}

.yumobm-demo__copy h2 {
  max-width: 620px;
  margin: 0;
  color: var(--yumobm-ink);
  font-size: clamp(48px, 5.7vw, 78px);
  font-weight: 700;
  letter-spacing: -.065em;
  line-height: .92;
}

.yumobm-demo__lead {
  max-width: 460px;
  margin: 24px 0 0;
  color: var(--yumobm-muted);
  font-size: clamp(14px, 1.25vw, 18px);
  line-height: 1.55;
}

.yumobm-demo__steps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.yumobm-demo__steps span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(26, 84, 149, .16);
  border-radius: 8px;
  color: var(--yumobm-blue);
  background: rgba(255, 255, 255, .55);
  font-size: 10px;
  font-weight: 700;
}

.yumobm-demo__stage {
  position: relative;
  display: grid;
  justify-items: center;
}

.yumobm-demo__shape {
  position: absolute;
  top: 13%;
  width: min(100%, 560px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--yumobm-yellow);
  opacity: .94;
  transform: translate(5%, 0);
}

.yumobm-phone {
  position: relative;
  z-index: 1;
  width: min(100%, 389px);
  aspect-ratio: 389 / 877;
  padding: 7px;
  border: 1px solid #67707c;
  border-radius: 48px;
  background: linear-gradient(145deg, #6f7780, #222831 42%, #080a0e 75%, #59616b);
  box-shadow: 0 42px 88px rgba(26, 42, 66, .27), inset 0 0 0 1px rgba(255, 255, 255, .16);
}

.yumobm-phone__screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 41px;
  background: var(--yumobm-bg);
}

.yumobm-phone__status {
  position: absolute;
  z-index: 8;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  height: 37px;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  color: var(--yumobm-ink);
  font-size: 10px;
  font-weight: 700;
  pointer-events: none;
}

.yumobm-phone__viewport {
  position: absolute;
  inset: 37px 0 14px;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}

.yumobm-phone__home {
  position: absolute;
  z-index: 8;
  bottom: 5px;
  left: 50%;
  width: 108px;
  height: 4px;
  border-radius: 4px;
  background: rgba(26, 42, 66, .75);
  pointer-events: none;
  transform: translateX(-50%);
}

.yumobm-demo__status {
  position: relative;
  z-index: 1;
  max-width: 400px;
  margin: 16px 0 0;
  color: var(--yumobm-muted);
  font-size: 10px;
  line-height: 1.4;
  text-align: center;
}

@container yumobm-app (max-width: 330px) {
  .yumobm-header,
  .yumobm-page-head {
    padding-inline: 17px;
  }

  .yumobm-balance-card,
  .yumobm-card,
  .yumobm-support-card,
  .yumobm-operator-card {
    width: calc(100% - 34px);
  }

  .yumobm-news-list {
    padding-inline: 17px;
  }

  .yumobm-balance-card {
    gap: 12px;
    padding-inline: 15px;
  }

  .yumobm-balance-card strong {
    font-size: 25px;
  }

  .yumobm-primary {
    min-width: 102px;
    padding-inline: 14px !important;
  }

  .yumobm-nav button span {
    font-size: 8px;
  }
}

@media (max-width: 880px) {
  .yumobm-demo {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .yumobm-demo__copy {
    max-width: 640px;
    text-align: center;
  }

  .yumobm-demo__kicker {
    margin-top: 42px;
  }

  .yumobm-demo__lead {
    margin-inline: auto;
  }

  .yumobm-demo__steps {
    justify-content: center;
  }

  .yumobm-demo__stage {
    width: min(100%, 389px);
  }
}

@media (max-width: 520px) {
  .yumobm-demo {
    margin-inline: -12px;
    padding: 43px 12px 52px;
    border-radius: 28px;
  }

  .yumobm-demo__copy {
    padding-inline: 8px;
  }

  .yumobm-demo__copy h2 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .yumobm-phone {
    border-radius: 44px;
  }

  .yumobm-phone__screen {
    border-radius: 37px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .yumobm-app *,
  .yumobm-app *::before,
  .yumobm-app *::after,
  .yumobm-demo *,
  .yumobm-demo *::before,
  .yumobm-demo *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .yumobm-nav,
  .yumobm-back-head {
    background: #fff;
    backdrop-filter: none;
  }
}

/* Defensive scoping against global site styles. */
html.brawus-v2-html body#body.brawus-v2 .yumobm-app,
html.brawus-v2-html body#body.brawus-v2 .yumobm-app *,
html.brawus-v2-html body#body.brawus-v2 .yumobm-demo,
html.brawus-v2-html body#body.brawus-v2 .yumobm-demo * {
  font-family: var(--yumobm-font) !important;
}

html.brawus-v2-html body#body.brawus-v2 .yum-case .yumobm-app,
html.brawus-v2-html body#body.brawus-v2 .yum-case .yumobm-app *,
html.brawus-v2-html body#body.brawus-v2 .yum-case .yumobm-demo,
html.brawus-v2-html body#body.brawus-v2 .yum-case .yumobm-demo * {
  font-family: var(--yumobm-font) !important;
}

html.brawus-v2-html body#body.brawus-v2 .yum-case .yumobm-app .yumobm-usage-copy strong,
html.brawus-v2-html body#body.brawus-v2 .yumobm-app .yumobm-usage-copy strong {
  color: var(--yumobm-blue) !important;
}

html.brawus-v2-html body#body.brawus-v2 .yum-case .yumobm-app .yumobm-success p strong,
html.brawus-v2-html body#body.brawus-v2 .yumobm-app .yumobm-success p strong {
  color: var(--yumobm-green) !important;
}

html.brawus-v2-html body#body.brawus-v2 .yumobm-app :is(h1, h2, h3),
html.brawus-v2-html body#body.brawus-v2 .yumobm-demo h2 {
  color: var(--yumobm-ink) !important;
}

html.brawus-v2-html body#body.brawus-v2 .yumobm-app strong {
  color: inherit !important;
}

html.brawus-v2-html body#body.brawus-v2 .yumobm-app p {
  color: var(--yumobm-muted) !important;
}

html.brawus-v2-html body#body.brawus-v2 .yumobm-app .yumobm-news-card--blue p {
  color: rgba(255, 255, 255, .72) !important;
}

html.brawus-v2-html body#body.brawus-v2 .yumobm-app .yumobm-article > p:first-of-type,
html.brawus-v2-html body#body.brawus-v2 .yumobm-app .yumobm-message p {
  color: var(--yumobm-ink) !important;
}

html.brawus-v2-html body#body.brawus-v2 .yumobm-app .yumobm-message--user p {
  color: #fff !important;
}

html.brawus-v2-html body#body.brawus-v2 .yumobm-app :is(.yumobm-chat-form > p, .yumobm-form-error) {
  color: #a62832 !important;
}

html.brawus-v2-html body#body.brawus-v2 .yumobm-demo .yumobm-demo__kicker {
  color: var(--yumobm-blue) !important;
}

html.brawus-v2-html body#body.brawus-v2 .yumobm-demo :is(.yumobm-demo__lead, .yumobm-demo__status) {
  color: var(--yumobm-muted) !important;
}

body.brawus-v2 .yumobm-app button,
body.brawus-v2 .yumobm-app input {
  box-shadow: none;
}

body.brawus-v2 .yumobm-app,
body.brawus-v2 .yumobm-app[data-yumobile-app] {
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  max-width: none !important;
}

html.brawus-v2-html body#body.brawus-v2 .yum-case .yumobm-app img.ed-real-media,
html.brawus-v2-html body#body.brawus-v2 .yum-case .yumobm-app button:hover img.ed-real-media,
html.brawus-v2-html body#body.brawus-v2 .yum-case .yumobm-app summary:hover img.ed-real-media {
  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
}

html.brawus-v2-html body#body.brawus-v2 .yum-case .yumobm-app .yumobm-status svg,
html.brawus-v2-html body#body.brawus-v2 .yumobm-app .yumobm-status svg {
  width: 14px !important;
  max-width: none !important;
  height: 14px !important;
}

html.brawus-v2-html body#body.brawus-v2 .yum-case .yumobm-app :is(.yumobm-round-control, .yumobm-back-head > button, .yumobm-faq summary) img,
html.brawus-v2-html body#body.brawus-v2 .yumobm-app :is(.yumobm-round-control, .yumobm-back-head > button, .yumobm-faq summary) img {
  width: 16px !important;
  max-width: none !important;
  height: 16px !important;
}

html.brawus-v2-html body#body.brawus-v2 .yum-case .yumobm-app .yumobm-payment-icon--card,
html.brawus-v2-html body#body.brawus-v2 .yumobm-app .yumobm-payment-icon--card {
  width: 16px !important;
  max-width: none !important;
  height: 16px !important;
}

html.brawus-v2-html body#body.brawus-v2 .yum-case .yumobm-app .yumobm-payment-icon--sbp,
html.brawus-v2-html body#body.brawus-v2 .yumobm-app .yumobm-payment-icon--sbp {
  width: 13px !important;
  max-width: none !important;
  height: 16px !important;
}

html.brawus-v2-html body#body.brawus-v2 .yum-case .yumobm-app .yumobm-nav img,
html.brawus-v2-html body#body.brawus-v2 .yumobm-app .yumobm-nav img {
  width: 24px !important;
  max-width: none !important;
  height: 24px !important;
}

html.brawus-v2-html body#body.brawus-v2 .yum-case .yumobm-app .yumobm-success > span svg,
html.brawus-v2-html body#body.brawus-v2 .yumobm-app .yumobm-success > span svg {
  width: 28px !important;
  max-width: none !important;
  height: 28px !important;
}

/* Control audit: four implemented destinations, four equal columns. */
html body [data-yumobile-app] .yumobm-nav { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; align-items: center !important; }
html body [data-yumobile-app] .yumobm-nav > button { width: 100% !important; min-height: 56px !important; align-items: center !important; justify-content: center !important; }
html body [data-yumobile-app] .yumobm-status > svg { width: 14px !important; height: 14px !important; color: currentColor; }
html body [data-yumobile-app] .yumobm-success > span > svg { width: 28px !important; height: 28px !important; color: currentColor; }

/* 2026.08.23yum2 · stable phone stage, legibility and profile layer */
.yumobm-app,
.yumobm-demo {
  --yumobm-bg: #f4f3ee;
  --yumobm-card: #fffef9;
  --yumobm-ink: #10233e;
  --yumobm-muted: #56657a;
  --yumobm-yellow: #f2c318;
  --yumobm-blue: #24569a;
  --yumobm-green: #14764c;
  --yumobm-green-line: #c5e6d4;
  --yumobm-line: rgba(16, 35, 62, .11);
  --yumobm-font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Arial, sans-serif;
}

.yumobm-app {
  background:
    radial-gradient(circle at 88% 8%, rgba(242, 195, 24, .16), transparent 28%),
    var(--yumobm-bg);
  color: var(--yumobm-ink);
  font-size: 14px;
}

.yumobm-view {
  bottom: 78px;
  transform: translate3d(0, 8px, 0);
}

.yumobm-view--news-detail,
.yumobm-view--chat,
.yumobm-view--profile-edit {
  bottom: 0;
}

.yumobm-header {
  padding: 18px 20px 17px;
}

.yumobm-brand {
  margin-bottom: 15px;
  font-size: 18px;
}

.yumobm-brand b,
.yumobm-demo__brand b {
  border-radius: 8px 8px 11px 8px;
}

.yumobm-header h2 {
  margin: 0;
  color: var(--yumobm-ink);
  font-size: 22px;
  font-weight: 720;
  line-height: 1.05;
  letter-spacing: -.035em;
}

.yumobm-header p {
  margin-top: 6px;
  color: var(--yumobm-muted);
  font-size: 13px;
}

.yumobm-status {
  min-height: 36px;
  margin-top: 1px;
  padding-inline: 11px;
  border-radius: 12px;
  background: rgba(255, 254, 249, .75);
  font-size: 11px;
}

.yumobm-balance-card,
.yumobm-card,
.yumobm-support-card,
.yumobm-operator-card,
.yumobm-profile-identity,
.yumobm-profile-settings {
  width: calc(100% - 32px);
  max-width: none;
  margin-inline: auto;
  border: 1px solid rgba(16, 35, 62, .055);
  background: var(--yumobm-card);
  box-shadow: 0 14px 34px rgba(28, 48, 72, .065);
}

.yumobm-balance-card {
  min-height: 112px;
  padding: 20px;
  border: 0;
  border-radius: 22px;
  color: #fff;
  background:
    radial-gradient(circle at 92% 0, rgba(255, 255, 255, .14), transparent 37%),
    var(--yumobm-ink);
  box-shadow: 0 18px 38px rgba(16, 35, 62, .17);
}

.yumobm-balance-card p {
  color: rgba(255, 255, 255, .67);
  font-size: 12px;
}

.yumobm-balance-card strong {
  margin-top: 8px;
  color: #fff;
  font-size: 31px;
  font-variant-numeric: tabular-nums;
}

.yumobm-primary {
  min-height: 48px;
  border-radius: 14px !important;
  color: var(--yumobm-ink) !important;
  background: var(--yumobm-yellow) !important;
  font-size: 13px;
  font-weight: 720;
}

.yumobm-card {
  margin-top: 14px;
  padding: 20px;
  border-radius: 18px;
}

.yumobm-card-heading h2 {
  margin-top: 6px;
  color: var(--yumobm-ink);
  font-size: 17px;
}

.yumobm-round-control,
.yumobm-back-head > button,
.yumobm-sheet header > button {
  width: 44px !important;
  min-width: 44px !important;
  max-width: 44px !important;
  height: 44px !important;
  min-height: 44px !important;
  max-height: 44px !important;
  flex: 0 0 44px !important;
  padding: 0 !important;
  aspect-ratio: 1;
  border-color: rgba(16, 35, 62, .12) !important;
  background: rgba(255, 255, 255, .9) !important;
}

.yumobm-usage-row {
  grid-template-columns: minmax(0, 1fr) 84px;
  gap: 18px;
  margin-top: 23px;
}

.yumobm-usage-copy strong {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 6px;
  color: var(--yumobm-blue);
  font-size: 32px;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.yumobm-usage-copy strong b {
  color: inherit;
  font-size: 14px;
  font-weight: 720;
  letter-spacing: 0;
}

.yumobm-usage-copy > small {
  margin-top: 7px;
  color: var(--yumobm-muted);
  font-size: 11px;
}

.yumobm-usage-ring {
  width: 84px;
  height: 84px;
}

.yumobm-tariff footer {
  margin-top: 19px;
}

.yumobm-service-grid {
  gap: 7px;
}

.yumobm-service-grid article {
  min-height: 94px;
  padding: 12px 9px;
  border: 1px solid rgba(16, 35, 62, .05);
  border-radius: 12px;
  background: #f3f5f4;
}

.yumobm-service-grid span {
  overflow: visible;
  color: var(--yumobm-blue);
  font-size: 22px;
  line-height: 1;
  text-overflow: clip;
}

.yumobm-service-grid strong {
  margin-top: 9px;
  font-size: 10px;
  line-height: 1.15;
}

.yumobm-service-grid small {
  margin-top: 4px;
  font-size: 8px;
  line-height: 1.25;
}

.yumobm-page-head {
  padding: 24px 20px 18px;
}

.yumobm-page-head h2 {
  font-size: 31px;
  line-height: 1;
}

.yumobm-news-list {
  gap: 12px;
  padding: 0 16px 25px;
}

.yumobm-news-card {
  min-height: 170px;
  padding: 20px !important;
  border-radius: 18px !important;
}

.yumobm-news-card strong {
  font-size: 20px;
  line-height: 1.05;
}

.yumobm-back-head {
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  min-height: 78px;
  padding: 12px 16px 9px;
  background: rgba(244, 243, 238, .94);
}

.yumobm-article {
  padding: 25px 20px 44px;
}

.yumobm-article h2 {
  font-size: 30px;
  line-height: .98;
  text-wrap: balance;
}

.yumobm-article-visual {
  height: 210px;
  border-radius: 22px;
}

.yumobm-support-card,
.yumobm-operator-card {
  border-radius: 18px;
}

.yumobm-operator-card {
  background: #e9f0f6;
}

.yumobm-message p {
  border-radius: 15px 15px 15px 4px;
  font-size: 13px;
}

.yumobm-message--user p {
  border-radius: 15px 15px 4px 15px;
}

.yumobm-chat-form {
  padding: 12px 14px 17px;
  background: var(--yumobm-card);
}

.yumobm-chat-form input,
.yumobm-amount-field input,
.yumobm-profile-form input {
  color: var(--yumobm-ink) !important;
  background: #fff !important;
  -webkit-text-fill-color: var(--yumobm-ink) !important;
  caret-color: var(--yumobm-blue);
  opacity: 1 !important;
}

.yumobm-chat-form input::placeholder,
.yumobm-amount-field input::placeholder,
.yumobm-profile-form input::placeholder {
  color: #5f6e84 !important;
  -webkit-text-fill-color: #5f6e84 !important;
  opacity: 1 !important;
}

.yumobm-chat-form input {
  height: 50px;
  border-color: rgba(16, 35, 62, .18);
  border-radius: 14px;
  font-size: 14px;
}

.yumobm-chat-form button {
  width: 50px;
  min-width: 50px;
  height: 50px;
  min-height: 50px;
  border-radius: 14px !important;
}

.yumobm-chat-form > div {
  grid-template-columns: minmax(0, 1fr) 50px;
}

.yumobm-nav {
  height: 78px;
  padding: 5px 7px 8px;
  background: rgba(255, 254, 249, .96);
}

.yumobm-nav button {
  min-height: 58px;
  gap: 3px;
  border-radius: 13px !important;
}

.yumobm-nav button span {
  font-size: 8.5px;
  line-height: 1;
}

.yumobm-nav button.yumobm-is-active {
  background: rgba(242, 195, 24, .16);
}

.yumobm-sheet {
  padding: 11px 20px 23px;
  border-radius: 28px 28px 0 0;
}

.yumobm-sheet header h2 {
  font-size: 25px;
}

.yumobm-amount-field input {
  height: 60px;
  border-color: rgba(16, 35, 62, .16);
  border-radius: 14px;
  font-size: 24px;
  font-variant-numeric: tabular-nums;
}

.yumobm-amount-presets button,
.yumobm-payment-methods label {
  border-radius: 13px !important;
}

.yumobm-toast {
  border-radius: 14px;
}

.yumobm-profile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.yumobm-profile-avatar {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: var(--yumobm-ink);
  font-size: 14px;
  font-weight: 760;
}

.yumobm-profile-identity {
  display: flex;
  min-height: 114px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  border: 0;
  border-radius: 22px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 10%, rgba(242, 195, 24, .25), transparent 33%),
    var(--yumobm-ink);
  box-shadow: 0 18px 38px rgba(16, 35, 62, .16);
}

.yumobm-profile-identity div :is(span, strong, small) {
  display: block;
}

.yumobm-profile-identity div > span {
  color: rgba(255, 255, 255, .6);
  font-size: 10px;
}

.yumobm-profile-identity strong {
  margin-top: 8px;
  color: #fff;
  font-size: 17px;
  line-height: 1.1;
}

.yumobm-profile-identity small {
  margin-top: 6px;
  color: rgba(255, 255, 255, .68);
  font-size: 11px;
}

.yumobm-profile-plan {
  display: grid;
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 20px;
  color: var(--yumobm-ink);
  background: var(--yumobm-yellow);
  font-size: 13px;
  font-weight: 780;
}

.yumobm-profile-settings {
  margin-top: 14px;
  padding: 19px 16px 4px;
  border-radius: 18px;
}

.yumobm-profile-settings > header {
  padding: 0 4px 12px;
}

.yumobm-profile-settings > header span {
  color: var(--yumobm-muted);
  font-size: 10px;
}

.yumobm-profile-settings > header h3 {
  margin-top: 4px;
  color: var(--yumobm-ink);
  font-size: 18px;
  letter-spacing: -.02em;
}

.yumobm-setting-row {
  display: grid !important;
  grid-template-columns: 40px minmax(0, 1fr) 34px;
  width: 100%;
  min-height: 62px;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--yumobm-line) !important;
  text-align: left;
}

.yumobm-setting-icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 12px;
  color: var(--yumobm-ink);
  background: #f2f1ec;
  font-size: 12px;
  font-weight: 760;
}

.yumobm-setting-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.yumobm-setting-row > span:nth-child(2) :is(strong, small) {
  display: block;
}

.yumobm-setting-row strong {
  color: var(--yumobm-ink);
  font-size: 12px;
}

.yumobm-setting-row small {
  margin-top: 3px;
  overflow: hidden;
  color: var(--yumobm-muted);
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.yumobm-setting-row > i {
  position: relative;
  display: block;
  width: 34px;
  height: 20px;
  border-radius: 20px;
  background: #cfd4d7;
  transition: background .2s ease;
}

.yumobm-setting-row > i::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  content: "";
  background: #fff;
  box-shadow: 0 2px 5px rgba(16, 35, 62, .18);
  transition: transform .22s var(--yumobm-ease);
}

.yumobm-setting-row[aria-pressed="true"] > i {
  background: var(--yumobm-green);
}

.yumobm-setting-row[aria-pressed="true"] > i::after {
  transform: translateX(14px);
}

.yumobm-setting-row > b {
  justify-self: end;
  padding-right: 5px;
  color: var(--yumobm-muted);
  font-size: 24px;
  font-weight: 400;
}

.yumobm-profile-support {
  display: flex !important;
  width: calc(100% - 32px);
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 14px auto 25px !important;
  padding: 14px 18px !important;
  border: 1px solid rgba(36, 86, 154, .12) !important;
  border-radius: 18px !important;
  color: var(--yumobm-ink) !important;
  background: #e9f0f6 !important;
  text-align: left;
}

.yumobm-profile-support span {
  color: var(--yumobm-muted);
  font-size: 10px;
}

.yumobm-profile-support strong {
  font-size: 11px;
}

.yumobm-profile-signout {
  display: block !important;
  width: calc(100% - 32px);
  min-height: 48px;
  margin: -6px auto 26px !important;
  padding: 0 14px !important;
  border-radius: 14px !important;
  color: #8f3440 !important;
  font-size: 11px;
  font-weight: 650;
  text-align: center;
}

.yumobm-profile-signout:disabled {
  color: var(--yumobm-muted) !important;
  cursor: default;
}

.yumobm-view--profile-edit {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  background: var(--yumobm-bg);
}

.yumobm-profile-edit-scroll {
  padding: 18px 16px 28px;
}

.yumobm-profile-form {
  padding: 19px;
  border: 1px solid rgba(16, 35, 62, .055);
  border-radius: 20px;
  background: var(--yumobm-card);
  box-shadow: 0 14px 34px rgba(28, 48, 72, .055);
}

.yumobm-profile-form__intro {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.yumobm-profile-form__intro > span {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  border-radius: 15px;
  color: #fff;
  background: var(--yumobm-ink);
  font-size: 12px;
  font-weight: 760;
}

.yumobm-profile-form__intro :is(strong, small) {
  display: block;
}

.yumobm-profile-form__intro strong {
  font-size: 13px;
}

.yumobm-profile-form__intro small {
  margin-top: 4px;
  color: var(--yumobm-muted);
  font-size: 9px;
  line-height: 1.35;
}

.yumobm-profile-form > label {
  display: block;
  margin-top: 12px;
}

.yumobm-profile-form > label > span {
  display: block;
  margin: 0 0 6px 2px;
  color: var(--yumobm-muted);
  font-size: 10px;
  font-weight: 620;
}

.yumobm-profile-form input {
  width: 100%;
  height: 48px;
  padding: 0 13px;
  border: 1px solid rgba(16, 35, 62, .14);
  border-radius: 13px;
  font-size: 13px;
  outline: 0;
}

.yumobm-profile-form input:focus {
  border-color: var(--yumobm-blue);
}

.yumobm-profile-save {
  width: 100%;
  margin-top: 20px !important;
}

html.brawus-v2-html body#body.brawus-v2 [data-yumobile-app] .yumobm-balance-card :is(p, strong, small),
html.brawus-v2-html body#body.brawus-v2 .yum-case [data-yumobile-app] .yumobm-balance-card :is(p, strong, small),
html.brawus-v2-html body#body.brawus-v2 [data-yumobile-app] .yumobm-profile-identity :is(strong, small),
html.brawus-v2-html body#body.brawus-v2 .yum-case [data-yumobile-app] .yumobm-profile-identity :is(strong, small) {
  color: #fff !important;
}

html.brawus-v2-html body#body.brawus-v2 [data-yumobile-app] .yumobm-profile-identity div > span,
html.brawus-v2-html body#body.brawus-v2 .yum-case [data-yumobile-app] .yumobm-profile-identity div > span {
  color: rgba(255, 255, 255, .62) !important;
}

html.brawus-v2-html body#body.brawus-v2 [data-yumobile-app] :is(.yumobm-chat-form input, .yumobm-amount-field input, .yumobm-profile-form input),
html.brawus-v2-html body#body.brawus-v2 .yum-case [data-yumobile-app] :is(.yumobm-chat-form input, .yumobm-amount-field input, .yumobm-profile-form input) {
  color: var(--yumobm-ink) !important;
  background: #fff !important;
  -webkit-text-fill-color: var(--yumobm-ink) !important;
  border: 1px solid rgba(16, 35, 62, .16) !important;
  box-shadow: none !important;
  opacity: 1 !important;
}

html.brawus-v2-html body#body.brawus-v2 [data-yumobile-app] :is(.yumobm-amount-label, .yumobm-payment-methods legend, .yumobm-chat-form > label, .yumobm-profile-form > label > span),
html.brawus-v2-html body#body.brawus-v2 .yum-case [data-yumobile-app] :is(.yumobm-amount-label, .yumobm-payment-methods legend, .yumobm-chat-form > label, .yumobm-profile-form > label > span) {
  color: var(--yumobm-ink) !important;
  -webkit-text-fill-color: var(--yumobm-ink) !important;
  opacity: 1 !important;
}

html.brawus-v2-html body#body.brawus-v2 [data-yumobile-app] :is(.yumobm-chat-form input, .yumobm-amount-field input, .yumobm-profile-form input)::placeholder,
html.brawus-v2-html body#body.brawus-v2 .yum-case [data-yumobile-app] :is(.yumobm-chat-form input, .yumobm-amount-field input, .yumobm-profile-form input)::placeholder {
  color: #5f6e84 !important;
  -webkit-text-fill-color: #5f6e84 !important;
  opacity: 1 !important;
}

html.brawus-v2-html body#body.brawus-v2 [data-yumobile-app] .yumobm-back-head > button,
html.brawus-v2-html body#body.brawus-v2 .yum-case [data-yumobile-app] .yumobm-back-head > button {
  width: 44px !important;
  min-width: 44px !important;
  max-width: 44px !important;
  height: 44px !important;
  min-height: 44px !important;
  max-height: 44px !important;
  padding: 0 !important;
}

@container yumobm-app (max-width: 330px) {
  .yumobm-header,
  .yumobm-page-head {
    padding-inline: 15px;
  }

  .yumobm-balance-card,
  .yumobm-card,
  .yumobm-support-card,
  .yumobm-operator-card,
  .yumobm-profile-identity,
  .yumobm-profile-settings,
  .yumobm-profile-support,
  .yumobm-profile-signout {
    width: calc(100% - 24px);
  }

  .yumobm-card,
  .yumobm-balance-card {
    padding-inline: 16px;
  }

  .yumobm-balance-card {
    gap: 10px;
  }

  .yumobm-balance-card strong {
    font-size: 27px;
  }

  .yumobm-balance-card .yumobm-primary {
    min-width: 96px;
    padding-inline: 13px !important;
  }

  .yumobm-service-grid article {
    padding-inline: 7px;
  }

  .yumobm-service-grid strong {
    font-size: 9px;
  }

  .yumobm-nav button span {
    font-size: 7.5px;
  }
}
