/*!*************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!./pivot-blocks/pagination/style.scss ***!
  \*************************************************************************************************************************************************************************************/
.pagination {
  display: flex;
  gap: 10px;
  margin: 45px 0;
  justify-content: space-between;
}
.pagination .center-text {
  display: flex;
  flex-grow: 1;
  justify-content: center;
}
.pagination .page-numbers {
  border: none;
  width: 38px;
  height: 38px;
  padding-bottom: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 18px;
  border-radius: 50%;
  color: var(--wp--preset--color--dark-gray);
}
.pagination .page-numbers:hover, .pagination .page-numbers:focus {
  background: var(--wp--preset--color--light-gray);
}
.pagination .page-numbers.current {
  background: var(--wp--preset--color--orange);
  color: #fff;
}
.pagination .prev {
  width: 100px;
  color: var(--wp--preset--color--orange);
}
.pagination .prev:before {
  align-items: center;
  background: var(--wp--preset--color--orange);
  border-radius: 30px;
  color: #fff;
  content: "\f054";
  display: inline-flex;
  font-family: "FontAwesome";
  font-size: 10px;
  height: 20px;
  justify-content: center;
  margin-right: 10px;
  position: relative;
  top: -1px;
  transform: rotate(180deg);
  transition: 0.1s cubic-bezier(0.17, 0.67, 0.83, 0.67) all;
  width: 20px;
}
.pagination .prev.prev-empty:before {
  display: none;
}
.pagination .prev:hover, .pagination .prev:focus {
  background: none;
}
.pagination .prev:hover:before, .pagination .prev:focus:before {
  transform: translateX(-5px) rotate(180deg);
}
.pagination .next {
  width: 100px;
  color: var(--wp--preset--color--orange);
}
.pagination .next:after {
  margin-left: 10px;
  content: "\f054";
  font-family: "FontAwesome";
  color: #fff;
  background: var(--wp--preset--color--orange);
  width: 20px;
  height: 20px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  transition: 0.1s cubic-bezier(0.17, 0.67, 0.83, 0.67) all;
  position: relative;
  top: -1px;
}
.pagination .next.next-empty:after {
  display: none;
}
.pagination .next:hover, .pagination .next:focus {
  background: none;
}
.pagination .next:hover:after, .pagination .next:focus:after {
  transform: translateX(5px);
}
