// .loader {
// 	display: block;
// 	width: 32px;
// 	height: 32px;
// 	margin-left: 10px;
// 	background: url(./images/ajax-loader.gif) no-repeat center;

// 	&.large {
// 		width: 64px;
// 		height: 64px;
// 		background: url(./images/loader-large.gif) no-repeat center;
// 	}
// }


.loader{
	background: #ffc600;	
	animation: loader-anim 1s infinite ease-in-out;
	width: 10px;
	height: 4em;
	color: #ffc600;
	text-indent: -9999em;
	margin: 88px auto;
	position: relative;
	font-size: 11px;	
	transform: translateZ(0);	
	animation-delay: -0.16s;
   
	&:before,
	&:after{
		background: #ffc600;		
		animation: loader-anim 1s infinite ease-in-out;
		width: 10px;
		height: 4em;
		position: absolute;
		top: 0;
		content: '';
	}

	&:before{
		left: -1.5em;		
		animation-delay: -0.32s;
	}
	&:after{
		left: 1.5em;
	}
}


@keyframes loader-anim {
  0%,
  80%,
  100% {
    box-shadow: 0 0;
    height: 4em;
  }
  40% {
    box-shadow: 0 -2em;
    height: 5em;
  }
}



.chat-now {
	display: block;
	width: 310px;
	height: 238px;
	background: url(./images/chatnow.png) no-repeat center;
}

//.curve {
//	position: absolute;
//	bottom: 0;
//	left: 0;
//	width: 100%;
//	background-size: 100% 100%;
//	padding-top: 3.8%;
//	background: url(./images/curve.svg) no-repeat center;
//}