.block-browse-by-dropdowns{
	padding: 20px 0px 20px 0px;
}

.block-browse-by-dropdowns .block-browse-by-dropdowns__inner {
	display: grid;
	grid-gap: var(--wp--custom--layout--block-gap);
}

.editor-styles-wrapper .block-browse-by-dropdowns .item,
.block-browse-by-dropdowns .item{
	position: relative;
	display: flex; /* Use flexbox for centering */
  	justify-content: center; /* Horizontally center */
  	align-items: center; /* Vertically center */
}

.editor-styles-wrapper .block-browse-by-dropdowns .item svg,
.block-browse-by-dropdowns .item svg{
	fill: var(--wp--preset--color--background);
	position: absolute;
	right: 15px;
	z-index: 1;
}

.editor-styles-wrapper .block-browse-by-dropdowns label,
.block-browse-by-dropdowns label {
	display: none;
}

.block-browse-by-dropdowns select,
.editor-styles-wrapper .block-browse-by-dropdowns select {
	/* Interface Styling */
	font-family: var(--wp--custom--typography--interface--font-family);
	font-size: var(--wp--preset--font-size--tiny);
	font-weight: 700;
	letter-spacing: var(--wp--custom--typography--interface--letter-spacing);
	line-height: var(--wp--custom--typography--interface--line-height);
	text-transform: var(--wp--custom--typography--interface--text-transform);

	/* Hide Default dropdown arrow */
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;

	/* Other Styles */
	background-color: var(--wp--custom--color--neutral-800);
	color: var(--wp--preset--color--background);
	padding: 0 42px 0 16px;
	outline: none;
}
.editor-styles-wrapper .block-browse-by-dropdowns select{
	pointer-events: none;
}


@media only screen and (min-width: 768px) {

	.block-browse-by-dropdowns .block-browse-by-dropdowns__inner {
		grid-template-columns:  repeat(auto-fit, minmax(0, 1fr));
	}

}

@media screen and (max-width: 767px) {

	.block-browse-by-dropdowns{
		padding: 20px;
	}

}

/* Custom spacing for sections
--------------------------------------------- */
.mobile-min-space-top.block-browse-by-dropdowns{
	margin-top: var(--wp--custom--layout--block-gap)!important;
}
.mobile-min-space-bottom.block-quick-links{
	margin-bottom: var(--wp--custom--layout--block-gap)!important;
}

/* Select box option hover styling
--------------------------------------------- */
.block-browse-by-dropdowns select:hover {
	background-color: var(--wp--preset--color--senary);
	color: var(--wp--preset--color--background);
	cursor: pointer;
}