.button {
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  background: url(/Content/images/buttons/button.png) no-repeat center;
  background-size: cover;
  font-family: 'robotobold';
  text-decoration: none;
  text-align: center;
  min-width: 300px;
  letter-spacing: .04em;
  margin: 20px 10px;
  padding: 14px 12px 16px;
  line-height: 1.1;
  font-size: 17px;
  color: #fff !important;
  text-shadow: 2px 2px 2px #333;
  font-weight: bold;
  text-transform: uppercase;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  cursor: pointer; }
  @media screen and (max-width: 640px) {
    .button {
      margin: 10px auto;
      min-width: 0; } }
  .button:hover::after {
    opacity: 0;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s; }
  .button::after {
    content: '';
    background: url(/Content/images/buttons/buttonHover.png) no-repeat center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
    pointer-events: none;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s; }
  .button span {
    position: relative;
    z-index: 1; }

.centerButtonWrap {
  text-align: center; }
