/* Buttons */

.button,
button {
	background-color: #f7a824;
	box-shadow: 2px 2px 2px #cccccc;
	border: none;
	color: #fff;
	cursor: pointer;
	font-size: 1.1rem;
	font-weight: bold;
	line-height: 1.3rem;
	outline: none;
	padding: 0.5rem 1rem;
	text-decoration: none;
}

.button:hover,
button:hover {
	background-color: #575656!important;
	color: #ffffff!important;
}

button.disabled,
.button.disabled {
	background-color: #999999!important;
	cursor: default;
}

.buttons-inner {
	/*margin-top: 1.4rem;*/
	background-color: #f9f9f9;
	border-top: 1px solid #eee;
    margin: 1.4rem -1.6rem -1.6rem -1.6rem;
    overflow: hidden;
    padding: 1rem 1.6rem;
}

.buttons-inner button,
.buttons-inner .button {
	box-shadow: 1px 1px 1px #cccccc;
}

/* Button Icons */

.btn-forward::after {
	content: "\f054";
	font-family: FontAwesome;
	font-size: 0.9em;
	font-weight: normal;
	margin-left: 0.6em;
}

.btn-back::before {
	content: "\f053";
	font-family: FontAwesome;
	font-size: 0.9em;
	font-weight: normal;
	margin-right: 0.6em;
}