/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Oct 23 2024 | 12:08:16 */
	/* pagination numbers */

nav .wp-block-query-pagination-numbers{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

nav .wp-block-query-pagination-numbers .page-numbers{
	font-size: 18px !important;
	border: 3px solid #dbdbdb;
	border-radius: 6px;
	margin: 0;
	display: flex;
  align-items: center;
  justify-content: center;
	width: 40px;
  height: 40px;
	text-align: center;
	line-height: 1;
}

nav .wp-block-query-pagination-numbers .page-numbers.current{
	background-color: #171822;
	color: white;
}

	/* pagination next arrow */

.wp-block-query-pagination-next-arrow.is-arrow-chevron::before{
	content: "\276F";
  font-family: inherit;
}

.wp-block-query-pagination-next-arrow {
  visibility: hidden;
  position: relative;
}

.wp-block-query-pagination-next-arrow::before {
  visibility: visible;
  position: absolute;
	width: 40px;
	height: 40px;
	border: 3px solid #dbdbdb;
	border-radius: 6px;
	display: flex;
	align-items: center;
  justify-content: center;
	text-align: center;
	line-height: 1;
  left: 0;
  top: -65%;
}

	/* pagination previous arrow */

.wp-block-query-pagination-previous-arrow.is-arrow-chevron::before{
	content: "\276E";
  font-family: inherit;
}

.wp-block-query-pagination-previous-arrow {
  visibility: hidden;
  position: relative;
}

.wp-block-query-pagination-previous-arrow::before {
  visibility: visible;
  position: absolute;
	width: 40px;
	height: 40px;
	border: 3px solid #dbdbdb;
	border-radius: 6px;
	display: flex;
	align-items: center;
  justify-content: center;
	text-align: center;
	line-height: 1;
  right: 0;
  top: -35%;
}

