/* simple buttons from http://semantic-ui.com/ */
.button {
	cursor: pointer;
	display: inline-block;
	vertical-align: middle;
	min-height: 1em;
	outline: none;
	border: none;
	background-color: transparent;
	color: var(--color);
	margin: 0em;
	padding: 0.6em 0.8em;
	font-size: 0.875em;
	line-height: 1;
	font-weight: bold;
	font-style: normal;
	text-align: center;
	text-decoration: none;
	border-radius: 0.25em;
	-webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.08) inset;
	box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.08) inset;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-transition: opacity 0.25s ease, background-color 0.25s ease, color 0.25s ease, background 0.25s ease, -webkit-box-shadow 0.25s ease;
	transition: opacity 0.25s ease, background-color 0.25s ease, color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.button:hover {
	text-decoration: none;
	background-color: var(--color);
	color: #fff;
}