﻿/*--- Chat Icons ---*/
.grecaptcha-badge{
	z-index: 8;
}

.embeddedServiceHelpButton,.whatsapp{
	visibility: hidden;
}


.icons-container {
	position: fixed;
	bottom: 90px;
	right: 10px;
	display: block;
	z-index: 5;
}
.icons-container .icons {
	width: auto;
	height: 180px;
	position: relative;
	overflow: visible;
	padding: 10px;
}
.icons-container .icons .whatsapp-icon, 
.icons-container .icons .chat-icon {
	transition: all .5s ease; 
}
.icons-container .icons.open .whatsapp-icon {
	background-image: url(/Custom/Content/Themes/Shared/Images/close-icon.svg);
	bottom: 0;
	opacity: 1; 
}
.icons-container .icons.open .whatsapp-icon a{
	display: block;
	height: 100%;
}
.icons-container .question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: #fff;
	height: 30px;
	box-shadow: rgba(0, 0, 0, 0.8) 0 0 10px;
	border-radius: 10px;
	position: absolute;
	right: 5px;
	white-space: nowrap;
	width: 0;
	transition: all .3s ease;
	overflow: hidden; 
}
.icons-container .question a {
	font-family: 'Lato', sans-serif;
	font-size: 11px;
	text-transform: uppercase;
	background: #fff;
	font-size: 0;
	text-decoration: none;
	width: 100%;
    height: 100%;
    display: block;
    line-height: 32px;
}
.icons-container .question.question-1 {
	bottom: 100px; 
}
.icons-container .question.question-2 {
	bottom: 60px; 
}
.icons-container .icons.open .question {
	width: 220px; 
}
.icons-container .icons.open .question a {
	font-size: 11px; 
}
.icons-container .icons .whatsapp-icon a[href^="http"]:empty::before{
	content: '';
}
.icons-container .icons.open .action-icon {
	background-image: url(/Custom/Content/Themes/Shared/Images/close-icon.svg); 
}
.icons-container .icon {
	width: 50px;
	height: 50px;
	border-radius: 100%;
	position: absolute;
	cursor: pointer;
	bottom: 0;
	background-repeat: no-repeat;
	background-size: auto;
	background-position: center;
	opacity: 0;
	
	
}

.icons-container .icon.whatsapp-icon {
	opacity: 1;
	background-color: #25D366;
	background-image: url(/Custom/Content/Themes/Shared/Images/whatsapp-icon.svg);
	transition: all .5s ease;;
	right: 0;
}
	
@media(min-width: 300px) and (max-width: 768px){
	.icons-container .icon{
		width: 38px;
		height: 38px;
		background-size: 19px;
	}
	.icons-container .icon.whatsapp-icon{
		background-size: 60%;
		background-position: 8px 7px;
	}
	.icons.open .icon.whatsapp-icon{
		background-position: center;
		background-size: 45%;

	}
	.icons-container .question.question-1{bottom:90px;}
	.icons-container .question.question-2{bottom:50px;}
}