/* Collapse */
#div_chat_support {
	display: block;
    position: fixed;
    width: 300px;
    text-align: center;
    z-index: 2;
    right: 3px;
    bottom: -10px;
}
img#img_tit_chat{
    height: 80px;
    vertical-align: text-top;
}

/* Opened */
div#div_chat_window{
    position: fixed;
    bottom: 0;
    right: 10px;
    margin: 0px;
    padding: 0px;
    width: 415px;
    height: 500px;
    border-radius: 10px;
    z-index: 4;
    border: solid 1px #D71F2A;
}
#div_chat_win_head{
	border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    margin: -1px;
    border: solid 1px #D71F2A;
}
div#div_chat_win_body {
    margin: -1px;
}
#lbl_chat_tit_open{
	vertical-align: sub;
}
i#i_chat_min {
    float: right;
    margin-top: 7px;
}
#lbl_usr_inst{
	line-height: 20px;
	margin-top: 15px;
	margin-bottom: 15px;
}
#form_chat div > .notifyjs-wrapper{
    position: absolute;
}

/* Request form */
#div_body_request_chat label#id_chat-subject_label{
    display: block;
    width: auto;
    width: initial;
    margin-bottom: 5px;
}
#div_body_request_chat textarea#id_chat-subject {
    width: 100%;
    height: 78px;
    margin: 0px;
}
#div_row_chat_action{
	margin-top: 15px;
}

/* On chat */
div#row_usr_conv{
    height: 390px;
	margin-bottom: 15px;
	overflow-y: auto;
}
textarea#txt_usr_conv{
    width: 100%;
    height: 50px !important;
    margin: 0px;
}

#load_usr_chat_send{
	display: none;
}
#div_usr_conversation p{
	margin: 0px;
}
.div_msg_bub{
	margin: 5px;
	padding: 7px;
	position: relative;
	border-radius: 7px;
}
/*.msg_usr:before{
	content: ' ';
	position: absolute;
	width: 0;
	height: 0;
	left: -40px;
	right: auto;
	top: -8px;
	bottom: auto;
	border: 32px solid;
	border-color: #666 transparent transparent transparent;
}*/
.div_msg_bub:after{
	content: ' ';
	position: absolute;
	width: 0;
	height: 0;
	top: 0px;
	bottom: auto;
	border: 10px solid;
}
.msg_usr{
	background-color: #DBD9D9;
}
.msg_adm{
	background-color: #03688A;
}
.msg_adm:after{
	left: -10px;
	right: auto;
	border-color: #03688A transparent transparent transparent;
}
.msg_usr:after{
	right: -10px;
	left: auto;
	border-color: #DBD9D9 transparent transparent transparent;
}
.msg_close{
	background-color: #58595B;
}
.msg_close:after{
	border: none;
}

.chat_alert{
	animation-name: alert_chat;
	animation-duration: 1s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;

	-webkit-animation-name:alert_chat;
	-webkit-animation-duration: 1s;
	-webkit-animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;
}

a#lnk_usr_close {
    float: left;
    margin-top: 6px;
    font-size: 16px;
    height: 26px;
    width: 80px;
}

@-moz-keyframes alert_chat{  
	0% { opacity: 1.0; }
	50% { opacity: 0.3; }
	100% { opacity: 1.0; }
}
@-webkit-keyframes alert_chat{  
	0% { opacity: 1.0; }
	50% { opacity: 0.3; }
	100% { opacity: 1.0; }
}
@keyframes alert_chat{  
	0% { opacity: 1.0; }
	50% { opacity: 0.3; }
	100% { opacity: 1.0; }
}

@media only screen and (max-width: 40em), only screen and (min-width: 40.063em) and (max-width: 64em){
	#lbl_usr_inst {
	    line-height: 19px;
	    margin-top: 10px;
	    margin-bottom: 10px;
	}
	#div_body_request_chat textarea#id_chat-subject {
	    height: 50px;
	}
}