@charset "UTF-8";
.badge {
	position: absolute;
	left: 14%;
	right: 0;
	bottom: 76%;
	display: inline-block;
	margin: 1em 0;
	padding: 3px 4px 2px;
	min-width: 100px;
	max-width: 72%;
	color: #fff;
	border: solid 1px #fff;
	font-size: 6pt;
	font-weight: bold;
	background: #a90329;
	background: linear-gradient(to bottom,#cc0000 0%,#a90329 100%);
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .5);
	border-radius:32px;
	text-align: center;
	-webkit-animation-name: newAnime;
	-webkit-animation-duration: 1s;
	-webkit-animation-iteration-count: infinite;
}

.badge:before {
	content: "";
	position: absolute;
	bottom: -11px;
	left: 57%;
	margin-left: -15px;
	border: 4px solid transparent;
	border-top: 6px solid #fff;
}
.badge:after {
	content: "";
	position: absolute;
	bottom: -9.5px;
	left: 57%;
	margin-left: -15px;
	border: 4px solid transparent;
	border-top: 6px solid #a90329;
}

.badge img{
	width: 9px;
}
@-webkit-keyframes newAnime {
	from {transform: translateY(2px);}50% {transform: translateY(0px);}to {transform: translateY(2px);}
}
