.floating-live-chat-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 100;
  width: 48px;
  height: 48px;
}

body.pdp-page .floating-live-chat-widget {
  bottom: calc(var(--pdp-addcart-visible-height, 0px) + 24px);
  visibility: hidden;
}

body.pdp-page.pdp-addcart-ready .floating-live-chat-widget {
  visibility: visible;
}

.floating-live-chat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background-color: #006eff;
  box-shadow: 0 4px 12px rgba(67, 68, 71, 0.2);
  cursor: pointer;
}
.floating-live-chat:focus-visible {
  outline: 2px solid #006eff;
  outline-offset: 2px;
}
.floating-live-chat__icon {
  display: block;
  width: 32px;
  height: auto;
  flex: 0 0 auto;
}

.floating-live-chat-selection {
  position: absolute;
  right: 0;
  bottom: calc(100% + 12px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: max-content;
  min-width: 202px;
  max-width: calc(100vw - 48px);
  padding: 12px;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(67, 68, 71, 0.2);
}
.floating-live-chat-selection[hidden] {
  display: none;
}
.floating-live-chat-selection__option {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: center;
  column-gap: 8px;
  width: 100%;
  min-height: 40px;
  padding: 6px 8px;
  border: 1px solid transparent;
  border-radius: 4px;
  background-color: #f6f7f9;
  color: #006eff;
  font-family: var(--ds-font-family, "Heebo", sans-serif);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}
.floating-live-chat-selection__option > span {
  text-align: center;
}
.floating-live-chat-selection__option:hover, .floating-live-chat-selection__option:focus-visible {
  border-color: #006eff;
  outline: none;
  background-color: #dfebf7;
}
.floating-live-chat-selection__option-icon {
  width: 24px;
  height: 24px;
}

@media (min-width: 48em) {
  .floating-live-chat-selection {
    gap: 12px;
    min-width: 208px;
    padding: 16px;
  }
  .floating-live-chat-selection__option {
    padding-right: 12px;
    padding-left: 12px;
    font-size: 16px;
  }
}
