@media (min-width: 1152px) {
  #chat {
    z-index: 1031;
    right: 93px;
    bottom: 5px;
  }

  #chat-button {
    right: 100px;
    bottom: 8px;
    overflow: hidden;
  }
}

@media (max-width: 1151px ){
  #chat {
    z-index: 1031;
    right: 0px;
    bottom: 0px;
  }

  #chat-button {
    width: 80px;
    height: 80px;
    right: 85px;
    bottom: 6px;
  }
}

#chat {
  display: none;
  position: fixed;
  bottom: 0;
  box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease-in-out;
}


#chat-button {
  position: fixed;
  width: 60px;
  height: 60px;
  background-color: rgb(54, 129, 254);
  color: #fff;
  font-size: 30px;
  line-height: 30px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 2px 8px 0 rgba(117, 117, 117, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

#chat-button:hover {
  cursor: pointer;
  background-color: rgba(54, 129, 254, 0.8);
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.5);
}

.zLmnm p {
  font-size: 13px;
}