.chosen-container {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	font-family: var(--font-family);
	font-weight:300;
	font-size: 12px;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}
.chosen-container * {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.chosen-container .chosen-drop {
	position: absolute;
	top: 100%;
	left: -9999px;
	z-index:1010;
	width: 100%;
	border: var(--chosen-border);
	border-top: var(--chosen-border-top);
	border-bottom: var(--chosen-border-bottom);
	background: var(--chosen-bg-color);
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
    box-shadow: 0 7px 9px -7px var(--chosen-box-shadow);
}
.chosen-container.chosen-with-drop .chosen-drop {
	left: 0;
}
.chosen-container a {
	cursor: pointer;
}

/*.chosen-container-single .chosen-single {
	position: relative;
	display: block;
	overflow: hidden;
	padding: 0 0 0 10px;
	height: 37px;
	border: var(--chosen-border);
	border-top: var(--chosen-border-top);
	background-color: var(--chosen-bg-color);
	box-shadow: none;
	color: var(--chosen-color);
	text-decoration: none;
	white-space: nowrap;
	line-height: 35px;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
}*/
.chosen-container-single .chosen-default {
  	color: var(--chosen-color);
}
.chosen-container-single .chosen-single span {
	display: block;
	overflow: hidden;
	margin-right: 26px;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.chosen-container-single .chosen-single-with-deselect span {
 	margin-right: 38px;
}
.chosen-container-single .chosen-single abbr {
	position: absolute;
	top: 6px;
	right: 26px;
	display: block;
	width: 46px;
	height: 43px;
	font-size: 1px;
}
.chosen-container-single .chosen-single abbr:hover {
	background-position: -42px -10px;
}
.chosen-container-single.chosen-disabled .chosen-single abbr:hover {
	background-position: -42px -10px;
}

.chosen-container-single .chosen-search {
	position: relative;
	z-index: 1010;
	margin: 0;
	padding: 10px 10px 0px 10px;
	margin-bottom:10px;
	white-space: nowrap;
}
/* zoekveld */
.chosen-container-single .chosen-search input[type="text"] {
	margin: 1px 0;
	padding: 7px 10px 7px 10px;
	width: 100%;
	height: auto;
	outline: 0;
	border: var(--chosen-search-border);
	background-color: var(--chosen-search-bg);
	font-size: 12px;
	font-family: var(--font-family);
	font-weight:300;
	line-height: normal;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	color:var(--chosen-color);
}
.chosen-container-single .chosen-drop {
	margin-top: 4px;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	background-clip: padding-box;
}
.chosen-container-single.chosen-container-single-nosearch .chosen-search {
	position: absolute;
	left: -9999px;
}

.chosen-container .chosen-results {
	color: var(--chosen-color);
	position: relative;
	overflow-x: hidden;
	overflow-y: auto;
	margin: 0px;
	padding: 0px;
	max-height: 272px;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	-webkit-overflow-scrolling: touch;
}
.chosen-container .chosen-results li {
	display: none;
	margin: 0;
	padding: 5px 15px 5px 12px;
	list-style: none;
	line-height: 24px;
	word-wrap: break-word;
	-webkit-touch-callout: none;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
}
.chosen-container .chosen-results li.active-result {
	display: list-item;
	cursor: pointer;
}
.chosen-container .chosen-results li.disabled-result {
	display: list-item;
	color: var(--chosen-color-disabled);
	cursor: default;
}
.chosen-container .chosen-results li.highlighted {
	background-color:var(--chosen-highlighted);
}
.chosen-container .chosen-results li.highlighted:last-child {
	background-color: ar(--chosen-highlighted);
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
}
.chosen-container .chosen-results li.highlighted:first-child {
	background-color: var(--chosen-highlighted);
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
}
.chosen-container .chosen-results li.no-results {
	color: var(--chosen-color);
	display: list-item;
	background: var(--chosen-bg-color);
}
.chosen-container .chosen-results li.group-result {
	display: list-item;
	font-family: var(--font-family);
	font-weight:300;
	cursor: default;
}
.chosen-container .chosen-results li.group-option {
	padding-left: 15px;
}
.chosen-container .chosen-results li em {
	font-style: normal;
	text-decoration: underline;
}



.chosen-container-active .chosen-single {
	box-shadow: none;
}
.chosen-container-active.chosen-with-drop .chosen-single {
	box-shadow: none;
}
.chosen-container-active.chosen-with-drop .chosen-single div {
	border-left: none;
	background: transparent;
}
/*.chosen-container-active.chosen-with-drop .chosen-single div b {
	background-image: var(--chosen-active-img);
	background-color: var(--chosen-bg-color);
	background-repeat:no-repeat;
	background-size: 35px 35px;
	background-position: center;
}*/
.chosen-container-active .chosen-choices {
	box-shadow: none;
}
.chosen-container-active .chosen-choices li.search-field input[type="text"] {
	color: var(--chosen-color) !important;
}

.chosen-disabled {
	opacity: 0.5 !important;
	cursor: default;
}
.chosen-disabled .chosen-single {
	cursor: default;
}
.chosen-disabled .chosen-choices .search-choice .search-choice-close {
	cursor: default;
}