.btn {
  background: #CCCCCC;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border-radius: 8px;
  box-shadow: 0 0 3px #333333 inset, 0 2px 3px rgba(0, 0, 0, 0.5);
  color: #EFEFEF;
  display: inline-block;
  font-size: 11px;
  height: 22px;
  margin: 0;
  padding: 0 12px;
  line-height: 19px;
  position: relative;
  top: -0.2em;
  text-align: center;
  text-decoration: none;
  background-image: linear-gradient(to bottom, #999, #666);
  width: 100%;
  margin-bottom: 0.5em; }
  .btn:before, .btn:after {
    content: '';
    display: none; }
  .btn:active {
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.5) inset;
    background-image: linear-gradient(to bottom, #999, #666); }
  .btn-wrap {
    text-align: center;
    border-top: dotted 1px #ccc;
    padding-top: 1em; }
  .btn--primary, .btn--primary:active {
    background-image: linear-gradient(to bottom, #4a9122, #2f6548); }
  .btn--wide {
    width: 100%; }
  .btn--huge {
    font-size: 1em;
    height: 40px;
    line-height: 40px;
    padding: 0 20px; }
  @media (min-width: 479px) {
    .btn {
      width: auto; } }

.btn-close {
  position: absolute;
  right: 0;
  border-radius: 50%;
  background: #fff;
  line-height: 1.8em;
  width: 2em;
  height: 2em;
  z-index: 1;
  font-size: 0.8em;
  box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.5); }
  .btn-close:after {
    content: 'x'; }
  .btn-close:hover, .btn-close:active {
    background: red;
    color: #fff; }
