#chat2 .form-control {
  border-color: transparent;
}

#chat2 .form-control:focus {
  border-color: transparent;
  box-shadow: inset 0px 0px 0px 1px transparent;
}

.divider:after,
.divider:before {
  content: "";
  flex: 1;
  height: 1px;
  background: #eee;
}

.chat-btn {
  height: 25px;
  padding: 0rem 0.5rem;
  font-size: 16px;
  margin: 4px;
  border: 1px solid #325297;
  background-color: white;
  color: #325297;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}

.chat-btn:hover {
  background-color: #325297;
  color: white;
}

.loader {
  width: 70px;
  height: 12px;
  background: radial-gradient(circle 6px at 6px center, #606060 100%, transparent 0), radial-gradient(circle 6px at 6px center, #606060 100%, transparent 0);
  background-size: 16px 16px;
  background-repeat: no-repeat;
  position: relative;
  animation: ballX 1s linear infinite;
}

.loader:before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #807f7f;
  inset: 0;
  margin: auto;
  animation: moveX 1s cubic-bezier(0.5, 300, 0.5, -300) infinite;
}

@keyframes ballX {
  0%, 25%, 50%, 75%, 100% {
    background-position: 25% 0, 75% 0;
  }
  40% {
    background-position: 25% 0, 85% 0;
  }
  90% {
    background-position: 15% 0, 75% 0;
  }
}
@keyframes moveX {
  100% {
    transform: translate(0.15px);
  }
}

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