.archive-pager {
	margin: 24px 0 48px 0;
	a,
	.current,
	.dots {
		display: block;
		padding: 8px 16px;
	}
	.current{
		color: $grey;
	}
}

.single-pager {
	background: $white;
	display: -webkit-flex;
	display: flex;
	margin: 24px 8px 72px 8px;
	a {
		display: block;
		font-size: 14px;
		padding: 24px;
		&:hover {
			background: $light_grey;
		}
	}
}
.single-pager-navi {
	border-bottom: 3px double $border_light;
	border-top: 3px double $border_light;
	-webkit-flex: 1;
	flex: 1;
}
.prev-arrow,
.next-arrow{
	position: relative;
}
.prev-arrow {
	padding: 0 0 0 24px;
}
.next-arrow {
	padding: 0 24px 0 0;
}
.prev-arrow:before,
.next-arrow:after {
	content: '';
	display: inline-block;
	height: 8px;
	position: absolute;
	top: 50%;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	width: 8px;
}
.prev-arrow:before {
	border-left: 2px solid $border_light;
	border-bottom: 2px solid $border_light;
	left: 10px;
	margin: -6px 0 0;
}
.next-arrow:after {
	border-right: 2px solid $border_light;
	border-top: 2px solid $border_light;
	margin: -4px 0 0;
	right: 10px;
}