/* Pagination CSS Made by Zahid Zuhair - 10 Feb 2021 */
.pagination *, .pagination *::before, .pagination *::after
{
	box-sizing:border-box;
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
}
.pagination
{
	/*position: relative;*/
	margin: 0 1rem 0 1rem;
}
.pagination a
{
	text-decoration: none;
	cursor:pointer;
	position: relative;
	display: block;
	padding: .5rem .75rem;
	line-height: 1.25;
	color: #D0364E;
	background-color: #EEE;
}
.pagination
{
	padding-left: 0;
	display: -ms-flexbox;
	display: flex;
	list-style: none;
	border-radius: .25rem;
}
.pagination a.active,.pagination a.active:hover 
{
	background-color: #3482B5;
	color: white;
	cursor: not-allowed;
}
.pagination a:hover:not(.active)
{
	background-color: #ddd;
}
.pagination a.disabled, .pagination a.disabled:focus, .pagination a.disabled:hover
{
	color: #777;
	cursor: not-allowed;
	background-color: #ddd;
}

.content-end
{
	-ms-flex-pack: end!important;
	justify-content: flex-end!important;
}