.btn {
	outline:0;
	padding:6px 8px;
	cursor: pointer;
	transition: all 0.2s ease 0s;
	text-align: center;

	background-color:#f9f9f9;
	color:#939598;
	border: 1px solid #e8e9ea;
	border-radius:4px;
	text-decoration: none;
}

.btn:hover {
	background-color: #EDEDED;
	border: 1px solid #DDDDDD;
}

.btn:disabled {
	cursor:not-allowed;
}

.btn.grey {
	background-color:#f9f9f9;
	color:#939598;
	border: 1px solid #e8e9ea;
}

.btn.grey:hover {
	background-color: #EDEDED;
	border: 1px solid #DDDDDD;
}

.btn.blue {
	background-color:#1774ac;
	color:#fff;
	border:0;
}

.btn.blue:hover {
	background-color: #156B9F;
}

.btn.blue:disabled {
	background-color: #7BC3ED;
}

.btn.green {
	background-color:#1ea759;
	color:#fff;
	border:0;
}

.btn.green:hover {
	background-color: #1B954F;
}

.btn.red {
	background-color:#e14a47;
	color:#fff;
	border:0;
}

.btn.red:hover {
	background-color: #C4403E;
}


.btn .fa {
	margin-right:5px;
}

.btn.only-icon .fa {
	margin-right:0px;
}


.btn.right-icon .fa {
	margin-left:10px;
	margin-right:0px;
}

.btn .fa {
	font-size:13px;
}