@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
*{
    text-decoration: none;
     font-family:'Roboto',Arial, Helvetica, sans-serif;
}
body,html{
    width: 100%;
    height:100%;
}
.chatbot-toggler {
  z-index: 1200;
  position: fixed;
  bottom: 30px;
  right: 35px;
  outline: none;
  border: none;
  height: 50px;
  width: 50px;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #724ae8;
  transition: all 0.2s ease;
}
body.show-chatbot .chatbot-toggler {
  transform: rotate(90deg);
  z-index: 1200;
}
.chatbot-toggler span {
  color: #fff;
  position: absolute;
  z-index: 1200;
}
.chatbot-toggler span:last-child,
body.show-chatbot .chatbot-toggler span:first-child {
  opacity: 0;
}
body.show-chatbot .chatbot-toggler span:last-child {
  opacity: 1;
}

a {
  text-decoration: none;
}
a:hover {
  color: black;
}