.text-wavyline {
	position: relative;
}
.text-wavyline::before {
	content: '';
	pointer-events: none;
	position: absolute;
	z-index: -1;
	bottom: -2px;
	left: 0;
	width: 100%;
	height: 4px;
	background-size: 8px 8px;
	background-image: linear-gradient(45deg, transparent 45%, coral, transparent 55%),
	                  linear-gradient(135deg, transparent 45%, coral, transparent 55%);
}
/*
.text-wavyline-demo:first-child span{
	display: inline-block;
	margin-right: 5px;
}*/