.custom-slct{
	position: relative;
	margin-bottom: 20px!important;
}
.custom-slct svg{
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.custom-slct__title svg,
.custom-slct__item svg{
	position: static!important;
}
.custom-slct.show .custom-slct__title svg {
	transform: rotate(180deg);
}
.custom-slct .custom-slct__title,
.custom-slct .custom-slct__item {
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-radius: 2px;
	width: 100%;
	height: 40px;
	border-bottom: 1px solid #9A9A9A;
	font-size: 16px;
	color: #9A9A9A;
	font-family: "Poppins",	Sans-serif;
	font-weight: 500;
	padding-left: 40px;
}
.custom-slct .custom-slct__item svg{
	opacity: 0;
}
.custom-slct__item.selected{
	color: #353535;
}
.custom-slct__item{
	padding: 0;
	cursor: pointer;
}
.custom-slct__item.selected svg {
	opacity: 1;
}
.custom-slct__list{
	background: #FFFFFF;
	box-shadow: 0px 5px 30px -10px rgba(0, 0, 0, 0.2);
	display:none;
	position: absolute;	
	opacity: 0;
	height: 0;
	width: 100%;
	padding: 10px;
	overflow: auto;
	z-index: 2;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	border-radius: 0 0 5px 5px;
}
.custom-slct.visible .custom-slct__list {
	display: block;
}
.custom-slct.show .custom-slct__list {	
	opacity: 1;
	height: 170px;
	min-height: 170px;
}
.custom-slct.hidden .custom-slct__list {
	opacity: 0;
	height: 0;
}