
/* chat border when its minimized
 the position, display and z-index vues are calculated on fling from myltchat.php */
#mlc_ocul { 
    position: fixed;
    bottom: 50%;
    right: -15px;
    padding: 10px 5px 0 5px; 
    text-align: left;
    border-top: 1px solid green;
    border-left: 1px solid green;
    border-bottom: 1px solid green;
    border-radius: 13px 0px 0px 13px;
    width: auto;
    height: auto;
    background: #fff;
  font-size:16px;
   cursor: pointer; 
   margin-left: 0;
   margin-top:50%;
       -webkit-transition: all 0.7s ease-in-out;
        -moz-transition: all 0.7s ease-in-out;
        -o-transition: all 0.7s ease-in-out;
        transition: all 0.7s ease-in-out;
        z-index: 100;
}
#mlc_ocul:hover {
    width: auto;
}
#mlc_ocul:hover .horario_chat{
    display: inline-block;
}
#mlc_ocul:hover .chat{
    /*display: none;*/
    float: left;
    padding-left: 0;
}
.chat{
    margin-right: 0;
    padding: 0 0px;
    text-align: center;
    font-family:'SFNS Display, extraLigero';
}
.chat p{
    font-size: 18px;
    font-weight: 600;
    color: #008833;
    text-align: center;
}
.chat img{
    max-width: 70%
}
.horario_chat{
    padding-top: 10px; 
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 15px;
    width: auto;
    height: 50px;
    text-align: center;
    font-size: 14px;
    display: none;
    font-family:'SFNS Display, extraLigero';
    -webkit-transition: all 0.7s ease-in-out;
        -moz-transition: all 0.7s ease-in-out;
        -o-transition: all 0.7s ease-in-out;
        transition: all 0.7s ease-in-out;
}
/* chat border when its maximized
 the position, display, width, height and z-index values are calculated on fling from myltchat.php */
#mlc_all { max-width: 40%;
	background: #fff;
        position:fixed;display:none;width:auto;height:auto;z-index:15; bottom: 0px;right: 15px;
        border: 1px solid rgba(0,0,0,0.4);
	margin: 0 auto;
	
	border-radius: 12px 12px 0 0;
	-moz-border-radius: 12px 12px 0 0;
	-o-border-radius: 12px 12px 0 0;
	-webkit-border-radius: 12px 12px 0 0; 
        z-index: 100;
}
/* Images minimize and popup */
.mlc_nopp { 
    float:right; 
    margin:2px; 
    font-size: 18px;
    cursor: pointer;
    color: #fff;
}
/* Title chat paragraph */
#mlc_titulo { 
border-bottom: 1px solid rgba(0,0,0,0.4);
width: 100%;
border-radius: 12px 12px 0px 0px;
background-color: #009933;
}
#mlc_titulo .titulo{
    font-size: 0.9rem;
    float: left;
    margin-left: 5px;
    color: #fff;
}
#mlc_titulo .cerrar{
    float: left;
    margin-left: 62%;
    cursor: pointer;
    color: #fff;
}
@media only screen and (max-width: 548px) {
    #mlc_titulo .cerrar{
    margin-left: 30%;
    }
}
/* Messages container
  the height value is calculated on fling from myltchat.php */
#mlc_msjs { margin:0 0 1px 0; padding:8px; overflow:auto; border-bottom:solid 1px black; height:328px; font-size: 16px}
/* Container of a single message (or several if are of a same user consecutively) inside the messages container */
.mlc_mensa { margin:0; padding:0; border-bottom:dotted 1px orange; }
/* Span with the user nicks name of sending user */
.mlc_mensa span.mlc_nick { font-weight:bold; }
/* Span with the time of a message */
.mlc_mensa span.mlc_hora { font-size:11px; color:black; }

/* Container of users controls (just down the messages container) */
#mlc_ctrl { margin:0; padding:5px; }
/* control images (font style, bann user) */
.mlc_imgfd { float:right; margin-right:3px; }
/* Avatar image of current user
  the width and height values are determinated as estatic from myltchat.php */
#mlc_img_ava { margin:0;padding:0; }
/* Span with the current user nick name  */
#mlc_nckuser { font-weight:bold; }
/* Text field to hold the message */
#mlc_txmens { width: 100%;
	height: 40px;
	border: 1px solid gray;
	border-radius: 12px; }
/* icon image
  the height and width are determinated as estatic from myltchat.php */
.mlc_imgeicon { margin:0 2px; }

/*the login form  when the chat manage its own users */
#mlc_inises  { width:18em; margin:1em auto; text-align:center; border:solid 1px rgb(99,99,99); padding:22px 1px; }
#mlc_inises legend { width:100%; text-align:center; font-weight:bold; }
#mlc_inises * { line-height:1.8em; }
#mlc_inises input[type="text"], #mlc_inises input[type="password"] { height:1.5em; }
.clientes_chat{
    position: absolute;
    background-color: white;
    color: rgba(0,49,22,0.9);
    right: -201px;
    width: 200px;
    height: 100%;
    border-radius: 5px;
}
.linea_ver{
    border-radius: 12px 12px 0 0;
    background-color: #009933;color:#fff;
}
.linea_ver .titulo{
    width: 150px; padding: 2px 0 2px 2px; background-color: #009933;color:#fff;
    border-radius: 12px 12px 0 0;
}