
a{
	text-decoration: auto;
}

.fakeselect,
.select2-container{
	display:inline-block;
	min-width: 12em;
	max-width: 33em !important;
	background:#fff;
	box-sizing:border-box;
}

.select2-container.error{
	border:0.1em solid red;
}

.select2-dropdown-open{
	background:#fff;
}

.select2-container .select2-choice {
    display: block;
    padding: 0 0 0 0.5em;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
    line-height: 3em;
    color: #000;
	text-decoration: none;
	font-weight: 300;
}

.select2-arrow:before{
	position:absolute;
	top:0;
	right:0;
	width:1em;
	height:1em;
	font:1.5em manager_icons;
	padding:0.5em;
	content:"d";
	text-align:center;
}

.select2-drop-above .select2-arrow:before{
	content:"u";
}

.select2-container .select2-choice span{
	margin-right:3em;
	display:block;
	overflow:hidden;
	white-space:nowrap;
	text-overflow:ellipsis;
}


.select2-drop-mask{
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	z-index:9998;
}

.select2-drop{
	position:absolute;
	z-index:9999;
	background:#fff;
	box-sizing:border-box;
	border:0.1em solid #000;
}

.select2-search .select2-search-field{
	display:block;
	width:100%;
	height:3em;
	position:relative;
	z-index:10000;
}

.select2-search-field{
	width:12em;
}

.select2-search:after{
	display:block;
	position:absolute;
	top:0;
	left:0;
	width:1.5em;
	height:100%;
	text-align:center;
	font:1.5em/2em manager_icons;
	color:#000;
	content:"F";
}
.select2-search input{
    width:100%;
	height:3em;
	border:0;
	padding:0 1em 0 3em;
	font-size:1em;
	box-sizing:border-box;
	border-bottom:1px solid #e5e5e5;
}

.select2-search-field:after{
	display:block;
	position: sticky;
	width:1.5em;
	height:100%;
	text-align:center;
	font:1.2em/2em manager_icons;
	color:#000;
	content:"F";
}

.select2-search-field input{
	width: 12em !important;
	height:2.5em;
	border:0;
	padding:0 1em 0 2.5em;
	font-size:1em;
	box-sizing:border-box;
	position: absolute;
}

/* results */
.select2-results{
	max-height:200px;
	position:relative;
	overflow-x:hidden;
	overflow-y:auto;
}

.select2-results li {
	display:list-item;
	list-style:none;
	padding:0 0.5em;
}

.select2-results .select2-selected {
	background:#e5e5e5;
}

.select2-results .select2-result-label{
	height:3em;
	line-height:3em;
	overflow:hidden;
	white-space:nowrap;
	text-overflow:ellipsis;

    -webkit-touch-callout: none;
      -webkit-user-select: none;
       -khtml-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;
}

.select2-results .select2-highlighted {
	background:#13aeef;
	color:#fff;
}

.select2-results .select2-no-results,
.select2-results .select2-searching,
.select2-results .select2-selection-limit{
	line-height:3em;
}

.select2-results .select2-searching{
	position:relative;
	padding-left:3em;
}

.select2-results .select2-searching:before{
	position:absolute;
	top:0.5em;
	left:0.5em;
	display:inline-block;
	content:"";
	height:2em;
	width:2em;
	box-sizing:border-box;
	border:0.5em solid #ccc;
	border-top-color:#666;
	border-radius:100%;
	-webkit-animation:searching .6s infinite linear;
}

@-webkit-keyframes searching{
	from{
		-webkit-transform:rotate(0deg);
	}
	to{
		-webkit-transform:rotate(359deg);
	}
}


.select2-result-selectable .select2-match,
.select2-result-unselectable .select2-match{
	text-decoration:underline;
}

/* disabled styles */
.select2-container.select2-container-disabled .select2-choice,
.select2-container.select2-container-disabled .select2-choice span{
	background:#ccc;
	cursor:not-allowed;
}

.select2-container.select2-container-disabled.fake .select2-choice span:before{
	display:none;
}

.select2-offscreen,
.select2-offscreen:focus{
	clip:rect(0 0 0 0);
	width:1px;
	height:1px;
	border:0;
	margin:0;
	padding:0;
	overflow:hidden;
	position:absolute;
	outline:0;
	left:0px;
}

.select2-display-none{
	display:none;
}

.select2-measure-scrollbar{
	position:absolute;
	top:-10000px;
	left:-10000px;
	width:100px;
	height:100px;
	overflow:scroll;
}

.select2-search-choice {
	background: #00adef;
    color: #fff;
    border: none;
    border-radius: 0px;
    cursor: default;
    float: left;
	padding: 0 5px 0 0; 
	margin: 3px 0 0 3px;
	line-height: 1.5em;
	padding: 0.5em !important;
}

.select2-choices .select2-search-choice-close:after {
	position:sticky;
    color: #fff;
	font:1.3em manager_icons;
	padding-left: 0.3em;
	content: "C";
}