/*--------------------------------------------------------------
# Button graphics
--------------------------------------------------------------*/
.is-style-graphic-element-light .wp-element-button,
.is-style-graphic-element-dark .wp-element-button {
  overflow: hidden;
  position: relative;
  transition: all 0.1s ease-in-out;
}
.is-style-graphic-element-light .wp-element-button::after,
.is-style-graphic-element-dark .wp-element-button::after {
  top: 0;
  right: 0;
  height: 50%;
  width: auto;
  content: "";
  aspect-ratio: 1/1;
  position: absolute;
  border-radius: 0 0 0 9999px;
  transition: all 0.2s ease-in-out;
  background-color: var(--wp--preset--color--accent-5);
}
.is-style-graphic-element-light .wp-element-button::before,
.is-style-graphic-element-dark .wp-element-button::before {
  bottom: 0;
  right: 0;
  height: 50%;
  width: auto;
  content: "";
  aspect-ratio: 1/1;
  position: absolute;
  border-radius: 9999px 0 0 0;
  transition: all 0.2s ease-in-out;
  background-color: var(--wp--preset--color--accent-1);
}
.is-style-graphic-element-light .wp-element-button:hover, .is-style-graphic-element-light .wp-element-button:focus,
.is-style-graphic-element-dark .wp-element-button:hover,
.is-style-graphic-element-dark .wp-element-button:focus {
  background-color: var(--wp--preset--color--accent-1);
}
.is-style-graphic-element-light .wp-element-button:hover::after, .is-style-graphic-element-light .wp-element-button:focus::after,
.is-style-graphic-element-dark .wp-element-button:hover::after,
.is-style-graphic-element-dark .wp-element-button:focus::after {
  background-color: var(--wp--preset--color--accent-5);
}
.is-style-graphic-element-light .wp-element-button:hover::before, .is-style-graphic-element-light .wp-element-button:focus::before,
.is-style-graphic-element-dark .wp-element-button:hover::before,
.is-style-graphic-element-dark .wp-element-button:focus::before {
  background-color: var(--wp--preset--color--contrast);
}

/*# sourceMappingURL=button-graphic-element.css.map */
