* {
  word-break: keep-all;
}

.chat-header {
  /* background-image: linear-gradient(105deg, #79c3a3, #03c2d4); */
}
.chat-message {
  width: 100%;
  padding: 0.8rem 1.6rem;
  display: flex;
}
.chat-left {
  align-items: flex-end;
}
.chat-right {
  justify-content: flex-end;
}
.message {
  font-family: HelveticaNeue;
  border-radius: 1rem;
  line-height: 1.43;
  padding: 0.5rem 1rem;
}
.message-left {
  color: black;
  background-color: #e4eaf4;
  border-bottom-left-radius: 0.2rem;
}
.message-right {
  color: white;
  background-color: #00aeb6;
  border-bottom-right-radius: 0.2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.message-avatar {
  width: 48px !important;
  height: 48px !important;
  border-radius: 50%;
  margin-right: 0.5rem;
  border-width: 4px;
  border-color: #e4eaf4;
}
.rounded-button {
  background-color: white;
  color: #38b2ac;
  font-weight: 600;
  border-radius: 50%;
}
.rounded-button:focus {
  outline: 0;
}
.rounded-button:hover {
  background-color: transparent;
  color: white;
  border: 1px solid white;
}
.ellie {
  background-image: url("/img/Ellie.png");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}

#guide-box {
  -ms-overflow-style: none;
}
#guide-box::-webkit-scrollbar {
  display: none;
}

::-webkit-scrollbar {
  width: 8px;
  height: 10px;
}
::-webkit-scrollbar-thumb {
  border-radius: 2px;
  background: #cbd5e0;
}

.pace {
  -webkit-pointer-events: none;
  pointer-events: none;

  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;

  position: fixed;
  top: 0;
  left: 0;
  width: 100%;

  -webkit-transform: translate3d(0, -50px, 0);
  -ms-transform: translate3d(0, -50px, 0);
  transform: translate3d(0, -50px, 0);

  -webkit-transition: -webkit-transform 0.5s ease-out;
  -ms-transition: -webkit-transform 0.5s ease-out;
  transition: transform 0.5s ease-out;
}

.pace.pace-active {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.pace .pace-progress {
  display: block;
  position: fixed;
  z-index: 2000;
  top: 0;
  right: 100%;
  width: 100%;
  height: 10px;
  background: #f6ad55;

  pointer-events: none;
}
