/* ==========================================================================
   Servimonda Widgets – Service Tags
   ========================================================================== */

.sm-service-tags {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 10px;
}

.sm-service-tags__item {
	display: inline-flex;
}

.sm-service-tags__tag {
	display: inline-flex;
	align-items: center;
	padding: 8px 18px;
	border-radius: 50px;
	border: 1px solid currentColor;
	font-size: 14px;
	line-height: 1.4;
	text-decoration: none;
	color: inherit;
	transition: all 200ms ease;
	cursor: default;
}

a.sm-service-tags__tag {
	cursor: pointer;
}

a.sm-service-tags__tag:hover {
	text-decoration: none;
}
