/*
* Global button styling
*/
/*
* Breakpoint debugging
*/
/*
* MEDIA QUERIES
* Breakpoints for responsive sites
*/
/*
* SASS Parent append
* Useful if you want to add an append to the parent without writing it out again
* Usage: @include parent-append(":hover")
* Source: https://codepen.io/imkremen/pen/RMVBvq
*/
/*
* Skew
* Useful mixing to create skewed edges
* Usage: @include angle-edge(bottomright, 3deg, topleft, 3deg, #fff);
* Source: http://www.hongkiat.com/blog/skewed-edges-css/
*/
/*
* TEXT TRUNCATE
* An easy way to truncate text with an ellipsis. Requires the element to be block or inline-block.
* Usage: @include text-truncate;
* Source: http://web-design-weekly.com/2013/05/12/handy-sass-mixins/
*/
/*
* DON'T BREAK
* Useful mixing so links don't overrun their container
* Usage: @include dontbreak();
* Source: https://css-tricks.com/snippets/css/prevent-long-urls-from-breaking-out-of-container/
*/
/*
* Dynamic Spacing
* A nice easy way to create a vertical rhythm for section of content
*/
.block-button,
.btn {
  overflow: hidden;
  text-align: center;
  padding: 1.5rem 4rem 1.4rem 1.5rem;
  color: var(--wp--preset--color--primary);
  background: white;
  border: 1px solid var(--wp--preset--color--primary);
  text-transform: uppercase;
  text-decoration: none;
  font-size: 1.4rem;
  line-height: 2.4rem;
  font-family: Inter, "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  line-height: normal;
  position: relative;
  align-items: flex-start;
  display: inline-flex;
  justify-content: flex-start;
  gap: 1.5rem;
  font-weight: 700;
  min-width: 19rem;
  border-radius: 0;
  box-shadow: none;
  transition: all 0.2s ease-in-out;
}
.block-button:after,
.btn:after {
  content: "";
  width: 0;
  height: 0;
  border-top: 0.8rem solid transparent;
  border-bottom: 0.8rem solid transparent;
  border-left: 1.5rem solid var(--wp--preset--color--primary);
  position: absolute;
  right: 1.5rem;
  transition: all 250ms ease-out;
}
.block-button svg,
.block-button span,
.btn svg,
.btn span {
  z-index: 2;
  position: relative;
}
.block-button svg path,
.block-button span path,
.btn svg path,
.btn span path {
  fill: #fff;
}
.block-button svg,
.btn svg {
  width: 25px;
  height: 25px;
  fill: #fff;
}
.block-button:hover, .block-button:active, .block-button:focus,
.btn:hover,
.btn:active,
.btn:focus {
  text-decoration: none;
  background: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--background);
}
.block-button:hover:after, .block-button:active:after, .block-button:focus:after,
.btn:hover:after,
.btn:active:after,
.btn:focus:after {
  border-left-color: var(--wp--preset--color--background);
}
.block-button:hover svg,
.block-button:hover span, .block-button:active svg,
.block-button:active span, .block-button:focus svg,
.block-button:focus span,
.btn:hover svg,
.btn:hover span,
.btn:active svg,
.btn:active span,
.btn:focus svg,
.btn:focus span {
  color: var(--wp--preset--color--primary);
}
.block-button:hover svg path,
.block-button:hover span path, .block-button:active svg path,
.block-button:active span path, .block-button:focus svg path,
.block-button:focus span path,
.btn:hover svg path,
.btn:hover span path,
.btn:active svg path,
.btn:active span path,
.btn:focus svg path,
.btn:focus span path {
  fill: var(--wp--preset--color--primary);
}
.block-button.btn-primary, .block-button.is-style-btn-primary,
.btn.btn-primary,
.btn.is-style-btn-primary {
  color: var(--wp--preset--color--background);
  background: var(--wp--preset--color--primary);
}
.block-button.btn-primary path, .block-button.is-style-btn-primary path,
.btn.btn-primary path,
.btn.is-style-btn-primary path {
  fill: var(--wp--preset--color--background);
}
.block-button.btn-primary:after, .block-button.is-style-btn-primary:after,
.btn.btn-primary:after,
.btn.is-style-btn-primary:after {
  border-left-color: var(--wp--preset--color--background);
}
.block-button.btn-primary:hover, .block-button.btn-primary:active, .block-button.btn-primary:focus, .block-button.is-style-btn-primary:hover, .block-button.is-style-btn-primary:active, .block-button.is-style-btn-primary:focus,
.btn.btn-primary:hover,
.btn.btn-primary:active,
.btn.btn-primary:focus,
.btn.is-style-btn-primary:hover,
.btn.is-style-btn-primary:active,
.btn.is-style-btn-primary:focus {
  background: var(--wp--preset--color--background);
  color: var(--wp--preset--color--primary);
}
.block-button.btn-primary:hover:after, .block-button.btn-primary:active:after, .block-button.btn-primary:focus:after, .block-button.is-style-btn-primary:hover:after, .block-button.is-style-btn-primary:active:after, .block-button.is-style-btn-primary:focus:after,
.btn.btn-primary:hover:after,
.btn.btn-primary:active:after,
.btn.btn-primary:focus:after,
.btn.is-style-btn-primary:hover:after,
.btn.is-style-btn-primary:active:after,
.btn.is-style-btn-primary:focus:after {
  border-left-color: var(--wp--preset--color--primary);
}
.block-button.btn-primary:hover svg,
.block-button.btn-primary:hover span, .block-button.btn-primary:active svg,
.block-button.btn-primary:active span, .block-button.btn-primary:focus svg,
.block-button.btn-primary:focus span, .block-button.is-style-btn-primary:hover svg,
.block-button.is-style-btn-primary:hover span, .block-button.is-style-btn-primary:active svg,
.block-button.is-style-btn-primary:active span, .block-button.is-style-btn-primary:focus svg,
.block-button.is-style-btn-primary:focus span,
.btn.btn-primary:hover svg,
.btn.btn-primary:hover span,
.btn.btn-primary:active svg,
.btn.btn-primary:active span,
.btn.btn-primary:focus svg,
.btn.btn-primary:focus span,
.btn.is-style-btn-primary:hover svg,
.btn.is-style-btn-primary:hover span,
.btn.is-style-btn-primary:active svg,
.btn.is-style-btn-primary:active span,
.btn.is-style-btn-primary:focus svg,
.btn.is-style-btn-primary:focus span {
  color: var(--wp--preset--color--primary);
}
.block-button.btn-primary:hover svg path,
.block-button.btn-primary:hover span path, .block-button.btn-primary:active svg path,
.block-button.btn-primary:active span path, .block-button.btn-primary:focus svg path,
.block-button.btn-primary:focus span path, .block-button.is-style-btn-primary:hover svg path,
.block-button.is-style-btn-primary:hover span path, .block-button.is-style-btn-primary:active svg path,
.block-button.is-style-btn-primary:active span path, .block-button.is-style-btn-primary:focus svg path,
.block-button.is-style-btn-primary:focus span path,
.btn.btn-primary:hover svg path,
.btn.btn-primary:hover span path,
.btn.btn-primary:active svg path,
.btn.btn-primary:active span path,
.btn.btn-primary:focus svg path,
.btn.btn-primary:focus span path,
.btn.is-style-btn-primary:hover svg path,
.btn.is-style-btn-primary:hover span path,
.btn.is-style-btn-primary:active svg path,
.btn.is-style-btn-primary:active span path,
.btn.is-style-btn-primary:focus svg path,
.btn.is-style-btn-primary:focus span path {
  fill: var(--wp--preset--color--primary);
}
.block-button.btn-secondary, .block-button.is-style-btn-secondary,
.btn.btn-secondary,
.btn.is-style-btn-secondary {
  background: var(--wp--preset--color--secondary);
  color: var(--wp--preset--color--background);
}
.block-button.btn-secondary path, .block-button.is-style-btn-secondary path,
.btn.btn-secondary path,
.btn.is-style-btn-secondary path {
  fill: color;
}
.block-button.btn-secondary:hover, .block-button.btn-secondary:active, .block-button.btn-secondary:focus, .block-button.is-style-btn-secondary:hover, .block-button.is-style-btn-secondary:active, .block-button.is-style-btn-secondary:focus,
.btn.btn-secondary:hover,
.btn.btn-secondary:active,
.btn.btn-secondary:focus,
.btn.is-style-btn-secondary:hover,
.btn.is-style-btn-secondary:active,
.btn.is-style-btn-secondary:focus {
  background: var(--wp--preset--color--background);
  color: var(--wp--preset--color--secondary);
}
.block-button.btn-secondary:hover svg,
.block-button.btn-secondary:hover span, .block-button.btn-secondary:active svg,
.block-button.btn-secondary:active span, .block-button.btn-secondary:focus svg,
.block-button.btn-secondary:focus span, .block-button.is-style-btn-secondary:hover svg,
.block-button.is-style-btn-secondary:hover span, .block-button.is-style-btn-secondary:active svg,
.block-button.is-style-btn-secondary:active span, .block-button.is-style-btn-secondary:focus svg,
.block-button.is-style-btn-secondary:focus span,
.btn.btn-secondary:hover svg,
.btn.btn-secondary:hover span,
.btn.btn-secondary:active svg,
.btn.btn-secondary:active span,
.btn.btn-secondary:focus svg,
.btn.btn-secondary:focus span,
.btn.is-style-btn-secondary:hover svg,
.btn.is-style-btn-secondary:hover span,
.btn.is-style-btn-secondary:active svg,
.btn.is-style-btn-secondary:active span,
.btn.is-style-btn-secondary:focus svg,
.btn.is-style-btn-secondary:focus span {
  color: var(--wp--preset--color--secondary);
}
.block-button.btn-secondary:hover svg path,
.block-button.btn-secondary:hover span path, .block-button.btn-secondary:active svg path,
.block-button.btn-secondary:active span path, .block-button.btn-secondary:focus svg path,
.block-button.btn-secondary:focus span path, .block-button.is-style-btn-secondary:hover svg path,
.block-button.is-style-btn-secondary:hover span path, .block-button.is-style-btn-secondary:active svg path,
.block-button.is-style-btn-secondary:active span path, .block-button.is-style-btn-secondary:focus svg path,
.block-button.is-style-btn-secondary:focus span path,
.btn.btn-secondary:hover svg path,
.btn.btn-secondary:hover span path,
.btn.btn-secondary:active svg path,
.btn.btn-secondary:active span path,
.btn.btn-secondary:focus svg path,
.btn.btn-secondary:focus span path,
.btn.is-style-btn-secondary:hover svg path,
.btn.is-style-btn-secondary:hover span path,
.btn.is-style-btn-secondary:active svg path,
.btn.is-style-btn-secondary:active span path,
.btn.is-style-btn-secondary:focus svg path,
.btn.is-style-btn-secondary:focus span path {
  fill: var(--wp--preset--color--secondary);
}
.block-button.btn-white, .block-button.is-style-btn-white,
.btn.btn-white,
.btn.is-style-btn-white {
  background: #fff;
  color: var(--wp--preset--color--secondary);
}
.block-button.btn-white path, .block-button.is-style-btn-white path,
.btn.btn-white path,
.btn.is-style-btn-white path {
  fill: var(--wp--preset--color--secondary);
}
.block-button.btn-white:hover, .block-button.btn-white:active, .block-button.btn-white:focus, .block-button.is-style-btn-white:hover, .block-button.is-style-btn-white:active, .block-button.is-style-btn-white:focus,
.btn.btn-white:hover,
.btn.btn-white:active,
.btn.btn-white:focus,
.btn.is-style-btn-white:hover,
.btn.is-style-btn-white:active,
.btn.is-style-btn-white:focus {
  background: var(--wp--preset--color--secondary);
}
.block-button.btn-white:hover svg,
.block-button.btn-white:hover span, .block-button.btn-white:active svg,
.block-button.btn-white:active span, .block-button.btn-white:focus svg,
.block-button.btn-white:focus span, .block-button.is-style-btn-white:hover svg,
.block-button.is-style-btn-white:hover span, .block-button.is-style-btn-white:active svg,
.block-button.is-style-btn-white:active span, .block-button.is-style-btn-white:focus svg,
.block-button.is-style-btn-white:focus span,
.btn.btn-white:hover svg,
.btn.btn-white:hover span,
.btn.btn-white:active svg,
.btn.btn-white:active span,
.btn.btn-white:focus svg,
.btn.btn-white:focus span,
.btn.is-style-btn-white:hover svg,
.btn.is-style-btn-white:hover span,
.btn.is-style-btn-white:active svg,
.btn.is-style-btn-white:active span,
.btn.is-style-btn-white:focus svg,
.btn.is-style-btn-white:focus span {
  color: #fff;
}
.block-button.btn-white:hover svg path,
.block-button.btn-white:hover span path, .block-button.btn-white:active svg path,
.block-button.btn-white:active span path, .block-button.btn-white:focus svg path,
.block-button.btn-white:focus span path, .block-button.is-style-btn-white:hover svg path,
.block-button.is-style-btn-white:hover span path, .block-button.is-style-btn-white:active svg path,
.block-button.is-style-btn-white:active span path, .block-button.is-style-btn-white:focus svg path,
.block-button.is-style-btn-white:focus span path,
.btn.btn-white:hover svg path,
.btn.btn-white:hover span path,
.btn.btn-white:active svg path,
.btn.btn-white:active span path,
.btn.btn-white:focus svg path,
.btn.btn-white:focus span path,
.btn.is-style-btn-white:hover svg path,
.btn.is-style-btn-white:hover span path,
.btn.is-style-btn-white:active svg path,
.btn.is-style-btn-white:active span path,
.btn.is-style-btn-white:focus svg path,
.btn.is-style-btn-white:focus span path {
  fill: #fff;
}
.block-button.btn-default-no-icon, .block-button.is-style-btn-default-no-icon,
.btn.btn-default-no-icon,
.btn.is-style-btn-default-no-icon {
  padding: 1.5rem;
}
.block-button.btn-default-no-icon:hover span, .block-button.is-style-btn-default-no-icon:hover span,
.btn.btn-default-no-icon:hover span,
.btn.is-style-btn-default-no-icon:hover span {
  color: #fff;
}
.block-button.btn-default-no-icon:after, .block-button.is-style-btn-default-no-icon:after,
.btn.btn-default-no-icon:after,
.btn.is-style-btn-default-no-icon:after {
  display: none;
}
.block-button.btn-green-no-icon, .block-button.is-style-green-no-icon,
.btn.btn-green-no-icon,
.btn.is-style-green-no-icon {
  padding: 1.5rem;
  color: var(--wp--preset--color--forestgreen);
  border: 1px solid var(--wp--preset--color--forestgreen);
}
.block-button.btn-green-no-icon:hover, .block-button.is-style-green-no-icon:hover,
.btn.btn-green-no-icon:hover,
.btn.is-style-green-no-icon:hover {
  background-color: var(--wp--preset--color--forestgreen);
}
.block-button.btn-green-no-icon:hover span, .block-button.is-style-green-no-icon:hover span,
.btn.btn-green-no-icon:hover span,
.btn.is-style-green-no-icon:hover span {
  color: #fff;
}
.block-button.btn-green-no-icon:after, .block-button.is-style-green-no-icon:after,
.btn.btn-green-no-icon:after,
.btn.is-style-green-no-icon:after {
  display: none;
}
.block-button.full-width,
.btn.full-width {
  display: block;
}
.block-button.aligncenter, .block-button.center,
.btn.aligncenter,
.btn.center {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.2s ease-in-out;
}
.block-button.btn-outline,
.btn.btn-outline {
  background: transparent;
  border-color: var(--wp--preset--color--background);
  color: var(--wp--preset--color--background);
}/*# sourceMappingURL=block-button.css.map */