//
// DateRangePicker
// --------------------------------------------------

@import "../general/mixins.less";
@import "../general/variables.less";

div.tagsinput {
	border: 1px solid #CCC;
	background: #FFF;
	padding: 5px;
	width: 300px;
	height: 100px;
	overflow-y: auto;
	.box-sizing(border-box);

	span.tag {
		border: 1px solid #a5d24a;
		display: block;
		float: left;
		padding: 0 8px;
		background: #cde69c;
		color: #638421;
		margin: 5px 5px 5px 5px;
		line-height: 23px;
		font-size: @baseFontSize - 2px;

		a {
			font-weight: bold;
			color: #82ad2b;
			text-decoration:none;
			font-size: @baseFontSize - 2px;
		}
	}

	input {
		//width:80px;
		border: none;
		padding: 7px 5px;
		background: transparent;
		font-size: @baseFontSize - 2px;
		.box-shadow(none);
	}

	div {
		display:block;
		float: left;
	}
}

.tags_clear {
	clear: both;
	width: 100%;
	height: 0px;
}

.not_valid {
	background: #FBD8DB !important;
	color: #90111A !important;
}