.ajax_load_btn {
	font-size: 16px;
	color: #EC584D;
	width: 100%;
	height: 40px;
	background: #EDEDED;
	border-radius: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: opacity .3s ease-out;
	will-change: auto;
	cursor: pointer;
}
.ajax_load_btn .spinner {
	background: #EC584D;
	width: 25px;
	height: 25px;
	border-radius: 100%;
	margin-right: .5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	/*transition: .3s ease-out;*/
}
.ajax_load_btn.loading {
	opacity: .5;
	pointer-events: none;
}
.ajax_load_btn.loading .spinner,
.ajax_load_btn:hover .spinner{
	-webkit-animation: spinner .5s linear infinite !important;
	animation: spinner .5s linear infinite !important;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	-ms-transform-style: preserve-3d;
	transform-style: preserve-3d;
}
.ajax_load_btn:hover .spinner {
	-webkit-animation: spinner .5s ease-out 1 !important;
	animation: spinner .5s ease-out 1 !important;
}
.ajax_load_btn .spinner svg {
	fill: white;
	width: 15px;
	height: 15px;
}

@-webkit-keyframes spinner {
	from {
		-webkit-transform: rotate(0deg);
	}

	to {
		-webkit-transform: rotate(360deg);
	}
}

@keyframes spinner {
	from {
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	to {
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}



.module-pagination {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 30px;
	padding-bottom: 30px;
	width: 100%;
	margin-top: 40px;
	border-top: 1px solid #e2e2e2;
}
.module-pagination .nums {
	display: flex;
}

.module-pagination .nums a,
.module-pagination .nums .cur {
	font-weight: 500;
	font-size: 16px;
	line-height: 150%;
	color: #888888;
	padding: 6px 14px;
	border-radius: 5px;
	border: 1px solid #bbb;
	display: inline-block;
	width: initial;
	height: initial;
	margin: .25em;
}
.module-pagination .nums .cur {
	background: #333;
	color: #fff;
	border-color: #333;
}
.module-pagination .nums .point_sep {
	font-weight: 500;
	font-size: 16px;
	line-height: 200%;
	color: #000;
	align-self: flex-end;
}
.module-pagination .prev,
.module-pagination .next {
	/*padding: 6px 14px;*/
	width: 30px;
	height: 30px;
	font-weight: 500;
	font-size: 16px;
	line-height: 150%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	transition: .3s ease-out;
	color: #333;
}
.module-pagination .prev.disabled,
.module-pagination .next.disabled {
	opacity: 0;
	pointer-events: none;
}
.module-pagination .prev svg,
.module-pagination .next svg {

}
.module-pagination .prev svg {
	transform: rotate(90deg);
}
.module-pagination .next svg {
	transform: rotate(-90deg);
}
.module-pagination .prev:hover,
.module-pagination .next:hover {
	background: #EC584D;
	color: white;
}