@charset "UTF-8";

#c-chatbot {
  position: fixed;
  bottom: 10px;
  right: 20px;
  z-index: calc(infinity);
}
#c-chatbot__link {
  display: flex;
  align-items: center;
  background-color: #207fef;
  border-radius: 30px;
  padding-block: 4px;
  padding-inline: 4px 20px;
  filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.3));
  transition: all .15s ease-out;
}
#c-chatbot__icon {
  display: grid;
  place-content: center;
  width: 35px;
  height: 35px;
  background-color: #fff;
  border-radius: 50%;
  margin-right: 10px;
}
#c-chatbot__glyph {
  width: 22px;
  height: 22px;
  fill: #207fef;
  transition: all .15s ease-out;
}
#c-chatbot__path {
  fill: unset;
}
#c-chatbot__text {
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.2px;
  color: #fff;
}

@media (hover: hover) {
  #c-chatbot__link:hover {
    background-color: #0f66cd;
    text-decoration: none;
    #c-chatbot__glyph {
      scale: 1.2;
      fill: #0f66cd;
    }
  }
}
@media (hover: none) {
  #c-chatbot__link:active {
    background-color: #0f66cd;
    text-decoration: none;
    #c-chatbot__glyph {
      scale: 1.2;
      fill: #0f66cd;
    }
  }
}

@media screen and (max-width: 767px) {
  #c-chatbot {
    right: 10px;
  }
  #c-chatbot__icon {
    width: 30px;
    height: 30px;
  }
  #c-chatbot__glyph {
    width: 20px;
    height: 20px;
  }
  #c-chatbot__text {
    font-size: 13px;
  }
}