/* Wisy Custom Select */
.st-custom-select {
	width: auto;
	display: inline-block;
	position: relative;
}
.st-custom-select .select {
	min-width: 150px;
	max-width: 100%;
}
.st-custom-select .select .selected {
	width: 100%;
	padding: 4px 8px;
	background-color: #fff;
	display: flex;
	border-radius: 2px;
	border: 1px solid #c3c3c3;
	align-items: center;
	cursor: pointer;
}
.st-custom-select .select .selected span {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
.st-custom-select .select .selected i {
	margin-left: auto;
	padding: 0 0 0 12px;
}
.st-custom-select .select .options-box {
	width: 100%;
	height: auto;
	display: none;
	background-color: #fff;
	position: fixed;
	left: 0;
	top: 100%;
	z-index: 999999;
	border: 1px solid #ccc;
	box-shadow: 0 4px 13px #0003;
	overflow-y: auto;
	z-index: 999999;
}
.st-custom-select.open .select .options-box {
	display: block;
}
.st-custom-select .select .options-box ul {
	margin: 0;
}
.st-custom-select .select .options-box ul li {
	list-style-type: none;
	padding: 5px 5px;
	cursor: pointer;
	transition-duration: .3s;
}
.st-custom-select .select .options-box ul li:hover {
	background-color: #0082F0;
	color: #fff;
}
.st-custom-select .select .options-box ul li.active {
	background-color: #0082F0;
	color: #fff;
}
