﻿#chat{
            background-color: #eee;
            margin-top : 60px ;
            z-index: 9;
            width: 250px;
            border-radius: 25px 25px 0px 0px;
            -moz-border-radius: 25px 25px 0px 0px;
            -webkit-border-radius: 25px 25px 0px 0px;
 
        }
        #chat #header-chat{
            background-color: #0D9DAD;
            color: white;
            padding: 10px;
            text-align: center;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
            border-radius: 25px 25px 0px 0px;
            -moz-border-radius: 25px 25px 0px 0px;
            -webkit-border-radius: 25px 25px 0px 0px;
            border: 0px solid #000000;
        }
#caja-mensaje{
    background-color: #0F7890;
     z-index:  9;
    padding: 10px;
    width: 250px;
    border-radius: 0px 0px 25px 25px;
    -moz-border-radius: 0px 0px 25px 25px;
    -webkit-border-radius: 0px 0px 25px 25px;
    border: 0px solid #000000;
    -webkit-box-shadow: -2px 14px 17px 3px rgba(0,0,0,0.75);
-moz-box-shadow: -2px 14px 17px 3px rgba(0,0,0,0.75);
box-shadow: -2px 14px 17px 3px rgba(0,0,0,0.75);

}
#caja-mensaje input{
    border: solid 1px #4193BF;
    outline: none;
    padding: 10px;
    width: 310px;
}
#caja-mensaje button{
    border: 0;
    background-color: #4193BF;
    color: white;
    font-size: 16px;
    padding: 8px;
    width: 10px;
}

#chat #mensajes{
    padding: 10px;
   /* height: 400px;*/
    width: 250px;
    overflow: hidden;
    overflow-y: scroll ;
    
}

#chat #mensajes .mensaje-autor{
   

}
#chat #mensajes .mensaje-autor img, #chat #mensajes .mensaje-amigo img{
    display: inline-block;
    vertical-align: top;
}
#chat #mensajes .mensaje-autor .contenido{
    background-color: white;
    border-radius: 5px;
    box-shadow: 2px 2px 3px rgba(0,0,0,0.3);
    display: inline-block;
    font-size: 13px;
    padding: 15px;
    vertical-align: top;
    width: 150px;
}
#chat #mensajes .mensaje-autor .fecha{
    color: #777;
    font-style: italic;
    font-size: 13px;
    text-align: right;
    margin-right: 35px;
    margin-top: 10px;
}
#chat #mensajes .mensaje-autor .flecha-izquierda{
    display: inline-block;
    margin-right: -6px;
    margin-top: 10px;
    width: 0; 
    height: 0; 
    border-top: 0px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid white;
}
#chat #mensajes .mensaje-amigo{
    margin-bottom: 50px;
}
#chat #mensajes .mensaje-amigo .contenido{
    background-color: #3990BF;
    border-radius: 5px;
    color: white;
    display: inline-block;
    font-size: 13px;
    padding: 15px;
    vertical-align: top;
    width: 280px;
}
#chat #mensajes .mensaje-amigo .flecha-derecha{
    display: inline-block;
    margin-left: -6px;
    margin-top: 10px;
    width: 0; 
    height: 0; 
    border-top: 0px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid #3990BF;
}
#chat #mensajes .mensaje-amigo img, #chat #mensajes .mensaje-autor img{
    border-radius: 5px;
}
#chat #mensajes .mensaje-amigo .fecha{
    color: #777;
    font-style: italic;
    font-size: 13px;
    text-align: left;
    
    margin-top: 10px;
}

.iconoWhatsapp {
   
    
}

@media screen and (max-width: 980px) {
#chat {
display: none;
}
    #caja-mensaje {
        display: none;
    }
}