/* line 4, app/assets/stylesheets/subscriblee.scss */
.sb {
  --green:      #089451;
  --grad-a:     #16AA62;
  --grad-b:     #3CE792;
  --ink:        #171717;
  --muted:      #6b7280;
  --line:       #e5e7eb;
  --app-bg:     #f9fafb;
  --basegrey:   #8F8F8F29;
  position: fixed;
  inset: 0;
  z-index: 200;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  color: var(--ink);
}

/* line 17, app/assets/stylesheets/subscriblee.scss */
.sb, .sb *, .sb *::before, .sb *::after {
  box-sizing: border-box;
}

/* line 19, app/assets/stylesheets/subscriblee.scss */
.sb .sb-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  background: var(--app-bg);
  overflow: hidden;
}

/* line 22, app/assets/stylesheets/subscriblee.scss */
.sb .sb-demobar {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 46px;
  flex: none;
  padding: 0 14px;
  background: #0B1220;
  color: #E7ECEA;
}

/* line 23, app/assets/stylesheets/subscriblee.scss */
.sb .sb-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  color: #C7CDCA;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 6px 11px;
  cursor: pointer;
}

/* line 24, app/assets/stylesheets/subscriblee.scss */
.sb .sb-back:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* line 25, app/assets/stylesheets/subscriblee.scss */
.sb .sb-back .ti {
  font-size: 16px;
}

/* line 26, app/assets/stylesheets/subscriblee.scss */
.sb .sb-brand {
  font-size: 13px;
  color: #9AA3AE;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 27, app/assets/stylesheets/subscriblee.scss */
.sb .sb-brand b {
  color: #fff;
  font-weight: 600;
}

/* line 28, app/assets/stylesheets/subscriblee.scss */
.sb .sb-brand .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--grad-b);
  box-shadow: 0 0 0 3px rgba(60, 231, 146, 0.22);
}

/* line 29, app/assets/stylesheets/subscriblee.scss */
.sb .sb-roles {
  display: flex;
  gap: 2px;
  padding: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  margin: 0 auto;
}

/* line 30, app/assets/stylesheets/subscriblee.scss */
.sb .sb-role {
  font-size: 13px;
  font-weight: 500;
  color: #A7ADAA;
  padding: 5px 18px;
  border-radius: 999px;
  text-decoration: none;
  transition: all .15s;
}

/* line 31, app/assets/stylesheets/subscriblee.scss */
.sb .sb-role:hover {
  color: #fff;
}

/* line 32, app/assets/stylesheets/subscriblee.scss */
.sb .sb-role.is-active {
  background: var(--green);
  color: #fff;
}

/* line 33, app/assets/stylesheets/subscriblee.scss */
.sb .sb-close {
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: #9AA3AE;
  font-size: 22px;
  line-height: 1;
  border-radius: 8px;
  cursor: pointer;
}

/* line 34, app/assets/stylesheets/subscriblee.scss */
.sb .sb-close:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

/* line 37, app/assets/stylesheets/subscriblee.scss */
.sb .sb-shell {
  flex: 1;
  min-height: 0;
  display: flex;
}

/* line 38, app/assets/stylesheets/subscriblee.scss */
.sb .sb-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

/* line 41, app/assets/stylesheets/subscriblee.scss */
.sb .sb-sidebar {
  width: 256px;
  flex: none;
  background: #fff;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

/* line 42, app/assets/stylesheets/subscriblee.scss */
.sb .sb-logo {
  padding: 24px;
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
  background: linear-gradient(to right, var(--grad-a), var(--grad-b));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* line 44, app/assets/stylesheets/subscriblee.scss */
.sb .sb-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px 12px;
}

/* line 45, app/assets/stylesheets/subscriblee.scss */
.sb .sb-navitem {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  cursor: pointer;
  border: 0;
  background: transparent;
  width: 100%;
  text-align: left;
  font-family: inherit;
}

/* line 46, app/assets/stylesheets/subscriblee.scss */
.sb .sb-navitem:hover {
  background: #f9fafb;
}

/* line 47, app/assets/stylesheets/subscriblee.scss */
.sb .sb-navitem.is-active {
  background: var(--basegrey);
  color: #111827;
}

/* line 48, app/assets/stylesheets/subscriblee.scss */
.sb .sb-ico {
  width: 1.25rem;
  height: 1.25rem;
  flex: none;
  fill: #8F8F8F;
}

/* line 49, app/assets/stylesheets/subscriblee.scss */
.sb .sb-navitem.is-active .sb-ico {
  fill: #000;
}

/* line 50, app/assets/stylesheets/subscriblee.scss */
.sb .sb-nav-bottom {
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding: 10px 12px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* line 53, app/assets/stylesheets/subscriblee.scss */
.sb .sb-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

/* line 54, app/assets/stylesheets/subscriblee.scss */
.sb .sb-title {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

/* line 55, app/assets/stylesheets/subscriblee.scss */
.sb .sb-menu {
  display: none;
  background: transparent;
  border: 0;
  color: var(--ink);
  font-size: 20px;
  cursor: pointer;
}

/* line 56, app/assets/stylesheets/subscriblee.scss */
.sb .sb-langbar {
  display: flex;
  justify-content: flex-end;
  padding: 16px;
}

/* line 57, app/assets/stylesheets/subscriblee.scss */
.sb .sb-lang {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font: inherit;
  font-size: 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 7px 12px;
  cursor: pointer;
}

/* line 58, app/assets/stylesheets/subscriblee.scss */
.sb .sb-lang .ti {
  font-size: 15px;
  color: var(--muted);
}

/* line 61, app/assets/stylesheets/subscriblee.scss */
.sb .sb-content {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 12px 20px 40px;
}

/* line 62, app/assets/stylesheets/subscriblee.scss */
.sb .sb-card {
  background: #fff;
  border-radius: 24px;
  padding: 20px;
}

/* line 63, app/assets/stylesheets/subscriblee.scss */
.sb .sb-h {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

/* line 64, app/assets/stylesheets/subscriblee.scss */
.sb .sb-overview-head {
  margin-bottom: 20px;
}

/* line 65, app/assets/stylesheets/subscriblee.scss */
.sb .sb-ghost {
  font: inherit;
  font-size: 13px;
  color: #4b5563;
  background: transparent;
  border: 0;
  padding: 6px 10px;
  border-radius: 8px;
  cursor: pointer;
}

/* line 66, app/assets/stylesheets/subscriblee.scss */
.sb .sb-ghost:hover {
  background: #f3f4f6;
}

/* line 69, app/assets/stylesheets/subscriblee.scss */
.sb .sb-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

/* line 70, app/assets/stylesheets/subscriblee.scss */
.sb .sb-stat {
  background: #F8F8F8;
  border-radius: 16px;
  padding: 16px;
}

/* line 71, app/assets/stylesheets/subscriblee.scss */
.sb .sb-stat-title {
  font-size: 15px;
  color: #71717a;
  font-weight: 500;
  margin: 0;
}

/* line 72, app/assets/stylesheets/subscriblee.scss */
.sb .sb-stat-val {
  font-size: 30px;
  font-weight: 700;
  margin-top: 16px;
  letter-spacing: -.01em;
}

/* line 75, app/assets/stylesheets/subscriblee.scss */
.sb .sb-recent {
  border-radius: 24px;
  background: rgba(143, 143, 143, 0.05);
  padding: 16px;
  margin-bottom: 32px;
}

/* line 76, app/assets/stylesheets/subscriblee.scss */
.sb .sb-recent-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

/* line 77, app/assets/stylesheets/subscriblee.scss */
.sb .sb-table-wrap {
  overflow-x: auto;
}

/* line 78, app/assets/stylesheets/subscriblee.scss */
.sb .sb-txtable {
  width: 100%;
  border-collapse: collapse;
}

/* line 79, app/assets/stylesheets/subscriblee.scss */
.sb .sb-txtable th {
  text-align: center;
  padding: 4px;
  font-size: 12px;
  font-weight: 600;
  color: #111827;
  white-space: nowrap;
}

/* line 80, app/assets/stylesheets/subscriblee.scss */
.sb .sb-txtable td {
  text-align: center;
  padding: 12px 16px;
  font-size: 14px;
}

/* line 83, app/assets/stylesheets/subscriblee.scss */
.sb .sb-badge {
  display: inline-block;
  padding: 4px 20px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}

/* line 84, app/assets/stylesheets/subscriblee.scss */
.sb .sb-badge.ok {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
}

/* line 85, app/assets/stylesheets/subscriblee.scss */
.sb .sb-badge.fail {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* line 86, app/assets/stylesheets/subscriblee.scss */
.sb .sb-badge.dark {
  background: #171717;
  color: #fff;
  border-radius: 8px;
  padding: 5px 20px;
}

/* line 87, app/assets/stylesheets/subscriblee.scss */
.sb .sb-badge.muted {
  background: #f4f4f4;
  color: #374151;
}

/* line 88, app/assets/stylesheets/subscriblee.scss */
.sb .sb-badge.cap {
  text-transform: capitalize;
}

/* line 90, app/assets/stylesheets/subscriblee.scss */
.sb .sb-badge.active {
  background: #D3EDD5;
  color: #166534;
}

/* line 91, app/assets/stylesheets/subscriblee.scss */
.sb .sb-badge.cancelled {
  background: #fee2e2;
  color: #991b1b;
}

/* line 94, app/assets/stylesheets/subscriblee.scss */
.sb .sb-section-head {
  margin-bottom: 16px;
}

/* line 95, app/assets/stylesheets/subscriblee.scss */
.sb .sb-pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* line 96, app/assets/stylesheets/subscriblee.scss */
.sb .sb-pkg {
  position: relative;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

/* line 98, app/assets/stylesheets/subscriblee.scss */
.sb .sb-pkg-bronze {
  background: linear-gradient(to bottom right, #B28567, #FFC48F, #C59269);
}

/* line 99, app/assets/stylesheets/subscriblee.scss */
.sb .sb-pkg-silver {
  background: linear-gradient(to bottom right, #A8A8A8, #F4F4F4, #FFFFFF);
}

/* line 100, app/assets/stylesheets/subscriblee.scss */
.sb .sb-pkg-gold {
  background: linear-gradient(to bottom right, #FFBC50, #ECB827, #FFFEF1);
}

/* line 101, app/assets/stylesheets/subscriblee.scss */
.sb .sb-pkg-platinum {
  background: linear-gradient(to bottom right, #DDF0DD, #F3FFED, #AFBEAB);
}

/* line 102, app/assets/stylesheets/subscriblee.scss */
.sb .sb-pkg-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  color: #fff;
  font-size: 13px;
  padding: 4px 16px;
  border-radius: 999px;
  white-space: nowrap;
}

/* line 103, app/assets/stylesheets/subscriblee.scss */
.sb .sb-pkg-title {
  font-size: 20px;
  font-weight: 700;
  margin: 4px 0 16px;
}

/* line 104, app/assets/stylesheets/subscriblee.scss */
.sb .sb-pkg-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(30, 30, 30, 0.15);
}

/* line 105, app/assets/stylesheets/subscriblee.scss */
.sb .sb-pkg-price .amt {
  font-size: 30px;
  font-weight: 700;
}

/* line 105, app/assets/stylesheets/subscriblee.scss */
.sb .sb-pkg-price .cyc {
  font-size: 16px;
}

/* line 106, app/assets/stylesheets/subscriblee.scss */
.sb .sb-pkg-feats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* line 107, app/assets/stylesheets/subscriblee.scss */
.sb .sb-pkg-feats li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

/* line 108, app/assets/stylesheets/subscriblee.scss */
.sb .sb-pkg-feats svg {
  width: 20px;
  height: 20px;
  flex: none;
  color: #111827;
}

/* line 109, app/assets/stylesheets/subscriblee.scss */
.sb .sb-pkg-trial {
  font-size: 14px;
  color: #000;
  margin-bottom: 8px;
}

/* line 110, app/assets/stylesheets/subscriblee.scss */
.sb .sb-pkg-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 13px;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: capitalize;
}

/* line 111, app/assets/stylesheets/subscriblee.scss */
.sb .sb-pkg-tag.on {
  background: #dcfce7;
  color: #166534;
}

/* line 111, app/assets/stylesheets/subscriblee.scss */
.sb .sb-pkg-tag.off {
  background: #f3f4f6;
  color: #4b5563;
}

/* line 114, app/assets/stylesheets/subscriblee.scss */
.sb .sb-pkghead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

/* line 115, app/assets/stylesheets/subscriblee.scss */
.sb .sb-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #18181b;
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
}

/* line 116, app/assets/stylesheets/subscriblee.scss */
.sb .sb-btn-primary:hover {
  background: #000;
}

/* line 117, app/assets/stylesheets/subscriblee.scss */
.sb .sb-pkg-name b {
  font-size: 15px;
  font-weight: 600;
  display: block;
}

/* line 118, app/assets/stylesheets/subscriblee.scss */
.sb .sb-pkg-name small {
  font-size: 13px;
  color: #6b7280;
}

/* line 119, app/assets/stylesheets/subscriblee.scss */
.sb .sb-badge.sb-link {
  cursor: pointer;
}

/* line 120, app/assets/stylesheets/subscriblee.scss */
.sb .sb-iconbtn .ti {
  transition: transform .2s;
}

/* line 121, app/assets/stylesheets/subscriblee.scss */
.sb .sb-iconbtn.is-open .ti {
  transform: rotate(180deg);
}

/* line 122, app/assets/stylesheets/subscriblee.scss */
.sb .sb-pkg-expand > td {
  padding: 0;
}

/* line 123, app/assets/stylesheets/subscriblee.scss */
.sb .sb-expand-inner {
  background: rgba(143, 143, 143, 0.05);
  border-radius: 24px;
  padding: 16px;
  margin: 4px 0 12px;
}

/* line 124, app/assets/stylesheets/subscriblee.scss */
.sb .sb-version-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

/* line 127, app/assets/stylesheets/subscriblee.scss */
.sb .sb-subtable {
  width: 100%;
  border-collapse: collapse;
}

/* line 128, app/assets/stylesheets/subscriblee.scss */
.sb .sb-subtable th {
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  white-space: nowrap;
  text-align: center;
}

/* line 129, app/assets/stylesheets/subscriblee.scss */
.sb .sb-subtable th.l {
  text-align: left;
}

/* line 130, app/assets/stylesheets/subscriblee.scss */
.sb .sb-subtable td {
  padding: 16px;
  text-align: center;
}

/* line 131, app/assets/stylesheets/subscriblee.scss */
.sb .sb-subtable td.l {
  text-align: left;
}

/* line 132, app/assets/stylesheets/subscriblee.scss */
.sb .sb-sub-biz {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* line 133, app/assets/stylesheets/subscriblee.scss */
.sb .sb-sub-biz b {
  font-size: 15px;
  font-weight: 600;
  display: block;
  white-space: nowrap;
}

/* line 134, app/assets/stylesheets/subscriblee.scss */
.sb .sb-sub-biz small {
  font-size: 13px;
  color: #6b7280;
  text-transform: capitalize;
  white-space: nowrap;
}

/* line 135, app/assets/stylesheets/subscriblee.scss */
.sb .sb-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex: none;
}

/* line 136, app/assets/stylesheets/subscriblee.scss */
.sb .sb-g1 {
  background: linear-gradient(to right, #f59e0b, #ef4444);
}

/* line 137, app/assets/stylesheets/subscriblee.scss */
.sb .sb-g2 {
  background: linear-gradient(to right, #10b981, #3b82f6);
}

/* line 138, app/assets/stylesheets/subscriblee.scss */
.sb .sb-g3 {
  background: linear-gradient(to right, #8b5cf6, #ec4899);
}

/* line 139, app/assets/stylesheets/subscriblee.scss */
.sb .sb-g4 {
  background: linear-gradient(to right, #06b6d4, #6366f1);
}

/* line 140, app/assets/stylesheets/subscriblee.scss */
.sb .sb-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* line 141, app/assets/stylesheets/subscriblee.scss */
.sb .sb-iconbtn {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: #4b5563;
  border-radius: 8px;
  cursor: pointer;
  font-size: 18px;
}

/* line 142, app/assets/stylesheets/subscriblee.scss */
.sb .sb-iconbtn:hover {
  background: #f3f4f6;
}

/* line 143, app/assets/stylesheets/subscriblee.scss */
.sb .sb-chev {
  width: 28px;
  height: 28px;
  font-size: 14px;
}

/* line 146, app/assets/stylesheets/subscriblee.scss */
.sb .sb-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 60px 24px;
}

/* line 147, app/assets/stylesheets/subscriblee.scss */
.sb .sb-ph-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: #ecfdf5;
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 30px;
  margin-bottom: 6px;
}

/* line 148, app/assets/stylesheets/subscriblee.scss */
.sb .sb-placeholder h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

/* line 149, app/assets/stylesheets/subscriblee.scss */
.sb .sb-placeholder p {
  font-size: 14px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.6;
  margin: 0;
}

/* line 150, app/assets/stylesheets/subscriblee.scss */
.sb .sb-ph-btn {
  margin-top: 10px;
  background: var(--green);
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  padding: 9px 18px;
  border-radius: 10px;
  text-decoration: none;
}

/* line 153, app/assets/stylesheets/subscriblee.scss */
.sb .sb-scan-head {
  margin-bottom: 20px;
}

/* line 154, app/assets/stylesheets/subscriblee.scss */
.sb .sb-scan-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 8px 0 20px;
}

/* line 155, app/assets/stylesheets/subscriblee.scss */
.sb .sb-scanner {
  position: relative;
  width: 320px;
  height: 400px;
  max-width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: radial-gradient(120% 90% at 50% 38%, #1f2937, #0b1220);
}

/* line 157, app/assets/stylesheets/subscriblee.scss */
.sb .sb-finder {
  position: absolute;
  width: 30px;
  height: 30px;
  border: 3px solid rgba(255, 255, 255, 0.9);
}

/* line 158, app/assets/stylesheets/subscriblee.scss */
.sb .sb-finder.tl {
  top: 24px;
  left: 24px;
  border-right: 0;
  border-bottom: 0;
  border-top-left-radius: 6px;
}

/* line 159, app/assets/stylesheets/subscriblee.scss */
.sb .sb-finder.tr {
  top: 24px;
  right: 24px;
  border-left: 0;
  border-bottom: 0;
  border-top-right-radius: 6px;
}

/* line 160, app/assets/stylesheets/subscriblee.scss */
.sb .sb-finder.bl {
  bottom: 74px;
  left: 24px;
  border-right: 0;
  border-top: 0;
  border-bottom-left-radius: 6px;
}

/* line 161, app/assets/stylesheets/subscriblee.scss */
.sb .sb-finder.br {
  bottom: 74px;
  right: 24px;
  border-left: 0;
  border-top: 0;
  border-bottom-right-radius: 6px;
}

/* line 162, app/assets/stylesheets/subscriblee.scss */
.sb .sb-scanline {
  position: absolute;
  left: 24px;
  right: 24px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #3CE792, transparent);
  box-shadow: 0 0 12px #3CE792;
  animation: sb-scan 2.4s ease-in-out infinite;
}

@keyframes sb-scan {
  0%, 100% {
    top: 36px;
  }
  50% {
    top: 300px;
  }
}

/* line 164, app/assets/stylesheets/subscriblee.scss */
.sb .sb-scan-ghost {
  position: absolute;
  top: 44%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 120px;
  color: rgba(255, 255, 255, 0.06);
}

/* line 165, app/assets/stylesheets/subscriblee.scss */
.sb .sb-scan-controls {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

/* line 166, app/assets/stylesheets/subscriblee.scss */
.sb .sb-scan-controls button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 18px;
  cursor: pointer;
  backdrop-filter: blur(4px);
}

/* line 167, app/assets/stylesheets/subscriblee.scss */
.sb .sb-scan-controls button:hover {
  background: rgba(255, 255, 255, 0.22);
}

/* line 168, app/assets/stylesheets/subscriblee.scss */
.sb .sb-scan-hint {
  font-size: 14px;
  color: var(--muted);
  max-width: 360px;
  text-align: center;
  margin: 0;
}

/* line 171, app/assets/stylesheets/subscriblee.scss */
.sb .sb-modal {
  position: fixed;
  inset: 0;
  z-index: 210;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* line 172, app/assets/stylesheets/subscriblee.scss */
.sb .sb-modal[hidden] {
  display: none;
}

/* line 173, app/assets/stylesheets/subscriblee.scss */
.sb .sb-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

/* line 174, app/assets/stylesheets/subscriblee.scss */
.sb .sb-modal-card {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  width: 100%;
  max-width: 760px;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* line 175, app/assets/stylesheets/subscriblee.scss */
.sb .sb-modal-head {
  margin-bottom: 20px;
}

/* line 176, app/assets/stylesheets/subscriblee.scss */
.sb .sb-modal-head p {
  font-size: 14px;
  color: #111827;
  margin: 6px 0 0;
}

/* line 177, app/assets/stylesheets/subscriblee.scss */
.sb .sb-modal-foot {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
}

/* line 178, app/assets/stylesheets/subscriblee.scss */
.sb .sb-btn-outline {
  background: #fff;
  border: 1px solid var(--line);
  color: #111827;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 10px;
  cursor: pointer;
}

/* line 179, app/assets/stylesheets/subscriblee.scss */
.sb .sb-btn-outline:hover {
  background: #f9fafb;
}

/* line 180, app/assets/stylesheets/subscriblee.scss */
.sb .sb-subtable td .sb-progress {
  display: inline-block;
  vertical-align: middle;
  width: 120px;
  height: 8px;
  background: #e5e7eb;
  border-radius: 999px;
  overflow: hidden;
  margin-right: 8px;
}

/* line 181, app/assets/stylesheets/subscriblee.scss */
.sb .sb-progress-bar {
  height: 100%;
  background: #111827;
  border-radius: 999px;
}

/* line 183, app/assets/stylesheets/subscriblee.scss */
.sb .sb-cons-prog {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 184, app/assets/stylesheets/subscriblee.scss */
.sb .sb-cons-prog .track {
  flex: 1;
  height: 12px;
  background: #e5e7eb;
  border-radius: 999px;
  overflow: hidden;
}

/* line 185, app/assets/stylesheets/subscriblee.scss */
.sb .sb-cons-prog .pct {
  font-size: 12px;
  color: #111827;
  width: 44px;
  text-align: left;
}

/* line 186, app/assets/stylesheets/subscriblee.scss */
.sb .sb-cons-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 4px;
}

/* line 187, app/assets/stylesheets/subscriblee.scss */
.sb .sb-cons-item + .sb-cons-item {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* line 188, app/assets/stylesheets/subscriblee.scss */
.sb .sb-cons-item-name {
  font-weight: 600;
  font-size: 15px;
}

/* line 189, app/assets/stylesheets/subscriblee.scss */
.sb .sb-cons-item-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* line 190, app/assets/stylesheets/subscriblee.scss */
.sb .sb-badge.saved {
  background: #D3EDD5;
  color: #166534;
}

/* line 193, app/assets/stylesheets/subscriblee.scss */
.sb .sb-billing {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 4px;
}

/* line 194, app/assets/stylesheets/subscriblee.scss */
.sb .sb-bill-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* line 195, app/assets/stylesheets/subscriblee.scss */
.sb .sb-bill-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
  padding: 14px 24px;
  display: grid;
  gap: 4px;
}

/* line 196, app/assets/stylesheets/subscriblee.scss */
.sb .sb-bill-card h2 {
  font-size: 20px;
  font-weight: 500;
  color: #000;
  margin: 0;
}

/* line 197, app/assets/stylesheets/subscriblee.scss */
.sb .sb-bill-card .val {
  font-size: 30px;
  font-weight: 700;
  margin: 0;
}

/* line 198, app/assets/stylesheets/subscriblee.scss */
.sb .sb-bill-card .val.spent {
  color: #F85050;
}

/* line 198, app/assets/stylesheets/subscriblee.scss */
.sb .sb-bill-card .val.saved {
  color: #089451;
}

/* line 199, app/assets/stylesheets/subscriblee.scss */
.sb .sb-bill-invoices {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

/* line 202, app/assets/stylesheets/subscriblee.scss */
.sb .sb-settings {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 4px;
}

/* line 203, app/assets/stylesheets/subscriblee.scss */
.sb .sb-set-card {
  padding: 24px;
}

/* line 204, app/assets/stylesheets/subscriblee.scss */
.sb .sb-set-card > .sb-h {
  margin-bottom: 20px;
}

/* line 205, app/assets/stylesheets/subscriblee.scss */
.sb .sb-set-profile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* line 206, app/assets/stylesheets/subscriblee.scss */
.sb .sb-set-user {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* line 207, app/assets/stylesheets/subscriblee.scss */
.sb .sb-set-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  flex: none;
}

/* line 208, app/assets/stylesheets/subscriblee.scss */
.sb .sb-set-user h3 {
  font-size: 20px;
  font-weight: 500;
  margin: 0;
}

/* line 209, app/assets/stylesheets/subscriblee.scss */
.sb .sb-set-user p {
  color: #6b7280;
  margin: 2px 0 0;
}

/* line 210, app/assets/stylesheets/subscriblee.scss */
.sb .sb-set-divider {
  height: 1px;
  background: var(--line);
  width: 100%;
  margin: 0 0 16px;
}

/* line 211, app/assets/stylesheets/subscriblee.scss */
.sb .sb-set-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* line 212, app/assets/stylesheets/subscriblee.scss */
.sb .sb-set-row h4 {
  font-size: 17px;
  font-weight: 500;
  margin: 0;
  color: #111827;
}

/* line 213, app/assets/stylesheets/subscriblee.scss */
.sb .sb-set-row.muted h4 {
  color: #6b7280;
}

/* line 214, app/assets/stylesheets/subscriblee.scss */
.sb .sb-set-row p {
  color: #6b7280;
  margin: 4px 0 0;
  font-size: 14px;
}

/* line 215, app/assets/stylesheets/subscriblee.scss */
.sb .sb-btn-secondary {
  background: #f4f4f5;
  color: #18181b;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  padding: 9px 20px;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  white-space: nowrap;
}

/* line 216, app/assets/stylesheets/subscriblee.scss */
.sb .sb-btn-secondary:hover {
  background: #e9e9eb;
}

/* line 217, app/assets/stylesheets/subscriblee.scss */
.sb .sb-progress-pct {
  font-size: 14px;
  color: #111827;
  vertical-align: middle;
}

/* line 218, app/assets/stylesheets/subscriblee.scss */
.sb .sb-consume-spend {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

/* line 219, app/assets/stylesheets/subscriblee.scss */
.sb .sb-consume-expand > td {
  padding: 0;
}

/* line 220, app/assets/stylesheets/subscriblee.scss */
.sb .sb-consume-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 4px;
}

/* line 221, app/assets/stylesheets/subscriblee.scss */
.sb .sb-consume-row + .sb-consume-row {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* line 222, app/assets/stylesheets/subscriblee.scss */
.sb .sb-consume-name {
  font-weight: 600;
  font-size: 15px;
}

/* line 223, app/assets/stylesheets/subscriblee.scss */
.sb .sb-consume-ctrls {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* line 224, app/assets/stylesheets/subscriblee.scss */
.sb .sb-stepper {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
}

/* line 225, app/assets/stylesheets/subscriblee.scss */
.sb .sb-stepper button {
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: #111827;
  display: grid;
  place-items: center;
  cursor: pointer;
  border-radius: 50%;
  font-size: 15px;
}

/* line 226, app/assets/stylesheets/subscriblee.scss */
.sb .sb-stepper button:hover {
  background: #f3f4f6;
}

/* line 227, app/assets/stylesheets/subscriblee.scss */
.sb .sb-stepper span {
  padding: 0 8px;
  min-width: 22px;
  text-align: center;
  font-size: 14px;
}

/* line 230, app/assets/stylesheets/subscriblee.scss */
.sb .sb-qr-layout {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 3fr;
  gap: 24px;
  align-items: start;
}

/* line 231, app/assets/stylesheets/subscriblee.scss */
.sb .sb-qr-card {
  background: linear-gradient(to bottom right, #000, #626262);
  color: #fff;
  border-radius: 24px;
  min-height: 500px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  overflow: hidden;
}

/* line 232, app/assets/stylesheets/subscriblee.scss */
.sb .sb-qr-card h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  align-self: flex-start;
}

/* line 233, app/assets/stylesheets/subscriblee.scss */
.sb .sb-qr-card p {
  text-align: center;
  max-width: 400px;
  margin: 0;
  line-height: 1.55;
}

/* line 234, app/assets/stylesheets/subscriblee.scss */
.sb .sb-qr-box {
  width: 100%;
  max-width: 180px;
  margin: 0 auto;
}

/* line 235, app/assets/stylesheets/subscriblee.scss */
.sb .sb-qr {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
}

/* line 236, app/assets/stylesheets/subscriblee.scss */
.sb .sb-qr-txns {
  padding: 20px;
}

/* line 239, app/assets/stylesheets/subscriblee.scss */
.sb .sb-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 16px);
  z-index: 220;
  background: #18181b;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 20px;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  max-width: calc(100% - 40px);
}

/* line 240, app/assets/stylesheets/subscriblee.scss */
.sb .sb-toast.is-show {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* line 243, app/assets/stylesheets/subscriblee.scss */
.sb .sb-link {
  cursor: pointer;
  user-select: none;
}

/* line 244, app/assets/stylesheets/subscriblee.scss */
.sb .sb-link:hover {
  background: #000;
}

/* line 247, app/assets/stylesheets/subscriblee.scss */
.sb .sb-pkg-form {
  max-width: 520px;
}

/* line 248, app/assets/stylesheets/subscriblee.scss */
.sb .sb-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

/* line 249, app/assets/stylesheets/subscriblee.scss */
.sb .sb-field label {
  font-size: 14px;
  font-weight: 500;
  color: #111827;
}

/* line 250, app/assets/stylesheets/subscriblee.scss */
.sb .sb-field input, .sb .sb-field select, .sb .sb-field textarea {
  font: inherit;
  font-size: 14px;
  color: #111827;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 9px 12px;
  width: 100%;
  box-sizing: border-box;
}

/* line 251, app/assets/stylesheets/subscriblee.scss */
.sb .sb-field input:focus, .sb .sb-field select:focus, .sb .sb-field textarea:focus {
  outline: none;
  border-color: #089451;
  box-shadow: 0 0 0 3px rgba(8, 148, 81, 0.12);
}

/* line 252, app/assets/stylesheets/subscriblee.scss */
.sb .sb-field textarea {
  resize: vertical;
}

/* line 253, app/assets/stylesheets/subscriblee.scss */
.sb .sb-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 1000px) {
  /* line 256, app/assets/stylesheets/subscriblee.scss */
  .sb .sb-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  /* line 257, app/assets/stylesheets/subscriblee.scss */
  .sb .sb-pkg-grid {
    grid-template-columns: 1fr;
  }
  /* line 258, app/assets/stylesheets/subscriblee.scss */
  .sb .sb-qr-layout {
    grid-template-columns: 1fr;
  }
  /* line 259, app/assets/stylesheets/subscriblee.scss */
  .sb .sb-qr-card {
    min-height: 0;
  }
}

@media (max-width: 767px) {
  /* line 262, app/assets/stylesheets/subscriblee.scss */
  .sb .sb-menu {
    display: inline-flex;
  }
  /* line 263, app/assets/stylesheets/subscriblee.scss */
  .sb .sb-sidebar {
    position: absolute;
    z-index: 20;
    height: 100%;
    transform: translateX(-100%);
    transition: transform .2s;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  }
  /* line 264, app/assets/stylesheets/subscriblee.scss */
  .sb .sb-sidebar.is-open {
    transform: translateX(0);
  }
}

/* line 267, app/assets/stylesheets/subscriblee.scss */
#subscriblee-demo:empty {
  display: none;
}
