.b-primary-btn {
  position: relative;
  overflow: hidden;
  color: #fff;
  font-size: 20px;
  line-height: 22px;
  padding: 13px 40px;
  margin: 4px 0;
  font-weight: 700;
  text-transform: uppercase;
  background-color: #6EBB25;
  border-radius: 5px;
  font-family: "PT Sans", sans-serif;
  border-width: 0;
}
.b-primary-btn:hover, .b-primary-btn:focus, .b-primary-btn:active {
  color: #fff;
  box-shadow: none;
  outline: none;
}
.b-primary-btn span {
  display: block;
  position: relative;
  z-index: 2;
}
.b-primary-btn::after {
  position: absolute;
  top: -100%;
  z-index: 1;
  left: 0;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  background-color: #FDB13F;
  transition: top 0.3s ease;
}
.b-primary-btn:hover::after {
  top: 0;
}
.b-primary-btn--inverse {
  background-color: #FDB13F;
}
.b-primary-btn--inverse::after {
  background-color: #6EBB25;
}
.b-primary-btn--blue {
  background-color: #256FBB;
}
.b-primary-btn--blue::after {
  background-color: #6EBB25;
}
.b-primary-btn--sm {
  font-size: 15px;
  padding: 7px 25px;
}
/*# sourceMappingURL=buttons.css.map */
