.btn {
  transition: background-color 0.25s ease-in-out, color 0.25s ease-in-out;
  display: inline-flex;
  color: #000;
  text-align: center;
  align-items: center;
  justify-content: center;
  -webkit-user-select: none;
          user-select: none;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 0;
  padding: 8px 20px;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none; }
  .prefers-reduced-motion .btn {
    transition: none; }
  .btn:hover {
    color: #000;
    background-color: #e6e6e6; }
  .btn:disabled, .btn.disabled {
    transition: none;
    opacity: 0.6;
    box-shadow: none;
    cursor: default;
    background-color: #fff;
    color: #000; }
    .prefers-reduced-motion .btn:disabled, .prefers-reduced-motion .btn.disabled {
      transition: none; }
  .btn:active, .btn.active {
    background-color: #d9d9d9; }
  .btn--primary, .btn-primary {
    transition: background-color 0.25s ease-in-out, color 0.25s ease-in-out;
    display: inline-flex;
    color: #000;
    text-align: center;
    align-items: center;
    justify-content: center;
    -webkit-user-select: none;
            user-select: none;
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 0;
    padding: 8px 20px;
    cursor: pointer;
    font-weight: 700;
    text-decoration: none;
    background-color: #005587;
    border-color: #005587;
    color: #fff; }
    .prefers-reduced-motion .btn--primary, .prefers-reduced-motion .btn-primary {
      transition: none; }
    .btn--primary:hover, .btn-primary:hover {
      color: #000;
      background-color: #e6e6e6; }
    .btn--primary:disabled, .btn--primary.disabled, .btn-primary:disabled, .btn-primary.disabled {
      transition: none;
      opacity: 0.6;
      box-shadow: none;
      cursor: default;
      background-color: #fff;
      color: #000; }
      .prefers-reduced-motion .btn--primary:disabled, .prefers-reduced-motion .btn--primary.disabled, .prefers-reduced-motion .btn-primary:disabled, .prefers-reduced-motion .btn-primary.disabled {
        transition: none; }
    .btn--primary:active, .btn--primary.active, .btn-primary:active, .btn-primary.active {
      background-color: #d9d9d9; }
    .btn--primary:hover, .btn-primary:hover {
      color: #fff;
      border-color: #003554;
      background-color: #003554; }
    .btn--primary:active, .btn--primary.active, .btn-primary:active, .btn-primary.active {
      color: #fff;
      border-color: #00253b;
      background-color: #00253b; }
    .btn--primary:disabled, .btn--primary.disabled, .btn-primary:disabled, .btn-primary.disabled {
      background-color: #005587;
      border-color: #005587;
      color: #fff; }
  .btn--secondary, .btn-secondary {
    transition: background-color 0.25s ease-in-out, color 0.25s ease-in-out;
    display: inline-flex;
    color: #000;
    text-align: center;
    align-items: center;
    justify-content: center;
    -webkit-user-select: none;
            user-select: none;
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 0;
    padding: 8px 20px;
    cursor: pointer;
    font-weight: 700;
    text-decoration: none;
    background-color: #ffc72c;
    border-color: #ffc72c;
    color: #000; }
    .prefers-reduced-motion .btn--secondary, .prefers-reduced-motion .btn-secondary {
      transition: none; }
    .btn--secondary:hover, .btn-secondary:hover {
      color: #000;
      background-color: #e6e6e6; }
    .btn--secondary:disabled, .btn--secondary.disabled, .btn-secondary:disabled, .btn-secondary.disabled {
      transition: none;
      opacity: 0.6;
      box-shadow: none;
      cursor: default;
      background-color: #fff;
      color: #000; }
      .prefers-reduced-motion .btn--secondary:disabled, .prefers-reduced-motion .btn--secondary.disabled, .prefers-reduced-motion .btn-secondary:disabled, .prefers-reduced-motion .btn-secondary.disabled {
        transition: none; }
    .btn--secondary:active, .btn--secondary.active, .btn-secondary:active, .btn-secondary.active {
      background-color: #d9d9d9; }
    .btn--secondary:hover, .btn-secondary:hover {
      background-color: #f8b600;
      border-color: #f8b600;
      color: #fff; }
    .btn--secondary:active, .btn--secondary.active, .btn-secondary:active, .btn-secondary.active {
      background-color: #dfa300;
      border-color: #dfa300;
      color: #fff; }
    .btn--secondary:disabled, .btn--secondary.disabled, .btn-secondary:disabled, .btn-secondary.disabled {
      background-color: #fff;
      border-color: #005587;
      color: #005587; }
  .btn--reset, .btn-reset {
    transition: none;
    background-color: transparent;
    border: none;
    border-radius: 0;
    padding: 0; }
    .prefers-reduced-motion .btn--reset, .prefers-reduced-motion .btn-reset {
      transition: none; }
    .btn--reset:hover, .btn--reset:focus, .btn-reset:hover, .btn-reset:focus {
      background-color: transparent; }
  .btn.arrow {
    text-decoration: none;
    display: inline-flex;
    align-items: center; }
    .btn.arrow:after {
      content: "\f10a";
      font-family: "icons" !important;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      display: inline-block;
      vertical-align: middle;
      line-height: 1;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      margin-left: 5px; }
  .btn.arrow-reverse {
    text-decoration: none;
    display: inline-flex;
    align-items: center; }
    .btn.arrow-reverse:before {
      content: "\f109";
      font-family: "icons" !important;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      display: inline-block;
      vertical-align: middle;
      line-height: 1;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      margin-right: 5px; }
