.st-block {
	display: inline-flex;
	background-color: #25af4f;
	border: 1px solid black;
	gap: 25px;
	padding: 5px 10px;
	color: white;
	font-size: 16px;
	margin-bottom: 20px;
}
.st-title {
	display: flex;
	gap: 8px;
}
.st-more span {
	border-bottom: 1px dashed white;
	text-decoration: none;
	color: white;
	cursor: pointer;
	text-wrap: nowrap;
}
.st-stars {
	display: flex;
	flex-wrap: nowrap;
}
.st-star {
	display: inline-block;
	width: 20px;
	background-image: url("/local/include/service-top/img/star.png");
	height: 20px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 820px)
{
	.st-title {
		flex-direction: column;
		gap: 5px;
	}
	.st-block {
		flex-direction: column;
		gap: 5px;
	}
}