@import url(https://fonts.googleapis.com/css?family=Roboto);

/*Container*/
.botui-container {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  font-family: "Roboto", serif;
  font-size: 16px;
  overflow-x: visible;
}

.botui-messages-container {
  background-image: url("https://cdn.glitch.com/26f8f3d5-8d84-4b08-9e5e-060d5742b271%2F1024px-Newark_NJ_Seal-faded-2.png?v=1563896809211");
  background-size: 80%;
  background-repeat: no-repeat;
  background-position: center 5vh;
  border:solid #f8f9fa;
  box-sizing: border-box;
  height: 100%;
  margin: 0;
  overflow-y: scroll;
  overflow-x: visible;
  padding: 10px 20px;
  width: 100%;
  z-index: 300;
}
.botui-actions-container {
  /*background: rgb(250,253,255);
  border-top: 1px solid #ddd;*/
  background: white;
  box-sizing: border-box;
  padding: 10px 20px;
  z-index: 1200;
}
.botui-actions-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  overflow-x: auto;
  width: 100%;
}
@media screen and (max-width: 900px) {
  .botui-messages-container {
    padding: 10px;
    width: 100%;
  }
  .botui-actions-container {
    width: 100%;
  }
}

/*Messages*/
.botui-message {
  min-height: 30px;
}
/*Bot Messages*/
.botui-message-content {
  background-color: #ebebeb;
  border-radius: 18px;
  color: #595a5a;
  padding: 7px 13px;
  position: relative;
}

/*Human Messages*/
.human.botui-message-content {
  background-color: var(--dodgerblue);
  color: #f7f8f8;
}
.botui-message-content.text {
  line-height: 1.3;
}
.botui-message-content.loading {
  background-color: rgba(206, 206, 206, 0.5);
  line-height: 1.3;
  text-align: center;
}
.botui-message-content.embed {
  padding: 5px;
  border-radius: 5px;
}
.botui-message-content-link {
  color: #919292;
}
/**/
.botui-actions-text-input {
  border: 0;
  outline: 0;
  border-radius: 0;
  padding: 5px 7px;
  font-family: "Roboto", sans-serif;
  background-color: transparent;
  color: #595a5a;
  border-bottom: 1px solid #919292;
}

.botui-actions-text-submit {
  color: #fff;
  width: 30px;
  padding: 5px;
  height: 30px;
  line-height: 1;
  border-radius: 50%;
  border: 1px solid #919292;
  background: #777979;
}

.botui-actions-buttons-button {
  background: var(--dodgerblue);
  border: 0px solid var(--dodgerblue);
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  margin: 5px !important;
  padding: 7px 15px;
  transition: 0.15s all ease-in-out;
  white-space: nowrap;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
}
.botui-actions-buttons-button:hover {
  background: white;
  border-width: 2px;
  color: var(--dodgerblue);
  padding: 5px 13px;
}
/*
.botui-actions-buttons-button:active {
  box-shadow: none;
  position: relative;
  top: 2px;
}*/

.botui-actions-text-select {
  border: 0;
  outline: 0;
  border-radius: 0;
  padding: 5px 7px;
  font-family: "Roboto", sans-serif;
  background-color: transparent;
  color: #595a5a;
  border-bottom: 1px solid #919292;
}

.botui-actions-text-searchselect {
  border: 0;
  outline: 0;
  border-radius: 0;
  padding: 5px 7px;
  font-family: "Roboto", sans-serif;
  background-color: transparent;
  color: #595a5a;
  border-bottom: 1px solid #919292;
}

.botui-actions-text-searchselect .dropdown-toggle {
  border: none !important;
}

.botui-actions-text-searchselect .selected-tag {
  background-color: transparent !important;
  border: 0 !important;
}

.slide-fade-enter-active {
  transition: all 0.3s ease;
}

.slide-fade-enter,
.slide-fade-leave-to {
  opacity: 0;
  transform: translateX(-10px);
}

.dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 0.5rem;
  display: inline-block;
  background-color: #919292;
}

.dot:nth-last-child(1) {
  margin-left: 0.3rem;
  animation: loading 0.6s 0.3s linear infinite;
}

.dot:nth-last-child(2) {
  margin-left: 0.3rem;
  animation: loading 0.6s 0.2s linear infinite;
}

.dot:nth-last-child(3) {
  animation: loading 0.6s 0.1s linear infinite;
}

@keyframes loading {
  0% {
    transform: translate(0, 0);
    background-color: #ababab;
  }
  25% {
    transform: translate(0, -3px);
  }
  50% {
    transform: translate(0, 0);
    background-color: #ababab;
  }
  75% {
    transform: translate(0, 3px);
  }
  100% {
    transform: translate(0, 0);
  }
}
