
html,
body {
  font-family: "Lato", sans-serif;
}

.typing {
  position: relative;
  height: 1em;
  display: inline-flex;
  align-items: center;
}

.typing-dot {
  width: 0.4em;
  height: 0.4em;
  background-color: currentColor;
  border-radius: 50%;
  margin: 0 0.1em;
  opacity: 0;
  animation: typing-animation 1.5s infinite ease-in-out;
}

.typing-dot:nth-child(1) {
  animation-delay: 0s;
}

.typing-dot:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typing-animation {
  0%,
  60%,
  100% {
    opacity: 0.3;
    transform: translateY(0);
  }

  30% {
    opacity: 1;
    transform: translateY(-0.2em);
  }
}

.chat-enter {
  animation: fadeIn 0.2s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

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

.btn-disabled {
  opacity: 0.6;
  cursor: not-allowed;
}


main::after {
  content: "";
  display: block;
  height: 200px;
}

#options {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  width: 100%;
  z-index: 9999;
  pointer-events: auto !important;
  -webkit-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

#options:empty{
  display: none !important;
}

.option-btn {
  will-change: transform;
  cursor: pointer;
}

body[data-browser="safari"] #options {
  position: static !important;
  margin-top: 0 !important;
  border: none;
  padding: 10px;
  background: rgb(243, 244, 246);
  margin: 0px 0px 0px 58px;
  margin-top: 0px;
  border: 1px solid rgba(128, 128, 128, 0.19);
  border-radius: 16px;
  margin-left: 58px;
  border: 1px solid #80808030;
  border-radius: 16px;
  max-width: 245px;
  width: 100%;
  display: none;
}

body[data-browser="safari"] #call {
  position: static !important;
  border: none;
}

body[data-browser="safari"] #chat {
  padding-bottom: 8px;
}

html,
body {
  -webkit-touch-callout: none;
  -webkit-overflow-scrolling: touch;
}
