@charset "utf-8";
/****************************************************/
/* created:		vnj 	2018/10/08				*/
/****************************************************/
/*----------common----------*/
.lc-live-chat {
	bottom: 0;
	font-size: 12px;
	right: 15px;
	position: fixed;
	width: 300px;
}

.lc-live-chat a { text-decoration: none; }

.lc-live-chat p { margin: 0; }

.lc-live-chat .lc-clearfix { *zoom: 1; } /* For IE 6/7 */
.lc-live-chat .lc-clearfix:before, .lc-clearfix:after {
    content: "";
    display: table;
}
.lc-live-chat .lc-clearfix:after { clear: both; }

/*----------header----------*/
.lc-live-chat header {
	background: #2F5597;
	border-radius: 5px 5px 0 0;
	color: #FFFFFF;
	cursor: pointer;
	padding: 5px 10px;
}

.lc-live-chat #lc-header_text {
	line-height: 1.5em;
	margin: 0;
}

.lc-live-chat .lc-chat-close {
	background: #1B2126;
	border-radius: 50%;
	color: #FFFFFF;
	display: block;
	float: right;
	font-size: 14px;
	height: 18px;
	line-height: 16px;
	text-align: center;
	width: 18px;
}

/*----------chat----------*/
.lc-live-chat .lc-chat {
	background: #EEEEEE;
}

.lc-live-chat .lc-chat-history {
	height: 252px;
	padding: 8px 24px;
	overflow-y: scroll;
	border-bottom: 1px solid #000000;
}

.lc-live-chat .lc-chat-message-content {
	padding: 10px 10px;
	text-align:left;
	border-radius: 10px;
}

.lc-live-chat .lc-left{
	border: 1px solid #CCCCCC;
	background: #E4FFC9;
	position: relative;
}

.lc-live-chat .lc-right{
	border: 1px solid #CCCCCC;
	background: #BFBFBF;
	position: relative;
}

.lc-live-chat .lc-left::before {
  content: '';
  position: absolute;
  visibility: visible;
  top: -1px;
  left: -10px;
  border: 10px solid transparent;
  border-top: 10px solid #CCCCCC;
}

.lc-live-chat .lc-left::after {
  content: '';
  position: absolute;
  visibility: visible;
  top: 0px;
  left: -8px;
  border: 10px solid transparent;
  border-top: 10px solid #E4FFC9;
  clear: both;
}

.lc-live-chat .lc-right::before {
  content: '';
  position: absolute;
  visibility: visible;
  top: -1px;
  right: -10px;
  border: 10px solid transparent;
  border-top: 10px solid #CCCCCC;
}

.lc-live-chat .lc-right::after {
  content: '';
  position: absolute;
  visibility: visible;
  top: 0px;
  right: -8px;
  border: 10px solid transparent;
  border-top: 10px solid #BFBFBF;
  clear: both;
}

.lc-live-chat .lc-chat-message {
	margin: 10px 0;
}


.lc-live-chat .lc-input-chat-message {
	height: 60px;
	padding: 10px;
}

.lc-live-chat .lc-input-chat-message fieldset {
	border: 0;
	margin: 0;
	padding: 0;
	float:left;
}

.lc-live-chat .lc-input-chat-message textarea {
	border: 1px solid #CCCCCC;
	border-radius: 3px;
	padding: 5px;
	outline: none;
	width: 220px;
	resize: none;
	float:left;
	height:50px;
}

.lc-live-chat .lc-input-chat-message a {
	float:left;
	margin-left: 5px;
}

.lc-live-chat .lc-input-chat-message .lc-send-button-div{
	background-color: #2F5597;
	width: 40px;
	height: 40px;
	line-height: 40px;
	margin: 10px 0;
	border-radius: 5px;
	text-align: center;
	color: #ffffff;
}

.lc-live-chat .lc-input-chat-message .lc-loading{
	border: 5px solid #a19d9d;
	border-radius: 50%;
	border-top: 5px solid #2F5597;
	width: 30px;
	height: 30px;
	-webkit-animation: spin 1s linear infinite; /* Safari */
	animation: spin 1s linear infinite;
	background-color: transparent;
}

/* Safari */
@-webkit-keyframes spin {
	0% { -webkit-transform: rotate(0deg); }
	100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.lc-live-chat header.lc-blink{
	-webkit-animation: lc-blinker 1s infinite;  /* Safari 4+ */
	animation: lc-blinker 1s infinite;
}

@keyframes lc-blinker {
  50% {
    background-color: #A22200;
  }
}