/* @less partials */
/*---------------------------------------------------
    LESS Elements 0.9
  ---------------------------------------------------
    A set of useful LESS mixins
    More info at: http://lesselements.com
  ---------------------------------------------------*/
/* @group GN Additions */
/* @end */
/* @group Corporate colours taken from logo */
/* @end */
/* @group Site Defaults */
/* @end */
/* @group Greys */
/* @end */
.btn {
  font-size: 0.9em;
  color: #555553;
  border: none;
  transition: all 0.1s linear;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  margin-top: 0.5rem;
  font-family: 'FrutigerNeueW01-Regular';
}
.btn-default {
  padding-top: 0px;
  padding-right: 0px;
  padding-left: 0px;
  position: relative;
  text-decoration: none;
}
.cta .btn-default {
  font-size: 1.4em;
}
.btn-default:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #555553;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.btn-default:hover:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
.btn-default:hover,
.btn-default:active,
.btn-default:focus {
  background-color: white!important;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
  color: #555553;
  -webkit-box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0) !important;
  box-shadow: inset 0 0px 5px rgba(0, 0, 0, 0) !important;
}
.btn-sm {
  font-size: 0.8em;
  padding: 0.5rem 1rem 0.5rem;
  margin-top: 1rem;
}
.btn-lg {
  font-size: 1.3em;
  margin-top: 2rem;
}
.btn-center {
  margin-left: auto!important;
  margin-right: auto!important;
  text-align: center!important;
}
.ButtonBelow {
  text-align: left;
  margin-bottom: 0px;
  margin-top: 2rem;
}
/*# sourceMappingURL=buttons.css.map */