
/*/  Chat  /*/
#chatWin{overflow: hidden !important;}

#chatLog{padding: 10px;}

#chatLog > div{
	padding: 4px 6px;
	background-color: #fff;
	outline: none;
	border-radius: 4px;
	border: 1px solid #ddd;
    margin: 20px 0;
}
#chatNom:empty:before{content: 'Su nombre';}
#chatMail:empty:before{content: 'Su correo';}
#chatLog > div:before, .chatInput:empty:before{color: #c1c1c1;}

.chat{
	display: none;
	overflow: auto;
	height: calc(100% - 30px);
}
#chatWin > .chat > .btn{margin-top: 5px;}
.chat > div{
    max-width: 85%;
    border-radius: 4px;
    padding: 5px 7px;
    background-color: #FFF;
    font-size: 12px;
    line-height: 1.3;
    margin: 5px;
    clear: both;
    color: #373e4d;
    border: 1px solid #ddd;
    float: left;
}
.chat > div > span{
	white-space: pre-wrap;
    word-wrap: break-word;
}

.chat > div > img{
	float: left;
	width: 30px;
	border-radius: 50%;
	margin-right: 5px;
}

.chat > div > div{
	float: left;
	white-space: normal;
	max-width: calc(100% - 35px);
}

.chat > div > div > p{
	font-weight: 500;
	color: #5CB85C;
	margin-bottom: 3px;
}


#chatAviso{
	position: absolute;
	width: 100%;
	height: 100%;
	padding-top: 10px;
	text-align: center;
	font-size: 16px;
	background-color: #FFF;
}

#chatAviso > span{
	display: block;
	margin-top: 15px;
	font-size: 18px;
	font-weight: 500;
	color: #5CB85C;
}

.chatInput{
	display: none;
	min-height: 30px;
	max-height: 80px;
	overflow: auto;
	padding: 4px 6px;
	background-color: #fff;
	outline: none;
	border-top: 1px solid #ddd;
}

#chatWin.online #chatAviso, #chatWin.regOn #chatLog{
	display: none;
}

#chatWin.regOn.online .chat, #chatWin.regOn.online .chatInput{
	display: block;
}

.chatInput:empty:before{content: 'Escribe un mensaje...';}
.chatInput:focus:before,
#chatNom:focus:before,

/*#chatMail:focus:before{content: '';}*/