﻿/*
	Button Styles

	http://localhost:24589/prototype/buttons.html
*/
a.pnfp-button,
button.pnfp-button {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  padding: 15px;
  width: 100%;
  border-radius: 3px;
  background: #0067AE;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 20px;
  color: #fff; }
  a.pnfp-button:hover,
  button.pnfp-button:hover {
    background: #0067ae;
    text-decoration: none; }
  a.pnfp-button.text-center, a.pnfp-button.-text\:center,
  button.pnfp-button.text-center,
  button.pnfp-button.-text\:center {
    justify-content: center; }
  a.pnfp-button .-align\:left,
  button.pnfp-button .-align\:left {
    flex: none;
    padding-right: 1rem; }
  a.pnfp-button .-align\:right,
  button.pnfp-button .-align\:right {
    flex: none;
    padding-left: 1rem;
    margin-left: auto; }
