/**
 * Tagator jQuery Plugin
 * A plugin to make input elements, tag holders
 * version 1.0, Jan 13th, 2014
 * by Ingi á Steinamørk
 */

/* reset */
.tagator_element * {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	text-decoration: none;
}

/* dimmer */
#tagator_dimmer {
	background-color: rgba(0,0,0,.1);
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 100;

}

/* Main box */
.tagator_element {
	border: 1px solid #abadb3;
	border-radius: 3px;
	box-sizing: border-box;
	background-color: #fff;
	display: inline-block;
	text-decoration: none;
}
.tagator_element.options-visible {
	position: relative;
	z-index: 101;
}

/* placeholder */
.tagator_placeholder {
	position: absolute;
	color: #999;
	left: 4px;
	top: 4px;
	font-size: 13px;
}
input.noneinput{
	height: 0;
}
/* chosen items holder */
.tagator_tags {
	display: inline;
}

/* chosen item */
.tagator_tag {
	display: inline-block;
	background-color: #39f;
	border-radius: 0px;
	color: #fff;
	padding: 0px;
	font-size: 10px;
	margin: 0px;
	position: relative;
	vertical-align: top;
}

/* chosen item remove button */
.tagator_tag_remove {
	opacity:0;
	display: inline-block;
	color: #fff;
	font-size: 12px;
	padding: 15px;
	cursor: pointer;
	font-size: 11px;
	position: absolute;
	right: 0;
	
	bottom: 0;
}
.tagator_tag_remove:hover {
	opacity:1;
	color: #000;
	background-color: #8cf;
    display: block;
}

/* input box */
.tagator_input,
.tagator_textlength {
	border: 0;
	display: inline-block;
	margin: 0;
	background-color: transparent;
	font-size: 13px;
	outline: none;
	padding: 4px 0 0 5px;
	position: relative;
	z-index: 1;
}
.tagator_input {
	/*padding: 0px 0px;*/
	width: 10;
}

/* options holder */
.tagator_options {
	margin: 10px;
	padding: 0;
	border: 1px solid #7f9db9;
	border-radius: 0 0 3px 3px;
	position: absolute;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	width: 270px;
	z-index: 101;
	background-color: #fff;
	list-style: none;
	left: -110px;
	box-shadow: 0 5px 10px rgb(0 0 0 / 20%);
	

	/* right: -1px; */
}
.tagator_element.options-hidden .tagator_options {
	display: none;
}
ul.tagator_options{

}
ul.tagator_options li{
	display: inline-block;
	margin-left: 10px;
	cursor: pointer;
    text-align: center;
    font-size: 0.9em;
    float: left;
    padding: 3px;
    background-color: #96d7fd;
    border-color: #81bee2;
    margin: 3px;
    -webkit-transition: 0.5s all;
	min-height:25px;
}
ul.tagator_options li:before {
	content: '';
	position: absolute;
	display: block;
	z-index: 1;
	border-style: solid;
	border-color: #ffffff transparent;
	border-width: 0 10px 10px 10px;
	bottom: 58px;
	left: 50%;
	margin-left: -10px;
  }
/* result item */
.tagator_option {
	padding: 5px;
	cursor: pointer;
	color: #000;
}
.tagator_option.active {
	background-color: #39f;
	color: #fff;
}