/* Тема select ****************************************************************************************************** */
.bn-dropdown_theme_select.bn-dropdown__wrapper {
	--bn-dropdown_height: var(--bn-height_m);
	--bn-dropdown_color: var(--bn-color_black);
	--bn-dropdown_padding-left: 12px;
	--bn-dropdown_font-size: var(--bn-font-size_m);

	background-color: #ffffff;
	border-radius: var(--bn-border-radius);
	box-shadow: inset 0 0 0 100px rgba(var(--bn-dropdown_color), 0.05);
	color: rgb(var(--bn-dropdown_color));
	font-size: var(--bn-dropdown_font-size);
}

.bn-dropdown_theme_select.bn-dropdown__wrapper:not(.bn-dropdown_disabled):hover {
	box-shadow: inset 0 0 0 100px rgba(var(--bn-dropdown_color), 0.10);
}

.bn-dropdown_theme_select.bn-dropdown__wrapper:not(.bn-dropdown_disabled):focus,
.bn-dropdown_theme_select.bn-dropdown_opened {
	box-shadow: inset 0 0 0 100px rgba(var(--bn-dropdown_color), 0.10);
	outline: none; /* Removes the default browser outline on click/touch */
}

.bn-dropdown_theme_select .bn-dropdown {
	height: var(--bn-dropdown_height);
	line-height: var(--bn-dropdown_height);
	padding: 0 0 0 var(--bn-dropdown_padding-left);
}

.bn-dropdown_theme_select .bn-dropdown__drop-wrapper {}
.bn-dropdown_theme_select .bn-dropdown__drop {
	padding: var(--bn-dropdown__drop_v-padding);
}
.bn-dropdown_theme_select .bn-dropdown__toggle-button {}

/* ****************************************************************************************************************** */
