.chatbot {
  z-index: 101;
  position: relative;
}
.chatbot .activator {
  background-color: #A03123;
  background-image: url(/application/themes/cmc3_theme_c5_version81/images/icona.svg);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2), 0 0 10px white;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-size: 50px;
  background-position: center;
  color: #FFF;
  line-height: 50px;
  text-align: center;
  width: 60px;
  height: 60px;
  position: fixed;
  bottom: 40px;
  right: 40px;
  cursor: pointer;
}
.chatbot .activator:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
.chatbot .activator.open {
  background-image: url(/application/themes/cmc3_theme_c5_version81/images/close.svg);
  background-size: 30px;
  background-position: center;
}
.chatbot .activator .wrapper {
  position: relative;
}
.chatbot .activator .wrapper .tip {
  position: absolute;
  right: 80px;
  top: 15px;
  padding: 5px 20px;
  background-color: #000;
  color: #FFF;
  font-size: 16px;
  font-family: "MilanoUnica";
  letter-spacing: 1px;
  font-weight: 300;
  line-height: 24px;
  text-align: right;
  display: inline-block;
  white-space: nowrap;
  border-radius: 5px 0 0 5px;
  animation: tip 3s infinite;
}
.chatbot .activator .wrapper .tip:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #000;
  transform: rotate(45deg);
  right: -5px;
  top: 12px;
}
.chatbot .window {
  background-color: #FFF;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  border-radius: 4px 4px 4px 20px;
  position: fixed;
  bottom: 120px;
  right: 20px;
  width: 350px;
  height: 500px;
  max-height: calc(100% - 180px);
  display: none;
}
.chatbot .window.open {
  display: block;
}
.chatbot .window .title {
  background-color: #A03123;
  border-radius: 4px 4px 0 0;
  color: #FFF;
  height: 50px;
  font-family: "MilanoUnica";
  letter-spacing: 1px;
  font-weight: 300;
  line-height: 50px;
  padding: 0 20px;
}
.chatbot .window .wrapper {
  position: relative;
  width: 100%;
  height: calc(100% - 50px);
  padding: 0 0 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
.chatbot .window .wrapper .dialog {
  overflow-y: scroll;
  overflow-x: visible;
  padding: 30px 20px 30px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.chatbot .window .wrapper .dialog .question,
.chatbot .window .wrapper .dialog .answer {
  display: inline-block;
  font-weight: 300;
  font-size: 14px;
  position: relative;
  padding: 10px;
}
.chatbot .window .wrapper .dialog .question:before,
.chatbot .window .wrapper .dialog .answer:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.chatbot .window .wrapper .dialog .question a,
.chatbot .window .wrapper .dialog .answer a {
  display: inline-block;
  background: #9E3223;
  border-radius: 3px;
  color: #FFF;
  padding: 0 5px;
}
.chatbot .window .wrapper .dialog .question a:hover,
.chatbot .window .wrapper .dialog .answer a:hover {
  color: #9E3223;
  background-color: #DDB3AF;
}
.chatbot .window .wrapper .dialog .question {
  align-self: flex-start;
  margin-left: 40px;
  border-radius: 0 8px 8px 8px;
  background: #000;
  color: #FFF;
}
.chatbot .window .wrapper .dialog .question:before {
  left: -40px;
  background-image: url(/application/themes/cmc3_theme_c5_version81/images/avatar.png);
}
.chatbot .window .wrapper .dialog .question.think {
  margin-top: 5px;
  height: 40px;
}
.chatbot .window .wrapper .dialog .question.finalquestion {
  margin-top: 5px;
  background-color: #DDB3AF;
}
.chatbot .window .wrapper .dialog .question.finalthankyou {
  background-color: #9E3223;
}
.chatbot .window .wrapper .dialog .question table {
  margin-bottom: 20px;
}
.chatbot .window .wrapper .dialog .question table tr td {
  padding: 0 10px;
}
.chatbot .window .wrapper .dialog .question table tr td strong {
  display: block;
  margin-top: 20px;
  font-size: 16px;
}
.chatbot .window .wrapper .dialog .question table tr td em {
  font-weight: 100;
  font-size: 14px;
}
.chatbot .window .wrapper .dialog .answer {
  align-self: flex-end;
  margin-right: 40px;
  border-radius: 8px 0 8px 8px;
  background: #c7c7c7;
  color: #000;
  font-family: Arial, Helvetica, sans-serif;
}
.chatbot .window .wrapper .dialog .answer:before {
  right: -40px;
  background-color: #681F18;
  background-image: url(/application/themes/cmc3_theme_c5_version81/images/avatar_user.svg);
}
.chatbot .window .wrapper .possibleanswers {
  margin: 0;
  padding: 0;
  padding-right: 20px;
  list-style-type: none;
  display: grid;
  gap: 5px;
  grid-template-columns: 1fr 1fr;
}
.chatbot .window .wrapper .possibleanswers .possibleanswer,
.chatbot .window .wrapper .possibleanswers .close {
  opacity: 1;
  font-size: 12px;
  line-height: 15px;
  font-weight: 300;
  border: 1px solid #c7c7c7;
  border-radius: 15px;
  padding: 3px 20px;
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
}
.chatbot .window .wrapper .possibleanswers .possibleanswer:hover,
.chatbot .window .wrapper .possibleanswers .close:hover {
  color: #FFF;
  background-color: #c7c7c7;
}
.chatbot .lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  scale: 0.5;
  margin-top: -30px;
}
.chatbot .lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fff;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.chatbot .lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}
.chatbot .lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}
.chatbot .lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}
.chatbot .lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}
@keyframes tip {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-10px, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}/*# sourceMappingURL=chatbot.css.map */