body{
  background: rgb(232, 233, 233);;
}

#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background-color: rgb(232, 233, 233);;
}
#footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background-color: rgb(232, 233, 233);;
}
#content {
    position: fixed;
    top: 100px;
    bottom: 100px;
    left: 0;
    right: 0;
    background-color: rgb(232, 233, 233);;
    overflow: auto;
    margin-bottom: 25px;
  

}


.watson .mensagens .texto {
  border-radius: 2px;
  box-sizing: border-box;
  padding: .65em;
  margin-top: 2.5em;
  animation: popupmensagem linear .2s;
  animation-iteration-count: 1;
  -webkit-animation: popupmensagem linear .2s;
  -webkit-animation-iteration-count: 1;
  -moz-animation: popupmensagem linear .2s;
  -moz-animation-iteration-count: 1;
  -o-animation: popupmensagem linear .2s;
  -o-animation-iteration-count: 1;
  -ms-animation: popupmensagem linear .2s;
  -ms-animation-iteration-count: 1;
}

.watson .mensagens .texto:first-child {
  margin-top: 0;
}

.watson .mensagens .texto.usuario {
  background-color: #00995D;
  font-size: 13px;
  color: white;
  margin-right: 30%;
  margin-left: 30px;
  transform-origin: 0% 100%;
  -webkit-transform-origin: 0% 100%;
  -moz-transform-origin: 0% 100%;
  -o-transform-origin: 0% 100%;
  -ms-transform-origin: 0% 100%;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  border-bottom-left-radius: 15px;

}

.watson .mensagens .texto.chatbot {
  background-color: white;
  font-size: 13px;
  color: #00995D;
  margin-left: 30%;
  margin-right: 30px;
  border-radius: 20px;
  transform-origin: 100% 100%;
  -webkit-transform-origin: 100% 100%;
  -moz-transform-origin: 100% 100%;
  -o-transform-origin: 100% 100%;
  -ms-transform-origin: 100% 100%;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 0px;

}

input#texto {
    margin-left: 30px;
    background: white;
    border-color: white;
    border-top-left-radius: 15px;
}

button.btn.btn-success {
  background: #00995D;
  margin-right: 30px;
}


 .watson .mensagens .area{
  margin: 0 auto;
  position: relative;
  width: auto;
  overflow: auto;
  } 


/** Animação de Mensagem **/
@keyframes popupmensagem {
  0% {
    transform: scaleX(0.30) scaleY(0.30);
  }
  100% {
    transform: scaleX(1.00) scaleY(1.00);
  }
}

@-moz-keyframes popupmensagem {
  0% {
    -moz-transform: scaleX(0.30) scaleY(0.30);
  }
  100% {
    -moz-transform: scaleX(1.00) scaleY(1.00);
  }
}

@-webkit-keyframes popupmensagem {
  0% {
    -webkit-transform: scaleX(0.30) scaleY(0.30);
  }
  100% {
    -webkit-transform: scaleX(1.00) scaleY(1.00);
  }
}

@-o-keyframes popupmensagem {
  0% {
    -o-transform: scaleX(0.30) scaleY(0.30);
  }
  100% {
    -o-transform: scaleX(1.00) scaleY(1.00);
  }
}

@-ms-keyframes popupmensagem {
  0% {
    -ms-transform: scaleX(0.30) scaleY(0.30);
  }
  100% {
    -ms-transform: scaleX(1.00) scaleY(1.00);
  }
}

body{
  background: rgb(232, 233, 233);;
}

4