.tags {
	margin-top: 5px;
}

.tags a, .tag {
	background: light-dark(#d5d5d5,#404040);
	color: light-dark(black, white) !important;
	padding: 5px 7px;
	border-radius: 5px;
	margin-right: 5px;
	margin-bottom: 4px;
	margin-top: 0px;
	font-size: 12px;
	text-transform: capitalize;
	border: 1px solid light-dark(#80808038, #6c6c6c38);
	box-shadow: 0 2px 7px -6px light-dark(#616161, black);
	display: inline-block;
	text-decoration: none;
	position: relative;
	transition: background 0.2s ease;
	button {
		background: url(/static/images/remove.svg);
		border: none;
		padding: 0px;
		background-size: 85%;
		background-repeat: no-repeat;
		background-position: center;
		color: transparent;
		font-size: 10px;
    width: 20px;
    height: 20px;
    margin: 0;
		margin-right: -5px;
		margin-left: 3px;
		position: relative;
    top: -1px;
	}
	&.big {
		font-size: 16px;
		margin-top: 5px;
	}
	&:hover {
		background: light-dark(#f0f0f0,#646464);
	}
}

.tags .has-icon {
	padding-left: 27px;
	img {
		position: absolute;
		left: 3px;
    top: 50%;
    transform: translate(0, -50%);
		width: 18px;
		height: auto;
	}
}
.tags .has-icon.big img{
	width: 20px;
}



div.tag-suggestions {
	width: 100%;
	padding: 10px;
	padding-bottom: 5px;
	margin-top: -15px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	border: 1px solid;
	border-top: none;
	border-color: light-dark(#e1e1e1,#606060);
	margin-bottom: 9px;
	background-color: light-dark(white,#2b2a33);
}

div.tag-suggestions.hidden {
	display: none;
}

div.tag-suggestions > div {
	border-radius: 3px;
	padding: 3px;
	cursor: pointer;
}

div.tag-suggestions > .selected {
	background-color: light-dark(#dbdbdb,#484755);
}