.pag {
	display: flex;
	align-items: center;
	list-style-type: none;
	padding-left: 0;
}

* + .pag {
	margin-top: 2.5rem;
}

@media (min-width: 992px) {
	* + .pag {
		margin-top: 3.5rem;
	}
}

.pag-simple-link {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-family: "Montserrat", sans-serif;
	color: #151515;
	transform-origin: 50% 70%;
}

.pag-simple-link:hover, .pag-simple-link:focus {
	color: #ff7a00;
}

.pag-simple-link.inactive {
	pointer-events: none;
}

.pag-simple-link-prev,
.pag-simple-link-next {
	position: relative;
	z-index: 0;
	width: 1.875rem;
	height: 1.875rem;
	font-size: 1.5rem;
	border-radius: 50%;
	transition: all 0.2s ease-in-out;
	background-color: #f6f6f6;
}

.pag-simple-link-prev::after,
.pag-simple-link-next::after {
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	content: '';
	background: linear-gradient(90deg, #ff7a00, #ffa551);
	opacity: 0;
	transition: all 0.2s ease-in-out;
	border-radius: inherit;
}

.pag-simple-link-prev:hover,
.pag-simple-link-next:hover {
	color: #fff;
}

.pag-simple-link-prev:hover::after,
.pag-simple-link-next:hover::after {
	opacity: 1;
}

.pag-simple-item.active .pag-simple-link {
	color: #ff7a00;
	transform: scale(1.2);
}

.pag-simple-item.disabled .pag-simple-link {
	color: #5d5d66;
	pointer-events: none;
}

.pag-simple-item + .pag-simple-item {
	margin-right: 0.8125rem;
}

.pag-simple-item-control + .pag-simple-item,
.pag-simple-item + .pag-simple-item-control {
	margin-right: 1.25rem;
}

@media (min-width: 992px) {
	.pag-simple-item-control + .pag-simple-item,
	.pag-simple-item + .pag-simple-item-control {
		margin-right: 3.125rem;
	}
}

.pag-extended {
	flex-wrap: wrap;
	margin-bottom: -15px;
	margin-left: -15px;
}

.pag-extended:empty {
	margin-bottom: 0;
	margin-left: 0;
}

.pag-extended > * {
	margin-top: 0;
	margin-bottom: 15px;
	margin-left: 15px;
}

.pag-extended-item {
	width: 400px;
	max-width: 100%;
	padding: 20px 15px;
	border: 1px solid #e5e5e5;
	border-radius: 0.3125rem;
	transition: all 0.2s ease-in-out;
}

.pag-extended-item:hover {
	border-color: transparent;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.pag-extended-item:first-child {
	text-align: left;
}

.pag-extended-item:last-child {
	text-align: right;
}

.pag-extended-title {
	padding-bottom: .95em;
	margin-bottom: .95em;
	border-bottom: 1px solid #e5e5e5;
}

.pag-extended-link {
	font-size: 0.875rem;
	font-weight: 500;
	color: #6b39bd;
}

.pag-extended-arrow {
	color: #151515;
}

.pag-extended-link-prev > *,
.pag-extended-link-next > * {
	vertical-align: middle;
}

.pag-extended-link-prev > * + *,
.pag-extended-link-next > * + * {
	margin-left: 10px;
}

@media (min-width: 576px) {
	.pag-extended {
		flex-wrap: nowrap;
	}
}

@media (min-width: 768px) {
	.pag-extended-item {
		padding: 25px 20px;
	}
}

@media (min-width: 1600px) {
	.pag-extended {
		margin-bottom: -40px;
		margin-left: -40px;
	}
	.pag-extended:empty {
		margin-bottom: 0;
		margin-left: 0;
	}
	.pag-extended > * {
		margin-top: 0;
		margin-bottom: 40px;
		margin-left: 40px;
	}
	.pag-extended-item {
		padding: 38px 39px;
	}
}

.pag-short-link {
	font-size: 0.875rem;
	font-weight: 500;
	color: #151515;
	transition: all 0.2s ease-in-out;
}

.pag-short-link:hover {
	color: #6b39bd;
}

.pag-short-link-prev > *,
.pag-short-link-next > * {
	vertical-align: middle;
}

.pag-short-link-prev > * + *,
.pag-short-link-next > * + * {
	margin-left: 10px;
}

.pag-short-link + .pag-short-link {
	margin-left: 25px;
}

.pag-short-bordered .pag-short-link + .pag-short-link {
	margin-left: 17px;
}

.pag-short-bordered .pag-short-link {
	padding: 10px 13px;
	color: #6b39bd;
	border: 1px solid #e5e5e5;
	border-radius: 0.3125rem;
}

.pag-short-bordered .pag-short-link:hover {
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
	border-color: transparent;
}

.pag-short-bordered .pag-short-arrow {
	color: #151515;
}

.context-dark .pag-short-link {
	color: inherit;
}

.context-dark .pag-short-link:hover {
	color: #6b39bd;
}

.context-dark .pag-short-bordered .pag-short-link {
	color: #6b39bd;
}

.context-dark .pag-short-bordered .pag-short-arrow {
	color: inherit;
}

@media (min-width: 1600px) {
	.pag-short-bordered .pag-short-link {
		padding: 16px 33px;
	}
	.pag-short-link + .pag-short-link {
		margin-left: 60px;
	}
}