/* stylelint-disable */

/* Danger variant banner */
body .buorg {
  font: inherit;
  color: #fff; /* $text-color-light */
  background-color: #ff7a7d; /* $danger */
  border-bottom: none;
}

/* Small sized button */
body #buorgul,
body #buorgpermanent,
body #buorgig {
  padding: 0.5rem 1rem;
  margin: 0.5rem 0;
  font-family: 'Italian Plate No1 Mono', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 0.77778em;
  line-height: 1.5;
  text-transform: uppercase;
  background: none;
  border-radius: 5em;
  transition: color 0.5s ease-in-out, background-color 0.5s ease-in-out, border-color 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
}

/* Light variant button */
body #buorgul,
body #buorgpermanent {
   color: #fff; /* $text-color-light */
   border: 2px solid #fff; /* $text-color-light */
}

body #buorgul:hover,
body #buorgpermanent:hover {
  color: #ff7a7d; /* $danger */
  background: #fff; /* $text-color-light */
}

body .buorg-icon {
  display: none;
}

/* Dark variant button */
body #buorgig {
  color: #202031;
  border: 2px solid #202031;
}

body #buorgig:hover {
  color: #fff; /* $text-color-light */
  background: #202031;
}
