.preisschild {
	display: inline-block;
    transform: rotate(21deg);
    width: auto;
	height: 50px;
	background-color: #C00;
	-webkit-border-radius: 8px 8px 8px 8px;
	-moz-border-radius: 8px 8px 8px 8px;
	border-radius: 8px 8px 8px 8px;
	border-left: 15px solid #C00;

	/* This makes room for the triangle */
	margin-left: 30px;
	position: relative;
	color: white;
	font-weight: 300;
	font-size: 40px;
	line-height: 50px;
	padding: 0 10px 0 10px;
}

/* Makes the triangle */
.preisschild:before {
	content: "";
	position: absolute;
	display: block;
	left: -31px;
	width: 0;
	height: 0;
	border-top: 25px solid transparent;
	border-bottom: 25px solid transparent;
	border-right: 20px solid #C00;
	-webkit-border-radius: 8px 8px 8px 8px;
	-moz-border-radius: 8px 8px 8px 8px;
	border-radius: 8px 8px 8px 8px;
}

/* Makes the circle */
.preisschild:after {
	content: "";
	background-color: white;
	border-radius: 50%;
	width: 6px;
	height: 6px;
	display: block;
	position: absolute;
	left: -20px;
	top: 22px;
}