.result_items__list{
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.result_items__item{
	border-radius: 3px;
	background: #004899;
	height: 22px;
	line-height: 22px;
	color: #FFF;
	padding: 0 5px 0 26px;
	position: relative;
	max-width: 200px;
	text-overflow: ellipsis;
	overflow: hidden;
	font-size: 13px;
	white-space: nowrap;
}

.result_items__item_text{
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.result_items__item_btn{
	margin: 0;
	padding: 0;
	border: 0;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px;
	color: #FFF;
	text-align: center;
	width: 22px;
	height: 22px;
	line-height: 22px;
	background: #004899;
	border-right: 1px solid rgba(255, 255, 255, 0.7);
}

.result_items__item_btn:hover{
	background: #990000;
	cursor: pointer;
}