/*
Default style for WP-PageNavi plugin

http://wordpress.org/extend/plugins/wp-pagenavi/
*/

.wp-pagenavi {
  clear: both;
  display: flex;
}

.wp-pagenavi a,
.wp-pagenavi span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 2.2rem;
  padding: 1.1rem 1.7rem;
  border-radius: 0.4rem;
  color: #8a8b8d;
  width: 4.4rem;
  height: 4.4rem;
  transition: all 0.3s ease;
}

.wp-pagenavi a:hover,
.wp-pagenavi span.current {
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  border-color: #000;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 2.2rem;
  color: #f58220;
  background: #fde9d8;
}

.wp-pagenavi span {
  width: 4.4rem;
  height: 4.4rem;
  font-style: normal;
}
