.smartSelectNative {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

.smartSelect {
	position: relative;
	width: 100%;
	font-size: 1rem;
}

.input-group-smartSelect .smartSelect {
	width: calc(100% - 50px);
	max-width: calc(100% - 50px);
}

.smartSelect-control {
	display: flex;
	align-items: center;
	width: 100%;
	height: 2.573rem;
	min-height: 2.573rem;
	padding: .429rem 2.4rem .429rem .929rem;
	border: 1px solid #e4eaec;
	border-radius: .215rem;
	background: #fff;
	color: #263238;
	text-align: left;
	cursor: pointer;
	transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.smartSelect-control:focus,
.smartSelect-open .smartSelect-control {
	border-color: #3e8ef7;
	outline: 0;
}

.smartSelect-open .smartSelect-control {
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
}

.smartSelect-required .smartSelect-control {
	border-left: 3px solid #f96868;
}

.smartSelect-disabled .smartSelect-control {
	background: #f3f7f9;
	color: #a3afb7;
	cursor: not-allowed;
}

.smartSelect-value {
	display: flex;
	flex: 1 1 auto;
	align-items: center;
	flex-wrap: nowrap;
	gap: .35rem;
	min-width: 0;
	overflow: hidden;
}

.smartSelect-placeholder {
	display: block;
	min-width: 0;
	overflow: hidden;
	color: #a3afb7;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.smartSelect:not(.smartSelect-multiple) .smartSelect-value {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.smartSelect-multiple .smartSelect-control {
	height: auto;
	min-height: 2.573rem;
}

.smartSelect-multiple .smartSelect-value {
	flex-wrap: wrap;
	white-space: normal;
}

.smartSelect-clear,
.smartSelect-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.smartSelect-clear {
	right: 1.9rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.2rem;
	height: 1.2rem;
	padding: 0;
	border: 0;
	background: transparent;
	color: #76838f;
	font-size: 1.2rem;
	line-height: 1;
	cursor: pointer;
}

.smartSelect-clear:focus {
	outline: 0;
	box-shadow: none;
}

.smartSelect-clear[hidden] {
	display: none;
}

.smartSelect-arrow {
	right: .85rem;
	width: 0;
	height: 0;
	border-top: .35rem solid #76838f;
	border-right: .3rem solid transparent;
	border-left: .3rem solid transparent;
	pointer-events: none;
}

.smartSelect-open .smartSelect-arrow {
	border-top: 0;
	border-bottom: .35rem solid #76838f;
}

.smartSelect-dropdown {
	position: absolute;
	z-index: 1700;
	top: calc(100% - 1px);
	left: 0;
	box-sizing: border-box;
	width: 100%;
	max-height: 260px;
	padding: 0;
	border: 1px solid #e4eaec;
	border-radius: 0 0 .215rem .215rem;
	background: #fff;
	box-shadow: 0 6px 14px rgba(0,0,0,.10);
	overflow: hidden;
}

.smartSelect-dropdownOpen {
	border-color: #3e8ef7;
	border-top-color: #e4eaec;
}

.smartSelect-dropdownDetached {
	position: fixed;
	top: auto;
	left: auto;
	z-index: 1000000001;
}

.smartSelect-dropdownAbove {
	border-radius: .215rem .215rem 0 0;
}

.smartSelect-dropdownBelow {
	border-radius: 0 0 .215rem .215rem;
}

.smartSelect-search {
	width: calc(100% - 8px);
	height: 34px;
	margin: 4px;
	padding: 4px;
	border: 1px solid #e4eaec;
	border-radius: .215rem;
	color: #263238;
}

.smartSelect-search:focus {
	border-color: #e4eaec;
	outline: 0;
}

.smartSelect-options {
	overflow-y: auto;
	padding: 0;
	background: #fff;
}

.smartSelect-option {
	display: flex;
	align-items: center;
	gap: .45rem;
	width: 100%;
	padding: 8px 12px;
	border: 0;
	border-radius: .215rem;
	background: #fff;
	color: #263238;
	text-align: left;
	cursor: pointer;
	user-select: none;
}

.smartSelect-option:focus {
	outline: 0;
}

.smartSelect-option:hover,
.smartSelect-optionHighlighted {
	background: #fafafa;
}

.smartSelect-optionSelected {
	background: #f3f7f9;
	color: #263238;
}

.smartSelect-optionSelected::before {
	content: "✓";
	width: 1rem;
	color: #3e8ef7;
	font-weight: 700;
}

.smartSelect-optionSelected.smartSelect-optionHighlighted,
.smartSelect-optionSelected:hover {
	background: #edf2f5;
	color: #263238;
}

.smartSelect-optionDisabled {
	color: #a3afb7;
	cursor: not-allowed;
}

.smartSelect-optionAdd {
	border-bottom: 1px solid #e4eaec;
	background: #f3f7f9;
	color: #11c26d;
	font-weight: 700;
}

.smartSelect-optionAdd:hover,
.smartSelect-optionAdd.smartSelect-optionHighlighted {
	background: #e8f8f0;
	color: #0b9e59;
}

.smartSelect-optionText {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.smartSelect-optionTextIndented {
	padding-left: 20px;
}

.smartSelect-optionBlock {
	display: block;
	min-width: 0;
}

.smartSelect-optionTitle {
	display: block;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.smartSelect-optionDetail {
	display: block;
	margin-left: auto;
	color: #76838f;
	font-size: .858rem;
	font-weight: 400;
}

.smartSelect-optionBlock .smartSelect-optionDetail {
	margin-left: 0;
}

.smartSelect-chip {
	display: inline-flex;
	align-items: center;
	max-width: 100%;
	padding: 0 .429rem;
	border: 1px solid #e4eaec;
	border-radius: .215rem;
	background: #e4eaec;
	color: #5d666f;
	font-size: 1rem;
	line-height: 1.5;
	margin-left: .2rem;
}

.smartSelect-chipRemove {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	margin: 0 .2145rem 0 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: #999;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
}

.smartSelect-chipRemove:hover,
.smartSelect-chipRemove:focus {
	color: #333;
	outline: 0;
}

.smartSelect-chipText {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.smartSelect-empty {
	padding: .6rem;
	color: #76838f;
	text-align: center;
}

.smartSelect-notice {
	display: flex;
	align-items: center;
	gap: .65rem;
	margin-top: .45rem;
	padding: .65rem .85rem;
	border: 1px solid #c3e6cb;
	border-radius: .215rem;
	background: #dcfce7;
	color: #155724;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.35;
	opacity: 1;
	transition: opacity .45s ease, transform .45s ease;
}

.smartSelect-noticeIcon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 1.35rem;
	height: 1.35rem;
	border: 2px solid currentColor;
	border-radius: 50%;
	color: #11c26d;
	font-size: .9rem;
	font-weight: 700;
	line-height: 1;
}

.smartSelect-noticeText {
	min-width: 0;
}

.smartSelect-notice-info {
	border-color: #3e8ef7;
	background: #e8f1ff;
}

.smartSelect-notice-info .smartSelect-noticeIcon {
	color: #3e8ef7;
}

.smartSelect-notice-warning {
	border-color: #f2a654;
	background: #fff4e3;
}

.smartSelect-notice-warning .smartSelect-noticeIcon {
	color: #f2a654;
}

.smartSelect-notice-error {
	border-color: #ff4c52;
	background: #ffe8e9;
}

.smartSelect-notice-error .smartSelect-noticeIcon {
	color: #ff4c52;
}

.smartSelect-noticeFade {
	opacity: 0;
	transform: translateY(-2px);
}
