:root {
	--primary: #303437;
	--secondary: #5f6369;
	--brand-blue-1: #3300ff;
	--brand-blue-1-opacity-10: rgba(
		51,
		0,
		255,
		0.1
	); /* brand-blue-11, 10% opacity */
	--porcelain: #dee5ec;
	--pure-white: #fff;
	--cool-grey: #999;
	--whisper-grey: #ededed;
	--light-grey: #ccc;
	--powder-blue: #b9cee2;
	--pink-flamingo: #fb5ba2;
	--baby-blue: #bfcedd;
	--rich-black: #000;
	--sunglow: #fce40d;
	--color-sandstone: #79716b;
	--color-brand-green: #07f468;
}

/***/
/* The base container */
.nice-select {
	box-sizing: border-box;
	cursor: pointer;
	position: relative;
	transition: all 0.2s ease-in-out;
	-webkit-user-select: none;
	user-select: none;
	white-space: nowrap;
}
.nice-select.v1 {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	background-color: transparent;
	border: solid 1px var(--color-mystic);
	font-family: inherit;
	font-size: 14px;
	font-weight: normal;
	line-height: 2.25rem;
	outline: none;
	border-radius: 0.8rem;
}
.nice-select.v1:not(.auto-width) {
	min-width: 13rem;
}
.nice-select.v2 {
	font-size: 0.875rem;
	line-height: 1.5;
	text-transform: capitalize;
	color: var(--color-iron-gray);
	background-color: transparent;
	border: none;
	/* min-width: 4.875rem; */
	/* padding: 0 1rem; */
}

/* On open, the base container */
.nice-select.v1.open,
.nice-select.v1.keep-open {
	background-color: var(--pure-white);
}

/* Styles for disabled nice-select */
.nice-select.disabled {
	pointer-events: none;
}
.nice-select.v1.disabled {
	border-color: var(--whisper-grey);
	color: var(--cool-grey);
}

/* Styles for wide nice-select */
.nice-select.wide {
	width: 100%;
}
.nice-select.v1.wide {
	/* No visual styles */
}

/* Styles for right-aligned nice-select */
.nice-select.right {
	float: right;
}
.nice-select.v1.right {
	/* No visual styles */
}

/* Styles for small nice-select */
.nice-select.small {
	height: 36px;
	line-height: 34px;
}
.nice-select.v1.small {
	font-size: 12px;
}

/* On hover, the base container */
.nice-select.v1:hover {
	border-color: var(--porcelain);
}

/* Styles for nice-select when it's active, open, or focused */
.nice-select.v1:active,
.nice-select.v1.open,
.nice-select.v1.keep-open,
.nice-select.v1:focus {
	border-color: var(--porcelain);
}

/* Styles for the arrow icon after nice-select */
.nice-select:after {
	display: block;
	height: 5px;
	margin-top: -4px;
	pointer-events: none;
	position: absolute;
	right: 12px;
	top: 50%;
	transform-origin: 66% 66%;
	transform: rotate(45deg);
	transition: all 0.15s ease-in-out;
}
.nice-select.v1:after {
	width: 5px;
	border-bottom: 2px solid var(--cool-grey);
	border-right: 2px solid var(--cool-grey);
}

/* Styles for the arrow icon after nice-select when it's open */
.nice-select.open:after,
.nice-select.keep-open:after {
	transform: rotate(-135deg);
}
.nice-select.v1.open:after,
.nice-select.v1.keep-open:after {
	/* No visual styles */
}

/* Styles for the arrow icon after nice-select when it's disabled */
.nice-select.disabled:after {
	/* No structural styles */
}
.nice-select.v1.disabled:after {
	border-color: var(--light-grey);
}

/* Styles for the arrow icon after small nice-select */
.nice-select.small:after {
	height: 4px;
	width: 4px;
}
.nice-select.v1.small:after {
	/* No visual styles */
}

/***/
/***/
/* Styles for the option label */
.mlc-ns.v1 [data-option-label] {
	font-size: 0.75rem;
	font-style: normal;
	font-weight: 600;
	line-height: 1.5;
	word-wrap: break-word;
	color: var(--primary);
	letter-spacing: 0.01875rem;
}
.mlc-ns.v2 [data-option-label] {
	color: var(--color-iron-gray);
	font-size: 0.875rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5rem;
	text-transform: capitalize;
	overflow: hidden;
	text-overflow: ellipsis;
}

.mlc-ns.v1:not(.has-tags):not(.auto-width) [data-option-label] {
	text-wrap: balance;
}
.mlc-ns.v2:not(.has-tags) [data-option-label] {
	/* No styles */
}

.mlc-ns.v1:not(.has-tags) .option.selected [data-option-label] {
	color: var(--brand-blue-1);
}

/***/
/***/
.mlc-ns.v1 [data-option-description-container] {
	display: flex;
	flex-direction: column;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/***/
/***/
/* Styles for active dropdown arrow color in filter nice-select without tags */
.nice-select.filter .multiple-options [data-dropdown-arrow],
.nice-select.filter .current [data-dropdown-arrow] {
	display: flex;
	justify-content: center;
	align-self: center;
}
.nice-select.v1.filter
	.multiple-options:not(.active)
	[data-dropdown-arrow]
	path,
.nice-select.v1.filter .current:not(.active) [data-dropdown-arrow] path {
	fill: var(--secondary);
}
.nice-select.v1.filter .multiple-options.active [data-dropdown-arrow] path,
.nice-select.v1.filter .current.active [data-dropdown-arrow] path {
	fill: var(--secondary);
}
.nice-select.v2.filter
	.multiple-options:not(.active)
	[data-dropdown-arrow]
	path,
.nice-select.v2.filter .current:not(.active) [data-dropdown-arrow] path {
	fill: var(--color-iron-gray);
}
.nice-select.v2.filter .multiple-options.active [data-dropdown-arrow] path,
.nice-select.v2.filter .current.active [data-dropdown-arrow] path {
	fill: var(--color-brand-green);
}
.nice-select.v2.filter:hover .multiple-options [data-dropdown-arrow] path,
.nice-select.v2.filter:hover .current [data-dropdown-arrow] path {
	fill: var(--color-brand-green);
}
.nice-select.v2.filter.open .multiple-options [data-dropdown-arrow] path,
.nice-select.v2.filter.open .current [data-dropdown-arrow] path,
.nice-select.v2.filter.keep-open .multiple-options [data-dropdown-arrow] path,
.nice-select.v2.filter.keep-open .current [data-dropdown-arrow] path {
	fill: var(--color-brand-green, #07f468);
}
.nice-select.v2.filter:hover .multiple-options [data-dropdown-arrow] path,
.nice-select.v2.filter:hover .current [data-dropdown-arrow] path {
	fill: var(--color-brand-green, #07f468);
}

/***/
/***/
.mlc-ns.open [data-arrow-down],
.mlc-ns.keep-open [data-arrow-down],
.mlc-ns:not(.open):not(.keep-open) [data-arrow-up] {
	display: none !important;
}

/* Show arrow up when nice-select is open, and show arrow down when it's not open */
.mlc-ns.open [data-arrow-up],
.mlc-ns.keep-open [data-arrow-up],
.mlc-ns:not(.open):not(.keep-open) [data-arrow-down] {
	display: flex !important;
	align-items: center;
}

/***/
/***/
/* Styles for label of default option in placeholder container */
.nice-select.v1:not(.has-tags) .multiple-options [data-option-label],
.nice-select.v1:not(.has-tags) .current [data-option-label] {
	color: var(--primary);
}
.nice-select.v2:not(.has-tags) .multiple-options [data-option-label],
.nice-select.v2:not(.has-tags) .current [data-option-label] {
	color: var(--color-iron-gray);
}
.nice-select.v2.filter.open:not(.has-tags)
	.multiple-options
	[data-option-label],
.nice-select.v2.filter.open:not(.has-tags) .current [data-option-label],
.nice-select.v2.filter.keep-open:not(.has-tags)
	.multiple-options
	[data-option-label],
.nice-select.v2.filter.keep-open:not(.has-tags) .current [data-option-label] {
	color: var(--color-brand-green, #07f468);
}

/* Styles for label of selected option in placeholder container */
.nice-select.v1:not(.has-tags) .multiple-options.active [data-option-label],
.nice-select.v1:not(.has-tags) .current.active [data-option-label] {
	color: var(--electric-ultramarine);
}
.nice-select.v2.filter:not(.has-tags)
	.multiple-options.active
	[data-option-label],
.nice-select.v2.filter:not(.has-tags) .current.active [data-option-label] {
	color: var(--color-brand-green);
}
.nice-select.v2.filter:not(.has-tags):hover
	.multiple-options
	[data-option-label],
.nice-select.v2.filter:not(.has-tags):hover .current [data-option-label] {
	color: var(--color-brand-green, #07f468);
}

.mlc-ns.v1:not(.has-tags) [data-option-label] {
	margin: 0;
	font-size: 1rem;
	font-weight: 600;
	text-align: left;
	line-height: 1.5;
	/* word-wrap: break-word; */
}

.mlc-ns.v2.filter .option.selected [data-option-label],
.mlc-ns.v2.filter .option:not(.disabled):hover [data-option-label] {
	color: var(--color-brand-green, #07f468);
}

.mlc-ns.v2.dd-pads .current,
.mlc-ns.v2.dd-pads .option {
	padding: 0.5rem 0.9375rem 0.5rem 1.25rem;
}

.mlc-ns.v2.dd-pads [data-option-label],
.mlc-ns.v2.dd-pads [data-option-label] {
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.5rem;
}

.mlc-ns.v2.dd-pads .option.selected,
.mlc-ns.v2.dd-pads .option:not(.disabled):hover {
	background-color: var(--color-brand-green, #07f468);
}

.mlc-ns.v2.dd-pads .option.selected [data-option-label],
.mlc-ns.v2.dd-pads .option:not(.disabled):hover [data-option-label] {
	color: #000000;
}

.mlc-ns.v2 .option.disabled [data-option-label],
.mlc-ns.v2 .option.disabled [data-option-description] {
	color: var(--color-sandstone);
}

/***/
/***/
.mlc-ns.v1 [data-option-description] {
	color: var(--secondary);
	font-size: 0.875rem;
	line-height: 1.5;
	margin: 0;
}

/***/
/***/
.nice-select-dropdown .nice-select-lists {
	display: flex;
}
.nice-select-dropdown .nice-select-lists:not(.reverse) {
	flex-direction: column;
}
.nice-select-dropdown .nice-select-lists.reverse {
	flex-direction: column-reverse;
}
.nice-select-dropdown.v1 .nice-select-lists {
	border-radius: inherit;
}

/***/
/***/
/* Styles for nice-select-list */
.nice-select-dropdown .nice-select-list {
	/* No structural styles */
}
.nice-select-dropdown.v1 .nice-select-list {
	max-height: 24rem;
	overflow-y: auto;
	border-radius: inherit;
}
.nice-select-dropdown.v2 .nice-select-list {
	max-height: 10rem;
	overflow-y: auto;
	border-radius: inherit;
}

/* Additional styles for nice-select-list when nice-select has search but no tags */
.nice-select-dropdown.has-search:not(.has-tags) .nice-select-list {
	/* No structural styles */
}
.nice-select-dropdown.v1.has-search:not(.has-tags) .nice-select-list {
	margin-top: 0.5rem;
}

/* Styles for nice-select-list when nice-select has tags */
.nice-select-dropdown.has-tags .nice-select-list {
	display: flex;
	gap: 0.5625rem;
	flex-wrap: wrap;
	overflow-y: auto;
}
.nice-select-dropdown.v1.has-tags .nice-select-list {
	max-height: 13.125rem;
	padding: 1rem;
}

/* Styles for sticky-list */
.nice-select-dropdown.v1 .sticky-list {
	border-bottom-left-radius: 0 !important;
	border-bottom-right-radius: 0 !important;
}
.nice-select-dropdown.v1 .sticky-list .option:last-child {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}
.nice-select-dropdown.v1 .sticky-list + .non-sticky-list {
	border-top-left-radius: 0 !important;
	border-top-right-radius: 0 !important;
}
.nice-select-dropdown.v2.filter
	.nice-select-lists:not(.reverse)
	.non-sticky-list:not(:empty)
	+ .sticky-list {
	border-top: 1px solid var(--color-soft-green, #14482a);
}
.nice-select-dropdown.v2.filter
	.nice-select-lists.reverse
	.non-sticky-list:not(:empty)
	+ .sticky-list {
	border-bottom: 1px solid var(--color-brand-green, #07f468);
}

/* Styles for simplebar-content inside nice-select-list */
.nice-select-dropdown .nice-select-list .simplebar-content {
	display: flex;
	flex-direction: column;
	gap: 0;
}
.nice-select-dropdown.v1 .nice-select-list .simplebar-content {
	/* No visual styles */
}

/* Additional styles for simplebar-content inside nice-select-list when nice-select has tags */
.nice-select-dropdown.has-tags .nice-select-list .simplebar-content {
	flex-direction: row;
	gap: 8px;
	flex-wrap: wrap;
	padding-bottom: 20px !important;
}
.nice-select-dropdown.has-tags .simplebar-content .nice-tag:first-of-type {
	margin-left: -8px;
}

/* Styles for no-results text in nice-select dropdown */
.nice-select-dropdown .nice-select-list .no-results {
	padding: 0;
}
.nice-select-dropdown.v1 .nice-select-list .no-results {
	/* No visual styles */
}

/***/
/***/
/* Styles for the options */
.mlc-ns.v1 .elm_aQVICr {
	display: flex;
	flex: 1 0 0;
	gap: 0.625rem;
}
.mlc-ns.v1 .elm_aQVICr.reverse {
	flex-direction: row-reverse;
}
.mlc-ns.v1 .elm_aQVICr.reverse :first-child,
.mlc-ns.v1 .elm_aQVICr:not(.reverse) :last-child {
	display: flex;
	flex: 1 0 0;
	flex-direction: column;
}
.mlc-ns.v1 .center-icons .elm_aQVICr {
	align-items: center;
}
.nice-select.v1 .current .elm_aQVICr {
	max-width: 95%;
}
.nice-select-dropdown.v1 .elm_aQVICr {
	width: 100%;
}

.mlc-ns.v2 .elm_aQVICr {
	display: flex;
	gap: 0.225rem;
	align-items: center;
	overflow: hidden;
}
.mlc-ns.v2 .elm_aQVICr.reverse {
	flex-direction: row-reverse;
}
.mlc-ns.v2 .elm_aQVICr.reverse :first-child,
.mlc-ns.v2 .elm_aQVICr:not(.reverse) :last-child {
	display: flex;
	flex-direction: column;
	fill: var(--color-iron-gray);
	width: 100%;
}
.mlc-ns.v2.filter:hover .elm_aQVICr.reverse :first-child,
.mlc-ns.v2.filter:hover .elm_aQVICr:not(.reverse) :last-child {
	fill: var(--color-brand-green, #07f468);
}
.mlc-ns.v2 .center-icons .elm_aQVICr {
	align-items: center;
}
.nice-select.v2 .current .elm_aQVICr {
	/* max-width: 95%; */
}
/* .nice-select-dropdown.v2 .elm_aQVICr {
	width: 100%;
} */

/***/
/***/
.nice-select.v1 .multiple-options {
	border-radius: inherit;
}
.nice-select.v1.auto-width .current .elm_aQVICr {
	max-width: 12rem;
}
.nice-select.v1.auto-width .current .elm_aQVICr [data-option-label] {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.nice-select.v1 .current {
	padding: 0.8rem 0.938rem 0.8rem 0.625rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	align-self: stretch;
	font-size: 1rem;
	font-weight: 600;
	word-wrap: break-word;
	border-radius: inherit;
}
.nice-select.v2 .current {
	display: flex;
	justify-content: space-between;
	/* align-items: center; */
	align-self: stretch;
	gap: 0.5rem;
}

/* Styles for active multiple options and current option in filter nice-select without tags */
.nice-select.v1.filter:not(.has-tags) .multiple-options.active,
.nice-select.v1.filter:not(.has-tags) .current.active {
	background-color: rgba(51, 0, 255, 0.1);
	border: 1px solid rgba(51, 0, 255, 0.5);
}

/* Styles for multiple options list in nice-select with tags */
.nice-select.v1.has-tags .multiple-options ul {
	line-height: 24px;
}

/* Styles for the current selected option */
.nice-select.v1:not(.has-tags) .current {
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	border: 1px solid transparent;
}
.nice-select.v1:not(.has-tags) .current {
	gap: 0.625rem;
}

.nice-select.v1 .current.active .nice-select-icon path {
	fill: var(--secondary-new, #303437);
}
.nice-select.v2.filter .current.active .nice-select-icon path {
	fill: var(--color-brand-green) !important;
}
.nice-select-dropdown.v2 .nice-select-icon path {
	fill: var(--color-iron-gray);
}
.nice-select-dropdown.v2 .option:not(.disabled):hover .nice-select-icon path,
.nice-select-dropdown.v2.filter .option.selected .nice-select-icon path {
	fill: var(--color-brand-green);
}

/***/
/***/
/* Reset styles for nice-select search */
.mlc-ns .nice-select-search,
.nice-select.has-tags .multiple-options .nice-select-search::placeholder {
	all: unset;
	border: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	flex: 1 0 0;
}
.mlc-ns.v1 .nice-select-search,
.nice-select.v1.has-tags .multiple-options .nice-select-search::placeholder {
	color: var(--primary) !important;
	font-family: "Poppins", sans-serif !important;
	font-size: 1rem !important;
	font-style: normal !important;
	font-weight: 400 !important;
	line-height: 1.5rem !important;
	letter-spacing: 0.01rem !important;
	border-radius: 0.625rem;
}

/***/
/***/
/* Styles for the dropdown of nice-select */
.nice-select-dropdown {
	position: absolute;
	top: 100%;
	transform-origin: 50% 0;
	z-index: 9999;
	pointer-events: none;
}
.nice-select-dropdown.open,
.nice-select-dropdown.keep-open {
	pointer-events: auto;
}
.nice-select-dropdown.v1:not(.auto-width) {
	width: 100%;
	/* min-width: 100%; */
}
.nice-select-dropdown:not(.animation-slide) {
	opacity: 0;
	transform: scale(0.75) translateY(19px);
	transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
}
.nice-select-dropdown.animation-slide {
	height: 0;
	transform: translateY(0);
	transition: all 0.2s ease-out;
	overflow: hidden;
}

.nice-select-dropdown.v1 {
	left: 0;
	background-color: var(--pure-white);
	box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
	border-radius: 0.5rem;
}
.nice-select-dropdown.v2 {
	left: 0;
	background-color: rgba(0, 0, 0, 0.9);
	border-radius: 0.625rem;
	min-width: 7.1875rem;
}
.nice-select-dropdown.v2.right {
	left: unset;
	right: 0;
}
.nice-select-dropdown.v2.open,
.nice-select-dropdown.v2.keep-open {
	/* padding: 0.5rem 0rem; */ /* Jon requested to remove this padding */
}

/* Styles for the dropdown when nice-select is open */
.nice-select-dropdown.open,
.nice-select-dropdown.keep-open {
	pointer-events: auto;
}
.nice-select-dropdown.open:not(.animation-slide),
.nice-select-dropdown.keep-open:not(.animation-slide) {
	opacity: 1;
	transform: scale(1) translateY(0);
}
.nice-select-dropdown.open.animation-slide,
.nice-select-dropdown.keep-open.animation-slide {
	height: 13.334rem;
}
.nice-select-dropdown.v1.open,
.nice-select-dropdown.v1.keep-open {
	border: 1px solid rgba(186, 188, 203, 0.5);
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

/* Additional styles for dropdown when nice-select is open and does not have tags */
.nice-select-dropdown.open:not(.has-tags),
.nice-select-dropdown.keep-open:not(.has-tags) {
	/* max-height: 24rem;
	overflow-y: auto; */
}
.nice-select-dropdown.v1.open:not(.has-tags),
.nice-select-dropdown.v1.keep-open:not(.has-tags) {
	/* No visual styles */
}

/* Styles for the dropdown of wide nice-select */
.nice-select-dropdown.wide {
	left: 0 !important;
	right: 0 !important;
}
.nice-select-dropdown.v1.wide {
	/* No visual styles */
}

/* Styles for the dropdown of right-aligned nice-select */
.nice-select-dropdown.right {
	left: auto;
	right: 0;
}
.nice-select-dropdown.v1.right {
	/* No visual styles */
}

/* Additional styles for dropdown when nice-select is not up and spaced */
.nice-select-dropdown.spaced:not(.up) {
	/* No structural styles */
}
.nice-select-dropdown.spaced.v1:not(.up) {
	top: calc(100% + 0.5rem);
}
.nice-select-dropdown.spaced.v2:not(.up) {
	top: calc(100% + 0.75rem);
}

/* Styles for shadowed dropdown of nice-select */
.nice-select-dropdown.shadowed {
	/* No structural styles */
}
.nice-select-dropdown.shadowed.v1 {
	box-shadow: 0 0 0.25rem 0 rgba(51, 51, 51, 0.25);
}
.nice-select-dropdown.shadowed.v2 {
	/* box-shadow: 0 0 0.5rem 0 rgba(255, 255, 255, 0.7); */
}

/* Styles for dropdown of nice-select when it's up */
.nice-select-dropdown.up {
	top: unset;
	bottom: 100%;
}
.nice-select-dropdown.v1.up {
	/* No visual styles */
}

/* Additional styles for spaced dropdown of nice-select when it's up */
.nice-select-dropdown.spaced.up {
	/* No structural styles */
}
.nice-select-dropdown.spaced.v1.up {
	bottom: calc(100% + 0.5rem);
}
.nice-select-dropdown.spaced.v2.up {
	bottom: calc(100% + 0.75rem);
}

/* Styles for nice-select dropdown when CSS pointer events are disabled */
.no-csspointerevents .nice-select-dropdown {
	display: none;
}
.no-csspointerevents .nice-select-dropdown.v1 {
	/* No visual styles */
}

/* Styles for open nice-select dropdown when CSS pointer events are disabled */
.no-csspointerevents .nice-select-dropdown.open,
.no-csspointerevents .nice-select-dropdown.keep-open {
	display: block;
}
.no-csspointerevents .nice-select-dropdown.v1.open,
.no-csspointerevents .nice-select-dropdown.v1.keep-open {
	/* No visual styles */
}

/* Styles for nice-select search box inside dropdown */
.nice-select-dropdown .nice-select-search-box {
	/* No structural styles */
}
.nice-select-dropdown .nice-select-search-box {
	border: 1px solid rgba(186, 188, 203, 0.5);
	margin: 0.5rem 0.5rem 0;
	border-radius: 0.5rem;
}

/***/
/***/
/* Styles for options in small nice-select */
.mlc-ns.small .option {
	line-height: 34px;
	min-height: 34px;
}
.mlc-ns .option[use-as-placeholder] {
	display: none !important;
}
.mlc-ns.v1.small .option {
	/* No visual styles */
}

/* Styles for optgroup in nice-select */
.mlc-ns .optgroup {
	/* No structural styles */
}
.mlc-ns.v1 .optgroup {
	font-weight: bold;
}

/* Styles for nice-select search box */
.mlc-ns .nice-select-search-box {
	box-sizing: border-box;
	pointer-events: none;
	gap: 0.625rem;
}
.mlc-ns.v1 .nice-select-search-box {
	display: flex;
	align-items: center;
	width: 100%;
	padding: 0.75rem 0.625rem;
	border-radius: 0.625rem;
}

/* Styles for path inside nice-select search box */
.mlc-ns .nice-select-search-box path {
	/* No structural styles */
}
.mlc-ns.v1 .nice-select-search-box path {
	fill: var(--powder-blue);
}

/* Styles for focused search box in open nice-select with or without tag container */
.mlc-ns.open.search-focused.has-tag-container,
.mlc-ns.open.search-focused:not(.has-tag-container) .nice-select-search-box,
.mlc-ns.keep-open.search-focused.has-tag-container,
.mlc-ns.keep-open.search-focused:not(.has-tag-container)
	.nice-select-search-box {
	/* No structural styles */
}
.mlc-ns.v1.open.search-focused.has-tag-container,
.mlc-ns.v1.open.search-focused:not(.has-tag-container) .nice-select-search-box,
.mlc-ns.v1.keep-open.search-focused.has-tag-container,
.mlc-ns.v1.keep-open.search-focused:not(.has-tag-container)
	.nice-select-search-box {
	/* border-color: var(--bg-magenta-crayon, var(--pink-flamingo)); */
}

/* Styles for focused path in open nice-select search box */
.mlc-ns.open.search-focused .nice-select-search-box path,
.mlc-ns.keep-open.search-focused .nice-select-search-box path {
	/* No structural styles */
}
.mlc-ns.v1.open.search-focused .nice-select-search-box path,
.mlc-ns.v1.keep-open.search-focused .nice-select-search-box path {
	/* fill: var(--bg-magenta-crayon, var(--pink-flamingo)); */
}

/* Allow pointer events for search box when nice-select is open */
.mlc-ns.open .nice-select-search-box,
.mlc-ns.keep-open .nice-select-search-box {
	pointer-events: auto;
}
.mlc-ns.v1.open .nice-select-search-box,
.mlc-ns.v1.keep-open .nice-select-search-box {
	/* No visual styles */
}

/* Styles for nice-select2-alert */
.mlc-ns .nice-select2-alert {
	/* No structural styles */
}

/* Styles for max-tags-reached alert */
.mlc-ns.v1 .nice-select2-alert {
	background-color: var(--brand-blue-1);
	color: var(--pure-white);
	font-size: 10px;
}
.mlc-ns.v1 .max-tags-reached {
	background-color: red;
	color: var(--pure-white);
	padding: 0.0625rem 0.625rem;
	font-size: 0.8125rem;
	border-radius: 0.3125rem;
}

/* Styles for nice-tag */
.nice-tag {
	/* No structural styles */
}

/* Styles for hover and selected states of nice-tag */
.nice-tag:hover,
.nice-tag.selected {
	border-width: 0;
}

/* Styles for nice-yellow-tag */
.nice-yellow-tag {
	--button-text-color: var(--pure-black);
	--button-background-color: var(--sunglow);
	--button-hover-background-color: var(--sunglow);
	--button-hover-text-color: var(--pure-black);
	--button-padding: 0.3125rem 0.625rem;
	gap: 0.3125rem;
	caret-color: transparent;
	transition-property: all;
	transition-duration: 100ms;
	transition-timing-function: ease-in;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	border-radius: 0.3125rem;
	border-color: var(--sunglow);
}
.nice-yellow-tag.personal-tag {
	background-color: #7cfb7c;
	border-color: #4fd14f;
}
.nice-yellow-tag.pending-tag.global-tag {
	background-color: #e0e0e0;
	border-style: dashed;
	border-color: #bbb;
}
.nice-select-tag {
	display: flex;
	gap: 0.3125rem;
	align-items: center;
}
.nice-select-tag-label {
	flex: 1 0 0;
	color: var(--primary, #303437);
	font-size: 0.75rem;
	font-style: normal;
	font-weight: 600;
	line-height: 1.5rem;
	letter-spacing: 0.01875rem;
	/* text-transform: capitalize; */
}

/* Styles for max-tags-reached alert */
.mlc-ns .max-tags-reached {
	display: none;
	padding: 0.0625rem 0.625rem;
	border-radius: 0.3125rem;
}

/* Styles for tag container inside nice-select */
.mlc-ns .tag-container.inside-container {
	/* No structural styles */
}
.mlc-ns.v1 .tag-container.inside-container {
	gap: 0.375rem;
	padding-top: 0.625rem;
	padding-bottom: 0.625rem;
}

/* Styles for nice-select-tag */
.mlc-ns .nice-select-tag {
	display: flex;
	align-items: center;
	justify-content: center;
}
.mlc-ns.v1 .nice-select-tag {
	gap: 0.313rem;
}

/* Styles for label of nice-select-tag */
.nice-select-tag-label {
	/* No structural styles */
}
.mlc-ns.v1 .nice-select-tag-label {
	letter-spacing: 0.01875rem;
	color: var(--primary);
	font-size: 0.75rem;
	font-style: normal;
	font-weight: 600;
	line-height: 1.5;
	/* text-transform: capitalize; */
	word-wrap: break-word;
}

/* Styles for nice-select-alert */
.mlc-ns .nice-select-alert {
	/* No structural styles */
}
.mlc-ns.v1 .nice-select-alert {
	background-color: var(--brand-blue-1);
	min-width: 1.25rem;
	height: 1.125rem;
	border-radius: 0.4375rem;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-left: 0.25rem;
	padding-right: 0.25rem;
}
.mlc-ns.v2 .nice-select-alert {
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	padding-left: 0.25rem;
	padding-right: 0.25rem;
	flex: 1 0 0;
}

.mlc-ns .nice-select-alert-text {
	/* No structural styles */
}
.mlc-ns.v1 .nice-select-alert-text {
	color: var(--pure-white);
	font-size: 0.75rem;
	font-weight: 600;
	line-height: 1rem;
}
.mlc-ns.v2.filter .nice-select-alert-text {
	color: var(--color-brand-green, #07f468);
	font-size: 0.75rem;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 0.01875rem;
}

/***/
/* Styles for nice-tag */
.nice-tag {
	--button-text-color: var(--secondary);
	--button-background-color: var(--porcelain);
	--button-border-color: var(--porcelain);
	--button-hover-background-color: var(--baby-blue);
	--button-hover-text-color: var(--primary);
	--button-hover-border-color: var(--primary);
	--button-padding: 0.3125rem 0.625rem;
}

/* Styles for hover and selected states of nice-tag */
.nice-tag:hover,
.nice-tag.selected {
	background: var(--baby-blue);
	border-color: var(--primary);
	color: var(--primary);
}

/** CUSTOM CSS **/
/* custom class*/
.common_elm_JkaocY {
	border-radius: 0.5rem;
	border: 1px solid rgba(186, 188, 203, 0.5);
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

.nice-select.v1:not(.has-tags) {
	gap: 0.375rem;
}

.mlc-ns.v1 .option:first-child {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}
.mlc-ns.v1 .option:last-child {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.mlc-ns.v1 .option {
	gap: 0.625rem;
}
.mlc-ns.v2 .option {
	color: var(--color-iron-gray);
	font-size: 0.875rem;
	font-style: normal;
	font-weight: 400;
	text-transform: capitalize;
	padding: 0.5rem 1rem;
}

.mlc-ns.v1:not(.has-tags) .option {
	padding: 1rem 0.5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	align-self: stretch;
}
.mlc-ns.v2:not(.has-tags) .option {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	align-self: stretch;
}

.mlc-ns.v1:not(.has-tags) .option:not(.disabled):hover,
.mlc-ns.v1:not(.has-tags) .option.selected {
	background-color: var(--brand-blue-1-opacity-10);
}

.mlc-ns.v1.has-tags .option {
	min-width: 5.3125rem;
	height: 2.25rem;
	border-radius: 0.3125rem;
	border: none;
	caret-color: transparent;
	transition-property: all;
	transition-duration: 100ms;
	transition-timing-function: ease-in;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.mlc-ns.v2 .option.disabled {
	/* pointer-events: none; */
	cursor: default;
}

.mlc-ns.v1 .tag-container.inside-container {
	list-style-type: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	padding: 0 1rem;
	align-self: stretch;
	border-radius: inherit;
}

.mlc-ns.v2 .simplebar-track .simplebar-scrollbar:before {
	background-color: #ffffff;
	bottom: 5px;
	right: 6px;
}

.mlc-ns.v2 svg {
	max-width: unset;
}

/**
 * @version 3
 * @theme light
 */
/* the primary container */
.nice-select.v3 {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	border: none;
	font-family: inherit;
	font-size: 14px;
	font-weight: normal;
	line-height: 2.25rem;
	outline: none;
	border-radius: 0.8rem;
}
/* if the primary container is not set to auto width */
.nice-select.v3:not(.auto-width) {
	min-width: 5.75rem;
	background: 0 0;
}
/* the flexbox container for the icon + text content in each option + in the trigger button */
.mlc-ns.v3 .elm_aQVICr {
	display: flex;
	flex: 1 0 0;
	gap: 0.625rem;
}
/* the text content container in each option + in the trigger button */
.mlc-ns.v3 .elm_aQVICr.reverse :first-child,
.mlc-ns.v3 .elm_aQVICr:not(.reverse) :last-child {
	display: flex;
	flex: 1 0 0;
	flex-direction: column;
}
/* the label (title) element for each option + in the trigger button */
.mlc-ns.v3 [data-option-label] {
	word-wrap: break-word;
	letter-spacing: 0.01875rem;
	font-style: normal;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.25rem;
	color: var(--ebony-gray, #0c111d);
	text-transform: capitalize;
	margin: 0;
	text-align: left;
}
.mlc-ns.v3:not(.auto-width) [data-option-label] {
	text-wrap: nowrap;
}
/* the description container for each option + in the trigger button */
.mlc-ns.v3 [data-option-description-container] {
	display: flex;
	flex-direction: column;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
/* the description element for each option + in the trigger button */
.mlc-ns.v3 [data-option-description] {
	color: var(--secondary);
	font-size: 0.875rem;
	line-height: 1.5;
	margin: 0;
}
.mlc-ns.v3 [data-dropdown-arrow] {
	width: 1rem !important;
	height: 1rem !important;
}
.mlc-ns.v3.filter .current:not(.active) [data-dropdown-arrow] path {
	fill: var(--secondary);
}

/* The trigger button */
/* the parent container for the trigger button */
.mlc-ns.v3 .multiple-options {
	border-radius: inherit;
}
/* the inside container for the trigger button */
.mlc-ns.v3 .current {
	display: flex;
	justify-content: space-between;
	align-items: center;
	align-self: stretch;
	font-size: 1rem;
	font-weight: 600;
	word-wrap: break-word;
	border-radius: inherit;
	padding: 0.8rem 0.938rem 0.8rem 0.625rem;
}
/* the inside container trigger button IF it is not a tag selectt */
.mlc-ns.v3 .current {
	border: none;
	padding: 0 0.5rem;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 0.5rem;
}
/* the flexbox container for the icon + text content in the trigger button */
.mlc-ns.v3 .current .elm_aQVICr {
	max-width: -moz-fit-content;
	max-width: fit-content;
}
/* the label (title) element in the trigger button */
.mlc-ns.v3 .current [data-option-label] {
	font-weight: 400;
}

/* The dropdown menu */
/* the parent container for the dropdown menu */
.nice-select-dropdown.v3 {
	left: 0;
	background-color: var(--pure-white);
	border-radius: 0.5rem;
}
/* the dropdown menu if it is not set to be auto width */
.nice-select-dropdown.v3:not(.auto-width) {
	min-width: 7.438rem;
	width: 100%;
	right: 0;
	left: auto;
	-webkit-transform: scale(1) translateY(0);
	transform: scale(1) translateY(0);
	-webkit-box-shadow: none;
	box-shadow: none;
	border: 0;
}
/* the dropdown menu if the position is below the trigger button */
.nice-select-dropdown.spaced.v3:not(.up) {
	top: calc(100% + 0.5rem);
}
/* the dropdown menu if the position is above the trigger button */
.nice-select-dropdown.spaced.v1.up {
	bottom: calc(100% + 0.5rem);
}
/* the container for the dropdown lists, sticky and non sticky */
.nice-select.v3 .nice-select-lists {
	border-radius: inherit;
}
/* the dropdown lists, both sticky and non sticky */
.nice-select.v3 .nice-select-list {
	border-radius: 2px;
	background: rgba(255, 255, 255, 0.7);
	-webkit-backdrop-filter: blur(25px);
	backdrop-filter: blur(25px);
	max-height: 24rem;
	overflow-y: auto;
}
/* the container for each option in the dropdown */
.mlc-ns.v3 .option {
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	align-self: stretch;
	gap: 0.625rem;
	background-color: transparent;
}
/* the first option container in a list */
.mlc-ns.v3 .option:first-child {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}
/* the last option container in a list */
.mlc-ns.v3 .option:last-child {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}
/* the flexbox container for the icon + text content in each option */
.mlc-ns.v3 .option .elm_aQVICr {
	padding: 0.75rem;
	width: 100%;
}
/* the flexbox container for the icon + text content in each option that is not disabled */
.mlc-ns.v3 .option:not(.disabled):hover .elm_aQVICr {
	border-radius: 0;
	background: var(--Base-White, #fff);
}

@media only screen and (max-width: 767px) {
	.nice-select-dropdown.responsive-vertical {
		top: unset;
		width: unset;
		position: fixed;
		top: unset !important;
		right: 0;
		bottom: 0;
		left: 0;
	}
	.nice-select-dropdown.responsive-vertical[responsive-center-align-items]
		[data-option-label] {
		text-align: center;
	}
	.nice-select-dropdown.responsive-vertical[responsive-center-align-items]
		[data-option-description-container] {
		align-items: center;
	}
}

/* Theme: Glass Gray */
.nice-select[data-theme="glass-gray"]:not(.auto-width) {
	min-width: unset;
}
.mlc-ns[data-theme="glass-gray"] {
	background: rgba(255, 255, 255, 0.3);
	width: 11.25rem;
	border-radius: 0.25rem;
}
.nice-select[data-theme="glass-gray"].open,
.nice-select[data-theme="glass-gray"].keep-open {
	border-radius: 0.25rem 0.25rem 0 0;
}
.nice-select.v1:active,
.nice-select.v1.open,
.nice-select.v1.keep-open,
.nice-select.v1:focus {
	background: rgba(255, 255, 255, 0.3);
	border-color: transparent;
}
.nice-select[data-theme="glass-gray"] .multiple-options {
	padding: 0.75rem 0.5rem;
	background: rgba(255, 255, 255, 0.1);
	align-items: center;
	gap: 0.25rem;
	color: #eaecf0;
	font-size: 1rem;
	font-family: Poppins;
	font-weight: 400;
	line-height: 1.5rem;
	word-wrap: break-word;
	display: flex;
}
.nice-select[data-theme="glass-gray"]:not(.has-tags)
	.multiple-options
	.current {
	padding: 0;
	width: 100%;
}
.nice-select[data-theme="glass-gray"]:not(.has-tags)
	.multiple-options
	[data-option-label],
.nice-select[data-theme="glass-gray"]:not(.has-tags)
	.current
	[data-option-label] {
	color: white;
}
.nice-select[data-theme="glass-gray"]:not(.has-tags) .nice-select-search-box {
	padding: 0;
}
.nice-select[data-theme="glass-gray"]:not(.has-tags)
	.nice-select-search-box
	input::placeholder {
	color: #eaecf0;
}
.nice-select-dropdown[data-theme="glass-gray"].open,
.nice-select-dropdown[data-theme="glass-gray"].keep-open {
	border: transparent;
}
.nice-select-dropdown[data-theme="glass-gray"].spaced:not(.up) {
	top: unset;
}
.nice-select-dropdown[data-theme="glass-gray"].shadowed:not(.up) {
	box-shadow: unset;
}
.mlc-ns[data-theme="glass-gray"]:not(.has-tags) .option {
	padding: 0.5rem;
}
.nice-select-dropdown[data-theme="glass-gray"] .nice-select-list {
	height: 181px;
}
.mlc-ns[data-theme="glass-gray"]:not(.has-tags) [data-option-label] {
	text-align: center;
	color: white;
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-weight: 400;
}
.nice-select-dropdown[data-theme="glass-gray"].has-search:not(.has-tags)
	.nice-select-list {
	margin-top: 0;
}
.nice-select-dropdown[data-theme="glass-gray"]:not(.has-tags)
	.option:not(.disabled):hover,
.nice-select-dropdown[data-theme="glass-gray"]:not(.has-tags) .option.selected {
	background: rgba(255, 255, 255, 0.2);
}
.nice-select-dropdown[data-theme="glass-gray"]:not(.has-tags)
	.option.selected
	[data-option-label] {
	color: white;
}
.nice-select-dropdown[data-theme="glass-gray"].open,
.nice-select-dropdown[data-theme="glass-gray"].keep-open {
	border-radius: 0 0 0.25rem 0.25rem;
}
.mlc-ns[data-theme="glass-gray"] .nice-select-search-box {
	width: unset;
	gap: 0.25rem;
}
.mlc-ns[data-theme="glass-gray"] .nice-select-search-box path,
.mlc-ns[data-theme="glass-gray"].open.search-focused
	.nice-select-search-box
	path,
.mlc-ns[data-theme="glass-gray"].keep-open.search-focused
	.nice-select-search-box
	path {
	fill: none;
}
.mlc-ns[data-theme="glass-gray"] .nice-select-list {
	scrollbar-width: 0.375rem !important;
	-ms-overflow-style: auto !important;
}
.mlc-ns[data-theme="glass-gray"] .nice-select-list::-webkit-scrollbar {
	display: block !important;
	width: 0.375rem;
}
.mlc-ns[data-theme="glass-gray"] .nice-select-list::-webkit-scrollbar-track {
	display: block !important;
	background: transparent;
}
.mlc-ns[data-theme="glass-gray"] .nice-select-list::-webkit-scrollbar-thumb {
	display: block !important;
	background: rgba(173, 170, 170, 0.5);
	border-radius: 3.125rem;
	min-height: 4.28838rem;
}
.mlc-ns[data-theme="glass-gray"]
	.nice-select-list::-webkit-scrollbar-thumb:hover {
	display: block !important;
	background: rgba(173, 170, 170, 0.5);
}

/* Theme: 2D Gray */
.nice-select[data-theme="2d-gray"]:not(.auto-width) {
	min-width: 10rem;
}
.nice-select-dropdown[data-theme="2d-gray"]:not(.has-tags) {
	background: rgba(255, 255, 255, 0.9);
}
.nice-select[data-theme="2d-gray"]:not(.has-tags) .nice-select-list {
	padding: 0;
}
.nice-select[data-theme="2d-gray"]:not(.auto-width) .nice-select-dropdown {
	min-width: 8rem;
}
.nice-select[data-theme="2d-gray"]:not(.has-tags) .option {
	background-color: #eaecf0;
}
.nice-select[data-theme="2d-gray"]:not(.has-tags) .option.selected {
	background-color: white;
}
.nice-select[data-theme="2d-gray"]:not(.has-tags) .option,
.nice-select[data-theme="2d-gray"]:not(.has-tags) .option.selected,
.nice-select[data-theme="2d-gray"]:not(.has-tags) .option:hover,
.nice-select[data-theme="2d-gray"]:not(.has-tags) .option.selected:hover {
	padding: 0.75rem !important;
}
.nice-select[data-theme="2d-gray"]:not(.has-tags) .option .elm_aQVICr {
	padding: unset;
}
.nice-select[data-theme="2d-gray"]:not(.has-tags) .current [data-option-label],
.nice-select[data-theme="2d-gray"]:not(.has-tags)
	.current.active
	[data-option-label],
.nice-select[data-theme="2d-gray"]:not(.has-tags) .option [data-option-label],
.nice-select[data-theme="2d-gray"]:not(.has-tags)
	.option.selected
	[data-option-label] {
	color: var(--color-ebony-2, #0c111d);
	font-size: 0.875rem;
	font-weight: 500;
}
.nice-select[data-theme="2d-gray"]:not(.has-tags) .multiple-options.active,
.nice-select[data-theme="2d-gray"]:not(.has-tags) .current.active {
	background-color: inherit !important;
	border: inherit !important;
}

/* Theme: Dissolved Gray */
.nice-select[data-theme="dissolved-gray"]:not(.auto-width) {
	min-width: unset;
}
.mlc-ns[data-theme="dissolved-gray"] {
	background: transparent;
	width: 13.125rem;
	border-radius: 0.25rem;
	border-width: 0;
}
.nice-select[data-theme="dissolved-gray"].open,
.nice-select[data-theme="dissolved-gray"].keep-open {
	border-radius: 0.25rem 0.25rem 0 0;
}
.nice-select.v1:active,
.nice-select.v1.open,
.nice-select.v1.keep-open,
.nice-select.v1:focus {
	background: rgba(255, 255, 255, 0.3);
	border-color: transparent;
}
.nice-select[data-theme="dissolved-gray"] .multiple-options {
	align-items: center;
	gap: 0.25rem;
	color: #eaecf0;
	font-size: 1rem;
	font-family: Poppins;
	font-weight: 400;
	line-height: 1.5rem;
	word-wrap: break-word;
	display: flex;
	padding: 0.625rem 0;
}
.nice-select[data-theme="dissolved-gray"]:not(.has-tags)
	.multiple-options
	.current {
	padding: 0;
	width: 100%;
	border: 0;
}
.nice-select[data-theme="dissolved-gray"]:not(.has-tags)
	.multiple-options
	[data-option-label],
.nice-select[data-theme="dissolved-gray"]:not(.has-tags)
	.current
	[data-option-label] {
	color: white;
}
.nice-select[data-theme="dissolved-gray"]:not(.has-tags)
	.nice-select-search-box
	input::placeholder {
	color: #eaecf0;
}
.nice-select-dropdown[data-theme="dissolved-gray"] {
	background: #7f7f7f;
	border: 1px solid rgba(234, 236, 240, 0.5);
	backdrop-filter: blur(50px);
	border-radius: 6px;
	width: 20.8125rem;
	left: unset;
	right: 0;
}
.nice-select-dropdown[data-theme="dissolved-gray"].up {
	display: flex;
	flex-direction: column-reverse;
}
.nice-select-dropdown[data-theme="dissolved-gray"].open,
.nice-select-dropdown[data-theme="dissolved-gray"].keep-open {
	border: transparent;
}
.nice-select-dropdown[data-theme="dissolved-gray"].spaced:not(.up) {
	top: unset;
}
.nice-select-dropdown[data-theme="dissolved-gray"].shadowed:not(.up) {
	box-shadow: unset;
}
.mlc-ns[data-theme="dissolved-gray"]:not(.has-tags) .option {
	padding: 0.5rem;
}
.nice-select-dropdown[data-theme="dissolved-gray"] .nice-select-list {
	height: 181px;
}
.mlc-ns[data-theme="dissolved-gray"]:not(.has-tags) [data-option-label] {
	text-align: center;
	color: var(--color-gray-light, #f9fafb);
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-weight: 400;
}
.mlc-ns[data-theme="dissolved-gray"].auto-width:not(.has-tags)
	.current
	.elm_aQVICr {
	max-width: 11rem;
}
.mlc-ns[data-theme="dissolved-gray"].auto-width:not(.has-tags)
	.current
	.elm_aQVICr
	[data-option-label] {
	overflow: visible;
}
.nice-select[data-theme="dissolved-gray"].filter:not(.has-tags)
	.current.active {
	background-color: unset;
	border: unset;
}
.nice-select-dropdown[data-theme="dissolved-gray"].has-search:not(.has-tags)
	.nice-select-list {
	margin-top: 0;
}
.nice-select-dropdown[data-theme="dissolved-gray"]:not(.has-tags)
	.option:not(.disabled):hover,
.nice-select-dropdown[data-theme="dissolved-gray"]:not(.has-tags)
	.option.selected {
	background: #989898;
}
.nice-select-dropdown[data-theme="dissolved-gray"]:not(.has-tags)
	.option.selected
	[data-option-label] {
	color: white;
}
.nice-select-dropdown[data-theme="dissolved-gray"].open,
.nice-select-dropdown[data-theme="dissolved-gray"].keep-open {
	border-radius: 0 0 0.25rem 0.25rem;
}
.mlc-ns[data-theme="dissolved-gray"] .nice-select-search-box {
	background-color: #8b8b8b;
	width: unset;
	gap: 0.25rem;
	border-width: 0 0 1px 0;
	margin: 0;
	padding: 0.7rem 0.5rem;
	border-radius: 0;
}
.mlc-ns[data-theme="dissolved-gray"].up .nice-select-search-box {
	border-width: 1px 0 0 0;
}
.mlc-ns[data-theme="dissolved-gray"] .nice-select-search-box path,
.mlc-ns[data-theme="dissolved-gray"].open.search-focused
	.nice-select-search-box
	path,
.mlc-ns[data-theme="dissolved-gray"].keep-open.search-focused
	.nice-select-search-box
	path {
	fill: #d0d5dd !important;
}
.mlc-ns[data-theme="dissolved-gray"] .nice-select-list {
	scrollbar-width: 0.375rem !important;
	-ms-overflow-style: auto !important;
}
.mlc-ns[data-theme="dissolved-gray"] .elm_aQVICr.reverse :first-child,
.mlc-ns[data-theme="dissolved-gray"] .elm_aQVICr:not(.reverse) :last-child {
	flex: unset;
}
.mlc-ns[data-theme="dissolved-gray"] .nice-select-list::-webkit-scrollbar {
	display: block !important;
	width: 0.375rem;
}
.mlc-ns[data-theme="dissolved-gray"]
	.nice-select-list::-webkit-scrollbar-track {
	display: block !important;
	background: transparent;
}
.mlc-ns[data-theme="dissolved-gray"]
	.nice-select-list::-webkit-scrollbar-thumb {
	display: block !important;
	background: rgba(173, 170, 170, 0.5);
	border-radius: 3.125rem;
	min-height: 4.28838rem;
}
.mlc-ns[data-theme="dissolved-gray"]
	.nice-select-list::-webkit-scrollbar-thumb:hover {
	display: block !important;
	background: rgba(173, 170, 170, 0.5);
}
.nice-select-dropdown[data-theme="dissolved-gray"] .elm_aQVICr {
	justify-content: center;
}
.nice-select-dropdown[data-theme="dissolved-gray"]
	.nice-select-list
	.no-results {
	color: white;
	text-align: center;
}
.nice-select-dropdown[data-theme="dissolved-gray"] .nice-select-search {
	color: white !important;
}
.nice-select-dropdown.open.animation-slide[data-theme="dissolved-gray"],
.nice-select-dropdown.keep-open.animation-slide[data-theme="dissolved-gray"] {
	height: 13.875rem;
}

/* Theme: Basic White */
.nice-select[data-theme="basic-white"]:not(.auto-width) {
	min-width: unset;
	background: white;
	height: unset;
}
.mlc-ns[data-theme="basic-white"] {
	background: transparent;
	width: 100%;
	border-radius: 0.25rem;
	border-width: 0;
}
.nice-select[data-theme="basic-white"].open,
.nice-select[data-theme="basic-white"].keep-open {
	border-radius: 0.25rem 0.25rem 0 0;
}
.nice-select[data-theme="basic-white"] .multiple-options {
	align-items: center;
	gap: 0.25rem;
	color: #eaecf0;
	font-size: 1rem;
	font-family: Poppins;
	font-weight: 400;
	line-height: 1.5rem;
	word-wrap: break-word;
	display: flex;
	padding: 1rem;
}
.nice-select[data-theme="basic-white"]:not(.has-tags)
	.multiple-options
	.current {
	padding: 0;
	width: 100%;
	border: 0;
	display: flex;
	justify-content: space-between;
}
.nice-select[data-theme="basic-white"]:not(.has-tags)
	.multiple-options
	[data-option-label],
.nice-select[data-theme="basic-white"]:not(.has-tags)
	.current
	[data-option-label] {
	color: var(--color-gray-medium, #667085);
}
.mlc-ns[data-theme="basic-white"]:not(.has-tags)
	.nice-select-search-box
	input::placeholder,
.mlc-ns[data-theme="basic-white"]:not(.has-tags)
	.nice-select-search-box
	input:focus::placeholder {
	color: var(--color-gray-medium, #667085) !important;
}
.nice-select[data-theme="basic-white"] .multiple-options .elm_aQVICr {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
}
.nice-select[data-theme="basic-white"]
	.multiple-options
	.elm_aQVICr
	.nice-select-icon
	img {
	width: 20px;
	height: 20px;
	fill: #98a2b3;
}
.nice-select-dropdown[data-theme="basic-white"] {
	background: white;
	border: 1px solid rgba(234, 236, 240, 0.5);
	backdrop-filter: blur(50px);
	border-radius: 6px;
	width: 100%;
	left: unset;
	right: 0;
}
.nice-select-dropdown[data-theme="basic-white"].up {
	display: flex;
	flex-direction: column-reverse;
}
.nice-select-dropdown[data-theme="basic-white"].open,
.nice-select-dropdown[data-theme="basic-white"].keep-open {
	border-top: 1.5px solid #000;
	border-right: 0;
	border-bottom: 0;
	border-left: 0;
}
.nice-select-dropdown[data-theme="basic-white"].spaced:not(.up) {
	top: unset;
}
.nice-select-dropdown[data-theme="basic-white"].shadowed:not(.up) {
	box-shadow: 0px 0px 10px -34px rgba(0, 0, 0, 0.1);
}
.mlc-ns[data-theme="basic-white"]:not(.has-tags) .option {
	padding: 1rem;
}
.nice-select-dropdown[data-theme="basic-white"] .nice-select-list {
	height: 19rem;
}
.mlc-ns[data-theme="basic-white"]:not(.has-tags) [data-option-label] {
	text-align: center;
	color: var(--color-gray-dark, #0c111d);
	font-size: 1rem;
	line-height: 1.25rem;
	font-weight: 400;
}
.mlc-ns[data-theme="basic-white"].auto-width:not(.has-tags)
	.current
	.elm_aQVICr {
	max-width: 11rem;
}
.mlc-ns[data-theme="basic-white"].auto-width:not(.has-tags)
	.current
	.elm_aQVICr
	[data-option-label] {
	overflow: visible;
	color: var(--color-gray-medium, #667085);
}
.nice-select[data-theme="basic-white"].filter:not(.has-tags) .current.active {
	background-color: unset;
	border: unset;
}
.nice-select-dropdown[data-theme="basic-white"].has-search:not(.has-tags)
	.nice-select-list {
	margin-top: 0;
}
.nice-select-dropdown[data-theme="basic-white"]:not(.has-tags)
	.option:not(.disabled):hover,
.nice-select-dropdown[data-theme="basic-white"]:not(.has-tags)
	.option.selected {
	background: #f2f4f7;
}
.nice-select-dropdown[data-theme="basic-white"].open,
.nice-select-dropdown[data-theme="basic-white"].keep-open {
	border-radius: 0 0 0.25rem 0.25rem;
}
.mlc-ns[data-theme="basic-white"] .nice-select-search-box {
	background-color: white;
	width: unset;
	gap: 0.25rem;
	border-width: 0 0 1px 0;
	border-style: solid;
	border-color: rgba(208, 213, 221, 0.5);
	margin: 0;
	padding: 1rem;
	border-radius: 0;
	display: flex;
	box-shadow: 0px 0px 10px -34px rgba(0, 0, 0, 0.1);
}
.mlc-ns[data-theme="basic-white"].up .nice-select-search-box {
	border-width: 1px 0 0 0;
}
.mlc-ns[data-theme="basic-white"] [data-dropdown-arrow] path {
	fill: #98a2b3 !important;
}
.mlc-ns[data-theme="basic-white"] .nice-select-search-box path,
.mlc-ns[data-theme="basic-white"].open.search-focused
	.nice-select-search-box
	path,
.mlc-ns[data-theme="basic-white"].keep-open.search-focused
	.nice-select-search-box
	path {
	fill: #344054 !important;
}
.mlc-ns[data-theme="basic-white"] .nice-select-list {
	scrollbar-width: 0.375rem !important;
	-ms-overflow-style: auto !important;
}
.mlc-ns[data-theme="basic-white"] .elm_aQVICr.reverse :first-child,
.mlc-ns[data-theme="basic-white"] .elm_aQVICr:not(.reverse) :last-child {
	flex: unset;
}
.mlc-ns[data-theme="basic-white"] .nice-select-list::-webkit-scrollbar {
	display: block !important;
	width: 0.375rem;
}
.mlc-ns[data-theme="basic-white"] .nice-select-list::-webkit-scrollbar-track {
	display: block !important;
	background: transparent;
}
.mlc-ns[data-theme="basic-white"] .nice-select-list::-webkit-scrollbar-thumb {
	display: block !important;
	background: rgba(173, 170, 170, 0.5);
	border-radius: 3.125rem;
	min-height: 4.28838rem;
}
.mlc-ns[data-theme="basic-white"]
	.nice-select-list::-webkit-scrollbar-thumb:hover {
	display: block !important;
	background: rgba(173, 170, 170, 0.5);
}
.nice-select-dropdown[data-theme="basic-white"] .elm_aQVICr {
	justify-content: center;
}
.nice-select-dropdown[data-theme="basic-white"]
	.option
	.elm_aQVICr
	.nice-select-icon {
	display: none;
}
.nice-select-dropdown[data-theme="basic-white"] .nice-select-list .no-results {
	color: var(--color-gray-medium, #667085);
	text-align: center;
}
.nice-select-dropdown[data-theme="basic-white"] .nice-select-search {
	color: var(--color-gray-medium, #667085);
}
.nice-select-dropdown.open.animation-slide[data-theme="basic-white"],
.nice-select-dropdown.keep-open.animation-slide[data-theme="basic-white"] {
	height: 13.875rem;
}
