.bzcta-shell,
.bzcta-shell * {
  box-sizing: border-box;
}

.bzcta-shell {
  --bzcta-primary: #0b86d1;
  --bzcta-accent: #25f4c8;
  --bzcta-dark: #07111f;
  --bzcta-surface: #ffffff;
  --bzcta-border: #d8e5f1;
  --bzcta-text: #101828;
  --bzcta-icon: #0b86d1;
  --bzcta-mobile-bar: #ffffff;
  --bzcta-form-button: #0b86d1;
  --bzcta-launcher-bg: #0b86d1;
  --bzcta-launcher-icon: #ffffff;
  --bzcta-launcher-text: #ffffff;
  --bzcta-mobile-launcher-bg: #0b86d1;
  --bzcta-mobile-launcher-icon: #ffffff;
  --bzcta-mobile-launcher-text: #ffffff;
  --bzcta-mobile-bar-offset: 76px;
  position: fixed;
  z-index: 99998;
  font-family: inherit;
  color: var(--bzcta-text);
}

.bzcta-v2 {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.bzcta-v2-desktop {
  bottom: 24px;
}

.bzcta-v2-panel {
  position: absolute;
  right: 0;
  bottom: 72px;
  width: min(310px, calc(100vw - 40px));
  padding: 12px;
  border: 1px solid rgba(216, 229, 241, 0.95);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 24px 70px rgba(7, 17, 31, 0.22);
  display: grid;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.bzcta-v2.is-open .bzcta-v2-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.bzcta-v2-panel-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 4px 8px;
}

.bzcta-v2-panel-head strong {
  display: block;
  color: var(--bzcta-text);
  font-size: 15px;
  line-height: 1.15;
}

.bzcta-v2-panel-head small {
  display: block;
  color: #667085;
  font-size: 12px;
  line-height: 1.2;
}

.bzcta-v2-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--bzcta-mobile-launcher-bg, var(--bzcta-primary));
  color: #fff;
  font-weight: 900;
  flex: 0 0 auto;
}

.bzcta-v2-launcher {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 54px;
  padding: 8px 16px 8px 10px;
  border: 1px solid var(--bzcta-border, rgba(255, 255, 255, 0.2));
  border-radius: 999px;
  background: var(--bzcta-launcher-bg, var(--bzcta-dark));
  color: var(--bzcta-launcher-text, #fff);
  box-shadow: 0 18px 44px rgba(7, 17, 31, 0.25);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 850;
}

.bzcta-v2-launcher .bzcta-v2-brand {
  width: 38px;
  height: 38px;
  background: var(--bzcta-launcher-bg, var(--bzcta-primary));
}

.bzcta-v2-launcher svg {
  width: 18px;
  height: 18px;
}

.bzcta-v2-action.bzcta-action {
  min-height: 52px;
  border: 1px solid var(--bzcta-border, rgba(216, 229, 241, 0.95));
  border-radius: 13px;
  box-shadow: none;
  background: #fff;
  font-size: var(--action-text-size, 13px);
}

.bzcta-v2-action .bzcta-action-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}

.bzcta-v2-mobile {
  display: none;
}

.bzcta-v2-mobile-launcher {
  position: fixed;
  right: 16px;
  bottom: 82px;
  z-index: 99999;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  max-width: calc(100vw - 32px);
  border: 1px solid var(--bzcta-border, transparent);
  border-radius: 999px;
  padding: 8px 14px 8px 10px;
  background: var(--bzcta-launcher-bg, var(--bzcta-primary));
  color: var(--bzcta-mobile-launcher-text, #fff);
  box-shadow: 0 18px 44px rgba(11, 134, 209, 0.32);
  font: inherit;
  font-size: 14px;
  cursor: pointer;
}

.bzcta-v2-mobile-launcher span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: var(--bzcta-mobile-launcher-icon, #fff);
}

.bzcta-v2-mobile-actions {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 12px;
  z-index: 99998;
  display: grid;
  grid-template-columns: repeat(var(--bzcta-mobile-count, 3), minmax(0, 1fr));
  gap: 7px;
  padding: 6px;
  border: 1px solid var(--bzcta-border, rgba(255, 255, 255, 0.12));
  border-radius: 18px;
  background: color-mix(in srgb, var(--bzcta-mobile-bar, #111827) 94%, #ffffff);
  box-shadow: 0 18px 50px rgba(7, 17, 31, 0.35);
}

.bzcta-v2-mobile-action.bzcta-action {
  min-height: 44px;
  justify-content: center;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
  color: var(--action-text, #fff);
  padding: 8px 9px;
  gap: 6px;
  font-size: var(--action-text-size, 10px);
  text-align: center;
}

.bzcta-v2-mobile-action .bzcta-action-icon {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.bzcta-v2-form.bzcta-form {
  border-radius: 18px;
  border-color: rgba(216, 229, 241, 0.95);
  box-shadow: 0 28px 84px rgba(7, 17, 31, 0.26);
}

.bzcta-shell[data-position="left"] {
  left: 20px;
  right: auto;
}

.bzcta-shell[data-position="right"] {
  right: 20px;
  left: auto;
}

.bzcta-desktop {
  bottom: 24px;
}

.bzcta-mobile {
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
}

.bzcta-launcher {
  display: inline-flex;
  align-items: center;
  gap: 0.65em;
  min-width: calc(6ch + 2.5em);
  min-height: 0;
  padding: 0.58em 1.1em;
  border: 1px solid var(--bzcta-border);
  border-radius: 999px;
  background: var(--bzcta-launcher-bg, var(--bzcta-primary));
  color: var(--bzcta-launcher-text, #fff);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 18px 42px rgba(11, 134, 209, 0.28);
}

.bzcta-launcher[data-shape="round"] {
  width: 3.6em;
  min-width: 3.6em;
  height: 3.6em;
  padding: 0;
  border-radius: 999px;
  justify-content: center;
}

.bzcta-launcher[data-shape="round"] > span:last-child {
  display: none;
}

.bzcta-launcher.is-text-only .bzcta-launcher-icon {
  display: none;
}

.bzcta-launcher.is-icon-only > span:not(.bzcta-launcher-icon) {
  display: none;
}

.bzcta-launcher-icon,
.bzcta-action-icon,
.bzcta-form-close,
.bzcta-ada-launcher {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.bzcta-launcher-icon {
  width: 1.65em;
  height: 1.65em;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: var(--bzcta-launcher-icon, #fff);
}

.bzcta-launcher-icon svg {
  width: 1em;
  height: 1em;
}

.bzcta-radial {
  position: absolute;
  right: 0;
  bottom: 74px;
  width: 250px;
  height: auto;
  display: grid;
  gap: 10px;
  pointer-events: none;
  transform: translateY(8px);
  opacity: 0;
  transition: opacity 180ms ease, transform 180ms ease;
}

.bzcta-shell.is-open .bzcta-radial {
  pointer-events: auto;
  transform: scale(1);
  opacity: 1;
}

.bzcta-action {
  position: static;
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--bzcta-border);
  border-radius: 999px;
  background: var(--action-bg, #fff);
  color: var(--action-text, var(--bzcta-text));
  box-shadow: 0 14px 32px rgba(7, 17, 31, 0.2);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 9px;
  padding: 10px 14px;
  font-size: var(--action-text-size, 12px);
  font-family: var(--action-font, inherit);
  font-weight: var(--action-weight, 800);
  line-height: 1.15;
  text-align: left;
  transition: transform 180ms ease;
}

.bzcta-action:hover,
.bzcta-action:focus-visible {
  transform: translateY(-2px);
}

.bzcta-action-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--action-color, var(--bzcta-icon, #0b86d1)) 16%, #fff);
  color: var(--action-color, #0b86d1);
}

.bzcta-action-icon svg {
  display: block;
  width: 1.2em;
  height: 1.2em;
}

.bzcta-action-custom-icon {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.bzcta-picture-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
}

.bzcta-action.is-icon-only {
  width: 58px;
  height: 58px;
  min-height: 58px;
  padding: 0;
  justify-content: center;
  justify-self: end;
}

.bzcta-action.is-icon-only > span:not(.bzcta-action-icon),
.bzcta-action.is-text-only .bzcta-action-icon {
  display: none;
}

.bzcta-action.is-text-only {
  justify-content: center;
}

.bzcta-form {
  position: fixed;
  z-index: 100000;
  right: 20px;
  top: 50%;
  bottom: auto;
  width: min(390px, calc(100vw - 32px));
  max-height: calc(100dvh - 28px);
  overflow: auto;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid var(--bzcta-border);
  border-radius: 16px;
  box-shadow: 0 24px 72px rgba(7, 17, 31, 0.24);
  padding: clamp(14px, 2vh, 20px);
  font-size: 16px;
  line-height: 1.3;
  transform: translateY(calc(-50% + 14px));
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.bzcta-qr {
  position: fixed;
  z-index: 100000;
  right: 20px;
  bottom: 96px;
  width: min(340px, calc(100vw - 32px));
  background: #fff;
  border: 1px solid var(--bzcta-border);
  border-radius: 16px;
  box-shadow: 0 24px 72px rgba(7, 17, 31, 0.24);
  padding: 22px;
  text-align: center;
  transform: translateY(14px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.bzcta-qr.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.bzcta-qr .bzcta-form-close {
  position: absolute;
  right: 14px;
  top: 14px;
}

.bzcta-qr h3 {
  margin: 6px 0 6px;
  font-size: 24px;
}

.bzcta-qr p {
  margin: 0 0 16px;
  color: #5a6575;
}

.bzcta-qr img {
  width: 230px;
  max-width: 100%;
  height: auto;
  border: 10px solid #f8fafc;
  border-radius: 12px;
}

.bzcta-call-now {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 14px;
  padding: 11px 20px;
  border-radius: 999px;
  background: var(--bzcta-form-button);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.bzcta-call-now:hover {
  color: #fff;
  filter: brightness(0.96);
}

.bzcta-form.is-open {
  opacity: 1;
  transform: translateY(-50%);
  pointer-events: auto;
}

.bzcta-form-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
  margin-bottom: clamp(8px, 1.5vh, 14px);
}

.bzcta-form h3 {
  margin: 0 0 5px;
  font-size: clamp(21px, 3vh, 24px);
  line-height: 1.12;
}

.bzcta-form p {
  margin: 0;
  color: #5a6575;
  font-size: clamp(14px, 2vh, 16px);
  line-height: 1.35;
}

.bzcta-form-close,
.bzcta-ada-close {
  width: 36px;
  height: 36px;
  border: 1px solid var(--bzcta-border);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
}

.bzcta-field {
  display: block;
  margin-bottom: clamp(7px, 1.2vh, 10px);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.25;
}

.bzcta-field input,
.bzcta-field textarea {
  display: block;
  width: 100%;
  margin-top: 5px;
  border: 1px solid var(--bzcta-border) !important;
  border-radius: 10px;
  min-height: clamp(36px, 5vh, 42px);
  padding: 8px 11px;
  font-family: inherit;
  font-size: 16px;
  line-height: 1.25;
  background: #fff;
  box-shadow: none !important;
  outline: 0;
  appearance: none;
}

.bzcta-field input:focus,
.bzcta-field textarea:focus {
  border-color: var(--bzcta-primary) !important;
  box-shadow: 0 0 0 3px rgba(11, 134, 209, 0.14) !important;
}

.bzcta-field textarea {
  min-height: clamp(58px, 12vh, 86px);
  resize: vertical;
}

.bzcta-consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 9px;
  align-items: start;
  font-size: 13px;
  line-height: 1.35;
  color: #39465a;
  margin: clamp(5px, 1vh, 8px) 0 clamp(9px, 1.4vh, 12px);
}

.bzcta-submit {
  width: 100%;
  min-height: clamp(42px, 5.5vh, 48px);
  border: 0;
  border-radius: 999px;
  background: var(--bzcta-form-button);
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.bzcta-error {
  display: none;
  margin: 10px 0 0;
  color: #b42318;
  font-weight: 700;
}

.bzcta-error.is-visible {
  display: block;
}

.bzcta-success {
  display: none;
  padding: 18px;
  border-radius: 12px;
  background: #ecfdf3;
  color: #075e45;
}

.bzcta-success.is-visible {
  display: block;
}

.bzcta-success strong,
.bzcta-submitted-message {
  display: block;
}

.bzcta-submitted-message {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(7, 94, 69, 0.18);
}

.bzcta-mobile-dock-inner {
  width: min(520px, 100%);
  margin: 0 auto;
  background: var(--bzcta-mobile-bar, #fff);
  border: 1px solid var(--bzcta-border);
  border-bottom: 0;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -18px 56px rgba(7, 17, 31, 0.25);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(44px, 1fr));
  gap: 4px;
  padding: 4px 8px calc(5px + env(safe-area-inset-bottom));
}

.bzcta-mobile-single {
  position: fixed;
  right: 14px;
  bottom: calc(var(--bzcta-mobile-bar-offset, 76px) + env(safe-area-inset-bottom));
  z-index: 2;
  background: var(--bzcta-mobile-launcher-bg, var(--bzcta-launcher-bg, var(--bzcta-primary)));
  color: var(--bzcta-mobile-launcher-text, var(--bzcta-launcher-text, #fff));
  min-height: 0;
  gap: 0.55em;
  padding: 0.44em 1em;
  line-height: 1.1;
}

.bzcta-mobile-single .bzcta-launcher-icon {
  color: var(--bzcta-mobile-launcher-icon, var(--bzcta-launcher-icon, #fff));
  width: 1.6em;
  height: 1.6em;
}

.bzcta-mobile-single[data-shape="round"] {
  width: 3.4em;
  min-width: 3.4em;
  height: 3.4em;
}

.bzcta-mobile:not(:has(.bzcta-mobile-dock-inner)) .bzcta-mobile-single {
  bottom: calc(18px + env(safe-area-inset-bottom));
}

.bzcta-mobile-actions .bzcta-action {
  position: static;
  width: auto;
  min-height: 4.6em;
  box-shadow: none;
  border: 1px solid var(--bzcta-border);
  border-radius: 10px;
  background: transparent;
  font-size: var(--action-text-size, 8px);
  flex-direction: column;
  justify-content: center;
  gap: 0.22em;
  padding: 0.55em 0.45em;
  text-align: center;
}

.bzcta-mobile-actions .bzcta-action-icon {
  width: 2.1em;
  height: 2.1em;
  background: transparent;
}

.bzcta-mobile-actions .bzcta-action-icon svg {
  width: 1.85em;
  height: 1.85em;
}

.bzcta-mobile-bar-floating-pills {
  pointer-events: none;
}

.bzcta-mobile-bar-floating-pills .bzcta-mobile-dock-inner {
  pointer-events: auto;
  width: min(520px, calc(100% - 20px));
  margin-left: auto;
  margin-right: auto;
  margin-bottom: calc(12px + env(safe-area-inset-bottom));
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 0;
  padding: 0;
}

.bzcta-mobile-bar-floating-pills .bzcta-action {
  width: max-content;
  min-height: clamp(28px, calc(var(--action-text-size, 10px) * 2.4), 42px);
  min-width: calc(4ch + 1.7em);
  max-width: min(42vw, 168px);
  border: 1px solid var(--bzcta-border);
  border-radius: 999px;
  background: var(--action-bg, var(--action-color, var(--bzcta-primary, #0b86d1)));
  box-shadow: 0 12px 32px rgba(7, 17, 31, 0.18);
  flex: 0 1 auto;
  flex-direction: row;
  justify-content: center;
  padding: 0.29em 1em;
  font-size: var(--action-text-size, 10px);
  line-height: 1.08;
  overflow: hidden;
  text-align: center;
  white-space: nowrap;
}

.bzcta-mobile-bar-floating-pills .bzcta-action > span:not(.bzcta-action-icon) {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bzcta-mobile-bar-floating-pills .bzcta-action-icon {
  display: none;
}

.bzcta-mobile-bar-floating-pills .bzcta-mobile-single {
  bottom: calc(56px + env(safe-area-inset-bottom));
}

.bzcta-review-pop {
  position: fixed;
  left: 20px;
  bottom: 24px;
  width: min(560px, calc(100vw - 32px));
  min-height: 132px;
  max-height: 132px;
  background: #fff;
  border: 1px solid var(--bzcta-border);
  border-radius: 16px;
  padding: 14px 48px 14px 14px;
  box-shadow: 0 18px 48px rgba(7, 17, 31, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 99996;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  overflow: hidden;
}

.bzcta-review-pop.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.bzcta-review-close {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--bzcta-border);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
}

.bzcta-review-stars {
  color: #f5b301;
  font-size: 16px;
  letter-spacing: 1px;
}

.bzcta-review-brand {
  align-self: stretch;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid var(--bzcta-border);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 5px;
  font-weight: 900;
}

.bzcta-review-brand span {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111827;
  color: #fff;
  font-size: 24px;
  line-height: 1;
}

.bzcta-review-brand[data-review-brand="google"] span {
  background: conic-gradient(from 40deg, #4285f4, #34a853, #fbbc05, #ea4335, #4285f4);
}

.bzcta-review-brand[data-review-brand="facebook"] span {
  background: #1877f2;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 28px;
}

.bzcta-review-brand em {
  font-style: normal;
  color: #475569;
  font-size: 12px;
}

.bzcta-review-body {
  min-width: 0;
}

.bzcta-review-body strong {
  display: block;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bzcta-review-body p {
  margin: 5px 0 4px;
  color: #475569;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bzcta-review-body a {
  color: var(--bzcta-primary);
  font-weight: 800;
  text-decoration: none;
}

.bzcta-ada-launcher {
  position: fixed;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 48px !important;
  min-width: 48px !important;
  max-width: 48px !important;
  height: 48px !important;
  min-height: 48px !important;
  max-height: 48px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: var(--bzcta-ada-button, var(--bzcta-dark));
  color: var(--bzcta-ada-icon, #fff);
  font-size: 0 !important;
  line-height: 1 !important;
  text-align: center !important;
  text-decoration: none !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  box-sizing: border-box !important;
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(7, 17, 31, 0.22);
  overflow: hidden !important;
  z-index: 99997;
}

.bzcta-ada-launcher svg {
  display: block !important;
  width: 25px !important;
  min-width: 25px !important;
  max-width: 25px !important;
  height: 25px !important;
  min-height: 25px !important;
  max-height: 25px !important;
  margin: 0 !important;
  padding: 0 !important;
  color: inherit !important;
  fill: none;
  overflow: visible !important;
}

.bzcta-ada-launcher svg circle {
  fill: currentColor !important;
}

.bzcta-ada-launcher svg path {
  stroke: currentColor !important;
}

.bzcta-ada-launcher[data-side="bottom-left"],
.bzcta-ada-launcher[data-side="left"] {
  left: 20px;
  bottom: 94px;
}

.bzcta-ada-launcher[data-side="bottom-right"],
.bzcta-ada-launcher[data-side="right"] {
  right: 20px;
  bottom: 94px;
}

.bzcta-ada-launcher[data-side="middle-left"] {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.bzcta-ada-launcher[data-side="middle-right"] {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.bzcta-ada-launcher[data-side="top-left"] {
  left: 20px;
  top: 120px;
}

.bzcta-ada-launcher[data-side="top-right"] {
  right: 20px;
  top: 120px;
}

.bzcta-ada-panel {
  position: fixed;
  width: min(300px, calc(100vw - 32px));
  background: #fff;
  border: 1px solid var(--bzcta-border);
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(7, 17, 31, 0.2);
  padding: 16px;
  display: none;
  z-index: 99999;
}

.bzcta-ada-panel[data-side="bottom-left"],
.bzcta-ada-panel[data-side="left"] {
  left: 20px;
  bottom: 152px;
}

.bzcta-ada-panel[data-side="bottom-right"],
.bzcta-ada-panel[data-side="right"] {
  right: 20px;
  bottom: 152px;
}

.bzcta-ada-panel[data-side="middle-left"] {
  left: 80px;
  top: 50%;
  transform: translateY(-50%);
}

.bzcta-ada-panel[data-side="middle-right"] {
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
}

.bzcta-ada-panel[data-side="top-left"] {
  left: 20px;
  top: 178px;
}

.bzcta-ada-panel[data-side="top-right"] {
  right: 20px;
  top: 178px;
}

.bzcta-ada-panel.is-open {
  display: block;
}

.bzcta-ada-panel h3 {
  margin: 0 0 12px;
}

.bzcta-ada-tools {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.bzcta-ada-tools button {
  border: 1px solid var(--bzcta-border);
  border-radius: 10px;
  background: #fff;
  padding: 10px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

html.bzcta-large-text {
  font-size: 112.5%;
}

html.bzcta-high-contrast {
  filter: contrast(1.25);
}

html.bzcta-readable-font body {
  font-family: Arial, Helvetica, sans-serif !important;
}

@media (max-width: 767px) {
  .bzcta-desktop {
    display: none !important;
  }

  .bzcta-v2-desktop {
    display: none !important;
  }

  .bzcta-mobile {
    display: block;
  }

  .bzcta-v2-mobile {
    display: block;
  }

  body.bzcta-form-open .bzcta-mobile {
    display: none;
  }

  body.bzcta-form-open .bzcta-v2-mobile {
    display: none;
  }

  .bzcta-form {
    top: auto;
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    max-height: calc(100dvh - 24px);
    transform: translateY(14px);
  }

  .bzcta-form.is-open {
    transform: translateY(0);
  }

  .bzcta-review-pop {
    display: none;
  }
}
