/*btn style*/
.btn,
a.btn {
  font-size: 1.4em;
  font-size: 1.4rem;
  display: inline-block;
  padding: .8em 0;
  word-break: keep-all;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  color: #333;

  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.btn--primary {
  border: 1px solid #eee;
  background :#fff;
  color: #333;
}

a.btn--secondary {
  border: 2px solid #cc0000;
  background :#fff;
  color: #cc0000;
}

.btn--fluid {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
  padding: 10px 0;
}

.btn-group {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}

.btn-group > .btn {
  display: table-cell;
  vertical-align: middle;
}