.halio-button {
	display: inline-block;
	font-size: 12px;
    font-weight: bold;
	text-transform: uppercase;
}
.halio-button-default {
	background-color: var(--accent-color);
	border-radius: 15px;
	color: #fff;
	line-height: 1;
	padding: 12px 15px;
}
.halio-button-default:hover {
	background-color: var(--accent-color-alt);
	color: #fff;
}
.halio-button-icon-dark, .halio-button-icon-light {
	line-height: 36px;
	padding-left: 46px;
	position: relative;
}
.halio-button-icon-dark::before, .halio-button-icon-light::before, .halio-button-icon-dark::after, .halio-button-icon-light::after {
	display: block;
	height: 36px;
	left: 0;
	position: absolute;
	top: 0;
	width: 36px;
}
.halio-button-icon-dark::before, .halio-button-icon-light::before {
	border-radius: 50%;
	border-style: solid;
	border-width: 1px;
	content: "";
}
.halio-button-icon-dark::after, .halio-button-icon-light::after {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f067";
	text-align: center;
}
.halio-button-icon-dark:hover::before,
.halio-button-icon-light:hover::before {
	background-color: var(--accent-color) !important;
	border-color: var(--accent-color) !important;
}

.halio-button-icon-dark:hover::after,
.halio-button-icon-light:hover::after {
	color: #fff;
}
.halio-button-icon-dark, 
.halio-button-icon-dark:hover {
	color: #27333e;
}
.halio-button-icon-light,
.halio-button-icon-light:hover {
	color: #fff;
}