/*#click-to-chat {
	display:none;	
}
@media (max-width: 1024px){*/
	#click-to-chat {
			position: fixed;
			width:55px;
			height:55px;
			/*display:block;*/
			bottom: 20px;
			right: 0;
			background: #25d366;
			padding: 12px;
			border-radius: 50% 0 0 50%;
			border:1px solid #fff;
			/*box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.2);*/
			z-index: 3000;
			transform: scale(0);
			opacity:0;
			transition: opacity 1s;
	}
	#click-to-chat.show-ctc{
			transform: scale(1);
			opacity:1;
	}
@media (max-width: 1024px){
	#click-to-chat {
		width:50px;
		height:50px;
	}
}