/*
* © The Hut Group 2018, All Rights Reserved.
*
* This source code is the property of The Hut Group, registered address:
* 5th Floor, Voyager House Chicago Avenue, Manchester Airport,
* Manchester, England, M90 3DQ
*/
/*
 * 17m. Live Chat
 **************************************************/

#activate-chat {
	height: 5px;
	position: absolute;
	z-index: -999;
}

#wsa_embed {
	background-image: none !important;
}

#wsa_embed {
	/*display: none !important;*/
}

#wsa_embed.showme {
	display: block !important;
}

.fixed-chat {
	background: #fff;
	color: #222;
	position: fixed;
	z-index: 2;
	bottom: -320px;
	right: 0;
	margin-right: 40px;
	width: 320px;
	z-index: 99;
	-webkit-box-shadow: 0 0 3px #000;
	        box-shadow: 0 0 3px #000;
	-webkit-transition: all ease-out .3s;
	-moz-transition: all ease-out .3s;
	-o-transition: all ease-out .3s;
	transition: all ease-out .3s;
	font-size: .9em;
}

@media (max-width: 420px) {
	.fixed-chat {
		margin-right: 10px;
	}
}

@media (max-width: 350px) {
	.fixed-chat {
		margin-right: 5px;
	}
}

.fixed-chat.visible.raised {
	bottom: -211px;
}

.fixed-chat.visible {
	bottom: -241px;
}

.fixed-chat.active {
	bottom: 0;
}

.fixed-chat h4 {
	background: #014870;
	text-align: center;
	cursor: pointer;
}

.fixed-chat h4 .fa {
	font-size: 2em;
	margin: 0 12px 0 -48px;
}

.fixed-chat h4 span {
	color: #fff;
	margin: 0 auto;
	display: inline-block;
	padding: .8em 0 .8em;
	font-family: encode_widesemibold;
	font-size: 1.2em;
	position: relative;
}

.fixed-chat h4 span:after {
	content: "";
	position: absolute;
	right: -50px;
	font-family: FontAwesome;
}

.fixed-chat.active h4 span:after {
	content: "";
}

.fixed-chat .hello {
	padding: 1em;
}

.fixed-chat .hello strong.subtitle {
	display: block;
	text-align: center;
	margin-bottom: 1em;
}

.chat-bubble {
	background: #f0f0f0;
	border: solid 1px #aaa;
	position: relative;
	float: right;
	padding: 0.6em;
	width: 200px;
	border-radius: 6px;
}

.chat-bubble:before,
.chat-bubble:after {
	content: "";
	position: absolute;
	right: 100%;
	border-style: solid;
}

.chat-bubble:before {
	bottom: 15px;
	z-index: 1;
	border-width: 10px 15px 2px 0px;
	border-color: transparent #fff transparent transparent;
}

.chat-bubble:after {
	bottom: 13px;
	border-width: 12px 17px 4px 0px;
	border-color: transparent #aaa transparent transparent;
}

.hello img {
	margin-right: 1em;
	width: 76px;
}

.hello strong span {
	color: #00D2FF;
}

.fixed-chat .button {
	display: block;
	margin: 0 auto;
	width: 180px;
	text-align: center;
}

.chat-footer {
	text-align: center;
	margin-top: 1em;
	padding: 1em;
	background: #333;
	border-top: 1px solid #aaa;
	color: #fff;
	position: relative;
}

.chat-footer:before {
	content: "";
	font-family: FontAwesome;
	font-size: 1.4em;
	position: absolute;
	left: 30px;
	margin-top: 3px;
}

.chat-footer a {
	text-decoration: underline;
	color: #fff;
}
