*,
*::after,
*::before {
  box-sizing: border-box;
}

/* body {
  font-family: "Raleway", sans-serif;
} */
.mt-10{
  margin-top: 10px;
}
.start-btn{
  background: transparent linear-gradient(86deg, #FDFFBF 0%, #D8FF9E 51%, #A8F6FF 100%) 0%;
    color: #000;
    width: 100px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    padding: 5px;
    float: right;
    -webkit-box-shadow: 0px 10px 8px -10px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 10px 8px -10px rgba(0,0,0,0.75);
    box-shadow: 0px 10px 8px -10px rgba(0,0,0,0.75);
}
.u-btn {
  all: unset;
  cursor: pointer;
}
.history-msg{
  background: #ededed;
  padding: 5px;
  border-radius: 10px;
  margin-bottom: 10px;
  margin-right: 5px;
}
.from{
  color: #1159f9;
  font-size: small;
}
.msg{
  font-size: large;
}
.history {
  width: 400px;
  height: 90vh;
  overflow-y: scroll;
}
.text-left{
  text-align: left;
}
.text-right{
  text-align: right;
}
#boxes{
  display: flex;
  width: 100%;
  position: fixed;
  bottom: 0px;
  z-index: 9999;
}
.select2{
  width: 100% !important;
}
.dchatbox {
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.25);
  
  margin-right: 15px;
  -webkit-transform: translatey(28.5em);
  transform: translatey(28.5em);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  width: 18.5em;
      position: fixed;
    right: 0;
    bottom: 0;
}
.chatbox {
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.25);
  bottom: 0;
  position: fixed;
  right: 1em;
  -webkit-transform: translatey(23.5em);
  transform: translatey(23.5em);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  width: 18.5em;
}
.chatbox--is-visible {
  -webkit-transform: translatey(0);
  transform: translatey(0);
}
.chatbox__header {
  background: #4e4e4e;
  border-top-right-radius: 0.5em;
  border-top-left-radius: 0.5em;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  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: 16px;
    margin: 12px 0;
}
.chatbox__header-cta-icon {
  color: #fff;
  margin-right: 0.75em;
}
.chatbox__header-cta-btn {
  background: none;
  border: none;
  color: #aaa;
  padding: 0.5em;
  -webkit-transition: all 300ms ease;
  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-size: 14px;
  line-height: 1.5;
  padding: 0.75em;
  text-align: justify;
}
.chatbox__form {
  display: -webkit-box;
  display: flex;
}
.chatbox__form-input {
  border: none;
  color: #222;
  font-size: 14px;
  padding: 1.25em 1em;
  width: 100%;
}
.chatbox__form-input:required {
  box-shadow: none;
}
.chatbox__form-submit {
  background: #1b84e7;
  border: none;
  color: #fff;
  padding: 1em;
}

button.b-transfer {
    text-align: center;
    width: 100%;
    background: #1b84e7;
    outline: none;
    border: 0;
    padding: 5px 0;
    color: #fff;
    border-radius: 0;
}