.fac-chatbot {
  --fac-bg: #0e1727;
  --fac-header: #121b2b;
  --fac-border: rgba(255, 255, 255, 0.08);
  --fac-border-soft: rgba(255, 255, 255, 0.06);
  --fac-text: #f5f8ff;
  --fac-text-soft: #cbd7f4;
  --fac-chip-border: rgba(151, 121, 255, 0.28);
  --fac-chip-bg: rgba(255, 255, 255, 0.05);
  --fac-input-bg: #1b2642;
  --fac-purple: #7a27ff;
  --fac-purple-deep: #5d20d7;
  --fac-blue: #17395e;
  --fac-red: #e3342f;
  --fac-red-deep: #c7211b;
  --fac-whatsapp: #25d366;
  --fac-shadow: 0 30px 72px rgba(8, 19, 36, 0.42);
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 2147483000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  width: auto;
  max-width: calc(100vw - 24px);
  font-family: "Outfit", "Sora", "Segoe UI", sans-serif;
  isolation: isolate;
  pointer-events: none;
}

.fac-chatbot,
.fac-chatbot * {
  font-family: "Outfit", "Sora", "Segoe UI", sans-serif !important;
  text-transform: none !important;
  letter-spacing: normal;
  text-shadow: none !important;
}

.fac-chatbot * ,
.fac-chatbot *::before,
.fac-chatbot *::after {
  box-sizing: border-box;
}

.fac-chatbot button,
.fac-chatbot input,
.fac-chatbot textarea,
.fac-chatbot select {
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
}

.fac-chatbot a,
.fac-chatbot button {
  text-decoration: none !important;
}

.fac-chatbot__launcher,
.fac-chatbot__panel {
  pointer-events: auto;
}

.fac-chatbot__panel[hidden] {
  display: none !important;
}

.fac-chatbot__starter[hidden],
.fac-chatbot__messages[hidden],
.fac-chatbot__suggestions[hidden],
.fac-chatbot__ctas[hidden],
.fac-chatbot__lead[hidden],
.fac-chatbot__composer[hidden] {
  display: none !important;
}

.fac-chatbot__launcher {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  padding: 0;
  border: 1px solid rgba(17, 39, 74, 0.12);
  border-radius: 999px;
  background: #ffffff;
  background-image: none !important;
  box-shadow: 0 16px 36px rgba(11, 29, 49, 0.18);
  color: #ffffff;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.fac-chatbot__launcher:hover,
.fac-chatbot__launcher:focus-visible {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 40px rgba(11, 29, 49, 0.22);
  transform: translateY(-1px);
}

.fac-chatbot__launcher-icon,
.fac-chatbot__brand {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  overflow: hidden;
  background: var(--fac-purple);
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(122, 39, 255, 0.22);
}

.fac-chatbot__launcher-icon img,
.fac-chatbot__brand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fac-chatbot__bubble {
  display: inline-block;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 214, 238, 0.95) 0%, rgba(255, 214, 238, 0.76) 22%, transparent 26%),
    radial-gradient(circle at 56% 54%, rgba(123, 53, 255, 0.98) 0%, rgba(98, 35, 255, 0.92) 42%, rgba(36, 17, 71, 0.72) 78%, rgba(17, 24, 39, 0) 100%);
}

.fac-chatbot__panel {
  position: fixed;
  right: 24px;
  bottom: 96px;
  width: min(408px, calc(100vw - 24px));
  max-height: min(680px, calc(100dvh - 96px));
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--fac-border);
  border-radius: 24px;
  background: #0e1727;
  background-color: #0e1727;
  backdrop-filter: none;
  color: var(--fac-text);
  box-shadow: var(--fac-shadow);
  opacity: 1;
}

.fac-chatbot__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--fac-header);
  border-bottom: 1px solid var(--fac-border-soft);
}

.fac-chatbot__header-copy {
  min-width: 0;
  flex: 1 1 auto;
}

.fac-chatbot__header-copy h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.fac-chatbot__header-copy p {
  margin: 2px 0 0;
  font-size: 11px;
  line-height: 1.35;
  color: #ccd7f2;
}

.fac-chatbot__close {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  padding: 0;
  border: 1px solid rgba(122, 39, 255, 0.1);
  border-radius: 999px;
  background: var(--fac-purple);
  background-image: none !important;
  color: #ffffff;
  font-family: Arial, "Segoe UI", sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 0;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.fac-chatbot__close:hover,
.fac-chatbot__close:focus-visible {
  background: rgba(255, 255, 255, 0.96);
  color: var(--fac-purple);
  border-color: rgba(122, 39, 255, 0.22);
  transform: translateY(-1px);
}

.fac-chatbot__starter,
.fac-chatbot__messages,
.fac-chatbot__lead,
.fac-chatbot__lead-form {
  scrollbar-width: thin;
  scrollbar-color: rgba(198, 178, 255, 0.78) rgba(255, 255, 255, 0.04);
}

.fac-chatbot__starter::-webkit-scrollbar,
.fac-chatbot__messages::-webkit-scrollbar,
.fac-chatbot__lead::-webkit-scrollbar,
.fac-chatbot__lead-form::-webkit-scrollbar {
  width: 10px;
}

.fac-chatbot__starter::-webkit-scrollbar-track,
.fac-chatbot__messages::-webkit-scrollbar-track,
.fac-chatbot__lead::-webkit-scrollbar-track,
.fac-chatbot__lead-form::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.03);
  border-left: 1px solid rgba(255, 255, 255, 0.03);
}

.fac-chatbot__starter::-webkit-scrollbar-thumb,
.fac-chatbot__messages::-webkit-scrollbar-thumb,
.fac-chatbot__lead::-webkit-scrollbar-thumb,
.fac-chatbot__lead-form::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(232, 224, 255, 0.96) 0%, rgba(170, 131, 255, 0.94) 18%, rgba(122, 39, 255, 0.88) 58%, rgba(84, 118, 255, 0.84) 100%);
  border: 2px solid rgba(14, 23, 39, 0.96);
  border-radius: 999px;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.22), 0 6px 14px rgba(14, 20, 36, 0.24);
}

.fac-chatbot__starter {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  min-height: 0;
  padding: 14px 16px 16px;
  overflow-y: auto;
  border-bottom: 1px solid var(--fac-border-soft);
  background:
    radial-gradient(circle at top center, rgba(122, 39, 255, 0.14), transparent 28%),
    linear-gradient(180deg, #101827 0%, #0d1522 100%);
}

.fac-chatbot__starter-copy {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 8px 8px 14px;
  text-align: center;
}

.fac-chatbot__starter-copy::before {
  content: "";
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 214, 238, 0.95) 0%, rgba(255, 214, 238, 0.76) 22%, transparent 26%),
    radial-gradient(circle at 56% 54%, rgba(123, 53, 255, 0.98) 0%, rgba(98, 35, 255, 0.92) 42%, rgba(36, 17, 71, 0.72) 78%, rgba(17, 24, 39, 0) 100%);
  box-shadow: 0 0 0 14px rgba(122, 39, 255, 0.05), 0 14px 32px rgba(18, 26, 40, 0.28);
}

.fac-chatbot__starter-copy h4 {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #f8fbff;
}

.fac-chatbot__starter-copy p {
  max-width: 290px;
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #cbd5eb;
}

.fac-chatbot__starter-list {
  display: grid;
  gap: 10px;
}

.fac-chatbot__starter-option {
  width: 100%;
  display: block;
  padding: 15px 18px;
  border: 1px solid rgba(141, 106, 255, 0.2);
  border-radius: 16px;
  background: #182338;
  color: #f5f8ff !important;
  -webkit-text-fill-color: #f5f8ff;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  opacity: 1;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.fac-chatbot__starter-option:hover,
.fac-chatbot__starter-option:focus-visible {
  background: #202c43;
  border-color: rgba(201, 183, 255, 0.48);
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff;
  transform: translateY(-1px);
}

.fac-chatbot__starter-option:active {
  background: #24324a;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff;
}

.fac-chatbot__messages {
  position: relative;
  display: flex;
  flex: 1 1 auto;
  min-height: 0;
  flex-direction: column;
  gap: 14px;
  padding: 14px 16px;
  overflow-y: auto;
  background: #101827;
}

.fac-chatbot__messages:empty {
  display: none;
}

.fac-chatbot__message {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.fac-chatbot__message--assistant::before {
  content: "";
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 214, 238, 0.95) 0%, rgba(255, 214, 238, 0.76) 22%, transparent 26%),
    radial-gradient(circle at 56% 54%, rgba(123, 53, 255, 0.98) 0%, rgba(98, 35, 255, 0.92) 42%, rgba(36, 17, 71, 0.72) 78%, rgba(17, 24, 39, 0) 100%);
}

.fac-chatbot__message--user {
  justify-content: flex-end;
}

.fac-chatbot__message-bubble {
  max-width: 88%;
  padding: 14px 16px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.65;
  white-space: pre-wrap;
  text-align: left;
  word-break: normal;
  overflow-wrap: break-word;
  box-shadow: 0 10px 26px rgba(16, 31, 51, 0.05);
}

.fac-chatbot__message--assistant .fac-chatbot__message-bubble {
  background: #222d40;
  color: #f2f6ff;
  border-bottom-left-radius: 8px;
}

.fac-chatbot__message--typing .fac-chatbot__message-bubble {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 46px;
}

.fac-chatbot__message--user .fac-chatbot__message-bubble {
  background: #1b2d47;
  color: #ffffff;
  border-bottom-right-radius: 8px;
}

.fac-chatbot__message-bubble a {
  color: #b9cfff;
  text-decoration: underline;
  text-decoration-color: rgba(185, 207, 255, 0.45);
  text-underline-offset: 2px;
}

.fac-chatbot__message-bubble a:hover,
.fac-chatbot__message-bubble a:focus-visible {
  color: #ffffff;
  text-decoration-color: rgba(255, 255, 255, 0.82);
}

.fac-chatbot__suggestions,
.fac-chatbot__ctas {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: nowrap;
  flex: 0 0 auto;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 10px;
  align-items: center;
  min-height: 0;
  padding: 12px 16px;
  border-top: 1px solid var(--fac-border-soft);
  background: #10192b;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scroll-padding-left: 16px;
  scroll-padding-right: 16px;
  scroll-snap-type: x proximity;
  touch-action: pan-x pinch-zoom;
  cursor: grab;
}

.fac-chatbot__suggestions.is-dragging,
.fac-chatbot__ctas.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.fac-chatbot__suggestions[hidden],
.fac-chatbot__ctas[hidden] {
  display: none !important;
}

.fac-chatbot__suggestions::-webkit-scrollbar,
.fac-chatbot__ctas::-webkit-scrollbar {
  display: none;
}

.fac-chatbot__chip,
.fac-chatbot__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: auto;
  max-width: min(100%, 320px);
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  scroll-snap-align: start;
  position: relative;
  z-index: 1;
}

.fac-chatbot__chip {
  border: 1px solid var(--fac-chip-border);
  background: #182338;
  background-image: none !important;
  color: #f5f7ff !important;
  -webkit-text-fill-color: #f5f7ff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 6px 18px rgba(5, 11, 22, 0.18);
  cursor: pointer;
  text-align: left;
}

.fac-chatbot__chip:hover,
.fac-chatbot__chip:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(215, 197, 255, 0.5);
  color: #ffffff;
}

.fac-chatbot__cta {
  border: 1px solid transparent;
  background: var(--fac-red);
  background-image: none !important;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(227, 52, 47, 0.18);
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.fac-chatbot__cta span,
.fac-chatbot__chip span {
  display: block;
}

.fac-chatbot__cta:hover,
.fac-chatbot__cta:focus-visible {
  transform: translateY(-1px);
}

.fac-chatbot__cta:not(.is-whatsapp):hover,
.fac-chatbot__cta:not(.is-whatsapp):focus-visible {
  background: var(--fac-red-deep);
}

.fac-chatbot__cta.is-whatsapp {
  gap: 8px;
  border-color: rgba(37, 211, 102, 0.42);
  background: linear-gradient(180deg, #25d366 0%, #1ebe5b 100%);
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.2);
}

.fac-chatbot__cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  line-height: 1;
  flex: 0 0 16px;
}

.fac-chatbot__cta-icon svg {
  width: 16px;
  height: 16px;
  display: block;
}

.fac-chatbot__lead {
  position: relative;
  z-index: 2;
  padding: 8px 16px 10px;
  flex: 0 0 auto;
  min-height: 0;
  overflow-y: auto;
  background: var(--fac-bg);
  border-top: 1px solid var(--fac-border-soft);
}

.fac-chatbot__lead-copy {
  margin-bottom: 10px;
}

.fac-chatbot__lead-copy h4 {
  margin: 0 0 6px;
  font-size: 16px;
  color: #f8fbff;
}

.fac-chatbot__lead-copy p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #cdd8f1;
}

.fac-chatbot__lead-form {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: #121b2b;
  max-height: min(360px, calc(100dvh - 220px));
  overflow-y: auto;
}

.fac-chatbot__lead-form input,
.fac-chatbot__lead-form textarea,
.fac-chatbot__composer input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  background-image: none !important;
  color: #f5f8ff;
  padding: 12px 13px;
  font: inherit;
  font-size: 14px;
  line-height: 1.5;
}

.fac-chatbot__lead-form input::placeholder,
.fac-chatbot__lead-form textarea::placeholder,
.fac-chatbot__composer input::placeholder {
  color: #b2c0df;
}

.fac-chatbot__lead-form input:focus,
.fac-chatbot__lead-form textarea:focus,
.fac-chatbot__composer input:focus {
  outline: none;
  border-color: rgba(151, 121, 255, 0.65);
  box-shadow: 0 0 0 2px rgba(122, 39, 255, 0.18);
}

.fac-chatbot__lead-form textarea {
  min-height: 92px;
  max-height: 140px;
  resize: vertical;
}

.fac-chatbot__primary,
.fac-chatbot__secondary,
.fac-chatbot__send {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 12px;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.fac-chatbot__primary,
.fac-chatbot__send {
  border: 0;
  background: var(--fac-blue);
  background-image: none !important;
  color: #ffffff;
}

.fac-chatbot__secondary {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  background-image: none !important;
  color: #eef2ff;
}

.fac-chatbot__primary:hover,
.fac-chatbot__primary:focus-visible,
.fac-chatbot__secondary:hover,
.fac-chatbot__secondary:focus-visible,
.fac-chatbot__send:hover,
.fac-chatbot__send:focus-visible {
  transform: translateY(-1px);
}

.fac-chatbot__composer {
  display: grid;
  grid-template-columns: 1fr 52px;
  gap: 0;
  flex: 0 0 auto;
  position: relative;
  z-index: 3;
  padding: 10px 16px 14px;
  border-top: 1px solid var(--fac-border-soft);
  background: #10192b;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.fac-chatbot__composer input {
  color: #eef3ff;
}

.fac-chatbot__composer input::placeholder {
  color: #b7c5e5;
}

.fac-chatbot__composer input {
  height: 52px;
  min-width: 0;
  border-right: 0;
  border-radius: 16px 0 0 16px;
  padding: 0 14px;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.05);
  caret-color: #ffffff;
}

.fac-chatbot__send {
  width: 52px;
  min-width: 52px;
  height: 52px;
  min-height: 52px;
  padding: 0;
  border-radius: 0 16px 16px 0;
  box-shadow: none;
  background: #214d7e;
}

.fac-chatbot__send-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  line-height: 0;
}

.fac-chatbot__send-icon svg {
  width: 18px;
  height: 18px;
  display: block;
  color: #ffffff;
}

.fac-chatbot__typing-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  animation: fac-chatbot-typing 1s ease-in-out infinite;
}

.fac-chatbot__typing-dot:nth-child(2) {
  animation-delay: 0.14s;
}

.fac-chatbot__typing-dot:nth-child(3) {
  animation-delay: 0.28s;
}

@keyframes fac-chatbot-typing {
  0%,
  80%,
  100% {
    opacity: 0.35;
    transform: translateY(0);
  }
  40% {
    opacity: 1;
    transform: translateY(-3px);
  }
}

@media (max-width: 767px) {
  .fac-chatbot__chip,
  .fac-chatbot__cta {
    font-size: 12px;
  }
}

.fac-chatbot.is-busy .fac-chatbot__panel {
  opacity: 1;
}

.fac-chatbot.has-lead .fac-chatbot__starter,
.fac-chatbot.has-lead .fac-chatbot__suggestions,
.fac-chatbot.has-lead .fac-chatbot__ctas,
.fac-chatbot.has-lead .fac-chatbot__composer {
  display: none;
}

.fac-chatbot.has-lead .fac-chatbot__messages {
  flex: 0 0 auto;
  max-height: 84px;
  padding-bottom: 6px;
}

.fac-chatbot.has-lead .fac-chatbot__message-bubble {
  font-size: 12px;
  line-height: 1.5;
  padding: 11px 13px;
}

.fac-chatbot.needs-intake .fac-chatbot__starter,
.fac-chatbot.needs-intake .fac-chatbot__messages,
.fac-chatbot.needs-intake .fac-chatbot__suggestions,
.fac-chatbot.needs-intake .fac-chatbot__ctas,
.fac-chatbot.needs-intake .fac-chatbot__composer {
  display: none;
}

.fac-chatbot.needs-intake .fac-chatbot__lead {
  padding-top: 14px;
  flex: 1 1 auto;
}

.fac-chatbot.needs-intake .fac-chatbot__lead-form {
  padding: 14px;
  gap: 10px;
}

.fac-chatbot.needs-intake .fac-chatbot__lead-form textarea {
  min-height: 108px;
}

@media (max-width: 767px) {
  .fac-chatbot {
    right: 12px;
    bottom: 12px;
    max-width: calc(100vw - 24px);
  }

  .fac-chatbot__panel {
    right: 12px;
    bottom: 84px;
    width: calc(100vw - 24px);
    max-height: calc(100dvh - 104px);
    border-radius: 24px;
  }

  .fac-chatbot__starter {
    padding: 12px 14px 14px;
  }

  .fac-chatbot__messages {
    padding: 12px 14px;
  }

  .fac-chatbot__message-bubble {
    max-width: 92%;
  }

  .fac-chatbot__suggestions,
  .fac-chatbot__ctas,
  .fac-chatbot__composer,
  .fac-chatbot__lead {
    padding-left: 14px;
    padding-right: 14px;
  }

  .fac-chatbot__suggestions,
  .fac-chatbot__ctas {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .fac-chatbot__lead-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .fac-chatbot__primary,
  .fac-chatbot__secondary {
    width: 100%;
    justify-content: center;
  }

  .fac-chatbot__composer {
    grid-template-columns: minmax(0, 1fr) 52px;
    gap: 0;
  }

  .fac-chatbot__lead-form {
    padding: 10px;
    max-height: min(320px, calc(100dvh - 190px));
  }

  .fac-chatbot__lead-form input,
  .fac-chatbot__lead-form textarea {
    padding: 11px 12px;
    font-size: 13px;
  }

  .fac-chatbot__lead-form textarea {
    min-height: 82px;
  }

  .fac-chatbot.has-lead .fac-chatbot__messages {
    max-height: 72px;
  }

  .fac-chatbot.needs-intake .fac-chatbot__lead {
    padding-top: 10px;
  }

  .fac-chatbot__send {
    width: 52px;
    min-width: 52px;
    padding: 0;
  }
}
