.tags {
	padding: 10px;
}
.remove-tag {
 	display: inline-block;
    vertical-align: middle;
    position: relative;
	width: 11px;
    height: 9px;
}
.remove-tag:hover {
  opacity: 1;
}
.remove-tag:before, .remove-tag:after {
  position: absolute;
    left: 11px;
    content: ' ';
    height: 11px;
    width: 1px;
  background-color: #fff;

}
.remove-tag:before {
  transform: rotate(45deg);
}
.remove-tag:after {
  transform: rotate(-45deg);
}

.tags .selectedTagContainer {
}

.tags .suggestedTagContainer {
}

.tags .newTag {
	    border-radius: 17px;
    border: solid 1px #c8c8c7;
	width: 100%;
    height: 40px;
    padding: 0 10px;
	margin: 5px 5px 0 0;
}

.tags .selectedTag {
	display: inline-block;
	color: white;
	background-color: #9BD95C;
	border: 1px solid #9BD95C;
	padding: 0 10px;
	margin: 5px 5px 0 0;
	line-height: 30px;
	border-radius: 10px;
}

.tags .suggestedTag {
	display: inline-block;
	color: #9BD95C;
	padding: 0 10px;
	margin: 5px 5px 0 0;
	line-height: 30px;
	border-radius: 10px;
	border: 1px solid #9BD95C;
}

.tags .suggestedTag.selected {
	color: #9BD95C;
	background-color: white;
	cursor: auto;
}

.tags .separator {
	height: 1px;
	background-color: #c0c0c0;
	margin: 5px 0 0 0;
}

.tags .tagContainer {
	/*position: absolute;
	left: 10px;
	right: 10px;*/
	/*bottom: 0;
	overflow: auto;
	display: none;*/
}

.tags .tagLabel {
	float: left;
	margin: 4px 0 0 0;
}

.tags .newTag {
	display: block;
	float: left;
	margin: 15px 0 0 0;
}

.tags .prior-label {
	color: #cbcbcb;
	font-weight: bold;
}



