.chosen-container {
	width: 420px!important;
	font-family: "Font";
	font-size: 1em;
}

.chosen-container-single .chosen-single {
	background: white;
	border: 1px solid #cbcbcb;
	border-radius: 0;
	color: black;
}

.chosen-container-single .chosen-single {
	box-shadow: none;
  padding: 0.4em;
}

.chosen-container-single .chosen-single-with-deselect span {
	margin-left: 0.2em;
}

.chosen-container-single .chosen-single div b {
	background-position: 0 8px;
}

.chosen-container-active.chosen-with-drop .chosen-single div b {
	background-position: -18px 8px;
}

.chosen-container-active.chosen-with-drop .chosen-single {
	background: white;
	border: 1px solid #cbcbcb;
	box-shadow: none;
	border-bottom-left-radius: 0 !important;
	border-bottom-right-radius: 0 !important;
}

.chosen-container .chosen-drop {
	background-color: #eeeeee;
	border: 1px solid #cbcbcb;
	border-top-left-radius: 0 !important;
	border-top-right-radius: 0 !important;
	box-shadow: none;
}

.chosen-container-single .chosen-search input[type="text"] {
	background-color: white;
	color: black;
  border-color: #c0c0c0;
	background: url(../images/icons/chosen-sprite.png) no-repeat 100% -18px, linear-gradient(#eeeeee 1%, #ffffff 15%);
}

.chosen-container-single .chosen-single abbr {
	top: 12px;
}

.chosen-container .chosen-results li.highlighted {
	color: white;
	background: var(--sidera-dark-color);
}

.chosen-container .chosen-results li em {
	font-weight: bold;
	text-decoration: none;
	background-color: rgba(0,0,0,0.5);
	padding: 0.2em 0.2em 0em 0.2em;
	color: white;

	-webkit-box-shadow:  0px 0px 6px 0px rgba(255, 255, 255, 0.5);
    box-shadow:  0px 0px 6px 0px rgba(255, 255, 255, 0.5);
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

.chosen-container .chosen-results li.no-results {
	background: none;
	color: #646464;	
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-resolution: 144dpi) {
  .chosen-rtl .chosen-search input[type="text"],
  .chosen-container-single .chosen-single abbr,
  .chosen-container-single .chosen-single div b,
  .chosen-container-single .chosen-search input[type="text"],
  .chosen-container-multi .chosen-choices .search-choice .search-choice-close,
  .chosen-container .chosen-results-scroll-down span,
  .chosen-container .chosen-results-scroll-up span {
    background-image: url('../images/icons/chosen-sprite.png') !important;
    background-size: 52px 37px !important;
    background-repeat: no-repeat !important;
  }
}

/* MEDIA QUERIES */

@media screen and (max-width: 800px) {
	.chosen-container {
		width: 100%!important;
		/* Permette di impostare una width al 100% senza sforare il padding del container */
		box-sizing: border-box;
	    -moz-box-sizing: border-box;
	    -webkit-box-sizing: border-box;
	}
}