.chat-float {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 70px;
  height: 70px;
  border-radius: 50px 50px 50px 50px;
  border: solid 4px white;
  z-index: 1000; }
  .chat-float i {
    font-size: 2.2rem;
    line-height: 2.2rem;
    color: white; }

.chat {
  position: fixed;
  bottom: 190px;
  right: 30px;
  width: 300px;
  height: auto;
  border-radius: 10px 10px 0 10px;
  z-index: 999;
  background-color: beige; }
  .chat .chat-title {
    padding: 10px;
    border-radius: 10px 10px 0 0; }
  .chat .chat-content .avatar {
    border-radius: 50px 50px 50px 50px;
    width: 60px;
    height: 60px;
    margin: 20px;
    position: relative; }
  .chat .chat-content .msg {
    color: black;
    margin: 20px 20px 20px 0;
    font-size: 1rem;
    line-height: 1rem; }
  .chat .chat-input textarea {
    margin: 0 10px;
    padding: 10px 20px;
    border-radius: 50px; }
  .chat .chat-input button {
    margin: 0 10px 0 0;
    width: 42px;
    height: 42px;
    border-radius: 50px; }

@media (max-width: 575.98px) {
  .chat-float {
    bottom: 100px;
    right: 37px;
    width: 50px;
    height: 50px; }
    .chat-float i {
      font-size: 1.7rem;
      line-height: 1.7rem;
      color: white; }

  .chat {
    bottom: 150px;
    right: 37px; } }
.button-jittery {
  animation: jittery 4s infinite; }
  .button-jittery:hover {
    animation: heartbeat 0.2s infinite; }

@keyframes jittery {
  5%,
    50% {
    transform: scale(1); }
  10% {
    transform: scale(0.9); }
  15% {
    transform: scale(1.15); }
  20% {
    transform: scale(1.15) rotate(-5deg); }
  25% {
    transform: scale(1.15) rotate(5deg); }
  30% {
    transform: scale(1.15) rotate(-3deg); }
  35% {
    transform: scale(1.15) rotate(2deg); }
  40% {
    transform: scale(1.15) rotate(0); } }
@keyframes heartbeat {
  50% {
    transform: scale(1.1); } }

/*# sourceMappingURL=chatfloat.css.map */
