/*------------------------------
Buttons
-------------------------------- */

.button,
input.button {
  position: relative;
  display: inline-block;
  margin-bottom: 1.34em;
  padding: 0.667em 2em;
  border-bottom: none;
  -webkit-border-radius: 0.333em;
  -moz-border-radius: 0.333em;
  border-radius: 2px;
  background-color: rgba(84, 87, 102, 1);
  color: #FFFFFF !important;
  text-decoration: none !important;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'proxima-nova', sans-serif !important;
  font-size: 1.2rem;
  line-height: 1.714em !important;
  margin-right: 1em;
}

.csstransitions .button,
.csstransitions input.button {
  -webkit-transition: background-color 0.3s linear, color 0.3s linear;
  -moz-transition: background-color 0.3s linear, color 0.3s linear;
  transition: background-color 0.3s linear, color 0.3s linear;
}

.button:hover,
input.button:hover {
  border-bottom: none;
  background-color: rgba(84, 87, 102, 0.9);
}

.button:active,
input.button:active {
  box-shadow: inset 0 3px 1px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: inset 0 3px 1px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: inset 0 3px 1px rgba(0, 0, 0, 0.1);
}

.button i {
  margin-right: 0.667em;
  vertical-align: middle;
  line-height: 1em !important;
}

.button.white,
input.button.white {
  background-color: rgba(255, 255, 255, 1);
  color: #545766 !important;
}

.button.white:hover,
input.button.white:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

.button.grey,
input.button.grey {
  background-color: rgba(170, 178, 188, 1);
}

.button.grey:hover,
input.button.grey:hover {
  background-color: rgba(170, 178, 188, 0.9);
}

.button.dark-grey,
input.button.dark-grey {
  background-color: rgba(84, 87, 102, 1);
}

.button.dark-grey:hover,
input.button.dark-grey:hover {
  background-color: rgba(84, 87, 102, 0.9);
}

.button.transparent,
input.button.transparent {
  border: 2px solid rgba(84, 87, 102, 1);
  background-color: transparent;
  color: rgba(84, 87, 102, 1) !important;
}

.button.transparent:hover,
input.button.transparent:hover {
  border: 2px solid rgba(84, 87, 102, 1);
  background-color: rgba(84, 87, 102, 1);
  color: #fff !important;
}

.button.transparent.white,
input.transparent.button.white {
  border: 2px solid rgba(255, 255, 255, 1);
  color: rgba(255, 255, 255, 1) !important;
}

.button.transparent.white:hover,
input.button.transparent.white:hover {
  border: 2px solid rgba(255, 255, 255, 1);
  background-color: rgba(255, 255, 255, 1);
  color: #545766 !important;
}

.button.transparent.grey,
input.transparent.button.grey {
  border: 2px solid rgba(170, 178, 188, 1);
  color: rgba(170, 178, 188, 1) !important;
}

.button.transparent.grey:hover,
input.button.transparent.grey:hover {
  border: 2px solid rgba(170, 178, 188, 1);
  background-color: rgba(170, 178, 188, 1);
  color: #fff !important;
}

.button.transparent.dark-grey,
input.transparent.button.dark-grey {
  border: 2px solid rgba(84, 87, 102, 1);
  color: rgba(84, 87, 102, 1) !important;
}

.button.transparent.dark-grey:hover,
input.button.transparent.dark-grey:hover {
  border: 2px solid rgba(84, 87, 102, 1);
  background-color: rgba(84, 87, 102, 1);
  color: #fff !important;
}