.justselect-body-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: transparent;
	z-index: 1
}

.justselect {
	display: none
}

.justselect-wrapper {
	position: relative;
	/*width: 220px;*/
	display: inline-block;
	vertical-align: middle;
	margin-right: 50px;
}

.justselect-title {
	font-size: 20px;
	font-weight: 300;
	height: 40px;
	background: white;
	text-align: left;
	padding: 0 15px;
	width: calc($selectMinWidth - 2*$selectPadding);
	line-height: 40px;
	outline: none;
	background-image: url(../../images/chevron-down.svg);	background-repeat: no-repeat;
	background-position: right;
	background-size: 8px;
	cursor: pointer;
}

.justselect-list {
	position: absolute;
	left: 0;
	top: 40px;
	width: 300px;
	list-style: none;
	display: none;
	z-index: 99;
	overflow: hidden;
	margin: 0;
	background: rgba(245, 245, 245, 0.85);
	backdrop-filter: blur(42px);
	-webkit-backdrop-filter: blur(42px);
	border-radius: 9px;
	padding: 12px 0;
}

.justselect-list li {
	line-height: 40px;
	cursor: pointer;
	text-align: left;
	padding: 0 15px 0 35px;
}

.justselect-list li:hover{
	color: #005BAA;
}

.justselect-list li.selected {
	color: #005BAA;
}

.justselect-list.active {
	display: block
}