.paginate {
	position: relative;
}

.paginate .page {
	position: absolute;
	display: block;
	left: -30000px;
	top: 0;
	width: 100%;
}

.paginate .page.active {
	left: 0px;
}

.paginate .page-container {
	display: block;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.paginate .switcher {
	color: #005f71;
	width: 100%;
}

.paginate .switcher ul {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: center;
	list-style: none;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.paginate .switcher li {
	font-size: 16px;
	min-width: 42px;
	height: 32px;
	line-height: 32px;
	margin: 2px;
	padding: 0 10px;
	text-align: center;
	cursor: pointer;
	border-radius: 3px;
}

@media only screen and (max-width: 480px) {

	.paginate .switcher li {
		min-width: 32px;
		padding: 0 4px;
	}
}

.paginate .switcher li.active {
	font-weight: 600;
	background-color: rgba(255, 255, 255, 0.75);
}

