body {
  font-family: "Raleway", sans-serif;
}

.u-btn {
  all: unset;
  cursor: pointer;
}

.chatbox {
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.25);
  bottom: -5px;
  position: fixed;
  transform: translatey(23.5em);
  transition: all 300ms ease;
  width: 18.5em;
  bottom: 25px;
  left: 1px;
}

.chatbox--is-visible {
  transform: translatey(0);
}

.chatbox__header {
  background: #4e4e4e;
  border-top-right-radius: 0.5em;
  border-top-left-radius: 0.5em;
  display: flex;
  justify-content: space-between;
  padding: 0 0.75em;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.chatbox__header-cta-text {
  color: #fff;
  font-weight: 300;
  font-size: 1.025rem;
}

.chatbox__header-cta-icon {
  color: #fff;
  margin-right: 0.75em;
}

.chatbox__header-cta-btn {
  background: none;
  border: none;
  color: #aaa;
  padding: 0.5em;
  transition: all 300ms ease;
}

.chatbox__header-cta-btn:hover {
  color: #fff;
}

.chatbox__display {
  background: #ededed;
  height: 20em;
  overflow: auto;
  padding: 0.75em;
}

.chatbox__display-chat {
  background: #fff;
  border-radius: 0.5em;
  color: #666;
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1.5;
  padding: 0.75em;
  text-align: justify;
}

.chatbox__form {
  display: flex;
}

.chatbox__form-input {
  border: none;
  color: #222;
  font-size: 0.9rem;
  font-weight: 300;
  padding: 1.25em 1em;
  width: 100%;
}

.chatbox__form-input:required {
  box-shadow: none;
}

.chatbox__form-submit {
  background: none;
  border: none;
  color: #aaa;
  padding: 1em;
}