/*---------- VARIABLES ------ */

/*--------- FONTS ------- */

html {
  font-family: 'Gotham';
}

input {
  color: #171717;
}

/*========== CHAT.html ===========*/

ul {
  margin: 0;
}

.chat-bubble {
  max-width: 50%;
  min-width: 280px;
}

.company-bubbles {
  width: 100%;
}

.style--chat :not(.skip-question-option) .skip-text-block {
  display: none;
}

.display-none {
  display: none;
}

.message .company-avatar,
.greeting .company-avatar {
  opacity: 0;
  transition: opacity .2s;
}

.currentState .company-avatar {
  opacity: 1;
}

.thinking-dots {
  opacity: 0;
  visibility: hidden;
  width: 0;
  transition: all 0 .5s ease;
}

.thinking .thinking-dots {
  opacity: 1;
  visibility: visible;
  width: auto;
}

[class*="company---"] .chat-bubble-text {
  overflow: hidden;
}

[class*="company---"] .chat-bubble-text span {
  max-width: 100%;
  max-height: 6em;
  opacity: 1;
  transition: max-width 0.25s 0s ease, max-height 0.25s 0.25s ease, transform 0.25s ease;
  transform: translateX(0%);
  overflow: hidden;
  display: inline-block;
}

[class*="company---"] .question-bubble,
[class*="company---"] .response-bubble {
  transition: max-width 0.25s 0s ease, max-height 0.25s 0.25s ease;
  min-width: calc(0% + 100px);
  max-height: none;
}

[class*="company---"].thinking .chat-bubble-text span {
  max-width: 0%;
  max-height: 1.5em;
  opacity: 0;
  transform: translateX(0%);
}

[class*="company---"].thinking .question-bubble,
[class*="company---"].thinking .response-bubble {
  min-width: calc(0% + 0px);
  max-width: calc(0% + 6em);
}

.conversation {
  margin-top: 0;
  transform: none;
  padding-bottom: 4em;
}

.thinking .user---options {
  transform: translateX(10%);
  opacity: 0;
  max-height: 0em;
}

.user---options {
  transform: translateX(0%);
  opacity: 1;
  transition: all .5s 1.25s ease;
  max-height: 20em;
}

.option {
  opacity: .2;
  pointer-events: none;
}

.option.option-avaliable {
  opacity: 1;
  pointer-events: auto;
}

html {
  scroll-behavior: smooth;
}

button {
  -webkit-appearance: none;
  background: transparent;
}

button.selectorInputEnter {
  -webkit-appearance: none;
  background: #ffffff3d;
  margin-top: 2em;
  padding: 1em 2em;
  z-index: 2;
  position: relative;
  border-radius: 4px;
  margin: 1em auto 0 0;
  display: inline-block;
  color: #fff;
}

.input-container {
  text-align: right;
}

input {
  color: #171717;
  -webkit-appearance: none;
  border: 0;
  padding: 1em;
  width: 100%;
  border-radius: 3px;
}

label.visually-hidden {
  height: 0;
  visibility: hidden;
  overflow: hidden;
}

button.selectorInputEnter.no-thanks {
  background: transparent;
}

@keyframes popup {
  0% {
    transform: scale(0.2) translate(-50%, 50%);
  }
  100% {
    transform: scale(1) translate(0%, 0%);
  }
}

.question-bubble.comment-tail {
  /* animation-name: popup;*/
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.24, 0.25, 0.76, 1.55);
  transform-origin: bottom left;
  z-index: 1;
}

.company-avatar {
  z-index: 2;
}