:root {
  --bxw-user-text-scale: 1;
  --bxw-profile-default-gradient: linear-gradient(135deg, #f27600 0 24%, #7c3aed 25% 49%, #15803d 50% 74%, #2474e8 75% 100%);
  --bxw-profile-surface: #ffffff;
  --bxw-profile-surface-strong: rgba(255, 255, 255, .64);
  --bxw-profile-fill: rgba(118, 118, 128, .12);
  --bxw-profile-fill-strong: rgba(118, 118, 128, .18);
  --bxw-profile-text: #17171a;
  --bxw-profile-muted: rgba(60, 60, 67, .68);
  --bxw-profile-edge: rgba(255, 255, 255, .64);
  --bxw-profile-shadow: rgba(0, 0, 0, .18);
}

:is(html.dark-theme, body.dark-theme) {
  --bxw-profile-surface: #1c1c1e;
  --bxw-profile-surface-strong: rgba(84, 84, 88, .64);
  --bxw-profile-fill: rgba(118, 118, 128, .22);
  --bxw-profile-fill-strong: rgba(118, 118, 128, .32);
  --bxw-profile-text: #f5f5f7;
  --bxw-profile-muted: rgba(235, 235, 245, .64);
  --bxw-profile-edge: rgba(255, 255, 255, .14);
  --bxw-profile-shadow: rgba(0, 0, 0, .42);
}

#call-toggle[data-bxw-profile-toggle="1"] {
  right: 4px !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  transform: translateY(-50%) scale(1) !important;
  transform-origin: center !important;
  transition-property: transform, opacity, filter !important;
  transition-duration: 160ms !important;
  transition-timing-function: cubic-bezier(.23, 1, .32, 1) !important;
  -webkit-tap-highlight-color: transparent;
}

#call-toggle[data-bxw-profile-toggle="1"]:active {
  transform: translateY(-50%) scale(.96) !important;
}

#call-toggle[data-bxw-profile-toggle="1"]:focus-visible {
  outline: 2px solid rgba(255, 255, 255, .86) !important;
  outline-offset: -4px !important;
}

#call-toggle[data-bxw-profile-toggle="1"] img {
  width: 30px !important;
  height: 30px !important;
  object-fit: contain !important;
  transform: translateX(.5px) !important;
}

#bxw-profile-popover {
  --bxw-profile-theme-index: 1;
  position: fixed;
  z-index: 2147483647 !important;
  box-sizing: border-box;
  max-width: calc(100vw - 24px);
  padding: 10px;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 0;
  border-radius: 8px;
  color: var(--bxw-profile-text);
  background: var(--bxw-profile-surface) !important;
  box-shadow:
    0 24px 64px var(--bxw-profile-shadow),
    inset 0 0 0 .5px var(--bxw-profile-edge) !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, -8px, 0) scale(.96);
  transform-origin: var(--bxw-profile-origin-x, calc(100% - 22px)) 0;
  transition-property: opacity, transform, visibility;
  transition-duration: 170ms, 240ms, 0ms;
  transition-timing-function: ease-out, cubic-bezier(.23, 1, .32, 1), linear;
  transition-delay: 0ms, 0ms, 240ms;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  isolation: isolate;
  scrollbar-width: none;
  will-change: transform, opacity;
}

#bxw-profile-popover::-webkit-scrollbar {
  display: none;
}

#bxw-profile-popover.is-mounted {
  display: block;
}

#bxw-profile-popover.is-open {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0) scale(1);
  transition-delay: 0ms;
}

:root.bxw-liquid-glass-ready #bxw-profile-popover.bxw-liquid-glass-surface {
  background: var(--bxw-profile-surface) !important;
  box-shadow:
    0 24px 64px var(--bxw-profile-shadow),
    inset 0 0 0 .5px var(--bxw-profile-edge) !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

#bxw-profile-popover > .bxw-liquid-glass-component-root {
  display: none !important;
}

#bxw-profile-popover > :not(.bxw-liquid-glass-component-root) {
  position: relative;
  z-index: 1;
}

.bxw-profile-head,
.bxw-profile-row-head,
.bxw-profile-input-row,
.bxw-profile-text-control,
.bxw-profile-action {
  display: flex;
  align-items: center;
}

.bxw-profile-action[hidden] {
  display: none !important;
}

.bxw-profile-action-copy {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.bxw-profile-action-copy strong,
.bxw-profile-action-copy small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bxw-profile-action-copy strong {
  font: inherit;
}

.bxw-profile-action-copy small {
  color: var(--bxw-profile-muted);
  font-size: 10px;
  font-weight: 600;
}

.bxw-profile-switch {
  position: relative;
  flex: 0 0 42px;
  width: 42px;
  height: 26px;
  margin-left: auto;
  border-radius: 999px;
  background: var(--bxw-profile-fill-strong);
  box-shadow: inset 0 0 0 .5px var(--bxw-profile-edge);
  transition: background-color 180ms ease;
}

.bxw-profile-switch i {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 7px rgba(0, 0, 0, .22);
  transform: translateX(0);
  transition: transform 240ms cubic-bezier(.23, 1, .32, 1);
}

.bxw-profile-push.is-enabled .bxw-profile-switch {
  background: var(--bxw-user-accent-visible, #f27600);
}

.bxw-profile-push.is-enabled .bxw-profile-switch i {
  transform: translateX(16px);
}

.bxw-profile-push.is-busy {
  pointer-events: none;
  opacity: .64;
}

.bxw-profile-head {
  justify-content: space-between;
  min-height: 44px;
  padding: 0 2px 8px 4px;
}

.bxw-profile-head > div {
  min-width: 0;
}

.bxw-profile-head strong,
.bxw-profile-head span {
  display: block;
  letter-spacing: 0;
}

.bxw-profile-head strong {
  font-size: 20px;
  font-weight: 760;
  line-height: 1.12;
  text-wrap: balance;
}

#bxw-profile-nick-caption {
  min-height: 16px;
  margin-top: 2px;
  overflow: hidden;
  color: var(--bxw-profile-muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bxw-profile-icon-button {
  display: inline-grid;
  place-items: center;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--bxw-profile-text);
  background: var(--bxw-profile-fill);
  box-shadow: inset 0 .5px 0 var(--bxw-profile-edge);
  cursor: pointer;
  scale: 1;
  transition-property: scale, background-color, color, opacity;
  transition-duration: 140ms;
  transition-timing-function: cubic-bezier(.23, 1, .32, 1);
  -webkit-tap-highlight-color: transparent;
}

.bxw-profile-icon-button:active,
.bxw-profile-action:active,
.bxw-profile-swatches button:active {
  scale: .96;
}

.bxw-profile-icon-button:focus-visible,
.bxw-profile-action:focus-visible,
.bxw-profile-swatches button:focus-visible,
.bxw-profile-theme-control button:focus-visible {
  outline: 2px solid var(--bxw-user-accent-visible, #f27600);
  outline-offset: 2px;
}

.bxw-profile-icon-button svg,
.bxw-profile-action svg {
  width: 20px;
  height: 20px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bxw-profile-icon-button.is-accent {
  color: #fff;
  background: var(--bxw-user-accent-visible, #f27600);
}

#bxw-profile-save-nick:disabled {
  color: var(--bxw-profile-muted);
  background: var(--bxw-profile-fill);
  box-shadow: inset 0 .5px 0 var(--bxw-profile-edge);
  cursor: default;
  opacity: .72;
}

#bxw-profile-save-nick:disabled:active {
  scale: 1;
}

.bxw-profile-section {
  padding: 11px 4px 12px;
  box-shadow: inset 0 -0.5px 0 rgba(60, 60, 67, .16);
}

:is(html.dark-theme, body.dark-theme) .bxw-profile-section {
  box-shadow: inset 0 -0.5px 0 rgba(255, 255, 255, .12);
}

.bxw-profile-label,
.bxw-profile-row-head output {
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: 0;
}

.bxw-profile-label {
  color: var(--bxw-profile-text);
  font-weight: 720;
}

.bxw-profile-row-head {
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.bxw-profile-row-head output {
  overflow: hidden;
  color: var(--bxw-profile-muted);
  font-weight: 650;
  font-variant-numeric: tabular-nums;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bxw-profile-input-row {
  gap: 8px;
  margin-top: 7px;
}

#bxw-profile-nick {
  min-width: 0;
  width: 100%;
  height: 40px;
  box-sizing: border-box;
  padding: 0 13px;
  border: 0;
  border-radius: 8px;
  outline: 0;
  color: var(--bxw-profile-text);
  background: var(--bxw-profile-fill);
  box-shadow: inset 0 .5px 0 var(--bxw-profile-edge);
  font: 650 15px/1.2 system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  letter-spacing: 0;
  transition-property: background-color, box-shadow;
  transition-duration: 160ms;
  transition-timing-function: ease;
}

#bxw-profile-nick:focus {
  background: var(--bxw-profile-fill-strong);
  box-shadow:
    inset 0 0 0 1.5px var(--bxw-user-accent-visible, #f27600),
    inset 0 .5px 0 var(--bxw-profile-edge);
}

#bxw-profile-nick::placeholder {
  color: var(--bxw-profile-muted);
}

.bxw-profile-status {
  min-height: 15px;
  margin-top: 4px;
  color: var(--bxw-profile-muted);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0;
}

.bxw-profile-text-control {
  gap: 9px;
  min-height: 36px;
}

.bxw-profile-type-sample {
  flex: 0 0 18px;
  color: var(--bxw-profile-muted);
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.bxw-profile-type-sample.is-small {
  font-size: 12px;
}

.bxw-profile-type-sample.is-large {
  font-size: 20px;
}

#bxw-profile-text-size,
.bxw-profile-accent-range {
  --bxw-profile-range-progress: 40%;
  display: block;
  flex: 1 1 auto;
  width: 100%;
  height: 32px;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  touch-action: pan-x;
}

#bxw-profile-text-size::-webkit-slider-runnable-track,
.bxw-profile-accent-range::-webkit-slider-runnable-track {
  height: 7px;
  border-radius: 999px;
  background:
    linear-gradient(90deg,
      var(--bxw-user-accent-visible, #f27600) 0 var(--bxw-profile-range-progress),
      var(--bxw-profile-fill-strong) var(--bxw-profile-range-progress) 100%);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, .10);
}

#bxw-profile-text-size::-moz-range-track,
.bxw-profile-accent-range::-moz-range-track {
  height: 7px;
  border-radius: 999px;
  background: var(--bxw-profile-fill-strong);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, .10);
}

#bxw-profile-text-size::-webkit-slider-thumb,
.bxw-profile-accent-range::-webkit-slider-thumb {
  width: 28px;
  height: 28px;
  margin-top: -10.5px;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 50%;
  appearance: none;
  -webkit-appearance: none;
  background: rgba(250, 250, 252, .72);
  box-shadow:
    0 5px 14px rgba(0, 0, 0, .20),
    inset 0 .5px 0 rgba(255, 255, 255, .86);
  -webkit-backdrop-filter: blur(16px) saturate(170%);
  backdrop-filter: blur(16px) saturate(170%);
}

#bxw-profile-text-size::-moz-range-thumb,
.bxw-profile-accent-range::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 50%;
  background: rgba(250, 250, 252, .72);
  box-shadow: 0 5px 14px rgba(0, 0, 0, .20);
}

.bxw-profile-theme-control {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  height: 46px;
  margin-top: 8px;
  padding: 3px;
  box-sizing: border-box;
  border-radius: 8px;
  background: var(--bxw-profile-fill);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, .07);
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
}

.bxw-profile-theme-picker {
  position: absolute;
  z-index: 0;
  top: 3px;
  bottom: 3px;
  left: 3px;
  width: calc((100% - 6px) / 3);
  border-radius: 6px;
  border: 1px solid var(--bxw-profile-edge);
  background: var(--bxw-profile-surface-strong);
  box-shadow:
    0 5px 14px rgba(0, 0, 0, .14),
    inset 0 .5px 0 rgba(255, 255, 255, .72);
  -webkit-backdrop-filter: blur(18px) saturate(165%);
  backdrop-filter: blur(18px) saturate(165%);
  transform: translate3d(calc(var(--bxw-profile-theme-index) * 100%), 0, 0);
  transition-property: transform, background-color, box-shadow;
  transition-duration: 260ms, 180ms, 180ms;
  transition-timing-function: cubic-bezier(.23, 1, .32, 1), ease, ease;
}

.bxw-profile-theme-control.is-dragging .bxw-profile-theme-picker {
  transition-duration: 80ms, 180ms, 180ms;
}

.bxw-profile-theme-control button {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-width: 40px;
  min-height: 40px;
  padding: 0;
  border: 0;
  border-radius: 6px;
  color: var(--bxw-profile-muted);
  background: transparent;
  font: 700 22px/1 system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  cursor: pointer;
  transition-property: color, transform;
  transition-duration: 160ms;
  transition-timing-function: cubic-bezier(.23, 1, .32, 1);
}

.bxw-profile-theme-control button.is-selected {
  color: var(--bxw-profile-text);
}

.bxw-profile-system-icon {
  width: 20px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 50%;
  background: linear-gradient(90deg, currentColor 0 50%, transparent 50% 100%);
}

.bxw-profile-choice-labels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 4px;
  color: var(--bxw-profile-muted);
  font-size: 10px;
  font-weight: 650;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
}

.bxw-profile-accent-range {
  --bxw-profile-range-progress: 0%;
  --bxw-profile-picker-tint: rgba(255, 148, 0, .46);
}

.bxw-profile-accent-range::-webkit-slider-runnable-track {
  background: var(--bxw-profile-fill-strong);
}

.bxw-profile-accent-range::-moz-range-track {
  background: var(--bxw-profile-fill-strong);
}

.bxw-profile-accent-range::-webkit-slider-thumb {
  border-color: rgba(255, 255, 255, .82);
  background: var(--bxw-profile-picker-tint);
  box-shadow:
    0 5px 14px rgba(0, 0, 0, .20),
    inset 0 .5px 0 rgba(255, 255, 255, .92),
    inset 0 0 0 .5px rgba(255, 255, 255, .30);
  -webkit-backdrop-filter: blur(18px) saturate(190%);
  backdrop-filter: blur(18px) saturate(190%);
}

.bxw-profile-accent-range::-moz-range-thumb {
  border-color: rgba(255, 255, 255, .82);
  background: var(--bxw-profile-picker-tint);
  box-shadow:
    0 5px 14px rgba(0, 0, 0, .20),
    inset 0 .5px 0 rgba(255, 255, 255, .92),
    inset 0 0 0 .5px rgba(255, 255, 255, .30);
}

.bxw-profile-swatches {
  display: grid;
  grid-template-columns: repeat(7, minmax(36px, 1fr));
  margin-top: 2px;
}

.bxw-profile-swatches button {
  display: grid;
  place-items: center;
  min-width: 36px;
  min-height: 40px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  scale: 1;
  transition-property: scale, opacity;
  transition-duration: 140ms;
  transition-timing-function: cubic-bezier(.23, 1, .32, 1);
}

.bxw-profile-swatches button span {
  width: 15px;
  height: 15px;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 50%;
  background: var(--swatch);
  box-shadow: 0 1px 4px rgba(0, 0, 0, .18);
  transition-property: transform, box-shadow;
  transition-duration: 180ms;
  transition-timing-function: cubic-bezier(.23, 1, .32, 1);
}

.bxw-profile-swatches button.is-selected span {
  transform: scale(1.25);
  box-shadow:
    0 0 0 3px var(--bxw-profile-surface),
    0 0 0 5px var(--swatch-ring, var(--swatch)),
    0 3px 8px rgba(0, 0, 0, .20);
}

.bxw-profile-swatches [data-accent="default"] {
  --swatch: var(--bxw-profile-default-gradient);
  --swatch-ring: #7c3aed;
}
.bxw-profile-swatches [data-accent="orange"] { --swatch: #f27600; }
.bxw-profile-swatches [data-accent="black"] { --swatch: #111113; }
.bxw-profile-swatches [data-accent="purple"] {
  --swatch: linear-gradient(135deg, #7c3aed 0 48%, #f27600 52% 100%);
  --swatch-ring: #9a48b9;
}
.bxw-profile-swatches [data-accent="pink"] { --swatch: #de9aa8; }
.bxw-profile-swatches [data-accent="green"] { --swatch: #15803d; }
.bxw-profile-swatches [data-accent="blue"] { --swatch: #2474e8; }

.bxw-profile-action {
  justify-content: flex-start;
  width: 100%;
  min-height: 48px;
  margin-top: 8px;
  padding: 0 10px;
  gap: 10px;
  border: 0;
  border-radius: 8px;
  color: var(--bxw-profile-text);
  background: var(--bxw-profile-fill);
  box-shadow: inset 0 .5px 0 var(--bxw-profile-edge);
  font: 720 14px/1.2 system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  letter-spacing: 0;
  text-align: left;
  cursor: pointer;
  scale: 1;
  transition-property: scale, background-color;
  transition-duration: 140ms;
  transition-timing-function: cubic-bezier(.23, 1, .32, 1);
}

.bxw-profile-action-icon {
  display: grid;
  place-items: center;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #fff;
  background: var(--bxw-user-accent-visible, #f27600);
}

.bxw-profile-action-icon svg {
  width: 17px;
  height: 17px;
}

.bxw-profile-action-chevron {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  margin-left: auto;
  color: var(--bxw-profile-muted);
}

.bxw-profile-action-chevron svg {
  width: 16px;
  height: 16px;
}

/* A chosen accent becomes the shared palette for chrome and reading content. */
html[data-bxw-user-accent] {
  --accent: var(--bxw-user-accent) !important;
  --progress-from: var(--bxw-user-accent-main) !important;
  --progress-to: var(--bxw-user-accent-progress-to) !important;
  --progress-glow: rgba(var(--bxw-user-accent-main-rgb), .44) !important;
  --progress-shine-a: var(--bxw-user-accent-shine-a) !important;
  --progress-shine-b: rgba(var(--bxw-user-accent-main-rgb), .34) !important;
  --progress-shine-c: rgba(var(--bxw-user-accent-main-rgb), .46) !important;
}

html[data-bxw-user-accent] body {
  --accent: var(--bxw-user-accent) !important;
  --progress-from: var(--bxw-user-accent-main) !important;
  --progress-to: var(--bxw-user-accent-progress-to) !important;
  --progress-glow: rgba(var(--bxw-user-accent-main-rgb), .44) !important;
}

html[data-bxw-user-accent] .bxw-liquid-glass-material-progress {
  background: rgba(var(--bxw-user-accent-main-rgb), .55) !important;
  --bxw-lg-shadow: rgba(var(--bxw-user-accent-main-rgb), .22);
}

html[data-bxw-user-accent="purple"] .bxw-liquid-glass-material-progress {
  background: linear-gradient(
    135deg,
    rgba(var(--bxw-user-accent-main-rgb), .55),
    rgba(var(--bxw-user-accent-secondary-rgb), .55)
  ) !important;
}

html[data-bxw-user-accent] #bxw-root {
  --bxw-accent: var(--bxw-user-accent-visible) !important;
  --bxw-second-accent: var(--bxw-user-accent-visible) !important;
  --bxw-search-accent: var(--bxw-user-accent-visible) !important;
  --bxw-search-accent-deep: var(--bxw-user-accent-search-deep) !important;
  --bxw-search-accent-soft: rgba(var(--bxw-user-accent-main-rgb), .18) !important;
  --bxw-segment-accent: var(--bxw-user-accent-visible) !important;
  --bxw-segment-indicator: var(--bxw-user-accent-segment-indicator) !important;
  --bxw-segment-indicator-border: rgba(var(--bxw-user-accent-main-rgb), .22) !important;
  --bxw-segment-indicator-shadow: rgba(var(--bxw-user-accent-main-rgb), .14) !important;
}

html[data-bxw-user-accent] #bxw-page :is(
  #bxw-telegraph-heading,
  #faq-nav-title,
  .s-faq-type-3__ask,
  .bxw-intro-toggle-icon,
  .bxw-intro-toggle-label,
  [id^="faq-q-"],
  [style*="color: rgb(255, 109, 0)"],
  [style*="color:rgb(255,109,0)"],
  [style*="color: #ff6d00" i],
  [style*="color:#ff6d00" i]
) {
  color: var(--bxw-user-accent-main) !important;
  -webkit-text-fill-color: var(--bxw-user-accent-main) !important;
}

html[data-bxw-user-accent] #bxw-page :is(
  a:not(.circle),
  .bxw-bible-ref,
  .bxw-library-ref,
  .bxw-egw-ref,
  [style*="color: rgb(255, 148, 0)"],
  [style*="color:rgb(255,148,0)"],
  [style*="color: #ff9400" i],
  [style*="color:#ff9400" i]
) {
  color: var(--bxw-user-accent-light) !important;
  -webkit-text-fill-color: var(--bxw-user-accent-light) !important;
  text-decoration-color: rgba(var(--bxw-user-accent-light-rgb), .58) !important;
}

html[data-bxw-user-accent] #bxw-page :is(
  .bxw-user-accent-note,
  .bxw-user-accent-note-block
) {
  color: var(--bxw-user-accent-dark) !important;
  -webkit-text-fill-color: var(--bxw-user-accent-dark) !important;
}

html[data-bxw-user-accent] #bxw-page :is(
  .circle,
  [style*="background-color: rgb(255, 109, 0)"],
  [style*="background-color:rgb(255,109,0)"],
  [style*="background-color: #ff6d00" i],
  [style*="background-color:#ff6d00" i]
) {
  background-color: var(--bxw-user-accent-main) !important;
}

html[data-bxw-user-accent] #bxw-page .circle {
  box-shadow: 0 8px 22px rgba(var(--bxw-user-accent-main-rgb), .24) !important;
}

#bxw-page .s-text-type-4__subtitle > :is(p, li).bxw-faq-question,
#bxw-page :is(p, li).bxw-faq-question {
  font-weight: 700 !important;
}

#bxw-page .bxw-faq-question-number {
  color: var(--bxw-user-accent-main, #ff6d00) !important;
  -webkit-text-fill-color: var(--bxw-user-accent-main, #ff6d00) !important;
}

#bxw-page .bxw-semantic-section-heading {
  color: var(--bxw-user-accent-main, #ff6d00) !important;
  -webkit-text-fill-color: var(--bxw-user-accent-main, #ff6d00) !important;
  font-weight: 700 !important;
}

#bxw-page .bxw-main-thought-number {
  color: var(--bxw-user-accent-main, #ff6d00) !important;
  -webkit-text-fill-color: var(--bxw-user-accent-main, #ff6d00) !important;
}

#bxw-page .bxw-bible-continuation-number {
  color: var(--bxw-user-accent-light, #ff9400) !important;
  -webkit-text-fill-color: var(--bxw-user-accent-light, #ff9400) !important;
}

html[data-bxw-user-accent] #bxw-page :is(
  .s-faq-type-3__ask,
  [style*="border-color: rgb(255, 109, 0)"],
  [style*="border-color:rgb(255,109,0)"],
  [style*="border-color: #ff6d00" i],
  [style*="border-color:#ff6d00" i]
) {
  border-color: var(--bxw-user-accent-main) !important;
}

html[data-bxw-user-accent] #bxw-page :is(
  .bxw-intro-fill,
  [style*="fill: rgb(255, 109, 0)"],
  [style*="fill:rgb(255,109,0)"],
  [style*="fill: #ff6d00" i],
  [style*="fill:#ff6d00" i]
) {
  fill: var(--bxw-user-accent-main) !important;
}

html[data-bxw-user-accent] #bxw-page .bxw-bible-ref::before {
  background:
    radial-gradient(circle at var(--bxw-ref-hold-x) 50%, rgba(255, 255, 255, .78), rgba(var(--bxw-user-accent-light-rgb), .52) 42%, rgba(var(--bxw-user-accent-main-rgb), .10) 78%),
    linear-gradient(90deg, transparent, rgba(var(--bxw-user-accent-main-rgb), .24) 22%, rgba(var(--bxw-user-accent-light-rgb), .38) 50%, rgba(var(--bxw-user-accent-main-rgb), .24) 78%, transparent) !important;
  box-shadow:
    0 8px 22px rgba(var(--bxw-user-accent-main-rgb), .22),
    inset 0 1px 0 rgba(255, 255, 255, .54) !important;
}

html[data-bxw-user-accent] #bxw-page .bxw-bible-ref::after {
  background: radial-gradient(circle, rgba(255, 255, 255, .86) 0%, rgba(var(--bxw-user-accent-light-rgb), .66) 31%, rgba(var(--bxw-user-accent-main-rgb), .32) 58%, transparent 74%) !important;
}

html[data-bxw-user-accent] #bxw-page .bxw-bible-ref.bxw-ref-hold-active {
  color: var(--bxw-user-accent-light) !important;
  -webkit-text-fill-color: var(--bxw-user-accent-light) !important;
  text-decoration-color: rgba(var(--bxw-user-accent-light-rgb), .48) !important;
}

html[data-bxw-user-accent] #bxw-root .bxw-btn.is-active:not(.bxw-search),
html[data-bxw-user-accent] #bxw-root .bxw-btn.is-active:not(.bxw-search) .bxw-label,
html[data-bxw-user-accent] #bxw-root .bxw-search.is-active,
html[data-bxw-user-accent] #bxw-root .bxw-search.is-active .bxw-label,
html[data-bxw-user-accent] #bxw-root :is(.toggle-option.active, .bxw-meet-toggle-btn.is-active) {
  color: var(--bxw-user-accent-visible) !important;
  -webkit-text-fill-color: var(--bxw-user-accent-visible) !important;
}

html[data-bxw-user-accent] #bxw-root :is(
  #bxw-conversation-switch,
  #bxw-meet-toggle,
  #bxw-second-mode-toggle,
  #bxw-search-mode-toggle
) {
  --bxw-segment-accent: var(--bxw-user-accent-visible) !important;
  --bxw-segment-indicator: var(--bxw-user-accent-segment-indicator) !important;
  --bxw-segment-indicator-border: rgba(var(--bxw-user-accent-main-rgb), .22) !important;
  --bxw-segment-indicator-shadow: rgba(var(--bxw-user-accent-main-rgb), .14) !important;
}

html[data-bxw-user-accent="orange"] #bxw-root .bxw-btn.is-active .bxw-icon,
html[data-bxw-user-accent="orange"] #bxw-root :is(.toggle-option.active, .bxw-meet-toggle-btn.is-active) img {
  filter: brightness(0) saturate(100%) invert(45%) sepia(98%) saturate(2863%) hue-rotate(4deg) brightness(101%) contrast(103%) !important;
}

html[data-bxw-user-accent="black"] #bxw-root .bxw-btn.is-active .bxw-icon,
html[data-bxw-user-accent="black"] #bxw-root :is(.toggle-option.active, .bxw-meet-toggle-btn.is-active) img {
  filter: brightness(0) !important;
}

html[data-bxw-user-accent="purple"] #bxw-root .bxw-btn.is-active .bxw-icon,
html[data-bxw-user-accent="purple"] #bxw-root :is(.toggle-option.active, .bxw-meet-toggle-btn.is-active) img {
  filter: brightness(0) saturate(100%) invert(29%) sepia(73%) saturate(3318%) hue-rotate(251deg) brightness(91%) contrast(99%) !important;
}

html[data-bxw-user-accent="pink"] #bxw-root .bxw-btn.is-active .bxw-icon,
html[data-bxw-user-accent="pink"] #bxw-root :is(.toggle-option.active, .bxw-meet-toggle-btn.is-active) img {
  filter: brightness(0) saturate(100%) invert(78%) sepia(17%) saturate(795%) hue-rotate(295deg) brightness(94%) contrast(86%) !important;
}

html[data-bxw-user-accent="green"] #bxw-root .bxw-btn.is-active .bxw-icon,
html[data-bxw-user-accent="green"] #bxw-root :is(.toggle-option.active, .bxw-meet-toggle-btn.is-active) img {
  filter: brightness(0) saturate(100%) invert(37%) sepia(56%) saturate(1099%) hue-rotate(94deg) brightness(91%) contrast(92%) !important;
}

html[data-bxw-user-accent="blue"] #bxw-root .bxw-btn.is-active .bxw-icon,
html[data-bxw-user-accent="blue"] #bxw-root :is(.toggle-option.active, .bxw-meet-toggle-btn.is-active) img {
  filter: brightness(0) saturate(100%) invert(43%) sepia(91%) saturate(1823%) hue-rotate(201deg) brightness(94%) contrast(93%) !important;
}

html.dark-theme[data-bxw-user-accent="black"],
html[data-bxw-user-accent="black"] body.dark-theme {
  --bxw-user-accent-visible: #d1d1d6 !important;
  --bxw-user-accent-main: #d1d1d6;
  --bxw-user-accent-dark: #8e8e93;
  --bxw-user-accent-light: #f2f2f7;
}

html.dark-theme[data-bxw-user-accent="black"] #bxw-root .bxw-btn.is-active .bxw-icon,
html.dark-theme[data-bxw-user-accent="black"] #bxw-root :is(.toggle-option.active, .bxw-meet-toggle-btn.is-active) img {
  filter: brightness(0) invert(1) !important;
}

html[data-bxw-user-accent] #progress-fill,
html[data-bxw-user-accent] #bxw-root .bxw-btn,
html[data-bxw-user-accent] #bxw-root .bxw-label,
html[data-bxw-user-accent] #bxw-root .toggle-option,
html[data-bxw-user-accent] #bxw-root .bxw-meet-toggle-btn {
  transition-property: color, background-color, border-color, box-shadow, filter, opacity, transform !important;
  transition-duration: 260ms !important;
  transition-timing-function: cubic-bezier(.77, 0, .175, 1) !important;
}

@media (max-width: 380px) {
  #bxw-profile-popover {
    padding: 8px;
  }

  .bxw-profile-section {
    padding-block: 9px 10px;
  }

  .bxw-profile-head strong {
    font-size: 19px;
  }

  .bxw-profile-swatches {
    grid-template-columns: repeat(6, minmax(40px, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  #bxw-profile-popover {
    transform: none;
    transition-property: opacity, visibility;
    transition-duration: 160ms, 0ms;
  }

  .bxw-profile-theme-picker,
  .bxw-profile-icon-button,
  .bxw-profile-action,
  .bxw-profile-swatches button {
    transition-duration: 0ms !important;
  }
}

@media (prefers-reduced-transparency: reduce) {
  #bxw-profile-popover,
  :root.bxw-liquid-glass-ready #bxw-profile-popover.bxw-liquid-glass-surface {
    background: rgb(248, 248, 250) !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }

  :is(html.dark-theme, body.dark-theme) #bxw-profile-popover,
  :root.bxw-liquid-glass-ready.dark-theme #bxw-profile-popover.bxw-liquid-glass-surface {
    background: rgb(35, 35, 38) !important;
  }
}

@media (prefers-contrast: more) {
  #bxw-profile-popover {
    outline: 1px solid currentColor;
  }
}
