.UniversalChatCtaCard__wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  animation: UniversalChatCtaCard__entrance .3s cubic-bezier(.25, 1, .5, 1)
}

.UniversalChatCtaCard__wrapper--fixed {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 2147483638
}

@keyframes UniversalChatCtaCard__entrance {
  0% {
    opacity: 0;
    transform: translateY(16px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes UniversalChatCtaCard__exit {
  0% {
    opacity: 1;
    transform: translateY(0)
  }

  to {
    opacity: 0;
    transform: translateY(8px)
  }
}

.UniversalChatCtaCard--exiting {
  animation: UniversalChatCtaCard__bodyExit .5s cubic-bezier(.25, 1, .5, 1) forwards;
  transform-origin: bottom right
}

@keyframes UniversalChatCtaCard__bodyExit {
  0% {
    opacity: 1;
    transform: rotate(0deg) scale(1)
  }

  to {
    opacity: 0;
    transform: rotate(15deg) scale(0)
  }
}

.UniversalChatCtaCard {
  position: relative;
  cursor: pointer;
  border-radius: 4px;
  padding: 16px 20px 18px;
  width: 317px;
  transition: transform .3s ease, opacity .3s ease
}

.UniversalChatCtaCard:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 4px 24px 0 rgba(0, 0, 0, .12), 0 0 0 1px rgba(0, 0, 0, .06);
  transition: transform .2s ease;
  z-index: -1
}

.UniversalChatCtaCard:hover:before {
  transform: scale(1.025, 1.05)
}

.UniversalChatCtaCard--scrolled {
  transform: translateY(-32px);
  opacity: 0;
  pointer-events: none
}

.UniversalChatCtaCard--scrolled.UniversalChatCtaCard--exiting {
  animation: none
}

.UniversalChatCtaCard__close {
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 0;
  border-radius: 4px;
  transition: background .2s ease-in-out
}

.UniversalChatCtaCard__close:focus-visible {
  outline: 1px solid #0a2540
}

.UniversalChatCtaCard__close:hover {
  background: #f0f4f8
}

.UniversalChatCtaCard__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
  padding-right: 20px
}

.UniversalChatCtaCard__avatars {
  display: flex;
  flex-shrink: 0;
  align-items: center
}

.UniversalChatCtaCard__avatar {
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  border-color: #e7ecf1;
  width: 34px;
  height: 34px
}

.UniversalChatCtaCard__avatar:nth-child(2) {
  border: 2px solid #fff;
  margin-left: -12px;
  width: 38px;
  height: 38px
}

.UniversalChatCtaCard__availability {
  display: flex;
  align-items: center;
  gap: 6px
}

.UniversalChatCtaCard__dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2ca25e;
  flex-shrink: 0
}

.UniversalChatCtaCard__agentCount {
  font-family: var(--fontFamily);
  font-size: 14px;
  font-weight: var(--fontWeightBold);
  color: #0a2540;
  line-height: 1.4
}

.UniversalChatCtaCard__subtitle {
  font-family: var(--fontFamily);
  font-size: 14px;
  font-weight: 300;
  color: #425466;
  line-height: 1.5;
  margin: 0
}

.UniversalChatCtaCard__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 24px;
  background: #0a2540;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: var(--fontFamily);
  font-size: 15px;
  font-weight: var(--fontWeightBold);
  white-space: nowrap;
  transition: background .2s ease-in-out;
  overflow: hidden
}

.UniversalChatCtaCard__cta:hover {
  background: #1a3a5c
}

.UniversalChatCtaCard__ctaSuffix {
  display: inline-block;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateX(8px);
  transition: max-width .5s cubic-bezier(.25, 1, .5, 1), opacity .3s ease, transform .5s cubic-bezier(.25, 1, .5, 1)
}

.UniversalChatCtaCard__cta--suffixEnabled:hover .UniversalChatCtaCard__ctaSuffix {
  max-width: 80px;
  opacity: 1;
  transform: translateX(0)
}
