/* @group Base */
.chosen-container {
	position: relative;
	width: 100% !important;
	vertical-align: middle;
	font-size: 12px;
	zoom: 1;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	box-sizing: border-box;
	background-color: #fff;
	background: rgba(255,255,255,0.9);

	box-shadow: inset 0 1px 1px 1px rgba(85,85,85,0.4);
	-moz-box-shadow: inset 0 1px 1px 1px rgba(85,85,85,0.4);
	-webkit-box-shadow: inset 0 1px 1px 1px rgba(85,85,85,0.4);
}

.chosen-container .search-choice > span {
	-webkit-user-select: initial;
	-moz-user-select: initial;
	user-select: initial;
}

.chosen-container .chosen-drop {
	position: absolute;
	top: 100%;
	left: -9999px;
	z-index: 1011;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	min-width: 100%;
	width: auto;
}
.chosen-container.chosen-with-drop .chosen-drop {
	left: 0;
}
.chosen-container a {
	cursor: pointer;
}

/* @end */
/* @group Single Chosen */
.chosen-container-single .chosen-single {
	position: relative;
	display: block;
	color: #555555;
	font-size: 12px;
	overflow: hidden;
	text-decoration: none;
	white-space: nowrap;
	height: 29px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	padding-left: 3%;
	padding-right: 3%;
	border-bottom: 1px solid #E5E7E8;
	line-height: 29px;
}
.chosen-container-single .chosen-default {
	/*line-height: 31px;*/
}
.chosen-container-single .chosen-single span {
	color: #555;
	display: block;
	overflow: hidden;
	margin-right: 14px;
	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: 12px;
	height: 12px;
	background: url(/st/portal/media/images/chosen/chosen-sprite.png) -42px 1px no-repeat;
	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-single div {
	position: absolute;
	top: 50%;
	right: 10px;
	margin-top:-3px;
	display: block;
	width: 13px;
	height: 8px;
}
.chosen-container-single .chosen-single div b {
	display: block;
	width: 13px;
	height: 8px;
	background: url(/st/portal/media/images/row-green-vertical.png) no-repeat 0 -8px;
}
.chosen-container-single .chosen-search {
	position: absolute;
	z-index: 1010;
	margin: 0;
	white-space: nowrap;
	top:-31px;
	width: 100%;
}
.chosen-container-single .chosen-search input[type="text"] {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: 1px 0;
	height:29px;
	line-height: 29px;
	width: 100%;
	border: none;
	font-size: 12px;
	font-family: Verdana;
	outline: none;
	padding:0 10px;
	color:#555;
}

.input-search-hidden + .chosen-container-single .chosen-search input[type="text"] {
	display: none;
}

.chosen-container-single .chosen-drop {
}
.chosen-container-single.chosen-container-single-nosearch .chosen-search {
	position: absolute;
	left: -9999px;
}

/* @end */
/* @group Results */
.chosen-container .chosen-results {
	position: absolute;
	background:#F5FAFB;
	background: rgba(255,255,255,0.9);
	box-shadow: 0 3px 3px 1px rgba(110,110,110,0.4);
	overflow-x: hidden;
	overflow-y: auto;
	margin: 0;
	padding: 0;
	color: #009c9f;
	max-height: 174px;
	-webkit-overflow-scrolling: touch;
	border:none;
	min-width: 200px;
}
.chosen-container .chosen-results li {
	display: none;
	margin: 0;
	list-style: none;
	/*white-space: nowrap;*/
	font-size: 12px;
	color: #555555;
	padding: 8px 12px;
	border-top:1px solid #D3DADC;
	position: relative;
}
.chosen-container .chosen-results li.active-result {
	display: list-item;
	cursor: pointer;
}
.chosen-container .chosen-results li.disabled-result {
	display: list-item;
	color: #ccc;
	cursor: default;
}
.chosen-container .chosen-results li.highlighted {
	background-color: #3FE0B5;
	border-top-color: #1A5D4C;
	background: -o-linear-gradient(90deg,#CC0F8D,#B20D7B);
	background: -webkit-linear-gradient(90deg,#CC0F8D,#B20D7B);
	background: -moz-linear-gradient(90deg,#CC0F8D,#B20D7B);
	background: -ms-linear-gradient(90deg,#CC0F8D,#B20D7B);
	color: #fff;
	box-shadow: inset 0 2px 2px 1px rgba(16,101,68,0.1);
}
.chosen-container .chosen-results li.no-results {
	display: list-item;
	background: #f4f4f4;
}
.chosen-container .chosen-results li.add-item {
	display: list-item;
	padding: 0;
}
.chosen-container .chosen-results li.add-item .button {
	width: 100%;
}
.chosen-container .chosen-results li.group-result {
	display: list-item;
	font-weight: bold;
	cursor: default;
}
.chosen-container .chosen-results li.group-option {
	padding-left: 15px;
}
.chosen-container .chosen-results li em {
	font-style: normal;
	text-decoration: underline;
}

/* @end */
/* @group Multi Chosen */
.chosen-container-multi .chosen-choices {
	position: relative;
	overflow: hidden;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	padding:8px 3%;
	width: 100%;
	height: auto !important;
	min-height:99px;
	border: none;
	cursor: text;
	background: #fff;

	box-shadow: inset 0 1px 1px 1px rgba(85,85,85,0.4);
	-moz-box-shadow: inset 0 1px 1px 1px rgba(85,85,85,0.4);
	-webkit-box-shadow: inset 0 1px 1px 1px rgba(85,85,85,0.4);
}
.chosen-container-multi.custom-msl .chosen-choices {
	height: 50px!important;
	padding-left: 15px;
	padding-right: 50px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	border: 1px solid #eaeaea;
	cursor: pointer;
}
.chosen-container-multi.custom-msl .chosen-choices:after {
	position: absolute;
	content: "";
	display: block;
	width: 24px;
	height: 24px;
	right: 10px;
	top: 14px;
	background: url(/st/portal/img/icons.png) no-repeat -74px 0;
	z-index: 2;
}
.chosen-container-multi.custom-msl.no-search .chosen-choices:after {
	width: 11px;
	height: 6px;
	right: 16px;
	top: 23px;
	background-position: -103px 0;
}
.chosen-container-multi.custom-msl .chosen-choices:before {
	position: absolute;
	content: "";
	display: block;
	width: 50px;
	height: 48px;
	right: 0;
	background: #fff;
	z-index: 1;
}
.chosen-container-multi.custom-msl {

}
.chosen-container-multi .chosen-choices li {
	float: left;
	list-style: none;
}
.chosen-container-multi .chosen-choices li.search-field {
	margin: 0;
	padding: 0;
	white-space: nowrap;
	width:100%;
}
.chosen-container-multi .chosen-choices li.search-field input[type="text"].waiting {
	background: url('/st/portal/media/images/small-loading.gif') no-repeat 95% center;
}
.chosen-container-multi.custom-msl.chosen-container-active .chosen-choices li.search-choice {
	display: none;
}
.chosen-container-multi.custom-msl.chosen-container-active .chosen-choices li.search-choice + .search-field {
	display: none;
}
.chosen-container-multi.custom-msl.chosen-container-active .chosen-choices li.search-field  {
	display: block!important;
}
/* no search*/
.chosen-container-multi.custom-msl.no-search.chosen-container-active .chosen-choices li.search-field  {
	z-index: -1;
	position: relative;
}

.chosen-container-multi.custom-msl .chosen-choices li.search-field {
	display: block;
	float:none;
	width: 100%;
	margin:0;
	padding:0;
	outline: 1px solid red;
}
.chosen-container-multi.custom-msl .chosen-choices li.search-field input[type="text"] {
	width: 100%!important;
	padding-left: 0;
	padding-right: 0;
}
.chosen-container-multi.custom-msl .chosen-choices li.search-choice {
	display: inline;
	float: none;
	line-height: 50px;
	white-space: nowrap;
}
.chosen-container-multi.custom-msl .chosen-choices li.search-choice .search-choice-close {
	display: none;
}
.chosen-container-multi .chosen-choices li.search-field input[type="text"] {
	width:90% !important;
	margin: 0;
	height: 14px;
	outline: 0;
	border: 0 !important;
	background: none;
	box-shadow: none;
	font-size: 100%;
	font-family: sans-serif;
	line-height: normal;
	border-radius: 0;
	display: block;
	margin:0;
	padding:0;
}
.chosen-container-multi .chosen-choices li.search-field .default {

}
.chosen-container-multi .chosen-choices li.search-choice {
	position: relative;
	margin-right: 7px;
	margin-bottom: 4px;
	padding: 2px 25px 2px 6px;
	background-color: #F5FAFB;
	color: #555555;
	font: 12px Verdana, Arial;
	line-height: 12px;
	cursor: default;
	border: 1px solid;
	border-color: transparent #D0D1D1 #747576 #D0D1D1;
	max-width: 80px;
	overflow-x: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.chosen-container-multi.__fullname .chosen-choices li.search-choice {
	position: relative;
	margin-right: 7px;
	margin-bottom: 4px;
	padding: 2px 25px 2px 6px;
	background-color: #F5FAFB;
	color: #555555;
	font: 12px Verdana, Arial;
	line-height: 12px;
	cursor: default;
	border: 1px solid;
	border-color: transparent #D0D1D1 #747576 #D0D1D1;
	max-width: none;
	width: auto;
	overflow-x: visible;
	white-space: normal;
	text-overflow: clip;
}
.chosen-container-multi .chosen-choices li.search-choice span.role {
	font-style: italic;
	font-size: 9px;
	color: #168F5F;
	cursor: pointer;
}
.chosen-container-multi.custom-msl .chosen-choices li.search-choice,
.chosen-container-multi.custom-msl .chosen-choices li.search-field {

}

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
	position: absolute;
	top: 0;
	right: 0;
	width: 16px;
	height: 100%;
	border-left:1px solid #B8BBBC;
}
.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:before {
	content: ' ';
	position: absolute;
	top:3px;
	right:1px;
	width:12px;
	height:12px;
	background: url(/st/portal/media/images/chosen/chosen-sprite.png) -42px 1px no-repeat;
}
.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:before:hover {
	background-position: -42px -10px;
}
.chosen-container-multi .chosen-choices li.search-choice-disabled {
	padding-right: 5px;
	border: 1px solid #ccc;
	background-color: #e4e4e4;
	background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eeeeee));
	background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
	background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
	background-image: -o-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
	background-image: linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
	color: #666;
}
.chosen-container-multi .chosen-choices li.search-choice-focus {
	background: #d4d4d4;
}
.chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close {
	background-position: -42px -10px;
}
.chosen-container-multi .chosen-results {
	margin: 0;
	padding: 0;
}
.chosen-container-multi .chosen-drop .result-selected {
	display: list-item;
	color: #ccc;
	cursor: default;
}
.chosen-container-multi.custom-msl .chosen-drop .result-selected {
	background-color: #b1c775;
	color: #fff;
	cursor: pointer!important;
}

/* @end */
/* @group Active  */
.chosen-container-active .chosen-single {

}
.chosen-container-active.chosen-with-drop .chosen-single {

}
.chosen-container-active.chosen-with-drop .chosen-single div {
	border-left: none;
	background: transparent;
}
.chosen-container-active.chosen-with-drop .chosen-single div b {
}
.chosen-container-active .chosen-choices {
}
.chosen-container-active .chosen-choices li.search-field input[type="text"] {
	color: #111 !important;
}

/* @end */
/* @group Disabled Support */
.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;
}

/* @end */
/* @group Right to Left */
.chosen-rtl {
	text-align: right;
}
.chosen-rtl .chosen-single {
	overflow: visible;
	padding: 0 8px 0 0;
}
.chosen-rtl .chosen-single span {
	margin-right: 0;
	margin-left: 26px;
	direction: rtl;
}
.chosen-rtl .chosen-single-with-deselect span {
	margin-left: 38px;
}
.chosen-rtl .chosen-single div {
	right: auto;
	left: 3px;
}
.chosen-rtl .chosen-single abbr {
	right: auto;
	left: 26px;
}
.chosen-rtl .chosen-choices li {
	float: right;
}
.chosen-rtl .chosen-choices li.search-field input[type="text"] {
	direction: rtl;
}
.chosen-rtl .chosen-choices li.search-choice {
	margin: 3px 5px 3px 0;
	padding: 3px 5px 3px 19px;
}
.chosen-rtl .chosen-choices li.search-choice .search-choice-close {
	right: auto;
	left: 4px;
}
.chosen-rtl.chosen-container-single-nosearch .chosen-search,
.chosen-rtl .chosen-drop {
	left: 9999px;
}
.chosen-rtl.chosen-container-single .chosen-results {
	margin: 0 0 4px 4px;
	padding: 0 4px 0 0;
}
.chosen-rtl .chosen-results li.group-option {
	padding-right: 15px;
	padding-left: 0;
}
.chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div {
	border-right: none;
}
.chosen-rtl .chosen-search input[type="text"] {
	padding: 4px 5px 4px 20px;
	background: white url(/st/portal/media/images/chosen/chosen-sprite.png) no-repeat -30px -20px;
	background: url(/st/portal/media/images/chosen/chosen-sprite.png) no-repeat -30px -20px, -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(1%, #eeeeee), color-stop(15%, #ffffff));
	background: url(/st/portal/media/images/chosen/chosen-sprite.png) no-repeat -30px -20px, -webkit-linear-gradient(#eeeeee 1%, #ffffff 15%);
	background: url(/st/portal/media/images/chosen/chosen-sprite.png) no-repeat -30px -20px, -moz-linear-gradient(#eeeeee 1%, #ffffff 15%);
	background: url(/st/portal/media/images/chosen/chosen-sprite.png) no-repeat -30px -20px, -o-linear-gradient(#eeeeee 1%, #ffffff 15%);
	background: url(/st/portal/media/images/chosen/chosen-sprite.png) no-repeat -30px -20px, linear-gradient(#eeeeee 1%, #ffffff 15%);
	direction: rtl;
}
.chosen-rtl.chosen-container-single .chosen-single div b {
	background-position: 6px 2px;
}
.chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b {
	background-position: -12px 2px;
}

/* @end */
/* @group Retina compatibility */
@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(/st/portal/media/images/chosen/chosen-sprite@2x.png) !important;
		background-size: 52px 37px !important;
		background-repeat: no-repeat !important;
	}
}
/* @end */

.chosen-container-single-nosearch .chosen-single div {
	/*top: 22px;
	width: 11px;
	height: 6px;*/
}
.chosen-container-single-nosearch .chosen-single div b {
	/*background: url(/st/portal/img/icons.png) -103px 0;*/
}
.chosen-container-single-nosearch .chosen-single span {
	margin-right: 31px;
}
.chosen-container.pink-mode .chosen-single {
	background: #ad0073;
	color: #fff;
	border: none
}
.chosen-container.pink-mode .chosen-drop {
	background: #ad0073;
	border: none;
}
.chosen-container.pink-mode .chosen-results {
	color: #fff;
}
.chosen-container.pink-mode .chosen-results li.highlighted {
	background-color: #cbdba1;
	color: #fff;
}
.chosen-container.pink-mode  .chosen-single div b {
	background: url(/st/portal/img/icons.png) -103px -11px;
}
.chosen-container.border .chosen-single {
	border: 1px solid #dd94c4;
}
.chosen-container.border .chosen-drop {
	border: 1px solid #dd94c4;
	border-top: none;
}
.chosen-container .close-select {
	width: 100%;
	text-align: center;
	padding: 0;
}