
/*=== Buttons === */
.button {
	align-items: center;
	border: 1px solid;
	border-radius: 6px;
	box-sizing: border-box;
	display: inline-flex;
	flex-shrink: 0;
	justify-content: center;
	overflow: hidden;
	transition-duration: .2s;
	transition-property: background,border,box-shadow,color,fill;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.button-small{
	font-size: 12px;
	height: 28px;
	line-height: 28px;
	padding: 0 8px;
}

.button-large{
	font-size: 13px;
	height: 36px;
	line-height: 36px;
	padding: 0 12px;
}

.button-primary{
	background: #14aaf5;
	border-color: #14aaf5;
	color: #fff;
	fill: #fff;
}

.button-primary:hover{
	background: #129ce1;
	border-color: #129ce1;
	color: #fff;
	fill: #fff;
}

.button-secondary{
	background: #fff;
	border-color: #cbd4db;
	color: #273240;
	fill: #6f7782;
}

.button-secondary:hover{
	background-color: #f6f6f6;
	border-color: #cbd4db;
	border-style: solid;
	color: #151b26;
	fill: #273240;
}


/*=== Buttons === */
