@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}



.li-suggestion {
	list-style: none;
}



.list-tag {
	display: flex;
	flex-wrap: wrap;
	padding: 6px;	
	grid-gap: 6px;
	position: relative;
}
.list-tag > li {	
	padding: 2px 4px;
	font-size: 14px;
	display: flex;	
	grid-gap: 6px;
}
.list-tag > li .bx {
	width: 16px;
	height: 16px;	
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}
.list-tag > li .bx:hover {
	background: #ddd;
}
.list-tag .input-tag {	
	width: 100%;
}
.suggest-wrapper {
	position: absolute;
	top: calc(100% + 6px);
	width: 100%;
	max-height: 0;
	overflow: hidden;
	left: 0;
	transition: all .3s ease;
    z-index: 100;
}
.list-tag .input-tag:not(:placeholder-shown) + .suggest-wrapper {
	max-height: 300px;
}
.suggest-wrapper .suggestion {
	padding: 6px 0;
	max-height: 300px;
	overflow-y: auto;
	width: 100%;
	background: #f9f9f5;
     z-index: 100;
}
.suggest-wrapper .suggestion li {
	padding: 6px 24px;
	cursor: pointer;
     z-index: 100;
}
.suggest-wrapper .suggestion li:hover {
	background: #fff;
     z-index: 100;
}
.help-text {
	font-size: 14px;
	color: #888;
	margin-bottom: 24px;
}
.bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
.bottom .remove-all {

	padding: 10px 30px;
	border-radius: 4px;
	border: none;
	cursor: pointer;
	font-weight: 500;
	color: #fff;
}
.bottom .num {
	font-weight: 600;
}
.not-found {
	pointer-events: none;
}