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

/* Rem Unit font sizes with relative fallback http:/seesparkbox.com/foundry/scss_rem_mixin_now_with_a_better_fallback
	Usage: @include font-size(1, large);
*/
/*------------------------------------*\
    $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;
}

.btn, .btn.elf-external, .btn.link-external {
  font-size: var(--btn-font-size);
  transition: background-color 300ms ease-out, border-color 320ms ease-out;
  background-color: var(--btn-bg-color);
  color: #fff;
  border: 1px solid var(--btn-border);
  position: relative;
  z-index: 1;
}
.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: #fff;
  background-color: var(--btn-hover);
  border-color: var(--btn-hover);
  outline: 0;
  text-decoration: none;
}
.btn:focus, .btn.elf-external:focus, .btn.link-external:focus {
  outline: 1px solid var(--btn-hover);
  outline-offset: 2px;
}
.btn.read-more {
  position: relative;
  display: inline-block;
  padding-right: 4rem;
}
.btn.read-more:after {
  content: "\f101";
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  color: inherit;
  position: absolute;
  top: 0.4rem;
  right: 1.6rem;
  font-size: 1.6rem;
}
.btn.read-more:focus:after, .btn.read-more:active:after, .btn.read-more:hover:after {
  color: inherit;
}
.btn:visited {
  color: white;
}

.btn-blue, .btn-blue.elf-external, .btn-blue.link-external {
  font-size: var(--btn-font-size);
  transition: background-color 300ms ease-out, border-color 320ms ease-out;
  background-color: var(--blue-alt);
  color: white;
  border: 1px solid var(--btn-border);
  position: relative;
  z-index: 1;
}
.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: white;
  background-color: var(--blue);
  border-color: var(--blue);
  outline: 0;
  text-decoration: none;
}
.btn-blue:focus, .btn-blue.elf-external:focus, .btn-blue.link-external:focus {
  outline: 1px solid var(--blue);
  outline-offset: 2px;
}

.btn-orange, .btn-orange.elf-external, .btn-orange.link-external {
  font-size: var(--btn-font-size);
  transition: background-color 300ms ease-out, border-color 320ms ease-out;
  background-color: var(--orange);
  color: var(--gray-darkest);
  border: 1px solid var(--btn-border);
  position: relative;
  z-index: 1;
}
.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(--gray-darkest);
  background-color: var(--orange);
  border-color: var(--orange);
  outline: 0;
  text-decoration: none;
}
.btn-orange:focus, .btn-orange.elf-external:focus, .btn-orange.link-external:focus {
  outline: 1px solid var(--orange);
  outline-offset: 2px;
}
.btn-orange.inactive {
  opacity: 0.3;
  color: var(--gray-lightest);
}

.btn-green, .btn-green.elf-external, .btn-green.link-external {
  font-size: var(--btn-font-size);
  transition: background-color 300ms ease-out, border-color 320ms ease-out;
  background-color: var(--green);
  color: white;
  border: 1px solid var(--btn-border);
  position: relative;
  z-index: 1;
}
.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: white;
  background-color: var(--green);
  border-color: var(--green);
  outline: 0;
  text-decoration: none;
}
.btn-green:focus, .btn-green.elf-external:focus, .btn-green.link-external:focus {
  outline: 1px solid var(--green);
  outline-offset: 2px;
}

.btn-burgundy, .btn-burgundy.elf-external, .btn-burgundy.link-external {
  font-size: var(--btn-font-size);
  transition: background-color 300ms ease-out, border-color 320ms ease-out;
  background-color: var(--burgundy);
  color: white;
  border: 1px solid var(--btn-border);
  position: relative;
  z-index: 1;
}
.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: white;
  background-color: var(--burgundy);
  border-color: var(--burgundy);
  outline: 0;
  text-decoration: none;
}
.btn-burgundy:focus, .btn-burgundy.elf-external:focus, .btn-burgundy.link-external:focus {
  outline: 1px solid var(--burgundy);
  outline-offset: 2px;
}

.btn-alt, .btn-alt.elf-external, .btn-alt.link-external {
  font-size: var(--btn-font-size);
  transition: background-color 300ms ease-out, border-color 320ms ease-out;
  background-color: var(--gray-lighter);
  color: var(--gray-dark);
  border: 1px solid var(--btn-border);
  position: relative;
  z-index: 1;
}
.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(--gray-dark);
  background-color: var(--gray-light);
  border-color: var(--gray-light);
  outline: 0;
  text-decoration: none;
}
.btn-alt:focus, .btn-alt.elf-external:focus, .btn-alt.link-external:focus {
  outline: 1px solid var(--gray-light);
  outline-offset: 2px;
}
.btn-alt.active, .btn-alt.elf-external.active, .btn-alt.link-external.active {
  font-size: var(--btn-font-size);
  transition: background-color 300ms ease-out, border-color 320ms ease-out;
  background-color: var(--burgundy);
  color: white;
  border: 1px solid var(--btn-border);
  position: relative;
  z-index: 1;
}
.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: white;
  background-color: var(--burgundy);
  border-color: var(--burgundy);
  outline: 0;
  text-decoration: none;
}
.btn-alt.active:focus, .btn-alt.elf-external.active:focus, .btn-alt.link-external.active:focus {
  outline: 1px solid var(--burgundy);
  outline-offset: 2px;
}

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;
  padding-right: 1.5rem;
}
.btn-text:after {
  content: "\f101";
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  color: inherit;
  position: absolute;
  top: 0;
  right: -0.5rem;
  font-size: inherit;
}
.btn-text:focus:after, .btn-text:active:after, .btn-text:hover:after {
  color: inherit;
}
.btn-text:after {
  color: inherit;
  position: relative;
}
.btn-text:after:hover {
  color: inherit;
}
.btn-text:hover {
  color: var(--link-hover);
}
.btn-text.btn-blue, .btn-text.btn-orange, .btn-text.btn-green, .btn-text.btn-burgundy {
  padding-right: 2.7rem;
}
.btn-text.btn-blue:after, .btn-text.btn-orange:after, .btn-text.btn-green:after, .btn-text.btn-burgundy:after {
  top: 0.6rem;
  right: 0.7rem;
}
/*# sourceMappingURL=../maps/components/buttons.css.map */
