.HoverArrow {
  position: relative;
  top: 1px;
  margin-left: 5px;
  stroke-width: 2px;
  fill: none;
  stroke: currentColor;
}

.HoverArrow__linePath {
  opacity: 0;
  transition: opacity 150ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

.HoverArrow__tipPath {
  transform: translate(0px);
  transition: transform 150ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

.CtaButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 0 6px;
  border-radius: 16.5px;
  font-family: "sohne-var";
  font-size: var(--widget-baseline-font-size);
  line-height: 1.6;
  font-weight: 425;
  color: var(--accentColor);
  transition: 150ms cubic-bezier(0.215, 0.61, 0.355, 1);
  outline: none;
  appearance: none;
  border: none;
  cursor: pointer;
}

.CtaButton:focus-visible {
  box-shadow: 0 0 0 2px #4d90fe, inset 0 0 0 2px hsla(0, 0%, 100%, 0.9);
}

.CtaButton--secondary {
  transition-property: color;
  background: none;
}

.CtaButton--primary {
  padding-left: 16px;
  padding-right: 16px;
  background-color: var(--accentColor);
  color: var(--knockoutColor);
  white-space: nowrap;
  transition-property: background-color;
}

.CtaButton--primary[disabled] {
  background-color: #c4ccd8;
  cursor: default;
}

/* This style is used when the form values aren't valid */
.CtaButton__submitButton--isInvalid[disabled] {
  background-color: #727f96;
  cursor: default;
  pointer-events: none;
}

.CtaButton--primary .CtaButton--arrow {
  padding-right: 12px;
}

@media (pointer: fine) {
  .CtaButton--secondary:hover {
    color: var(--linkHoverColor);
  }

  .CtaButton--primary:hover {
    background-color: var(--buttonHoverColor);
  }

  .CtaButton:hover .HoverArrow__linePath {
    opacity: 1;
  }

  .CtaButton:hover .HoverArrow__tipPath {
    transform: translate(3px);
  }
}

@media (pointer: coarse) {
  .CtaButton--secondary:active {
    color: var(--linkHoverColor);
  }

  .CtaButton--primary:active {
    background-color: var(--buttonHoverColor);
  }

  .CtaButton:active .HoverArrow__linePath {
    opacity: 1;
  }

  .CtaButton:active .HoverArrow__tipPath {
    transform: translate(3px);
  }
}

/* Primary Form Button styles  */
.CtaButton--primary__submitCheck {
  margin-left: 6px;
}

.CtaButton__submittedButton[disabled] {
  cursor: default;
  pointer-events: none;
  padding: 4px 30px 6px 16px;
  clip-path: inset(0 20px 0 0 round 16.5px);
}

.CtaButton__submittedButton--expand {
  animation: buttonSubmittedExpand 300ms cubic-bezier(0.5, 1.5, 0.4, 1.05);
}

@keyframes buttonSubmittedExpand {
  0% {
    clip-path: inset(0 44px 0 0 round 16.5px);
    background-color: var(--buttonHoverColor);
  }
  5% {
    background-color: var(--accentColor);
  }
}

.EndChatPrompt {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 168px;
  display: flex;
  flex-direction: column;
  padding: 28px 32px 28px 32px;
  border-top: #f1f2f3 1px solid;
  text-align: center;
}

.EndChatPrompt:before {
  content: "";
  position: absolute;
  inset: 0 0 -40px;
  background-color: #f6f9fc;
  z-index: -1;
}

.EndChatPrompt--collapsed {
  top: 60px;
}

.EndChatPrompt__message {
  margin: 6px 0;
  font-size: var(--widget-baseline-font-size);
  line-height: 19px;
  font-weight: 300;
  letter-spacing: 0.2px;
  color: #3f4b66;
}

.EndChatPrompt__ctaContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10px;
}

.EndChatPrompt__secondaryCta {
  margin-top: 6px;
}

.UnreadMessageCounter {
  position: absolute;
  top: -6px;
  right: -4px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 2px;
  letter-spacing: 0.2px;
  font-size: 10px;
  line-height: 1.2;
  font-weight: 500;
  background-color: var(--accentColor);
  color: #ffffff;
  transition: all 350ms ease;
}

.UnreadMessageCounter--newMessage {
  background-color: #ffffff;
  color: var(--accentColor);
}

.IconButton {
  position: relative;
  width: 32px;
  height: 44px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  outline: none;
  background: none;
  border: none;
  appearance: none;
  cursor: pointer;
  transition: opacity 0.16s cubic-bezier(0.5, 1, 0.89, 1);
}

.IconButton[disabled] {
  opacity: 0.6;
  cursor: default;
}

.IconButton:before {
  content: "";
  position: absolute;
  inset: -2px;
  box-shadow: 0 0 0 2px rgba(77, 144, 254, 1), inset 0 0 0 2px rgba(255, 255, 255, 0.9);
  opacity: 0;
  transition: opacity 150ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

.IconButton:focus-visible {
  outline: none;
}

.IconButton:focus-visible:before {
  opacity: 1;
}

.Avatar {
  object-fit: cover;
  object-position: center;
  border-radius: 6.5px;
}

.Avatar--small {
  width: 24px;
  height: 24px;
  max-width: 24px;
  filter: drop-shadow(0px 2px 5px rgba(50, 50, 93, 0.1))
    drop-shadow(0px 1px 1.5px rgba(0, 0, 0, 0.07));
  border-radius: 6px;
}

.Avatar--medium {
  width: 30px;
  height: 30px;
  max-width: 30px;
  filter: drop-shadow(0px 2px 5px rgba(50, 50, 93, 0.1))
    drop-shadow(0px 1px 1.5px rgba(0, 0, 0, 0.07));
}

.Avatar--large {
  width: 40px;
  height: 40px;
  max-width: 40px;
  box-shadow: 0px 5.11875px 9.34375px -2.84375px rgba(50, 50, 93, 0.25),
    0px 3.0875px 6.09375px -3.00625px rgba(0, 0, 0, 0.1);
}

.Avatar--xlarge {
  width: 64px;
  height: 64px;
  max-width: 64px;
  box-shadow: 0px 6.3px 11.5px -3.5px rgba(50, 50, 93, 0.25),
    0px 3.8px 7.5px -3.7px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.Header {
  padding-right: 8px;
  min-height: 56px;
  height: 56px;
  flex-shrink: 0;
  display: flex;
  column-gap: 10px;
  align-items: center;
  overflow: hidden;
  border-radius: 8px 8px 0px 0px;
  background-color: transparent;
}

.Header--newMessage {
  background-color: var(--accentColor);
  transition: background-color 350ms ease;
}

.Header__button {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0;
  gap: 16px;
  font-family: "sohne-var";
  outline: none;
  appearance: none;
  border: none;
  cursor: default;
  transform: translateX(-32px);
  background: none;
  color: #0a2540;
  background-color: transparent;
  transition: 0.2s cubic-bezier(0, 0.55, 0.58, 1);
}

.Header__button:before {
  content: "";
  position: absolute;
  inset: -2px -2px -2px 6px;
  box-shadow: 0 0 0 2px rgba(77, 144, 254, 1), inset 0 0 0 2px rgba(255, 255, 255, 0.9);
  opacity: 0;
  transition: opacity 150ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

.Header__button:focus-visible:before {
  opacity: 1;
}

.Header__button--newMessage {
  color: #fff;
  transition: 0.2s 0.05s cubic-bezier(0, 0.55, 0.58, 1);
  background-color: transparent;
}

.Header__button[disabled] {
  cursor: default;
  pointer-events: none;
}

.Header__button--collapsed {
  cursor: pointer;
  padding-left: 16px;
  transform: translateX(0px);
}

.Header__avatarContainer {
  position: relative;
  opacity: 0;
  transition: 0.1s cubic-bezier(0, 0.55, 0.58, 1);
}

.Header__avatarContainer--collapsed {
  opacity: 1;
  transition: 0.2s 0.05s cubic-bezier(0, 0.55, 0.58, 1);
}

.Header__title {
  margin: 0;
  font-size: var(--widget-baseline-font-size);
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.Header__icons {
  flex-shrink: 0;
  display: grid;
  grid: auto / repeat(2, 32px);
  justify-content: end;
}

.Header__icons--collapsed {
  width: 32px;
}

.Header__notificationIcon--collapsed,
.Header__collapseIcon--collapsed {
  opacity: 0;
  pointer-events: none;
}

.Header__avatar {
  position: relative;
}

.Header__messageCounter {
  position: absolute;
  top: -6px;
  right: -4px;
}

.MessageInput__sizeBox {
  position: relative;
  flex-shrink: 0;
  animation: MessageInputSizeBoxIn 600ms cubic-bezier(0.5, 1.5, 0.4, 1.05) forwards;
  will-change: height;
}

.MessageInput__form--isAnimatingIn {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  animation: MessageInput__formFadeIn 600ms cubic-bezier(0.5, 1.5, 0.4, 1.05) forwards;
  z-index: 4;
}

.MessageInput__form--nudge {
  transform: translateY(-20px);
}

.MessageInput__form > [data-paste-element="MESSAGE_INPUT_BOX"] {
  margin-bottom: 8px;
  background: #f6f9fc;
  border-radius: 8px;
}

.MessageInput__form > [data-paste-element="MESSAGE_INPUT_BOX"]:hover,
.MessageInput__form > [data-paste-element="MESSAGE_INPUT_BOX"]:focus-within {
  box-shadow: none;
}

.MessageInput__textarea {
  appearance: none;
  background: #f6f9fc;
  border: none;
  padding: 8px 0 8px 10px;
  box-shadow: none;
  display: block;
  color: inherit;
  font-size: var(--widget-baseline-font-size);
  line-height: 24px;
  font-weight: 300;
  font-family: inherit;
  outline: none;
  resize: none;
  width: 100%;
  max-height: 256px;
}

.MessageInput__textarea::placeholder {
  color: #727f96;
  font-size: var(--widget-baseline-font-size);
}

.MessageInput__textarea::-webkit-scrollbar {
  width: 8px;
  background-color: transparent;
}

.MessageInput__textarea::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: #c4ccd8;
}

.MessageInput__nudgeStretch {
  position: absolute;
  height: 30px;
  right: 8px;
  bottom: 8px;
  left: 8px;
  background: #f6f9fc;
  border-radius: 8px;
  animation: MessageInputNudgeStretch 0.4s cubic-bezier(0.65, 0, 0.32, 1) forwards;
  z-index: -1;
}

@keyframes MessageInputSizeBoxIn {
  from {
    height: 0px;
  }

  to {
    height: 52px;
  }
}

@keyframes MessageInputFormFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes MessageInputNudgeStretch {
  0% {
    transform: translateY(-20px);
  }

  50% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(-20px);
  }
}

.AnimatableChatArea__typingArea {
  height: 0px;
  transition: 300ms cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: height;
}

.AnimatableChatArea__typingArea--active {
  height: 94px;
  transition: 600ms cubic-bezier(0.5, 1.5, 0.4, 1.05);
}

.AnimatableChatArea__typingArea--noAnimation {
  transition: none;
}

.ChatEndedMessage {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 12px 0;
  font-size: var(--widget-baseline-font-size);
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0.2px;
  color: #727f96;
}

.FocusableMessageBox {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-bottom: 8px;
}

.FocusableMessageBox--firstOfStack {
  margin-top: 8px;
}

.FocusableMessageBox:before {
  content: "";
  position: absolute;
  inset: -2px;
  box-shadow: 0 0 0 2px rgba(77, 144, 254, 1), inset 0 0 0 2px rgba(255, 255, 255, 0.9);
  opacity: 0;
  transition: opacity 150ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

.FocusableMessageBox:focus-visible {
  outline: none;
}

.FocusableMessageBox:focus-visible:before {
  opacity: 1;
}

.MessageTimeStamp {
  position: absolute;
  filter: drop-shadow(0px 15px 35px rgba(60, 66, 87, 0.12))
    drop-shadow(0px 5px 15px rgba(0, 0, 0, 0.08));
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: 150ms ease-out;
  pointer-events: none;
}

.MessageTimeStamp--left {
  left: -60px;
}

.MessageTimeStamp--right {
  right: -60px;
}

.MessageBodyLink {
  color: var(--accentColor);
  text-decoration: none;
  transition: 150ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

.MessageBodyLink--inverse {
  color: #FFFFFF;
}

@media (pointer: fine) {
  .MessageBodyLink:hover {
    color: var(--linkHoverColor);
  }
}

@media (pointer: coarse) {
  .MessageBodyLink:hover {
    color: var(--linkHoverColor);
  }
}

.MessageBubble:hover .MessageBubble__messageTimeStamp {
  opacity: 1;
  transition: 200ms ease-out 800ms;
}

.Spinner {
  transform-origin: center;
  animation: 4.25s linear 0s infinite SpinnerRotate;
}

.Spinner--sizeMedium {
  width: 20px;
  height: 20px;
}

.Spinner--sizeLarge {
  width: 40px;
  height: 40px;
}

.Spinner__loadingCircle {
  transform-origin: center;
  stroke-dasharray: 96;
  animation: 1.5s ease-in-out 0s infinite SpinnerLoadingCircleRotate;
}

@keyframes SpinnerRotate {
  0%, 15% {
    stroke-dashoffset: 96;
    transform: rotate(0deg);
  }

  50%, 75% {
    stroke-dashoffset: 4;
    transform: rotate(45deg);
  }
  100% {
    stroke-dashoffset: 96;
    transform: rotate(360deg);
  }
}

@keyframes SpinnerLoadingCircleRotate {
  0% {
    transform: rotateZ(0deg);
  }

  100% {
    transform: rotateZ(360deg);
  }
}

.PostEngagementMessageBubble:hover .PostEngagementMessageBubble__messageTimeStamp {
  opacity: 1;
  transition: 200ms ease-out 800ms;
}

.PostEngagementMessageBubble:hover .PostEngagementMessageBubble__messageTimeStamp--hidden {
  opacity: 0;
}

.SelectScoreInput__headerCopy {
  font-size: var(--widget-baseline-font-size);
  line-height: 24px;
  letter-spacing: 0.2px;
  font-weight: 300;
  color: #3f4b66;
  margin: 0 0 12px 0;
}

.SelectScoreInput__inputsWrapper {
  display: flex;
  height: 32px;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0px 2px 5px rgba(60, 66, 87, 0.08), 0px 1px 1px rgba(0, 0, 0, 0.12);
}

.SelectScoreInput__button {
  flex: 1;
  outline: none;
  appearance: none;
  border: none;
  cursor: pointer;
  background-color: #fff;
  font-size: var(--widget-baseline-font-size);
  font-family: "sohne-var";
  font-weight: 300;
  color: #3f4b66;
  margin: 0;
  padding: 0;
  border-right: 1px solid #727f96;
  transition: 150ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

.SelectScoreInput__button:first-of-type {
  border-radius: 8px 0 0 8px;
}

.SelectScoreInput__button:last-of-type {
  border-radius: 0 8px 8px 0;
  border-right: none;
}

.SelectScoreInput__button--selected {
  background-color: var(--accentColor);
  color: #f6f9fb;
  font-weight: 400;
  pointer-events: none;
}

.SelectScoreInput__button[disabled] {
  background-color: #e7ecf1;
  cursor: default;
}

.SelectScoreInput__button--selected[disabled] {
  background-color: #727f96;
  color: #f6f9fb;
  font-weight: 400;
  cursor: default;
}

/* Todo: Revisit this during polish */
/* .SelectScoreInput__button:hover {
  background-color: #635bff;
  color: #f6f9fb;
  font-weight: 400;
} */

.SelectScoreInput__button:focus-visible {
  z-index: 1;
  box-shadow: 0 0 0 2px #4d90fe, inset 0 0 0 2px hsla(0, 0%, 100%, 0.9);
}

.SelectScoreInput__footerCopy {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  line-height: 24px;
  letter-spacing: 0.2px;
  font-weight: 300;
  color: #3f4b66;
  margin: 4px 0 0 0;
}

.PostEngagementSurveyForm {
  display: flex;
  flex-direction: column;
  width: 230px;
  background-color: #f6f9fc;
}

.PostEngagementSurveyForm__formFieldSet {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Textarea Input */
.PostEngagementSurveyForm__textArea {
  appearance: none;
  outline: none;
  border: none;
  border-radius: 8px;
  padding: 12px 12px 36px 12px;
  font-size: var(--widget-baseline-font-size);
  line-height: 24px;
  color: #3f4b66;
  background-color: #fff;
  font-family: "sohne-var";
  font-weight: 300;
  resize: none;
  box-shadow: 0px 2px 5px rgba(60, 66, 87, 0.08), 0px 1px 1px rgba(0, 0, 0, 0.12);
}

.PostEngagementSurveyForm__textArea::placeholder {
  color: #727f96;
}

.PostEngagementSurveyForm__textArea[disabled] {
  background-color: #e7ecf1;
}

/* TODO: Revisit these styles for accessibility */
/* .PostEngagementSurveyForm__textArea:focus {
  box-shadow: 0px 2px 5px rgba(60, 66, 87, 0.08), 0px 1px 1px rgba(0, 0, 0, 0.12);
}

.PostEngagementSurveyForm__textArea:focus-visible {
  box-shadow: 0 0 0 2px #4d90fe, inset 0 0 0 2px hsla(0, 0%, 100%, 0.9);
} */

/* Checkbox Input */
.PostEngagementSurveyForm__checkInputField {
  display: flex;
  align-items: flex-start;
  font-size: var(--widget-baseline-font-size);
  font-family: "sohne-var";
  font-weight: 300;
  color: #3f4b66;
  line-height: 24px;
  margin: 8px 0 20px 0;
}

.PostEngagementSurveyForm__checkbox {
  position: relative;
  appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin: 4px 8px 0 0;
  background-color: #fff;
  border-radius: 3px;
  box-shadow: 0px 2px 5px rgba(60, 66, 87, 0.08), 0px 1px 1px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: 150ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

.PostEngagementSurveyForm__checkbox--isChecked {
  background-color: var(--accentColor);
  cursor: pointer;
}

.PostEngagementSurveyForm__checkbox--isChecked::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: url(/live-chat-statics-srv/assets/3b98f8616dc3ba0c8050.svg);
}

.PostEngagementSurveyForm__checkbox--isChecked[disabled] {
  background-color: #727f96;
}

.PreEngagementInterestOption {
  display: flex;
}

.PreEngagementInterestOption__button {
  position: relative;
  padding: 12px 16px;
  background-color: #ffffff;
  color: #3f4b66;
  border: 1px solid #68758c;
  border-radius: 8px;
  margin: 0 0 0 auto;
  max-width: 74%;
  font-family: "sohne-var";
  text-align: left;
  cursor: pointer;
  transition: 150ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

.PreEngagementInterestOption__button--selected {
  color: #ffffff;
  background-color: #68758c;
  cursor: default;
}

.PreEngagementInterestOption__button:hover {
  color: #ffffff;
  background-color: #68758c;
}

.PreEngagementInterestOption__button:before {
  content: "";
  position: absolute;
  inset: -3px;
  box-shadow: 0 0 0 2px rgba(77, 144, 254, 1), inset 0 0 0 2px rgba(255, 255, 255, 0.9);
  opacity: 0;
  transition: opacity 150ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

.PreEngagementInterestOption__button:focus-visible {
  outline: none;
}

.PreEngagementInterestOption__button:focus-visible:before {
  opacity: 1;
}

.PreEngagementInterestOption__button:disabled {
  color: #3f4b66;
  background-color: #f6f9fc;
  border: none;
}

.PreEngagementInterestOption__label {
  margin: 0;
  padding: 0;
  color: inherit;
  white-space: pre-wrap;
  word-break: break-word;
  line-height: 24px;
  font-weight: 300;
  font-size: var(--widget-baseline-font-size);
}

.SelectCountryInput {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 40px;
  border-radius: 8px;
  background-color: #fff;
  border: none;
  box-shadow: 0px 2px 5px rgba(60, 66, 87, 0.08), 0px 1px 1px rgba(0, 0, 0, 0.12);
}

.SelectCountryInput__input {
  width: 100%;
  height: 100%;
  appearance: none;
  outline: none;
  padding: 10px 22px 10px 12px;
  font-size: var(--widget-baseline-font-size);
  color: #3f4b66;
  font-family: "sohne-var";
  font-weight: 300;
  border: none;
  border-radius: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-appearance: none;
}

.SelectCountryInput__input[disabled] {
  background-color: #e7ecf1;
  opacity: 1;
}

.SelectCountryInput__caret {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  pointer-events: none;
}

.TextInputField {
  position: relative;
  display: flex;
  width: 100%;
  height: 40px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0px 2px 5px rgba(60, 66, 87, 0.08), 0px 1px 1px rgba(0, 0, 0, 0.12);
}

.TextInputField__input {
  width: 100%;
  border: none;
  outline: none;
  color: #3f4b66;
  border-radius: 8px;
  font-size: var(--widget-baseline-font-size);
  line-height: 14.21px;
  font-family: "sohne-var";
  font-weight: 300;
  padding: 5px 12px;
  border-radius: 8px;
}

.TextInputField__input[disabled] {
  background-color: #e7ecf1;
}

.TextInputField__input::placeholder {
  color: #727f96;
}

/* Focusing the button with a keyboard */
/* .TextInputField__input:focus-visible {
  box-shadow: 0 0 0 2px #4d90fe, inset 0 0 0 2px hsla(0, 0%, 100%, 0.9);
} */

.PreEngagementForm {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: #f6f9fc;
}

.PreEngagementForm__formFieldSet {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.PreEngagementForm__headerCopy {
  font-size: var(--widget-baseline-font-size);
  touch-action: none;
  line-height: 24px;
  letter-spacing: 0.2px;
  font-weight: 300;
  color: #3f4b66;
  margin: 0;
  padding-bottom: 12px;
}

.LinkCard {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  padding: 12px;
  background-color: #ffffff;
  box-shadow: 0px 2px 5px rgba(60, 66, 87, 0.08), 0px 1px 1px rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  text-decoration: none;
}

.LinkCard:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px #4d90fe, inset 0 0 0 2px hsla(0, 0%, 100%, 0.9);
}

.LinkCard__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  object-fit: cover;
  object-position: center;
  border-radius: 3px;
}

.LinkCard__description {
  display: flex;
  flex-direction: column;
  color: #414552;
  font-size: var(--widget-baseline-font-size);
  line-height: 1.13;
  height: 32px;
}

.LinkCard__label {
  color: var(--accentColor);
}

.PreEngagementMessageBubble:hover .PreEngagementMessageBubble__messageTimeStamp {
  opacity: 1;
  transition: 200ms ease-out 800ms;
}

.PreEngagementMessageBubble:hover .PreEngagementMessageBubble__messageTimeStamp--hidden {
  opacity: 0;
}

.PrivacyPolicy {
  max-width: 250px;
  margin: 0 auto;
}

.PrivacyPolicy__content {
  margin: 0;
  text-align: center;
  font-size: 11px;
  line-height: 17px;
  font-weight: 300;
  /* Monochrome/Slate 3 */
  color: #727f96;
}

.PrivacyPolicy__link {
  color: var(--accentColor);
  text-decoration: none;
  transition: 150ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

.PrivacyPolicy__link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px #4d90fe, inset 0 0 0 2px hsla(0, 0%, 100%, 0.9);
}

@media (pointer: fine) {
  .PrivacyPolicy__link:hover {
    color: var(--linkHoverColor);
  }
}

@media (pointer: coarse) {
  .PrivacyPolicy__link:hover {
    color: var(--linkHoverColor);
  }
}

.TypingIndicator {
  position: absolute;
  left: 0px;
  opacity: 0;
  transition: 600ms cubic-bezier(0.5, 1.5, 0.4, 1.05);
  z-index: -1;
}

.TypingIndicator--active {
  opacity: 1;
}

.TypingIndicator__icon {
  position: absolute;
  bottom: -32px;
}
.TypingIndicator__ellipse--one {
  transform-origin: left center;
  animation: 3.2s TypingIndicatorRotateOne cubic-bezier(0.42, 0, 0.58, 1) infinite;
}

.TypingIndicator__ellipse--two {
  transform-origin: left center;
  animation: 3.2s TypingIndicatorRotateTwo cubic-bezier(0.42, 0, 0.58, 1) infinite;
}

.TypingIndicator__bubble {
  opacity: 0.3;
  animation: 3.2s TypingIndicatorBubbleStep cubic-bezier(0.42, 0, 0.58, 1) infinite;
}

.TypingIndicator__bubble--two {
  animation-delay: .8s;
}

.TypingIndicator__bubble--three {
  animation-delay: 1.6s;
}

@keyframes TypingIndicatorRotateOne {
  0%, 100% {
    transform: scale(1, 1) translate(0px, 0px);
  }

  25% {
    transform: scale(1.21, 1.27) translate(-6px, -24px);
  }

  50% {
    transform: scale(0.90, 0.95) translate(-10px, -34px)
  }

  75% {
    transform: scale(1.19, 1.25) translate(-27px, -14px);
  }
}


@keyframes TypingIndicatorRotateTwo {
  0%, 100% {
    transform: scale(1) translate(0px, 0px);
  }

  25% {
    transform: scale(0.72) translate(34px, 20px);
  }

  50% {
    transform: scale(0.91) translate(40px, 25px);
  }

  75% {
    transform: scale(0.75) translate(58px, -11px);
  }
}

@keyframes TypingIndicatorBubbleStep {
  0%, 50%, 100% {
    opacity: 0.3
  }

  25% {
    opacity: 1
  }
}

.MessagingCanvasPhase__gradientBar {
  background: linear-gradient(
    90deg,
    var(--stopColorSix, #02bcf5) 0%,
    var(--stopColorSeven, #635bff) 30.73%,
    var(--stopColorEight, #9966ff) 58.33%,
    var(--stopColorNine, #8d90f4) 100%
  );
}

@keyframes MessagingCanvasFadeIn {
  to {
    opacity: 1;
  }
}

.CollapsedToast {
  display: flex;
  align-items: center;
  font-family: "sohne-var";
  outline: none;
  appearance: none;
  border: none;
  background: none;
  cursor: pointer;
}

.CollapsedToast:before {
  content: "";
  position: absolute;
  inset: -2px 0px -2px 2px;
  box-shadow: 0 0 0 2px rgba(77, 144, 254, 1), inset 0 0 0 2px rgba(255, 255, 255, 0.9);
  opacity: 0;
  transition: opacity 150ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

.CollapsedToast:focus-visible:before {
  opacity: 1;
}

.CollapsedToast__title {
  margin: 0 0 0 16px;
  padding: 5px 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.2px;
  color: #0a2540;
  padding: 4px 104px 4px 0;
}

.Toast__title {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.2px;
  color: #0a2540;
}

.Toast__message {
  margin: 6px 0;
  font-size: var(--widget-baseline-font-size);
  line-height: 19px;
  font-weight: 300;
  letter-spacing: 0.2px;
}

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

@keyframes CollapsedToastFadeOut {
  0% {
    opacity: 1;
  }
  55% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    transform: translateY(-18px);
  }
}

@keyframes CloseButtonFadeIn {
  to {
    opacity: 1;
  }
}

@keyframes CloseButtonFadeOut {
  to {
    opacity: 0;
  }
}

.RootContainerBackground__frostedGlass {
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: radial-gradient(
      106.19% 66.35% at 50% 50%,
      rgba(255, 255, 255, 0.9) 0%,
      rgba(255, 255, 255, 0) 100%
    ),
    rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  clip-path: inset(0 round 8px);
  transition: 0.36s cubic-bezier(0.5, 1, 0.89, 1);
  will-change: clip-path;
}

.RootContainerBackground__frostedGlass--toast {
  /* toast bottom margin = 32px */
  /* toast height = 154px */
  clip-path: inset(calc(100% - 186px) 0 32px 0 round 8px);
}

@keyframes RootContainerBackgroundNudgeAnimation {
  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}

.OffSurfaceModal__body {
  position: relative;
  padding: 54px;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0px 13.5px 27px -12.4px rgba(50, 50, 93, 0.25), 0px 8.1px 16.2px -8.1px rgba(0, 0, 0, 0.1);
  width: 545px;
  max-width: 100%;
  opacity: 0;
  transform: scale(0.8);
  transition: 500ms cubic-bezier(0.65, 0, 0.35, 1);
}

.OffSurfaceModal__actions {
  margin-top: 16px;
  display: flex;
  gap: 18px;
}

.RootContainer {
  padding: 40px var(--widget-horizontal-spacing) 0;
}

@keyframes RootContainerSwipeIn {
  to {
    transform: translateX(0);
  }
}

@keyframes RootContainerMessagingAreaSwipeUp {
  from {
    opacity: 0;
    /* toast height = 154px */
    /* toast bottom margin = 32px */
    transform: translateY(calc(100% - (154px + 32px)));
  }
}

@keyframes RootContainerNudgeAnimation {
  0% {
    transform: translateY(20px);
  }

  50% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(20px);
  }
}

@media (min-width: 600px) {
  @font-face {
    font-family: "sohne-var";
    src: url(/live-chat-statics-srv/assets/b0d65fa4e964485473f5.woff2) format("woff2-variations");
    font-weight: 1 1000;
    font-display: block;
  }
}

@media (max-width: 599px) {
  @font-face {
    font-family: "sohne-var";
    src: url(/live-chat-statics-srv/assets/b0d65fa4e964485473f5.woff2) format("woff2-variations");
    font-weight: 1 1000;
    font-display: swap;
  }
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  background-color: rgba(255, 255, 255, 0) !important;
}

button {
  -webkit-tap-highlight-color: transparent;
}

html {
  overflow: hidden;
}


/*# sourceMappingURL=app.39e4229cf31511948db4.css.map*/