* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

:root {
  --viewport-bottom-offset: 0px;
  --nav-safe-bottom: calc(env(safe-area-inset-bottom, 0px) + var(--viewport-bottom-offset));
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f4f6f9;
  color: #1f2d3d;
}

.app-loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 94, 215, 0.08);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
}

.app-loading-card {
  width: min(320px, calc(100% - 32px));
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(11, 94, 215, 0.2);
  padding: 20px 16px;
  text-align: center;
}

.app-spinner {
  width: 44px;
  height: 44px;
  margin: 0 auto 12px;
  border-radius: 50%;
  border: 4px solid #dbe8ff;
  border-top-color: #0b5ed7;
  animation: appSpin 0.9s linear infinite;
}

.app-loading-title {
  font-weight: 700;
  margin-bottom: 6px;
}

.app-loading-subtitle {
  color: #5b6470;
  font-size: 13px;
}

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

.topbar {
  background: #0b5ed7;
  color: #fff;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar h1 {
  font-size: 18px;
  margin: 0;
}

.lang-box {
  display: flex;
  align-items: center;
  gap: 8px;
}

.container {
  max-width: 920px;
  margin: 0 auto;
  padding: 16px 16px calc(82px + var(--nav-safe-bottom));
}

.card {
  background: #fff;
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  margin-bottom: 16px;
}

form {
  display: grid;
  gap: 10px;
}

input,
select,
textarea,
button {
  padding: 10px;
  border: 1px solid #ced4da;
  border-radius: 8px;
  font-size: 16px;
}

.password-input-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.password-input-wrap input {
  flex: 1 1 auto;
}

.password-toggle-btn {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
}

#cancelAddAccountBtn {
  background: #6c757d;
}

button {
  background: #0b5ed7;
  color: #fff;
  border: 0;
  cursor: pointer;
}

button.danger {
  background: #dc3545;
  width: 100%;
}

.error {
  color: #dc3545;
  min-height: 20px;
}

.hidden {
  display: none;
}

.profile-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.profile-id h2 {
  margin: 0;
  font-size: 24px;
}

.contract-line {
  margin-top: 6px;
  color: #5b6470;
}

.icon-btn {
  border: 1px solid #d9dee5;
  background: #fff;
  color: #1f2d3d;
  border-radius: 8px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#resetAppBtn {
  width: 34px;
  height: 34px;
}

.power-btn {
  height: 34px;
  border: 1px solid currentColor;
  background: transparent;
  color: var(--custom-topbar-text, var(--theme-topbar-text));
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 10px;
}

.bell-btn {
  position: relative;
}

.bell-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  background: #ff5a5a;
  color: #fff;
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.balance-line {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.label {
  color: #5b6470;
  font-size: 13px;
}

.big-balance {
  font-size: 34px;
  line-height: 1.1;
  font-weight: bold;
  color: #0b5ed7;
}

.primary-icon-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.meta-list {
  margin-top: 12px;
}

.meta-item {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
}

#servicePaidUntilItem.paid-until-alert span,
#servicePaidUntilItem.paid-until-alert strong {
  color: #dc3545;
  font-weight: 700;
}

.row {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
}

.services-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services-list li {
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 8px;
}

#servicesList {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

#servicesList li {
  margin-bottom: 0;
}

.service-tile {
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

.service-tile-btn {
  width: 100%;
  text-align: left;
  border: 1px solid #2c3440;
  border-radius: 16px;
  background: linear-gradient(160deg, #0f1319 0%, #1b2028 100%);
  color: #fff;
  padding: 12px;
  display: grid;
  gap: 6px;
}

.service-tile-btn small {
  color: #cfd6e0;
}

.loading-tile {
  border: 0 !important;
  background: transparent !important;
  padding: 0 !important;
}

.loading-shimmer {
  height: 84px;
  border-radius: 16px;
  background: linear-gradient(90deg, #eceff4 25%, #f6f8fb 50%, #eceff4 75%);
  background-size: 220% 100%;
  animation: shimmer 1.2s infinite linear;
}

@keyframes shimmer {
  from { background-position: 200% 0; }
  to { background-position: -200% 0; }
}

.tariff-tile {
  background: linear-gradient(160deg, #0f1319 0%, #1b2028 100%);
  color: #fff;
  border: 1px solid #2c3440 !important;
  border-radius: 18px !important;
  padding: 12px !important;
}

#iptvTariffsList {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

#iptvTariffsList li {
  margin-bottom: 0;
}

#iptvTariffsList.single-column {
  grid-template-columns: 1fr;
}

#iptvTariffsList li.tariff-full {
  grid-column: 1 / -1;
}

.iptv-service-card {
  display: grid;
  gap: 8px;
}

.iptv-detail-card {
  display: grid;
  gap: 8px;
}

.iptv-link-btn {
  width: 100%;
  text-align: left;
  border: 1px solid #3a4554;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  border-radius: 10px;
  padding: 10px;
}

.iptv-link-btn.secondary {
  border-color: #2a92ff;
}

.iptv-link-btn.active {
  border-color: #55b1ff;
  box-shadow: inset 0 0 0 1px rgba(85, 177, 255, 0.7);
}

.tariff-tile-header {
  margin-bottom: 8px;
}

.tile-icon {
  display: inline-flex;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: #2a92ff;
  font-size: 17px;
}

.tariff-tile-body strong {
  font-size: 18px;
  line-height: 1.25;
}

.tariff-tile-body small {
  color: #cfd6e0;
}

.tariff-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 6px 0;
}

.tariff-actions {
  margin-top: 8px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.switch-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 0;
}

.switch-text {
  display: flex;
  flex-direction: column;
}

.switch-text small {
  color: #5b6470;
  margin-top: 3px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 28px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: #c7ccd1;
  transition: .2s;
  border-radius: 20px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .2s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #0b5ed7;
}

input:checked + .slider:before {
  transform: translateX(22px);
}

.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-list li {
  border-bottom: 1px solid #edf0f3;
  padding: 9px 0;
}

.news-list li:last-child {
  border-bottom: 0;
}

.news-topic-card {
  border: 0 !important;
  padding: 0 !important;
  margin-bottom: 14px !important;
}

.news-topic-title {
  font-weight: 700;
  margin-bottom: 8px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
}

.news-tile {
  background: linear-gradient(160deg, #0f1319 0%, #1b2028 100%);
  color: #fff;
  border: 1px solid #2c3440;
  border-radius: 16px;
  padding: 12px;
  display: grid;
  gap: 6px;
}

.news-tile small {
  color: #cfd6e0;
  line-clamp: 2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.35;
  min-height: 2.7em;
}

.news-tile.unread {
  border-color: #2a92ff;
  box-shadow: 0 0 0 1px rgba(42, 146, 255, 0.35) inset;
}

.news-detail-body {
  white-space: pre-wrap;
  line-height: 1.45;
  padding-top: 8px;
}

.support-form-card {
  display: grid;
  gap: 8px;
}

.support-form-card label {
  font-weight: 600;
  color: #2b3a4a;
}

.support-form-card input,
.support-form-card select,
.support-form-card textarea {
  width: 100%;
  margin: 0;
  font-size: 16px !important;
  background: #fff;
  position: relative;
  z-index: 1;
}

.pay-form {
  margin-top: 10px;
  display: grid;
  gap: 8px;
}

#paymentLink {
  display: inline-block;
  margin-top: 10px;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 30;
  padding: 14px;
}

.modal-content {
  width: 100%;
  max-width: 620px;
  background: #fff;
  border-radius: 10px;
  padding: 12px;
  max-height: 80vh;
  overflow: auto;
}

.modal.hidden {
  display: none !important;
}

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

.modal-body .row {
  border-bottom: 1px solid #edf0f3;
  padding: 8px 0;
}

.holdup-range-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 8px 0 4px;
}

.holdup-field label {
  display: block;
  margin-bottom: 6px;
  color: #374151;
  font-size: 13px;
}

.holdup-field input[type="date"] {
  width: 100%;
  min-height: 42px;
  border: 1px solid #d7dbe2;
  border-radius: 10px;
  padding: 0 10px;
  background: #fff;
  color: #111827;
}

@media (max-width: 560px) {
  .holdup-range-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.confirm-actions {
  display: flex;
  justify-content: stretch;
  gap: 10px;
  margin-top: 12px;
}

.confirm-actions button {
  flex: 1 1 50%;
  min-height: 42px;
  border-radius: 10px;
  font-weight: 700;
}

.confirm-actions .danger {
  background: #f3f4f7;
  color: #1b2028;
  border: 1px solid #d8dde6;
}

.confirm-actions #actionConfirmYesBtn {
  background: #0b5ed7;
  color: #fff;
}

.payment-tile {
  background: linear-gradient(160deg, #0f1319 0%, #1b2028 100%);
  border: 1px solid #2c3440 !important;
  border-radius: 16px !important;
  color: #fff;
}

.payment-tile-label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.payment-tile-label input[type="radio"] {
  accent-color: #2a92ff;
}

.payment-tile-text {
  display: flex;
  flex-direction: column;
}

.payment-tile-text small {
  color: #cfd6e0;
}

.bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: var(--viewport-bottom-offset);
  background: var(--custom-nav-bg, var(--custom-card-bg, var(--theme-card-bg))) !important;
  border-top: 1px solid var(--custom-nav-border, var(--custom-card-border, var(--theme-card-border)));
  display: grid;
  grid-template-columns: repeat(var(--nav-count, 5), minmax(0, 1fr));
  z-index: 40;
  padding-bottom: var(--nav-safe-bottom);
  min-height: calc(56px + var(--nav-safe-bottom));
}

.support-ticket {
  border: 1px solid #e1e6ee;
  border-radius: 12px;
  padding: 0 !important;
  overflow: hidden;
}

.support-ticket.unread {
  border-color: #2a92ff;
  box-shadow: 0 0 0 1px rgba(42, 146, 255, 0.25) inset;
}

.support-ticket-btn {
  width: 100%;
  text-align: left;
  display: grid;
  gap: 4px;
  border: 0;
  border-radius: 0;
  background: #fff;
  color: #111;
  padding: 10px;
}

.support-thread-body {
  max-height: 42vh;
  overflow: auto;
  display: grid;
  gap: 8px;
  margin-bottom: 10px;
}

.thread-msg {
  border-radius: 10px;
  padding: 8px 10px;
  border: 1px solid #e5e9f0;
  color: #1f2937;
}

.thread-msg.user {
  background: #f7f9fc;
}

.thread-msg.support {
  background: #eef6ff;
}

.thread-msg-header {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.thread-msg-header strong {
  color: #111827;
}

.thread-msg-header small {
  color: #6b7280;
}

.thread-msg-body {
  white-space: pre-wrap;
  margin-top: 4px;
  color: #1f2937;
  font-size: 14px;
  line-height: 1.5;
}

.auth-switch-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 10px;
}

#authPhoneMode,
#authPasswordMode {
  display: grid;
  gap: 8px;
}

#authPhoneMode.hidden,
#authPasswordMode.hidden,
.auth-switch-row .hidden {
  display: none !important;
}

.app-footer {
  text-align: center;
  padding: 8px 10px 18px;
  color: #667;
  font-size: 12px;
}

#appVersionBadge {
  color: inherit;
  opacity: 0.9;
  font-size: 11px;
}

.hidden-legal {
  position: fixed;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.news-actions {
  display: inline-flex;
  gap: 8px;
}

.nav-icon-wrap {
  position: relative;
  display: inline-flex;
}

.nav-badge {
  position: absolute;
  top: -6px;
  right: -10px;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  background: #ff5a5a;
  color: #fff;
  font-size: 10px;
  line-height: 16px;
  text-align: center;
  padding: 0 3px;
}

.bottom-nav.hidden {
  display: none !important;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: var(--custom-nav-text, var(--theme-text));
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 8px 4px max(8px, var(--nav-safe-bottom));
}

.nav-item.active {
  color: var(--custom-nav-active, var(--custom-accent, var(--theme-accent)));
  font-weight: bold;
}

@media (max-width: 640px) {
  .topbar {
    padding: 10px 12px;
  }

  .topbar h1 {
    font-size: 16px;
  }

  .lang-box {
    gap: 6px;
  }

  .lang-box label {
    display: none;
  }

  .container {
    padding: 12px 12px calc(82px + var(--nav-safe-bottom));
  }
}

/* Theme Engine */
:root,
html[data-theme="business"] {
  --theme-font: "Inter", "Segoe UI", Arial, sans-serif;
  --theme-bg: #f4f6f9;
  --theme-bg-image: linear-gradient(180deg, #f4f6f9 0%, #eef2f7 100%);
  --theme-text: #1f2d3d;
  --theme-card-bg: #ffffff;
  --theme-card-border: #dce3ec;
  --theme-accent: #0b5ed7;
  --theme-accent-2: #2a92ff;
  --theme-topbar-bg: #0b5ed7;
  --theme-topbar-text: #ffffff;
  --theme-tile-bg: linear-gradient(160deg, #0f1319 0%, #1b2028 100%);
  --theme-tile-border: #2c3440;
  --theme-tile-text: #ffffff;
  --theme-muted: #cfd6e0;
  --theme-spinner-track: #dbe8ff;
  --theme-spinner-head: #0b5ed7;
  --theme-icon-bg: #2a92ff;
  --theme-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

html[data-theme="colorful"] {
  --theme-font: "Poppins", "Trebuchet MS", sans-serif;
  --theme-bg: #fff7ef;
  --theme-bg-image: radial-gradient(circle at 20% 20%, #ffe6d2 0%, #fff7ef 45%, #ffeaf5 100%);
  --theme-text: #3b1e1e;
  --theme-card-bg: #ffffff;
  --theme-card-border: #ffd3bd;
  --theme-accent: #ff7a18;
  --theme-accent-2: #ff4f81;
  --theme-topbar-bg: linear-gradient(135deg, #ff7a18, #ff4f81);
  --theme-topbar-text: #fff9f9;
  --theme-tile-bg: linear-gradient(145deg, #4a4ecf 0%, #c44ad4 55%, #ff6b6b 100%);
  --theme-tile-border: #ffb26b;
  --theme-tile-text: #fff7fd;
  --theme-muted: #ffe8ff;
  --theme-spinner-track: #ffe1cb;
  --theme-spinner-head: #ff4f81;
  --theme-icon-bg: #ff9f1c;
}

html[data-theme="dark"] {
  --theme-font: "Inter", "Segoe UI", sans-serif;
  --theme-bg: #11151d;
  --theme-bg-image: linear-gradient(180deg, #11151d 0%, #191f2b 100%);
  --theme-text: #e5e9f2;
  --theme-card-bg: #1a212e;
  --theme-card-border: #2b3444;
  --theme-accent: #5ea8ff;
  --theme-accent-2: #9b7cff;
  --theme-topbar-bg: #141a24;
  --theme-topbar-text: #e8f0ff;
  --theme-tile-bg: linear-gradient(160deg, #0f1319 0%, #1a202c 100%);
  --theme-tile-border: #374154;
  --theme-tile-text: #eef3ff;
  --theme-muted: #aeb7c9;
  --theme-spinner-track: #2c3545;
  --theme-spinner-head: #5ea8ff;
  --theme-icon-bg: #5ea8ff;
}

html[data-theme="light"] {
  --theme-font: "Roboto", "Segoe UI", sans-serif;
  --theme-bg: #fdfdff;
  --theme-bg-image: linear-gradient(180deg, #ffffff 0%, #f2f6ff 100%);
  --theme-text: #23324b;
  --theme-card-bg: #ffffff;
  --theme-card-border: #d8e3f4;
  --theme-accent: #4c7dff;
  --theme-accent-2: #2ab3ff;
  --theme-topbar-bg: #ffffff;
  --theme-topbar-text: #23324b;
  --theme-tile-bg: linear-gradient(160deg, #f0f5ff 0%, #e4edff 100%);
  --theme-tile-border: #b7ccff;
  --theme-tile-text: #23324b;
  --theme-muted: #5f7399;
  --theme-spinner-track: #dce7ff;
  --theme-spinner-head: #4c7dff;
  --theme-icon-bg: #4c7dff;
}

html[data-theme="fun"] {
  --theme-font: "Comic Sans MS", "Trebuchet MS", sans-serif;
  --theme-bg: #fffdf3;
  --theme-bg-image: radial-gradient(circle at 0% 0%, #ffe7f4 0%, #fffdf3 45%, #e8fff9 100%);
  --theme-text: #31233f;
  --theme-card-bg: #fffdfd;
  --theme-card-border: #ffd5eb;
  --theme-accent: #ff3fa4;
  --theme-accent-2: #00b8d4;
  --theme-topbar-bg: linear-gradient(120deg, #ff3fa4 0%, #00b8d4 100%);
  --theme-topbar-text: #fffefc;
  --theme-tile-bg: linear-gradient(150deg, #ff70a6 0%, #ff9770 45%, #ffd670 100%);
  --theme-tile-border: #ff5fa0;
  --theme-tile-text: #fffaf2;
  --theme-muted: #fff1d8;
  --theme-spinner-track: #ffd6eb;
  --theme-spinner-head: #ff3fa4;
  --theme-icon-bg: #00b8d4;
}

html[data-theme="kids"] {
  --theme-font: "Nunito", "Comic Sans MS", sans-serif;
  --theme-bg: #f4fcff;
  --theme-bg-image: radial-gradient(circle at 80% 10%, #dbf8ff 0%, #f4fcff 55%, #fff8dd 100%);
  --theme-text: #22435a;
  --theme-card-bg: #ffffff;
  --theme-card-border: #b9ebff;
  --theme-accent: #00a8cc;
  --theme-accent-2: #ffa800;
  --theme-topbar-bg: linear-gradient(120deg, #00a8cc 0%, #5cd6f2 100%);
  --theme-topbar-text: #effcff;
  --theme-tile-bg: linear-gradient(155deg, #00c2ff 0%, #66d9ff 45%, #b6f0ff 100%);
  --theme-tile-border: #4dc5ff;
  --theme-tile-text: #0d3a4d;
  --theme-muted: #0f536e;
  --theme-spinner-track: #c7f1ff;
  --theme-spinner-head: #00a8cc;
  --theme-icon-bg: #ffa800;
}

html[data-theme="gothic"] {
  --theme-font: "Cormorant Garamond", "Times New Roman", serif;
  --theme-bg: #160f1f;
  --theme-bg-image: radial-gradient(circle at 30% 20%, #2b1b3e 0%, #160f1f 50%, #0f0a16 100%);
  --theme-text: #ddd3ea;
  --theme-card-bg: #21162d;
  --theme-card-border: #3b2a53;
  --theme-accent: #b88cff;
  --theme-accent-2: #7a5cff;
  --theme-topbar-bg: linear-gradient(135deg, #1a1027 0%, #2b1b3e 100%);
  --theme-topbar-text: #f1e9ff;
  --theme-tile-bg: linear-gradient(160deg, #160f1f 0%, #291c3a 100%);
  --theme-tile-border: #4a3470;
  --theme-tile-text: #f4efff;
  --theme-muted: #bfaed6;
  --theme-spinner-track: #35214d;
  --theme-spinner-head: #b88cff;
  --theme-icon-bg: #7a5cff;
}

body {
  font-family: var(--custom-font, var(--theme-font)) !important;
  background: var(--custom-bg, var(--theme-bg)) !important;
  background-image: var(--custom-bg-image, var(--theme-bg-image)) !important;
  color: var(--custom-text, var(--theme-text)) !important;
}

.topbar {
  background: var(--custom-topbar-bg, var(--theme-topbar-bg)) !important;
  color: var(--custom-topbar-text, var(--theme-topbar-text)) !important;
}

.card,
.modal-content {
  background: var(--custom-card-bg, var(--theme-card-bg)) !important;
  border: 1px solid var(--custom-card-border, var(--theme-card-border)) !important;
  box-shadow: var(--custom-shadow, var(--theme-shadow)) !important;
}

.service-tile-btn,
.tariff-tile,
.news-tile,
.payment-tile {
  background: var(--custom-tile-bg, var(--theme-tile-bg)) !important;
  border-color: var(--custom-tile-border, var(--theme-tile-border)) !important;
  color: var(--custom-tile-text, var(--theme-tile-text)) !important;
}

.service-tile-btn small,
.tariff-tile-body small,
.news-tile small,
.payment-tile-text small {
  color: var(--custom-muted, var(--theme-muted)) !important;
}

.tile-icon {
  background: var(--custom-icon-bg, var(--theme-icon-bg)) !important;
}

.app-spinner {
  border-color: var(--custom-spinner-track, var(--theme-spinner-track)) !important;
  border-top-color: var(--custom-spinner-head, var(--theme-spinner-head)) !important;
}

.big-balance {
  color: var(--custom-accent, var(--theme-accent)) !important;
}

button {
  background: var(--custom-accent, var(--theme-accent));
}

input:checked + .slider {
  background-color: var(--custom-accent, var(--theme-accent)) !important;
}
