/* Button Styles */
.btn, .button-list li a {
	display: inline-block;
	padding: 1em 1.5em;
	text-transform: uppercase;
	text-align: center;
	outline: none;
	cursor: pointer;
	font-weight: 600;
	border: none;
	position: relative;
	color: #FFFFFF; /* $light */
	background-color: #134070; /* $tertiary */
	transition: .5s ease 0s;
	line-height: 1.2em;
	font-size: 1em;
	min-width: 18rem;
}

.btn:hover, a:hover .btn, .button-list li a:hover {
	background-color: #2A6091; /* $primary */
	color: #FFFFFF; /* $light */
}

.btn.v2 {
	background-color: #2A6091; /* $primary */
}

.btn.v2:hover {
	background-color: #134070; /* $tertiary */
}

p + .btn {
	margin-top: 1.5rem;
}

.btn.flourish {
	padding-left: 2.5rem;
	padding-right: 2.5rem;
}

.btn.flourish:after {
	position: absolute;
	top: 50%;
	width: 2rem;
	height: 1px;
	background-color: #FFFFFF; /* $light */
	content: '';
	right: 0;
	-webkit-transform: translateX(50%);
	-ms-transform: translateX(50%);
	transform: translateX(50%);
	transition: .5s ease;
}

.btn.flourish:hover:after {
	width: 0;
}
/* End Button Styles */

/* Responsive */
@media screen and (max-width:550px) {
	.btn, .button-list li a {
		min-width: 12rem;
	}
}
/* End Responsive */
