.bounce-in-fwd {
  -webkit-animation: bounce-in-fwd 1s 1s both;
          animation: bounce-in-fwd 1s 1s both;
}

@-webkit-keyframes bounce-in-fwd {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  72% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  81% {
    -webkit-transform: scale(0.84);
            transform: scale(0.84);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  89% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  95% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}
@keyframes bounce-in-fwd {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  72% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  81% {
    -webkit-transform: scale(0.84);
            transform: scale(0.84);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  89% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  95% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}





.chat-window-wrapper {
  bottom: 38px;
  right: 52px;
}
.chat-window-wrapper .chat-window-toggle {
    background: #1b8ab6;
    width: 220px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0px 8px 10px rgba(0,0,0,0.1);
  }
  .chat-window-wrapper .chat-window-toggle:hover, 
  .chat-window-wrapper .chat-window-toggle:focus {
    transform: scale(1.05);
    background: #1b8ab6;
  }
  .chat-window-wrapper .chat-window-toggle svg {
    margin-right: 10px;
  }
  .chat-layout .chat-body {
    background: #FFF;
  }
  .chat-window-wrapper .chat-window {
    border-radius: 10px;
    border: none;
    box-shadow: 0px 6px 6px rgba(0,0,0,0.2);
    height: 600px;
    width: 550px;
    max-width: 100%;
  }
  .chat-layout .chat-header {
    padding: 16px 30px;
    background-color: #003852;
    position: relative;
  }
  
  /* Style pour gÃ©rer le saut de ligne dans le titre */
  .chat-layout .chat-header h1 {
    white-space: pre-line;
    font-size: 18px;
    line-height: 12px;
    position: relative;
    font-weight: 700;
  }
  
  /* Style pour ajouter le logo dans le titre */
  .chat-layout .chat-header h1::before {
    content: '';
    display: inline-block;
    width: 60px;
    height: 60px;
    border-radius: 30px;
    background-image: url('../img/avatar-chatbot-homme12.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
    margin-right: 10px;
  }
  
  /* SÃ©lecteur pour cibler la deuxiÃ¨me ligne du titre */
  .chat-layout .chat-header h1::after {
    content: 'Votre agent virtuel';
    display: block;
    font-style: italic;
    font-weight: normal;
    font-size: 14px;
    margin-top: -15px;
    position: relative;
    padding-left: 70px;
  }
  .chat-layout .chat-header p {
  display: none;
}
  /* Indicateur EN LIGNE avec rond vert */
  .chat-layout .chat-header .status-indicator {
    position: absolute;
    left: 150px;
    top: 28px;
  }
  
  .chat-layout .chat-header .status-indicator::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #00ff93;
    border-radius: 50%;
    margin-right: 5px;
    vertical-align: middle;
    position: absolute;
    right: 36px;
    top: -9px;
  }
  
  .chat-layout .chat-header .status-indicator::after {
    content: 'EN LIGNE';
    display: inline-block;
    font-size: 10px;
    font-weight: bold;
    vertical-align: middle;
    border-radius: 4px;
    padding: 3px 10px;
    color: #00ff93;
    position: absolute;
    white-space: nowrap;
    top: -14px;
    right: -20px;
  }
  .chat-button {
    color: #FFF;
    background-color: #34a7d5;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    line-height: 1.5;
    border-radius: 6px;
  }
  .chat-button:hover {
    background-color: #34a7d5;
    opacity:0.8;
  }
  .chat-messages-list {
    padding: 10px 30px;
  }
  .chat-message.chat-message-from-bot,
  .chat-message.chat-message-from-bot:not(.chat-message-transparent) {
    background-color:#eeeff1;
    border-radius: 10px 10px 10px 0;
  }
  .chat-message.chat-message-from-user,
  .chat-message.chat-message-from-user:not(.chat-message-transparent) {
    color:#FFF;
    background-color:#34a7d5;
    border-radius: 10px 10px 0 10px;
  }

  /*.chat-footer {
    display: none;
  }*/
.chat-input-send-button svg path {
  fill:#34a7d5;
}
.chat-inputs textarea[data-v-31e29ba2],
.chat-inputs textarea[data-v-31e29ba2]::placeholder {
  font-size: 16px;
}
@media (max-width: 575.98px) {
    .chat-window-wrapper {
      bottom: 16px;
      right: 16px;
    }
}