/***
 *	Button Module
 *
 *	2017-09-02
 */

.button { display: inline-block; color: #fff; padding: 10px 30px; border-radius: 3px; transition: all .3s linear; text-decoration: none !important; box-shadow: none !important; border-bottom: 0 !important }
	.button-full { display: block; width: 100%; text-align: center }

.button-icon { margin-right: 10px }

.button { background: #0077D8; color: #ddd }
	.button:hover { background: #265c94; color: #ddd }

.button-info { background: #06c }
	.button-info:hover { background: #0051A3 }

.button-error { background: #c00  }
	.button-error:hover { background: #A30000 }

.button-success { background: #390  }
	.button-success:hover { background: #287A00 }

.button-warning { background: #fc0  }
	.button-warning:hover { background: #CCA300 }

.button-inverse { background: #ddd; color: #0077D8 }
	.button-inverse:hover { background: #eee; color: #0077D8 }
	
.button-outline { background: transparent; border: 1px solid #0077D8; color: #0077D8; padding: 9px 29px }
	.button-outline:hover { color: #265c94; border-color: #265c94; background: #eee }

.button-outline-inverse { background: transparent; border: 1px solid #ddd; color: #ddd; padding: 9px 29px }
	.button-outline-inverse:hover { color: #0077D8; border-color: #0077D8; background: #eee }
