#rich-bot-container{
  position: absolute;
  z-index: 5000;
}

#rich-bot-relative{
  width: 100%;
  height: 100%;
  position: relative;
}

.rich-bot-qs-dot-box{
  width: 30px;
  height: 100%;
}

.rich-bot-qs-dot{
  width: 30px;
  height: 30px;
  border-radius: 30px;
}


/**
* ==============================================
* Dot Flashing
* ==============================================
*/
.qs-loading{
  width: 15px;
  height: 10px;
  padding: 0 15px;
  overflow: hidden;
}
.dot-flashing {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #9880ff;
  color: #9880ff;
  -webkit-animation: dot-flashing 1s infinite linear alternate;
  animation: dot-flashing 1s infinite linear alternate;
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
}

.dot-flashing::before, .dot-flashing::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
}

.dot-flashing::before {
  left: -15px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #9880ff;
  color: #9880ff;
  -webkit-animation: dot-flashing 1s infinite alternate;
  animation: dot-flashing 1s infinite alternate;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.dot-flashing::after {
  left: 15px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #9880ff;
  color: #9880ff;
  -webkit-animation: dot-flashing 1s infinite alternate;
  animation: dot-flashing 1s infinite alternate;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

@-webkit-keyframes dot-flashing {
  0% {
    background-color: #9880ff;
  }
  50%,
  100% {
    background-color: #ebe6ff;
  }
}

@keyframes dot-flashing {
  0% {
    background-color: #9880ff;
  }
  50%,
  100% {
    background-color: #ebe6ff;
  }
}

.rich-bot-qs-dot img{
  width: 100%;
  height: 100%;
}

.rich-bot-question-box{
  width: 100%;
  height: 100%;
  margin-top: 10px;
  opacity: 0;
  display: none;
}
.rich-bot-qn{
  width: calc(100% - 30px);
  margin-left: 6px;
}

.rich-bot-question-block{
  width: 100%;
  display: flex;
  flex-direction: column;
}
.rich-bot-question-text{
  display: none;
}
.rich-bot-answer-block{
  display: none;
}
.rich-bot-answer-selected{
  padding: 10px 15px;
  border-radius: 15px 0px 15px 15px;
  background: #ccc;
  color: #000;
  width: fit-content;
  margin-top: 6px;
  float: right;
  display: none;
}
.rich-bot-question-block-single{
  padding: 10px 15px;
  border-radius: 0 15px 15px 15px;
  background: #ccc;
  color: #000;
  width: fit-content;
  margin-bottom: 6px;
}
.rich-bot-question-block-first{
  padding: 10px 15px;
  border-radius: 0 15px 5px 5px;
  background: #ccc;
  color: #000;
  width: fit-content;
  margin-bottom: 6px;
}
.rich-bot-question-block-last{
  padding: 10px 15px;
  border-radius: 5px 5px 15px 15px;
  background: #ccc;
  color: #000;
  width: fit-content;
  margin-bottom: 6px;
}
.rich-bot-question-block-mid{
  padding: 10px 15px;
  border-radius: 5px;
  background: #ccc;
  color: #000;
  width: fit-content;
  margin-bottom: 6px;
}
/* .rich-bot-answer-buttons{
  display: inline-block;
  padding: 5px 15px;
  border: 2px solid #000;
  background: #000;
  color: #fff !important;
  width: fit-content;
  margin-right: 6px;
  margin-bottom: 5px;
} */

.rich-bot-qn-blocks{
  display: none;
}