.chat_bubble{
    display: inline-block;
    max-width: 70%;
    padding: 9px;
    border-radius: 12px;
    position: relative;
    border-width: 1px;
    border-style: solid;
    box-shadow:0 1px 0 0 rgba(0, 0, 0, .04);
    word-wrap: break-word;
    font-size:14px;
}
.chat_bubble_wrap{
    display: inline-block;
    width: 100%;
    padding: 5px;
    overflow: hidden;
}
.chat_sent{
    color:#373e4d;
    text-shadow:rgba(255, 255, 255, .5) 0 1px 0;
    background-color: #e0edff;
    border-color: #bcc7d6;
    float:right;
    text-align: right;
    margin-right:15px;
    padding-right:17px;
}
.chat_received{
    color:#373e4d;
    text-shadow:rgba(255, 255, 255, .5) 0 1px 0;
    background-color: #fefefe;
    border-left:red 1px solid;
    border-color: #d5d5d5;
    float:left;
    text-align: left;
    margin-left:15px;
    padding-left:17px;
}
.chat_bubble::before {
    content: "\00a0";
    display: block;
    height: 16px;
    position: absolute;
    top: 11px;
    transform:             rotate( 29deg ) skew( -35deg );
        -moz-transform:    rotate( 29deg ) skew( -35deg );
        -ms-transform:     rotate( 29deg ) skew( -35deg );
        -o-transform:      rotate( 29deg ) skew( -35deg );
        -webkit-transform: rotate( 29deg ) skew( -35deg );
    width:  20px;
}
.chat_sent::before {
    border-right: solid 1px;
    border-top: solid 1px;
    box-shadow:0 1px 0 0 rgba(0, 0, 0, .04);
    background-color: #e0edff;
    border-color: #bcc7d6;
    right: -10px;     
}
.chat_received::before{
    border-left: solid 1px;
    border-bottom: solid 1px;
    box-shadow:0 1px 0 0 rgba(0, 0, 0, .04);
    background-color: #fefefe;
    border-color: #d5d5d5;
    left: -10px;      
}
.chat_detail_wrap{
    width: 100%;
    overflow: hidden;
}
.chat_detail_r{
    color:grey;
    font-size:12px;
    float:right;
}
.chat_detail_l{
    color:grey;
    font-size:12px;
    float:left;
}
.chat_estado_p{
    color: #e0e0e0;
    font-size:12px;
}
.chat_estado_s{
    display:inline-block;
    position:absolute;
    left:10px;
    top:5px;
    background-color:#e0e0e0;
    height:16px;
    width:16px;
    -webkit-border-radius:8px;
    -moz-border-radius:8px;
    border-radius: 50%;
}
.chat_estado_s.online{
    animation-name: online; 
    animation-duration: 2s;
    background-color: #15ff00;
}
.chat_estado_s.offline{
    /*animation-name: offline; */
    animation-duration: 2s;
    background-color: #e0e0e0;
}

@keyframes online { from {background-color: #e0e0e0;} to {background-color: #15ff00;} }
@keyframes offline { from {background-color: #15ff00;} to {background-color: #e0e0e0;} }

.chat_inativo{
    color:red;
    font-size:12px;
    display:table;
    margin:0 auto;
}
.clear
{
    clear: both;
}
#bottomchat{
   position: fixed;
   bottom: 0;
   z-index:99;
   right:70px;
   width: 250px;
}
#bottomchat p {
    margin: 0 0 10px;
}
#chat{
  width: 100%;
  height: 300px;
  border-width: 1px;
  border-style: solid;
  padding-top: 0px;
  position:relative;
  background-color: #fff;
}
#chat_full{
  width: 100%;
  max-height: 500px;
  height: auto;
  border-width: 1px;
  border-style: solid;
  padding-top: 0px;
  position:relative;
  background-color: #fff;
}
#chat_rooms{
  width: 30%;
  height: 470px;
  display: inline-block;
  border-width: 1px;
  border-style: solid;
  padding-top: 0px;
  position:relative;
  background-color: #fff;
  float: right;
  overflow-y: auto;
}
#chatHEad{
  width: 100%;
  text-align: center;
  border-top-right-radius: 1em;
  border-top-left-radius: 1em;
}

#CloseChat{
  float:right;
  color:#fff;
  padding-right:10px;
  padding-top:5px;
  display:none;
}

#ChatText{
  width: 70%;
  display: inline-block;
  padding-left: 5px;
  padding-top: 5px;
  overflow-y: auto;
  height: 230px;
}
#ChatText.ChatClient{
  width: 100%;
  display: inline-block;
  padding-left: 5px;
  padding-top: 5px;
  overflow-y: auto;
}
#chatHEad chattitle{
  font-size: 15px;
  padding-top: 5px;
  color: #fff;
  line-height: 25px;
  font-weight: bold;
}

#Box{
   border-top-width: 1px;
   border-top-style: solid;
   width: 100%;
   height: 30px;
   position:absolute;                  /* added */
   bottom:0;                           /* added */
   left:0;
}

#Box input[type="text"]{
 height: 30px;
 font-size: 17px;
 width: 70%;
 border: solid 1px #dcdcdc;
 transition: box-shadow 0.3s, border 0.3s;
}
#Box input[type="button"]{
 height: 30px;
 font-size: 17px;
 width: 30%;
 border: solid 1px #dcdcdc;
 transition: box-shadow 0.3s, border 0.3s;
 float: right;
}

#Contactdiv{
  text-align:justify;
  padding-left:10px;
  padding-right:10px;
}
#Contactdiv input[type="text"]{
  height: 30px;
  font-size: 17px;
  width: 100%;
  border: solid 1px #dcdcdc;
  transition: box-shadow 0.3s, border 0.3s;
}

#Contactdiv input[type="button"]{
 height: 30px;
 font-size: 17px;
 width: auto;
 border: solid 1px #dcdcdc;
 transition: box-shadow 0.3s, border 0.3s;
 /*float: right;*/
}

@media only screen and (max-width: 395px) {
    #bottomchat{
        width: 100%;    
        right: 0;
    }
}
