.button {
    font-family: Circular Std, HelveticaNeue, Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    /* line-height: 60px; */
    display: inline-block;
    box-sizing: border-box;
    /* height: 64px; */
    /* padding: 0 20px 4px; */
    padding: 18px 10px;
    cursor: pointer;
    -webkit-transition: background 200ms ease;
    transition: background 200ms ease;
    text-align: center;
    /* white-space: nowrap; */
    text-decoration: none;
    letter-spacing: .15px;
    color: #fff;
    border: none;
    border-radius: 6px;
    background-color: #53117e;
    width: 90%
}

.button:hover,
.button:focus {
    outline: 0;
    background-color: #2E0844;
}

.button.button-secondary {
    color: #53117e;
    background-color: #fff;
    box-shadow: inset 0 0 0 2px #53117e;
}

.button.button-secondary:hover,
.button.button-secondary:focus {
    outline: 0;
    background-color: #f3eff5;
}

.button-extra-info {
  border: 0;
  background: #eff0f5;
  box-shadow: none;
  border-radius: 6px 6px 12px 12px;
  z-index: 999;
  color: #b3b4b7;
  font-size: 13px;
}
.button-extra-info strong {
  color: #8c8c90;
  font-size: 15px;
}
.button-extra-info span {
  border: 1px solid #CCC;
  border-radius: 3px;
  margin-left: 6px;
  font-size: 13px;
  padding: 4px;
  color: #b3b4b7;
}
