.dropdown {
	position: relative;
	display: inline-block;
}

.dropdown .dropdown-toggle {
	width: 100%;
	justify-content: space-between;
}
.dropdown .dropdown-toggle.show {
	background-color: var(--theme-color);
	color: #fff;
}

.dropdown .dropdown-menu {
	display: none !important;
	position: absolute;
	z-index: 97;
	width: 100%;
	max-height: calc(100vh - 200px);
	overflow-y: scroll;
	border-radius: 0.5rem;
	background-color: #fff;
	border: 1px solid #ccc;
	padding: 16px;
	list-style: none;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.dropdown .dropdown-menu>a+a {
	margin-top: 4px;
}

.dropdown .dropdown-menu>a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	text-align: left;
	color: #111 !important;
}

.dropdown .dropdown-menu>a>i {
	flex-shrink: 0;
}

.dropdown .dropdown-menu>a:hover {
	color: var(--theme-color);
}

.dropdown .dropdown-menu.show {
	display: block !important;
}

@media (min-width: 576px) {

	.dropdown .dropdown-toggle,
	.dropdown .dropdown-menu {
		min-width: 320px;
	}
}
