body.admin-bar #online-chat {
  display: block;
}

#online-chat {
  display: none;
  z-index: 9999;
  position: fixed;
}
#online-chat .online-chat-wrapper.loading #chat-container {
  position: relative;
}
#online-chat .online-chat-wrapper.loading #chat-container:after {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 29px;
  background: #333333;
  text-align: center;
  font-size: 3rem;
  line-height: 0;
  content: "...";
  color: white;
  animation: dot 1.5s infinite;
  border-radius: 0.75rem;
}
@keyframes dot {
  0% {
    content: ".";
  }
  33% {
    content: "..";
  }
  66% {
    content: "...";
  }
  100% {
    content: ".";
  }
}
#online-chat .online-chat-wrapper #chat-container .div-4, #online-chat .online-chat-wrapper #chat-container .div-2 {
  font-size: 1.1rem;
  max-width: 90%;
  padding: 0.75rem 0.9rem 0.65rem;
  line-height: 1.32rem;
}
#online-chat .online-chat-wrapper .reset-button {
  position: absolute;
  top: 38px;
  right: 62px;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
#online-chat .online-chat-wrapper .reset-button svg {
  width: 22px;
  height: 22px;
}
