.lac-select-wrapper{
	display: flex;
	position: relative;
	height: 30px;
	line-height: 30px;
	flex: 1 1 auto;

	.lac-select-combo{
		display: grid;
		width:100%;
		grid-template-columns: 1fr max-content max-content;
		border:none;
		background-color: #eee;
		position: relative;

		.lac-select-input{
			border: none;
			background-color: transparent;
			padding-left: 5px;
			padding-right:5px;
			font-size: 15px;
			box-sizing: border-box;
			margin: 0;
			white-space: nowrap;

			&[contentEditable=true]:empty:not(:focus):before{
				content:attr(data-placeholder)
			}
		}
		.lac-select-ddbutton{
			display: flex;
			justify-content: center;
			align-items: center;
			background-color: var(--group-color,#366);
			width:30px;
			color: #fff;
			cursor: pointer;
			transition: all 0.3s ease;
			&:hover{
				background-color: var(--group-medium-color,#588);
			}
			&.lws-disabled{
				background-color:#ddd;
				color:#eee;
			}
		}
		.lac-select-showmore{
			flex: 0 0 auto;
			padding: 0 7px;
			display: none;
			justify-content: center;
			align-items: center;
			background-color: #ccc;
			cursor: pointer;
			transition: all 0.3s ease;
			&:hover{
				background-color: #aaa;
			}
		}
	}
	.lac-select-error{
		position: absolute;
		top: 0px;
		left: 0px;
		right: 30px;
		border: 1px solid #cc1d25;
		height: 28px;
		background-color: #ffeeee;
		display: none;
	}

	.lac-select-list{
		position: absolute;
		display: none;
		left: 0px;
		top: 30px;
		background-color: #e5e5e5;
		max-height:200px;
		overflow-y:auto;
		box-sizing:border-box;
		height:auto;
		overflow-x: hidden;
		z-index:300;
		width:100%;

		.lac-select-optgroup{
			background-color: #888;
			color: #fff;
			font-size: 16px;
			padding-left: 5px;
		}
		.lac-select-item{
			user-select: none;
			padding:0 5px;
			white-space: nowrap;
			display: flex;
			flex-wrap: nowrap;
			font-size: 15px;
			transition: all 0.3s ease;
			min-height: 30px;

			&:hover{
				background-color: var(--group-color,#366);
				color: #fff;
			}

			.lac-item-arrow{
				display:flex;
				align-items: center;
				justify-content: center;
				margin: 0 5px 0 0;
				padding-right: 5px;
				border-right: 1px solid #eee;
				box-sizing: border-box;

			}
		}
	}
}