button, button.elf-external, button.link-external,
.btn,
.btn.elf-external,
.btn.link-external, .btn-blue, .btn-blue.elf-external, .btn-blue.link-external, .btn-orange, .btn-orange.elf-external, .btn-orange.link-external, .btn-green, .btn-green.elf-external, .btn-green.link-external, .btn-burgundy, .btn-burgundy.elf-external, .btn-burgundy.link-external, .btn-alt, .btn-alt.elf-external, .btn-alt.link-external, .btn-alt.active {
  display: inline-block;
  font-family: var(--font);
  font-weight: var(--btn-font-weight);
  text-align: center;
  text-decoration: none;
  vertical-align: baseline;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  *zoom: 1;
  background-image: none;
  background-size: 100% 100%;
}
button:focus,
.btn:focus, .btn-blue:focus, .btn-orange:focus, .btn-green:focus, .btn-burgundy:focus, .btn-alt:focus, button:hover,
.btn:hover, .btn-blue:hover, .btn-orange:hover, .btn-green:hover, .btn-burgundy:hover, .btn-alt:hover, button:active,
.btn:active, .btn-blue:active, .btn-orange:active, .btn-green:active, .btn-burgundy:active, .btn-alt:active {
  text-decoration: none;
  outline: 0;
}

/* ------------------------------------*\
    $BUTTONS
\*------------------------------------ */
.btn,
.btn-blue,
.btn-orange,
.btn-burgundy,
.btn-green,
.btn-alt {
  margin-bottom: 2.4rem;
  text-transform: capitalize;
  letter-spacing: 0.1px;
  padding: 0.7rem;
}
.spacing .btn, .spacing-bottom .btn, p .btn,
.spacing .btn-blue,
.spacing-bottom .btn-blue,
p .btn-blue,
.spacing .btn-orange,
.spacing-bottom .btn-orange,
p .btn-orange,
.spacing .btn-burgundy,
.spacing-bottom .btn-burgundy,
p .btn-burgundy,
.spacing .btn-green,
.spacing-bottom .btn-green,
p .btn-green,
.spacing .btn-alt,
.spacing-bottom .btn-alt,
p .btn-alt {
  margin-bottom: 0;
}

button, button.elf-external, button.link-external,
.btn,
.btn.elf-external,
.btn.link-external {
  font-size: 1.4rem;
  position: relative;
  z-index: 1;
  color: var(--btn-text-color);
  background-color: var(--btn-bg-color);
  border: 1px solid var(--btn-border);
  -webkit-transition: background-color 300ms ease-out, border-color 320ms ease-out;
  transition: background-color 300ms ease-out, border-color 320ms ease-out;
}
button:focus, button:hover, button:active, button.elf-external:focus, button.elf-external:hover, button.elf-external:active, button.link-external:focus, button.link-external:hover, button.link-external:active,
.btn:focus,
.btn:hover,
.btn:active,
.btn.elf-external:focus,
.btn.elf-external:hover,
.btn.elf-external:active,
.btn.link-external:focus,
.btn.link-external:hover,
.btn.link-external:active {
  color: var(--btn-hover-text);
  text-decoration: none;
  background-color: var(--btn-hover);
  border-color: var(--btn-hover);
  outline: 0;
}
button:focus, button.elf-external:focus, button.link-external:focus,
.btn:focus,
.btn.elf-external:focus,
.btn.link-external:focus {
  outline: 1px dotted var(--btn-hover);
  outline-offset: 4px;
}
button.read-more,
.btn.read-more {
  position: relative;
  display: inline-block;
}
button.read-more::after,
.btn.read-more::after {
  content: "\f101";
  font-family: "FontAwesome", serif;
  font-style: normal;
  line-height: 1;
  text-decoration: inherit;
  text-decoration: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  padding-left: 4rem;
  position: relative;
  font-weight: 400;
  font-size: 1.6rem;
}
button.read-more:focus::before, button.read-more:active::before, button.read-more:hover::before,
.btn.read-more:focus::before,
.btn.read-more:active::before,
.btn.read-more:hover::before {
  color: inherit;
}
button:visited,
.btn:visited {
  color: white;
}

.btn-blue, .btn-blue.elf-external, .btn-blue.link-external {
  font-size: 1.4rem;
  position: relative;
  z-index: 1;
  color: white;
  background-color: var(--blue-alt);
  border: 1px solid var(--blue);
  -webkit-transition: background-color 300ms ease-out, border-color 320ms ease-out;
  transition: background-color 300ms ease-out, border-color 320ms ease-out;
}
.btn-blue:focus, .btn-blue:hover, .btn-blue:active, .btn-blue.elf-external:focus, .btn-blue.elf-external:hover, .btn-blue.elf-external:active, .btn-blue.link-external:focus, .btn-blue.link-external:hover, .btn-blue.link-external:active {
  color: var(--btn-hover-text);
  text-decoration: none;
  background-color: var(--blue);
  border-color: var(--blue);
  outline: 0;
}
.btn-blue:focus, .btn-blue.elf-external:focus, .btn-blue.link-external:focus {
  outline: 1px dotted var(--blue);
  outline-offset: 4px;
}

.btn-orange, .btn-orange.elf-external, .btn-orange.link-external {
  font-size: 1.4rem;
  position: relative;
  z-index: 1;
  color: var(--gray-darkest);
  background-color: var(--orange);
  border: 1px solid var(--orange-darken);
  -webkit-transition: background-color 300ms ease-out, border-color 320ms ease-out;
  transition: background-color 300ms ease-out, border-color 320ms ease-out;
}
.btn-orange:focus, .btn-orange:hover, .btn-orange:active, .btn-orange.elf-external:focus, .btn-orange.elf-external:hover, .btn-orange.elf-external:active, .btn-orange.link-external:focus, .btn-orange.link-external:hover, .btn-orange.link-external:active {
  color: var(--btn-hover-text);
  text-decoration: none;
  background-color: var(--orange);
  border-color: var(--orange);
  outline: 0;
}
.btn-orange:focus, .btn-orange.elf-external:focus, .btn-orange.link-external:focus {
  outline: 1px dotted var(--orange);
  outline-offset: 4px;
}
.btn-orange.inactive {
  color: var(--gray-lightest);
  opacity: 0.3;
}

.btn-green, .btn-green.elf-external, .btn-green.link-external {
  font-size: 1.4rem;
  position: relative;
  z-index: 1;
  color: white;
  background-color: var(--green);
  border: 1px solid var(--green-darken);
  -webkit-transition: background-color 300ms ease-out, border-color 320ms ease-out;
  transition: background-color 300ms ease-out, border-color 320ms ease-out;
}
.btn-green:focus, .btn-green:hover, .btn-green:active, .btn-green.elf-external:focus, .btn-green.elf-external:hover, .btn-green.elf-external:active, .btn-green.link-external:focus, .btn-green.link-external:hover, .btn-green.link-external:active {
  color: var(--btn-hover-text);
  text-decoration: none;
  background-color: var(--green);
  border-color: var(--green);
  outline: 0;
}
.btn-green:focus, .btn-green.elf-external:focus, .btn-green.link-external:focus {
  outline: 1px dotted var(--green);
  outline-offset: 4px;
}

.btn-burgundy, .btn-burgundy.elf-external, .btn-burgundy.link-external {
  font-size: 1.4rem;
  position: relative;
  z-index: 1;
  color: white;
  background-color: var(--burgundy);
  border: 1px solid var(--burgundy-darken);
  -webkit-transition: background-color 300ms ease-out, border-color 320ms ease-out;
  transition: background-color 300ms ease-out, border-color 320ms ease-out;
}
.btn-burgundy:focus, .btn-burgundy:hover, .btn-burgundy:active, .btn-burgundy.elf-external:focus, .btn-burgundy.elf-external:hover, .btn-burgundy.elf-external:active, .btn-burgundy.link-external:focus, .btn-burgundy.link-external:hover, .btn-burgundy.link-external:active {
  color: var(--btn-hover-text);
  text-decoration: none;
  background-color: var(--burgundy);
  border-color: var(--burgundy);
  outline: 0;
}
.btn-burgundy:focus, .btn-burgundy.elf-external:focus, .btn-burgundy.link-external:focus {
  outline: 1px dotted var(--burgundy);
  outline-offset: 4px;
}

.btn-alt, .btn-alt.elf-external, .btn-alt.link-external {
  font-size: 1.4rem;
  position: relative;
  z-index: 1;
  color: var(--btn-alt-text);
  background-color: var(--btn-alt);
  border: 1px solid var(--btn-alt);
  -webkit-transition: background-color 300ms ease-out, border-color 320ms ease-out;
  transition: background-color 300ms ease-out, border-color 320ms ease-out;
}
.btn-alt:focus, .btn-alt:hover, .btn-alt:active, .btn-alt.elf-external:focus, .btn-alt.elf-external:hover, .btn-alt.elf-external:active, .btn-alt.link-external:focus, .btn-alt.link-external:hover, .btn-alt.link-external:active {
  color: var(--btn-alt-hover-text);
  text-decoration: none;
  background-color: var(--btn-alt-hover);
  border-color: var(--btn-alt-hover);
  outline: 0;
}
.btn-alt:focus, .btn-alt.elf-external:focus, .btn-alt.link-external:focus {
  outline: 1px dotted var(--btn-alt-hover);
  outline-offset: 4px;
}
.btn-alt.active, .btn-alt.elf-external.active, .btn-alt.link-external.active {
  font-size: 1.4rem;
  position: relative;
  z-index: 1;
  color: white;
  background-color: var(--burgundy);
  border: 1px solid var(--burgundy-darken);
  -webkit-transition: background-color 300ms ease-out, border-color 320ms ease-out;
  transition: background-color 300ms ease-out, border-color 320ms ease-out;
}
.btn-alt.active:focus, .btn-alt.active:hover, .btn-alt.active:active, .btn-alt.elf-external.active:focus, .btn-alt.elf-external.active:hover, .btn-alt.elf-external.active:active, .btn-alt.link-external.active:focus, .btn-alt.link-external.active:hover, .btn-alt.link-external.active:active {
  color: var(--btn-hover-text);
  text-decoration: none;
  background-color: var(--burgundy);
  border-color: var(--burgundy);
  outline: 0;
}
.btn-alt.active:focus, .btn-alt.elf-external.active:focus, .btn-alt.link-external.active:focus {
  outline: 1px dotted var(--burgundy);
  outline-offset: 4px;
}

a.btn-blue, a.btn-orange, a.btn-green, a.btn-burgundy {
  color: white;
}
a.btn-blue:visited, a.btn-orange:visited, a.btn-green:visited, a.btn-burgundy:visited {
  color: white;
}
a.btn-blue:focus, a.btn-orange:focus, a.btn-green:focus, a.btn-burgundy:focus {
  color: white;
}
a.btn-blue:hover, a.btn-orange:hover, a.btn-green:hover, a.btn-burgundy:hover {
  color: white;
}
a.btn-blue:active, a.btn-orange:active, a.btn-green:active, a.btn-burgundy:active {
  color: white;
}

.btn-large {
  font-size: 2.4rem;
  padding: 1.2rem;
}

.btn-alt.fullsize {
  background-repeat: no-repeat;
  padding: 1.2rem 1.5rem;
}

.btn + .btn {
  margin-left: 1.5rem;
}
[dir=rtl] .btn + .btn {
  margin-left: 0;
  margin-right: 1.5rem;
}

.btn-small {
  padding: 0.4rem 1rem;
}

.btn-text {
  position: relative;
  display: inline-block;
}
.btn-text::after {
  content: "\f101";
  font-family: "FontAwesome", serif;
  font-style: normal;
  line-height: 1;
  text-decoration: inherit;
  text-decoration: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  padding-left: 1.5rem;
  position: relative;
  font-weight: 400;
  font-size: 1em;
}
.btn-text:focus::before, .btn-text:active::before, .btn-text:hover::before {
  color: inherit;
}
/*# sourceMappingURL=../sourcemaps/components/buttons.css.map */
