.btn,
.btn-default {
  font-family: 'Roboto', 'Arial', sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  display: inline-block;
  text-align: center;
  line-height: 1;
  cursor: pointer;
  background-color: #9b2743;
  color: #FFF;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, border 0.3s ease-in-out;
  vertical-align: middle;
  border-radius: 0;
  border: 1px solid #9b2743;
  margin: 0 3px;
  padding: 0.8em 1em; }
  .btn a,
  .btn-default a {
    color: inherit;
    text-decoration: none; }
    .btn a:hover,
    .btn-default a:hover {
      color: inherit; }
  .btn:hover, .btn:focus,
  .btn-default:hover,
  .btn-default:focus {
    background-color: #FFF;
    color: #9b2743;
    border: 1px solid #9b2743; }
  .btn:disabled, .btn.is-disabled,
  .btn-default:disabled,
  .btn-default.is-disabled {
    opacity: 0.5;
    cursor: not-allowed; }

.btn--secondary,
.btn-alternate {
  background: rgba(0, 0, 0, 0.85);
  color: #FFF;
  border: 1px solid #FFF;
  padding: 1em; }
  .btn--secondary:hover, .btn--secondary:focus,
  .btn-alternate:hover,
  .btn-alternate:focus {
    background-color: #FFF;
    color: #000;
    border: 1px solid #000; }

.btn--gold {
  background: #f0b310;
  color: #FFF;
  border: 1px solid #f0b310; }
  .btn--gold a {
    color: #000;
    font-weight: bold; }
  .btn--gold:hover, .btn--gold:focus {
    background-color: #FFF;
    color: #000;
    border: 1px solid #f0b310; }

.btn--circle {
  border-radius: 50%;
  width: 45px;
  height: 45px;
  border: 1px solid #9b2743;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center; }
  .btn--circle:hover, .btn--circle:focus {
    background-color: #FFF;
    border: 1px solid #9b2743;
    fill: #9b2743; }
