#filament {
  .btn {
    display: inline-block;
    border: none;
    padding: 14px 30px;
    cursor: pointer;
    @include border-radius(2px);
    @include box-shadow(0 1px 1px rgba(0,0,0,0.2));
    @include box-sizing(border-box);
    line-height: 12px;
    text-shadow: none;
    font: {
      size: 16px;
      weight: 600;
    }
    text-decoration: none;
  }
  .btn-white {
    color: $sky-blue;
    background: white;
    @include transform-origin(50% 50%);
    @include transition(color $speed, background $speed, transform $speed, box-shadow $speed);

    &:hover,
    &:active,
    &:focus {
      @include transform(scale(1.02));
      @include box-shadow(0 3px 5px rgba(0,0,0,0.24));
      @include transition(color $speed, background $speed, transform $speed, box-shadow $speed);
    }
  }

  .btn-primary {
    // background: $red;
    // border-color: $red-dark;
    // color: #fff;
    // border-bottom: 3px;
    // @include box-shadow(inset 0 -4px 0 rgba(0, 0, 0, 0.1), 0 2px 3px rgba(0, 0, 0, 0.08));
    @include primary-cta-new($red);
  }
  .btn-link {
    display: inline-block;
    padding: 0 16px;
    border: none;
    color: #fff;
    cursor: pointer;

    line-height: 34px;
    background: none;
    border-radius: 2px;
    font-weight: 600;
    text: {
      transform: uppercase;
      decoration: none;
    }
    @include transition(background $speed);

    &:hover, &:active, &:focus {
      background: rgba(0,0,0,0.1);
      text-decoration: none;
    }
  }
  .cta {
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
  }
}

