  /* stylelint-disable order/order */
/* stylelint-enable order/order */
/*
 * Fonts
 *
 * The font settings are defined via the gulp figma task creates variables in the css/__base-includes/figma/_figma-font-styles.scss file based on the Figma file. Additional variables are defined here.
 */
/*
 * Colors
 *
 * The primary colors are defined via the gulp figma task creates variables in the css/__base-includes/figma/_figma-color-variables.scss file based on the Figma file. Additional variables are defined here.
 */
/*
 * Effects
 */
/*
 * Grid Settings
 */
/*
This file can be used for optional additions to the Figma-generated font style mixins in the figma/_figma-font-styles.scss file.

For example, if you want to add styles to the @overline mixin, just create a mixin here called @overline-custom and that CSS will be added to the primary mixin:

@mixin overline-custom() {
	font-weight: 700;
}
*/
body .content-wrapper .eight29-pagination-list ul {
  position: relative;
  z-index: 1;
  padding-left: 0;
}
body .content-wrapper .eight29-pagination-list ul li button {
  font-weight: var(--link-1-font-weight);
  font-size: var(--link-1-font-size);
  font-family: var(--link-1-font-family);
  line-height: var(--link-1-line-height);
  margin-bottom: var(--link-1-margin-bottom);
  position: relative;
  border: 1px solid transparent;
  border-radius: 50%;
  background-color: #deeff5;
  background-clip: padding-box;
  transition: border-color;
}
body .content-wrapper .eight29-pagination-list ul li button:last-child {
  margin-bottom: 0;
}
body .content-wrapper .eight29-pagination-list ul li button::after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: "";
  z-index: -1;
  margin: -1px;
  border-radius: inherit;
  background-image: linear-gradient(90deg, #166886 0%, #00aeaa 13%, #00c0de 22.96%, #69cde6 33.85%, #cd0 44.27%, #eeb342 54.71%, #e9829f 66.01%, #e47449 76.39%, #ff6b36 86.77%, #d97c4e 98.54%);
  opacity: 0;
  transition: opacity 0.2s linear;
}
body .content-wrapper .eight29-pagination-list ul li button.current-page::after {
  opacity: 1;
}

.eight29-pagination-arrow {
  display: flex;
  align-items: center;
  font-size: 0;
}

.eight29-pagination-prev .eight29-pagination-arrow {
  margin-right: 0.1875rem;
}
.eight29-pagination-prev .eight29-pagination-arrow::before {
  content: "\ea10";
  font-weight: 400;
  font-size: 24px;
  font-family: "iconfont-propel";
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.eight29-pagination-next .eight29-pagination-arrow {
  margin-left: 0.1875rem;
}
.eight29-pagination-next .eight29-pagination-arrow::before {
  content: "\ea11";
  font-weight: 400;
  font-size: 24px;
  font-family: "iconfont-propel";
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}