.whippet-button {
  display: flex;
  align-items: center;
  text-decoration: none !important;
  font-weight: 700;
  position: relative;
  transition: all 0.1s linear;
  text-align: center;
  font-size: 1.075rem;
  line-height: 1em;
  gap: 15px;
  border: 2px solid transparent;
  border-radius: 0;
  padding: 14px 34px 14px 34px;
  cursor: pointer;
  outline-width: 2px;
  outline-color: var(--primary);
  outline-offset: 2px;
  /**
   Colours
   */
  /**
   Styles
   */
  /**
   * Modifiers
   */
}
.whippet-button .arrow {
  width: 45px;
  height: 20px;
  margin-right: -10px;
  transition: transform 0.35s;
}
.whippet-button .arrow .arrow-line {
  transform-origin: center left;
  transition: transform 0.35s;
}
.whippet-button .arrow .arrow-head {
  transform-origin: center right;
  transition: transform 0.35s;
}
.whippet-button:hover .arrow, .whippet-button:focus .arrow, .whippet-button:focus-visible .arrow {
  transform: translateX(5px);
}
.whippet-button:hover .arrow .arrow-line, .whippet-button:focus .arrow .arrow-line, .whippet-button:focus-visible .arrow .arrow-line {
  transform: scaleX(1.07);
}
.whippet-button:hover .arrow .arrow-head, .whippet-button:focus .arrow .arrow-head, .whippet-button:focus-visible .arrow .arrow-head {
  transform: translateX(3px);
}
.whippet-button:focus {
  background-color: unset;
  color: unset;
}
.whippet-button:focus-visible {
  outline-style: solid;
}
.whippet-button:disabled, .whippet-button.is-disabled {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.5;
}
.whippet-button.color--primary {
  --primary: var(--e-global-color-primary, #143F13);
  --secondary: var(--e-global-color-0148f26, #1B561A);
  --text: var(--e-global-color-5e27849, #FFF);
}
.whippet-button.color--secondary {
  --primary: var(--e-global-color-secondary, #BFF251);
  --secondary: var(--e-global-color-8795e94, #AEEF24);
  --text: var(--e-global-color-text, #0C210A);
}
.whippet-button.color--white {
  --primary: var(--e-global-color-5e27849, #FFF);
  --secondary: var(--e-global-color-primary, #143F13);
  --text: var(--e-global-color-primary, #143F13);
}
.whippet-button.style--filled {
  background-color: var(--primary);
  color: var(--text);
}
.whippet-button.style--filled:hover {
  background-color: var(--secondary);
}
.whippet-button.style--outlined {
  border-color: var(--primary);
  color: var(--primary);
}
.whippet-button.style--outlined:hover {
  background-color: var(--primary);
  color: var(--text);
}
.whippet-button.style--text {
  color: var(--primary);
}
.whippet-button.style--text:hover {
  background-color: var(--text-hover);
}
.whippet-button.inline-block {
  display: inline-block;
}
