body {
    font-family: 'Poppins', sans-serif!important;
    font-weight: normal!important;
    font-style: normal!important;
    font-size: 14px!important;
    color: #686868!important;
    overflow-x: hidden!important;
    overflow-y: auto!important;
    padding-right: 0px!important;
    /* padding-top: 110px; */
    background:#fff9f6!important;
}

@media (max-width: 1000px) {
    body {
      
        padding-top: 0px;
    }
 
}

*:focus { 
    outline: none;
}
option {
    padding-left: 12px;
    padding-right: 12px;
}

 
@-webkit-keyframes circles {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 0
	}
	20% {
		-webkit-transform: scale(1.44);
		transform: scale(1.44);
		opacity: .5
	}
	100% {
		-webkit-transform: scale(3.2);
		transform: scale(3.2);
		opacity: 0
	}
}
@-moz-keyframes circles {
	0% {
		-moz-transform: scale(1);
		transform: scale(1);
		opacity: 0
	}
	20% {
		-moz-transform: scale(1.44);
		transform: scale(1.44);
		opacity: .5
	}
	100% {
		-moz-transform: scale(3.2);
		transform: scale(3.2);
		opacity: 0
	}
}
@-o-keyframes circles {
	0% {
		-o-transform: scale(1);
		transform: scale(1);
		opacity: 0
	}
	20% {
		-o-transform: scale(1.44);
		transform: scale(1.44);
		opacity: .5
	}
	100% {
		-o-transform: scale(3.2);
		transform: scale(3.2);
		opacity: 0
	}
}
@keyframes circles {
	0% {
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1);
		opacity: 0
	}
	20% {
		-webkit-transform: scale(1.44);
		-moz-transform: scale(1.44);
		-o-transform: scale(1.44);
		transform: scale(1.44);
		opacity: .5
	}
	100% {
		-webkit-transform: scale(3.2);
		-moz-transform: scale(3.2);
		-o-transform: scale(3.2);
		transform: scale(3.2);
		opacity: 0
	}
}


.animation_phone {
	animation: shake-animation 4.72s ease infinite;
	transform-origin: 50% 50%;
  }
  
  @keyframes shake-animation {
	0% {
	  transform: translate(0, 0)
	}
	1.78571% {
	  transform: translate(5px, 0)
	}
	3.57143% {
	  transform: translate(0, 0)
	}
	5.35714% {
	  transform: translate(5px, 0)
	}
	7.14286% {
	  transform: translate(0, 0)
	}
	8.92857% {
	  transform: translate(5px, 0)
	}
	10.71429% {
	  transform: translate(0, 0)
	}
	100% {
	  transform: translate(0, 0)
	}
  }