@charset "utf-8";

/*
	Button
*/
.bf-btn {
	display: inline-block;
	margin: 6px 0;
	padding:0 26px;
	height: 40px;
	line-height: 40px;
	color: #555;
	font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
	font-size: 15px;
	font-weight: bold;
	letter-spacing: 0.03em;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	vertical-align: middle;
	background:#e0e0e0;
	border: none;
	border-radius: 4px;
	box-shadow: 0 0px 2px rgba(0, 0, 0, 0.12), 0 2px 2px rgba(0, 0, 0, 0.2);
	cursor: pointer;
	outline: 0;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
	overflow: hidden;
}

.bf-btn:hover,
.bf-btn:focus {
	opacity: 0.85;
}
.bf-btn:active {
	opacity: 0.75;
}
.bf-btn:active:hover {
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
	.bf-btn:hover,
	.bf-btn:focus {
		box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.12), -1px 0px 2px rgba(0, 0, 0, 0.12), 0 0px 2px rgba(0, 0, 0, 0.12), 0 2px 2px rgba(0, 0, 0, 0.2);
	}
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
	.bf-btn:active:hover {
		box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.12), -1px 0px 2px rgba(0, 0, 0, 0.12), 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
	}
}

.bf-btn-small {
	font-size: 13px;
	height: 30px;
	padding: 0 16px;
	line-height: 30px;
}

.bf-btn-large {
	font-size: 16px;
	height:50px;
	line-height: 50px;
	padding: 0 26px;
	letter-spacing: 0.01em;
}

.bf-btn-fluid{
	display: block;
	width: 100%;
	font-size: 16px;
	letter-spacing: 0.01em;
	height: 50px;
	line-height: 50px;
	padding: 0;
}

.bf-btn[disabled="disabled"]{
	cursor: not-allowed;
	box-shadow: none;
	opacity: 0.60;
}

.bf-btn[disabled="disabled"]:hover,
.bf-btn[disabled="disabled"]:focus,
.bf-btn[disabled="disabled"]:active {
}

.bf-btn[disabled="disabled"]:active:hover{
	box-shadow:none;
}

.bf-btn + .bf-btn {
	margin-left: 8px;
}

.bf-btn + .bf-btn-fluid,
.bf-btn-fluid + .bf-btn-fluid {
	margin-top: 24px;
	margin-left: 0;
}

.bf-btn-primary,
.bf-btn-primary:hover,
.bf-btn-primary:focus,
.bf-btn-primary:active,
.bf-btn-primary:visited,
.bf-btn-primary[disabled="disabled"]:hover,
.bf-btn-primary[disabled="disabled"]:focus,
.bf-btn-primary[disabled="disabled"]:active {
	color: #FFF;
	background-color: #e66b02;
}

.bf-btn-secondary,
.bf-btn-secondary:hover,
.bf-btn-secondary:focus,
.bf-btn-secondary:active,
.bf-btn-secondary:visited,
.bf-btn-secondary[disabled="disabled"]:hover,
.bf-btn-secondary[disabled="disabled"]:focus,
.bf-btn-secondary[disabled="disabled"]:active {
	color: #FFF;
	background-color: #1697d8;
}

.bf-btn .icon-bookmark:before,
.bf-btn .icon-bookmark-spin:before {
    color: #555555;
}
.bf-btn .icon-bookmark-add:before {
    color: #d93005;
}

/*
	Button icon position
*/
.bf-btn .icon-right-open{
	position: absolute;
	right: 20px;
}

/*
	icon animation
*/

.animate-spin {
	-moz-animation: spin 1s infinite steps(8);
	-o-animation: spin 1s infinite steps(8);
	-webkit-animation: spin 1s infinite steps(8);
	animation: spin 1s infinite steps(8);
	display: inline-block;
}

@-moz-keyframes spin {
	0% {
		-moz-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-moz-transform: rotate(359deg);;
		transform: rotate(359deg);
	}
}
@-webkit-keyframes spin {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(359deg);
		transform: rotate(359deg);
	}
}
@-o-keyframes spin {
	0% {
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-o-transform: rotate(359deg);
		transform: rotate(359deg);
	}
}

@-ms-keyframes spin {
	0% {
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-ms-transform: rotate(359deg);
		transform: rotate(359deg);
	}
}

/*
	Validation Error
*/
input.bf-validation-error,
select.bf-validation-error,
textarea.bf-validation-error,
input.bf-validation-error-limited{
	background:#fff1f1 !important;
	border:solid 1px #ff1c32 !important;
}

.bf-validation-error-msg,
.bf-validation-error-msg-limited{
	margin:4px 0 0;
	color:#ff1c32;
	font-size: 12px;
	line-height:1.3;
}
