/* Placeholder Color */
::-webkit-input-placeholder {
  opacity: 1;
  color: #444444; }

::-moz-placeholder {
  opacity: 1;
  color: #444444; }

::-ms-input-placeholder {
  opacity: 1;
  color: #444444; }

::-moz-placeholder {
  opacity: 1;
  color: #444444; }

.card-chat {
  background: #fff;
  font-family: 'Poppins', sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  position: fixed;
  bottom: 0;
  right: 0;
  height: 100vh;
  width: 100%; }
  .card-chat button {
    outline: none; }

.card-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #F0F3F7;
  height: 60px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 16px;
  font-weight: bold;
  color: #2E4257;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 20px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto; }
  .card-header button {
    border: none;
    outline: none;
    background: none;
    padding: 0; }

.card-body {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 100%;
  position: relative;
  max-height: 100%;
  font-family: 'Poppins', sans-serif; }

.botui-messages-container {
  padding: 20px 20px 50px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1; }

.botui-container,
.botui-app-container {
  height: 100%; }

.botui-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  max-height: calc(100% - 110px);
  overflow-y: auto; }

.botui-message {
  position: relative; }
  .botui-message:after {
    display: block;
    content: "";
    clear: both; }
  .botui-message + .botui-message {
    margin-top: 42px; }
  .botui-message .profil {
    margin-right: 15px;
    -webkit-transform: translateY(25px);
    -ms-transform: translateY(25px);
    transform: translateY(25px);
    position: absolute;
    left: 0;
    bottom: 0; }
  .botui-message img.agent {
    content: url("../images/bot-avt.svg"); }
  .botui-message-content {
    font-size: 14px;
    line-height: 22px;
    padding: 14px 16px;
    background: #F9F9F9;
    border-radius: 10px 10px 10px 0;
    position: relative;
    display: inline-block;
    margin-left: 65px; }
    .botui-message-content:before {
      content: '';
      width: 0;
      height: 0;
      border-top: 15px solid #f9f9f9;
      border-right: 13px solid transparent;
      position: absolute;
      top: 100%;
      left: 0; }
    .botui-message-content.human {
      float: right;
      border-radius: 10px 10px 0 10px;
      background: #FFD701;
      margin-left: 0; }
      .botui-message-content.human:before {
        right: 0;
        left: auto;
        border-top: 15px solid #FFD701;
        border-left: 13px solid transparent;
        border-right: none; }

.botui-actions-buttons-button {
  height: 40px;
  padding: 0 22px;
  border-radius: 20px;
  font-size: 14px;
  color: #fff;
  background: #1D2A38;
  outline: none;
  border: none;
  line-height: 36px;
  cursor: pointer;
  -webkit-transition: .3s all;
  -o-transition: .3s all;
  transition: .3s all;
  margin: 3px; }
  .botui-actions-buttons-button:hover {
    background: #FFD701;
    color: #2E4257; }

.botui-actions-container {
  padding: 10px 20px;
  background: #f9f9f9;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 110px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute; }
  .botui-actions-container > div {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1; }

.botui-actions-text-input {
  height: 50px;
  padding: 0  25px;
  border-radius: 25px;
  background: #fff;
  border: none;
  outline: none;
  margin-right: 12px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 14px;
  color: #2E4257; }
  .botui-actions-text-input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #2E4257; }
  .botui-actions-text-input::-moz-placeholder {
    /* Firefox 19+ */
    color: #2E4257; }
  .botui-actions-text-input:-ms-input-placeholder {
    /* IE 10+ */
    color: #2E4257; }
  .botui-actions-text-input:-moz-placeholder {
    /* Firefox 18- */
    color: #2E4257; }

.botui-actions-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .botui-actions-text button {
    height: 50px;
    border-radius: 30px;
    border: none; }
    .botui-actions-text button[type="submit"] {
      background-image: url(../images/icon-send.svg);
      background-repeat: no-repeat;
      background-position: center;
      width: 50px;
      padding: 0;
      background-color: transparent; }
      .botui-actions-text button[type="submit"] span {
        opacity: 0; }

.send-message {
  border: none;
  outline: none;
  background: none;
  padding: 0; }

.card-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #f9f9f9;
  padding: 10px 20px;
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  height: 110px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }
  .card-footer .input-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%; }
