/**
 * Static Menu Widget Styles
 */

.hbc-static-menu {
	width: 100%;
}

.hbc-static-menu-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.hbc-static-menu-item {
	position: relative;
	margin-bottom: 15px;
	padding-left: 15px;
}

.hbc-static-menu-item::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background-color: transparent;
	transition: background-color 0.3s ease;
}

.hbc-static-menu-item a {
	display: block;
	color: #0066cc;
	text-decoration: none;
	transition: color 0.3s ease;
}

.hbc-static-menu-item:hover::before,
.hbc-static-menu-item.active::before {
	background-color: #cc0000;
}

.hbc-static-menu-item:hover > a,
.hbc-static-menu-item.active > a {
	color: #cc0000 !important;
	font-weight: 500;
}
