.btn-pack {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  border: 1px solid #ccc;
  background: #fff;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  color: #4c4c4c;
  padding: 0px 20px;
  text-align: center;
  -webkit-transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -ms-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
  vertical-align: middle;
}
.btn-pack:hover {
  background-color: #f2f2f2;
  color: #333;
    text-decoration: none;
}
.btn-pack {
  min-width: 100px;
  height: 40px;
  line-height: 38px;
}
.btn-pack.blue {
  background-color: #2c3d5e;
  border-color: #2c3d5e;
  color: #fff;
    
}
.btn-pack.blue:hover {
  border-color: #506691;
  background-color: #506691;
  color: #fff;
    
}
