/**
 * cf-tagsinput.css
 * Styles for the secure cf-tagsinput widget.
 * Replaces jquery.tagsinput.css
 */

div.tagsinput {
	border: 1px solid #CCC;
	background: #FFF;
	padding: 5px;
	width: 300px;
	min-height: 40px;
	height: auto;
	overflow-y: auto;
	cursor: text;
	box-sizing: border-box;
}

div.tagsinput span.tag {
	border: 1px solid #aaa;
	border-radius: 4px;
	display: inline-block;
	float: left;
	padding: 0 5px 2px 5px;
	background: #eee;
	margin-right: 5px;
	margin-bottom: 5px;
	font-size: .8em;
	line-height: 1.6;
}

div.tagsinput span.tag a {
	font-weight: bold;
	text-decoration: none;
	margin-left: 4px;
	color: #888;
}

div.tagsinput span.tag a:hover {
	color: #c00;
}

div.tagsinput input.tagsinput-new {
	width: 8em;
	border: 1px solid transparent;
	padding: 2px 5px;
	background: transparent;
	outline: 0;
	margin-right: 5px;
	margin-bottom: 5px;
	font-size: .85em;
	float: left;
}

.tags_clear {
	clear: both;
	width: 100%;
	height: 0;
}
