.header-with-label{
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 0;
	text-transform: uppercase;
}

.header-with-label span{
	background: #9747FF;
	border-radius: 26px;
	font-weight: 700;
	font-size: 15px;
	line-height: 100%;
	padding: 3px 15px;
	color: white;
}

@media only screen and (max-width: 549px) {
	.header-with-label{
		flex-direction: column-reverse;
		align-items: start;
		gap: 5px;
	}
	
	.header-with-label span{
		font-size: 13px;
	}
}