/* Brand Filter module styles */

.brandfilter-intro {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.brandfilter-intro p {
	color: var( --e-global-color-fourth );
}

.brandfilter-alphabet .brandfilter-letters {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	gap: 0.25rem;
	width: 100%;
	justify-content: space-between;
}

.brand-filter {
	padding: 0.25rem 0.5rem;
	border-radius: 4px;
	text-decoration: none !important;
	color: #333;
	border: 1px solid transparent;
	transition: all 0.2s ease-in-out;
}
.brand-filter:hover {
	border-color: #ccc;
}
.brand-filter.is-active {
	background-color: #222;
	color: #fff;
	border-color: #222;
}
.brand-filter-disabled {
	color: #aaa;
	padding: 0.25rem 0.5rem;
	user-select: none;
}

#brandfilter-list .alert-info {
	text-align: center;
}

#brandfilter-list .brand-miniature > a {
	display: block;
	border: 1px solid #f9f9f9;
	transition: all .25s;
}
#brandfilter-list .brand-miniature > a:hover {
	border: 1px solid #eeeeee;
}

@media (min-width: 1200px) {
	.col-xl-1_5 {
		width: 20%;
	}
}