@charset "utf-8";
/* CSS Document */

/* ---------- GENERAL ---------- */

/* a { text-decoration: none; }

h4, h5 {
	line-height: 1.5em;
	margin: 0;
}

hr {
	background: #e9e9e9;
    border: 0;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    height: 1px;
    margin: 0;
    min-height: 1px;
}

img {
    border: 0;
    display: block;
    height: auto;
    max-width: 100%;
}

p { margin: 0; } */

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

/* ---------- LIVE-CHAT ---------- */

#live-chat {
	bottom: 0;
	font-size: 14px;
	right: 24px;
	position: fixed;
	width: 300px;
	z-index: 1000;
}

#live-chat header {
	background: #f0f0f0;
	border-radius: 5px 5px 0 0;
	color: #003050;
	cursor: pointer;
	padding: 16px 20px;
}

	#live-chat header.prepare {
		background: #003050;
		border-radius: 5px 5px 0 0;
		color: #FFFFFF;
		cursor: pointer;
		padding: 16px 20px;
	}

#live-chat h4:before {
	background: #1a8a34;
	border-radius: 50%;
	content: "";
	display: inline-block;
	height: 8px;
	margin: 0 8px 0 0;
	width: 8px;
	animation: mymove 1s infinite;
}

@keyframes mymove {
	from {background-color: #1a8a34;}
	to {background-color: #2eb54d;}
}

#live-chat h4 {
	font-size: 15px;
    color: #003050;
    line-height: 24px;
    margin-bottom: 0;
}

	#live-chat header.prepare h4 {
		font-size: 15px;
		color: #FFFFFF;
		line-height: 24px;
		margin-bottom: 0;
	}

#live-chat h5 {
	font-size: 15px;
    font-weight: 500;
    margin-bottom: 5px;
}

#live-chat p {
	font-size: 14px;
    font-weight: 300;
    margin-bottom: 5px;
}

#live-chat .chat-message-content a {
	font-size: 14px;
    font-weight: 400;
    color: #626262;
    text-decoration: underline;
}

#live-chat .btn-gris2 {
    background-color: #7bb600;
    border-color: transparent;
    color: #FFF;
    margin-top: 5px;
    width: 100%;
    border-radius: 8px;
    padding: 8px !important;
	text-transform: none;
	font-size: 14px;
}

#live-chat .btn-gris2:hover {
    background-color: #6ea300;
    border-color: transparent;
    color: #FFF;
}

#live-chat .successContent, #live-chat  .errorContent, #live-chat  .sendingContent {
    letter-spacing: normal;
	font-size: 13px;
	font-weight: 500;
	padding: 0.75rem;
}

.chat-launch {
	margin-bottom: 10px;
	border: 0px solid #ccc;
	border-radius: 8px;
	padding: 8px 12px;
	width: 234px;
	font-size: 13px;
	background-color: transparent;
	color: #fff;
	font-weight: 500;
}

.chat-message-counter {
	background: #e62727;
	border: 1px solid #fff;
	border-radius: 50%;
	font-size: 12px;
	font-weight: bold;
	height: 24px;
	left: 0;
	line-height: 24px;
	margin: -15px 0 0 -15px;
	position: absolute;
	text-align: center;
	top: 0;
	width: 24px;
  display:none;
}

.chat-close, .chat-open {
	color: #fff;
	display: block;
	float: right;
	font-size: 22px;
	line-height: 16px;
	margin: 2px 0 0 0;
	text-align: center;
	width: 16px;
}
.chat-close-option {
  color: #000;
	border: 1px solid #ccc;
  padding: 8px;
  margin-left: 12px;
}
.chat {
	background: #fff;
}

.chat-history {
	height: 350px;
	padding: 8px 24px;
	overflow-y: scroll;
}

.chat-message {
	margin: 16px 0;
}

.chat-message img {
	border-radius: 50%;
	float: left;
}

.chat-message-content {
	margin-left: 56px;
}

.chat-time {
	float: right;
	font-size: 10px;
}

.chat-feedback {
	font-style: italic;	
	text-align: center;
  font-size:12px;
}
.chat-footer {
	text-align: left;
    padding: 10px 20px 10px 20px;
    background-color: #003050;
}

.sr-only { /*Based on Bootstrap*/
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}


@media screen and (max-width: 768px) {
	
	#live-chat {
		font-size: 15px;
		right: 0px;
		width: 90%;
	}
	
	#live-chat h4 {
		font-size: 20px;
		line-height: 26px;
	}
	
	#live-chat h5 {
		font-size: 20px;
	}
	
	#live-chat p {
		font-size: 19px;
	}
	
	.chat-history {
		height: 60vh;
	}
	
	#live-chat .btn-gris2 {
		margin-top: 7px;
		border-radius: 10px;
		padding: 10px !important;
		font-size: 17px;
	}
	
}