.container-custom-select label {
	transition: color 0.3s ease-out;
}
.container-custom-select .custom-select {
	height: 35px;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: no-repeat center bottom, center calc(100% - 1px);
	background-size: 0 100%, 100% 100%;
	background-image: linear-gradient(to top, transparent 1px, rgba(156, 39, 176, 0) 1px), linear-gradient(to top, #d2d2d2 1px, rgba(210, 210, 210, 0) 1px);
	transition: background 0.3s ease-out;
}
.container-custom-select .custom-select a {
	display: flex;
	align-items: center;
	width: 100%;
	height: 100%;
	padding: 0px;
	font-size: 14px;
	font-weight: normal;
	color: #666666;
}
.container-custom-select .custom-select.custom-select-open {
	background-size: 100% 100%;
	background-image: linear-gradient(to top, var(--primary-color) 2px, rgba(156, 39, 176, 0) 2px), linear-gradient(to top, #d2d2d2 1px, rgba(210, 210, 210, 0) 1px);
}
.container-custom-select .custom-select.custom-select-open > div {
	position: relative;
	left: 1px;
	top: -1px;
	border: 0;
	border-radius: 3px;
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
.container-custom-select .custom-select.custom-select-open div::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}
.container-custom-select .custom-select.custom-select-open div::-webkit-scrollbar-thumb {
	background: #ccc;
	border-radius: 4px;
}
.container-custom-select .custom-select.custom-select-open div ul {
	padding-right: 4px;
}
.container-custom-select .custom-select.custom-select-open div ul li {
	font-weight: normal;
	font-size: 14px;
}
.container-custom-select .custom-select.custom-select-open div ul li:hover {
	background: var(--primary-color);
}
.container-custom-select .custom-select.custom-select-open div ul li.option-hover {
	background: var(--primary-color);
}