/* Act360 Delivery Rates — distance calculator shortcode */
.dcheap-dist-spinner {
	display: inline-block;
	border: 4px solid #f3f3f3;
	border-radius: 50%;
	border-top: 4px solid #3498db;
	width: 20px;
	height: 20px;
	animation: dcheap-spin 2s linear infinite;
	vertical-align: middle;
}
.dcheap-hide {
	display: none;
}
.dcheap-dist-cal-wrap {
	max-width: 600px;
	width: 100%;
	margin: 0 auto;
}
input.dcheap-postcode-btn {
	background-color: #eeeeee;
	border-color: #eeeeee;
	color: #333333;
	outline: none !important;
	box-shadow: none !important;
	padding: 10px;
	border: 0;
	margin-top: 15px;
	cursor: pointer;
	font-size: 15px;
}
.dcheap-dist-ttl {
	background-color: #eeeeee;
	border-color: #eeeeee;
	color: #333333;
	display: inline-block;
	padding: 8px 15px;
	font-weight: bold;
}
.dcheap-dist-cal-inr {
	border: 1px solid #e7e7e7;
	padding: 15px;
}
.dcheap-no-del-method {
	display: block;
	margin: 30px 0 10px;
	background: #ccc;
	border-radius: 3px;
	color: #000;
	padding: 10px 7px;
}

@keyframes dcheap-spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
