.main-pagination__wrapper{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;

	margin-top: 48px;
	margin-bottom: 80px;
}
.main-pagination {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}
.main-pagination__item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 10px;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.12s ease, border-color 0.12s ease, color 0.12s ease;
	box-sizing: border-box;

	color:#677489;
	text-align: center;
	font-family: 'Mulish','sans-serif';
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 22px;

	border-radius: 8px;
	background:#F0F2F5;
}
.main-pagination__item:hover {
	background: #E8EAED;
	color: #002441;
	text-decoration: none;
}
.main-pagination__item--active {
	background: #00619A;
	color: #ffffff;
	font-weight: 500;
	cursor: default;

	&:hover{
		background: #0170B1;
		color: white;
	}
}
.main-pagination__item--prev,
.main-pagination__item--next {
	font-size: 0;
	padding: 0;
	min-width: 40px;
	background: unset;
	
	&:hover{
		background: #F5F6FB;
	}
}
.main-pagination__item--prev::before {
	content: '';
	display: block;
	width: 7px;
	height: 11px;
	background-image: url("data:image/svg+xml,%3Csvg width='7' height='11' viewBox='0 0 7 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 1L1 5.5L6 10' stroke='%236b7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
}
.main-pagination__item--next::before {
	content: '';
	display: block;
	width: 7px;
	height: 11px;
	background-image: url("data:image/svg+xml,%3Csvg width='7' height='11' viewBox='0 0 7 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 5.5L1 10' stroke='%236b7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
}
.main-pagination__item--prev:hover::before {
	background-image: url("data:image/svg+xml,%3Csvg width='7' height='11' viewBox='0 0 7 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 1L1 5.5L6 10' stroke='%231a1a1a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.main-pagination__item--next:hover::before {
	background-image: url("data:image/svg+xml,%3Csvg width='7' height='11' viewBox='0 0 7 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 5.5L1 10' stroke='%231a1a1a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.main-pagination__item--disabled {
	opacity: 0.35;
	pointer-events: none;
}
.main-pagination__dots {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	letter-spacing: 1px;
	cursor: default;

	color:#8796AF;
	text-align: center;
	font-family: 'Mulish','sans-serif';
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
}
.main-pagination__item--showall,
.main-pagination__item--showpaged {
	color: #1a6ed8 !important;
	border-color: #1a6ed8 !important;
}
.main-pagination__item--showall:hover,
.main-pagination__item--showpaged:hover {
	background: #e8f0fb !important;
}

.main-pagination__showmore{
	color:#FFF;
	font-family: 'Mulish','sans-serif';
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: 24px;
	width: 172px;
	height: 52px;
	box-sizing:border-box;
	border-radius:10px;
	background:#00619A;

	display: flex;
	align-items: center;
	justify-content: center;

	padding: 14px 24px;

	transition: 0.3s;
	&:hover{
		cursor: pointer;
		color: white;
		background: #0170B1;
	}


}

.main-pagination__showmore.is-loading{
	color: transparent;
}

.main-pagination__showmore.is-loading span{
	display: none;
}

.main-pagination__showmore svg{
	display: none;
}

.main-pagination__showmore.is-loading svg{
	display: block;
}


@media(max-width: 991px){
	.main-pagination__wrapper{
		flex-direction: column;
		gap: 20px;

		margin-bottom: 40px;
	}

	.main-pagination__showmore{
		width: 100%;
	}

	.main-pagination{
		gap: 6px;
	}

	.main-pagination__item{
		height: 36px;
		min-width: 36px;
	}
	.main-pagination__dots{
		height: 36px;
		min-width: 36px;
	}

	.main-pagination__item--prev, .main-pagination__item--next{
		min-width: 36px;
	}
}