/*!
 * TagSelector
 * 
 * @author Ryan Fitzgerald
 * @version 0.2.1
 * @license MIT
 * 
 * Repo: https://github.com/RyanFitzgerald/tagselector
 * Issues: https://github.com/RyanFitzgerald/tagselector/issues
 */
.tagselector-tag {
	border: 1px solid #e2e2e2;
	border-radius: 4px;
	/*color: #637280;*/
	cursor: pointer;
	display: inline-block;
	
	font-size: 12px;
	margin: 0px 5px 5px 0;
	padding: 5px 10px;
}

.tagselector-tag.active {
	font-size: 12px;
	font-weight: normal;
	/*
	background: #545969;
	border: 1px solid #545969;
	*/
	background: #FF8A5C;
	border: 1px solid #FF8A5C;
	color: #fff;
}




/* TODO move me to another file!!!!! */
.tagify__dropdown.extra-properties .tagify__dropdown__item > img{
    display: inline-block;
    vertical-align: middle;
    height: 20px;
    transform: scale(.75);
    margin-right: 5px;
    border-radius: 2px;
    transition: .12s ease-out;
}

.tagify__dropdown.extra-properties .tagify__dropdown__item--active > img,
.tagify__dropdown.extra-properties .tagify__dropdown__item:hover > img{
    transform: none;
    margin-right: 12px;
}

.tagify.countries .tagify__input{ min-width:175px; }

.tagify.countries tag{ white-space:nowrap; }
.tagify.countries tag img{
    display: inline-block;
    height: 16px;
    margin-right: 3px;
    border-radius: 2px;
}

.tagify {
	font-size: 12px;
	--tag-bg: #FF8A5C;
	--tag-text-color: white;
	--tag-hover: #ffb294;
	--tag-remove-btn-color: white;
}


.tagify__tag {
	background: #FF8A5C;
	
}


