/*
 * DO NOT EDIT THIS FILE.
 * See the following change record for more information,
 * https://www.drupal.org/node/3084859
 * @preserve
 */

/**
 * @file
 * Styles for pagination.
 */
 nav.pager{
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f5f5f7;
	padding: 0.625rem;
	border-radius: 4px;
}
nav .pagination{
	margin-bottom: 0;
}
nav .pagination .page-item{
	padding: 2px;
}
nav .pagination .page-link{
	border: none;
	background-color: #fff;
	color: #284544;
	border-radius: 0;
	width: 2.5rem;
	text-align: center;
}
nav .pagination .page-item:first-child .page-link, nav .pagination .page-item:last-child .page-link{
	border-radius: 0;
}
nav .pagination .page-link:hover{
	background: #284544;
	color: #fff;
}
nav .pagination .page-item.page-item--active .page-link{
	background: #284544;
	color: #fff;
}
