.selectlink {			
	position: relative;
	display: inline-block;
	width: 100%;
	text-align: left;
}

.selectlink-control {
	position: relative;
	padding: 10px 15px;
	border: 1px solid #dcdfe6;
	border-radius: 4px;
	background: #fff;
	cursor: pointer;
}	
.selectlink-control:after {
	content: '';
	border: 5px solid transparent;
	border-top: 5px solid #999;
	position: absolute;
	top: 50%;
	right: 15px;
	margin-top: -3px;
}

.selectlink > ul {
	display: none;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	width: 100%;
	height: auto;
	max-height: 300px;
	position: absolute;
	top: 100%;
	left: 0px; 
	border: 1px solid #dadada;
	border-top: none;
	background: #fff;
	z-index: 9999;
	overflow: auto;
	user-select: none;
}	
.selectlink li {
	display: block;
	margin: 0;
	padding: 0;
}

.selectlink li ul {
	display: block !important;
	padding-left: 10px;
	margin: 0;
}

.selectlink li a {
	position: relative;
	display: block;
	margin: 0;

	padding: 4px 6px 4px 15px;
	font-weight: normal;
	font-size: 12px;
	line-height: 1.1;
	cursor: pointer;
	text-decoration: none;
	color: #333;
}			
.selectlink li a:hover {
	background: #03a2ff;
	color: #fff;
}
 
@media screen and (max-width: 700px) {
	.body_pointer {
		cursor: pointer;
	}
}


.tags-input-wrapper {
	font-size: 12px;
    background: #f9f9f9;
    padding: 10px;
    border-radius: 4px;
    max-width: 100%;
    border: 1px solid #ccc
}

.tags-input-wrapper p {
	margin: 0;
}

.tags-input-wrapper input {
    border: none;
    background: transparent;
    outline: none;
    width: 150px;
}

.tags-input-wrapper .tag {
    display: inline-flex;
	align-items: center;
	gap: 5px;
    background-color: #009432;
    color: white;
    border-radius: 40px;
    padding: 0px 3px 0px 7px;
}

.tags-input-wrapper .tags-input-tags {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 5px;
}

.tags-input-wrapper .tag a {
    display: inline-block;
    cursor: pointer;
	color: currentColor;
	text-decoration: none;
	opacity: 0.8;
	flex-shrink: 0;
	transition: opacity 0.25s ease;
}

.tags-input-wrapper .tag a:hover {
	opacity: 1;
}