.area-shop .loader {
	text-align: center;
}

.chasing-dots {
	height: 60px;
	width: 60px;
	right: 0;
	left: 0;
	z-index: 10;
	display: inline-block;
	position: relative;
	text-align: center;
	margin-right: 30px;
	-webkit-animation: rotate 2.0s infinite linear;
	-moz-animation: rotate 2.0s infinite linear;
	-ms-animation: rotate 2.0s infinite linear;
	animation: rotate 2.0s infinite linear;
}

.chasing-dots .dot1,
.chasing-dots .dot2 {
	width: 60%;
	height: 60%;
	display: inline-block;
	position: absolute;
	top: 0;
	background-color: #ccc;
	border-radius: 100%;
	-webkit-animation: bounce 2.0s infinite ease-in-out;
	-moz-animation: bounce 2.0s infinite ease-in-out;
	-ms-animation: bounce 2.0s infinite ease-in-out;
	animation: bounce 2.0s infinite ease-in-out;
}

.chasing-dots .dot2 {
	top: auto;
	bottom: 0;
	animation-delay: -1.0s
}

@keyframes -webkit-bounce {
	0%, 100% {
		transform: scale(0);
		-webkit-transform: scale(0)
	}

	50% {
		transform: scale(1);
		-webkit-transform: scale(1)
	}
}

@keyframes bounce {
	0%, 100% {
		transform: scale(0);
		-webkit-transform: scale(0)
	}

	50% {
		transform: scale(1);
		-webkit-transform: scale(1)
	}
}

@-webkit-keyframes rotate {
	100% {
		transform: rotate(360deg);
		-webkit-transform: rotate(360deg)
	}
}

@keyframes rotate {
	100% {
		transform: rotate(360deg);
		-webkit-transform: rotate(360deg)
	}
}