.btn {

@include button-size($btn-padding-y, $btn-padding-x, $font-size-base * 0.75, $btn-line-height, $btn-border-radius);
text-transform: uppercase;

}

.btn-reverse-info {

background-color: $white;
border-color: $white;
color: theme-color("info");
box-shadow: 2px 4px 10px 0 rgba(0, 0, 0, 0.11);

&:active,
&:focus,
&:hover {
  color: darken(theme-color("info"), 10%);
}

}