.component.button {
  margin-bottom: 20px;
}
.component.button a,
.component.button button {
  display: inline-block;
}
.component.button.width-float a,
.component.button.width-float button {
  display: inline-block;
}
.component.button.width-float-newline a,
.component.button.width-float-newline button {
  display: block;
  float: left;
  clear: both;
}
.component.button.width-consistent a,
.component.button.width-consistent button {
  display: block;
}
@media (min-width: 500px) {
  .component.button.width-consistent {
    display: flex;
    flex-direction: row;
    align-items: stretch;
  }
  .component.button.width-consistent a,
  .component.button.width-consistent button {
    flex: 1;
  }
}
.component.button a:link,
.component.button a:visited,
.component.button button {
  font-size: 14px;
  text-transform: uppercase;
  text-align: center;
  padding: 10px 20px;
  font-weight: 700;
  margin: 5px;
  border-width: 2px;
  border-style: solid;
  border-radius: 1px;
  transition: background .1s;
}
.component.button a:link.btn-red,
.component.button a:visited.btn-red,
.component.button button.btn-red {
  color: #fff;
  border-color: #e00122;
  background-color: #e00122;
}
.component.button a:link.btn-ghost-red,
.component.button a:visited.btn-ghost-red,
.component.button button.btn-ghost-red {
  border-color: #e00122;
  color: #e00122;
  background-color: transparent;
}
.component.button a:link.btn-white,
.component.button a:visited.btn-white,
.component.button button.btn-white {
  color: #e00122;
  border-color: #fff;
  background-color: #fff;
}
.component.button a:link.btn-ghost-white,
.component.button a:visited.btn-ghost-white,
.component.button button.btn-ghost-white {
  border-color: #fff;
  color: #fff;
  background-color: transparent;
}
.component.button a:link.btn-black,
.component.button a:visited.btn-black,
.component.button button.btn-black {
  color: #fff;
  border-color: #000;
  background-color: #000;
}
.component.button a:link.btn-ghost-black,
.component.button a:visited.btn-ghost-black,
.component.button button.btn-ghost-black {
  border-color: #000;
  color: #000;
  background-color: transparent;
}
.component.button a:link:hover,
.component.button a:visited:hover,
.component.button button:hover,
.component.button a:link:focus,
.component.button a:visited:focus,
.component.button button:focus {
  background-color: #B8011C;
  border-color: #B8011C;
  color: #fff;
  outline: 0;
}

