/* Plan for other price tag colors by making the price tag base styles generic */
.price-tag {
	position: absolute;
	right: -10px;
	height: 60px;
}
.price-tag .tag-end {
	position: absolute;
	right: 100%;
	z-index: 7;
	bottom: 0;
}
.price-tag .tag-inner {
	padding: 10px 20px 10px 40px;
	background-color: #e91069; /* Default color (red) */
	position: relative;
	height: 40px;
	z-index: 6;
}
.price-tag.blue-tag .tag-inner {
	background-color: #34b8bc;
}
.price-tag.pink-tag .tag-inner {
	background-color: #f48e8d;
}
.price-tag.green-tag .tag-inner {
	background-color: #89cb97;
}
/* Add the tag's lip */
.price-tag .tag-inner:after {
	border-color: transparent transparent transparent #ad0047; /* Other types of tags just need to change this one value to have a different color here */
	border-width: 10px 0 0 10px;
	pointer-events: none;
	border-style: solid;
	position: absolute;
	margin-left: -10px;
	content: " ";
	bottom: 100%;
	height: 0;
	width: 0;
	right: 0;
}
.price-tag.blue-tag .tag-inner:after {
	border-color: transparent transparent transparent #1d7a7d;
}
.price-tag.pink-tag .tag-inner:after {
	border-color: transparent transparent transparent #b14f50;
}
.price-tag.green-tag .tag-inner:after {
	border-color: transparent transparent transparent #469156;
}
.tag-inner strong {
	/*font-family: "museo-slab", Georgia, serif;*/
	line-height: 26px;
	font-size: 30px;
	display: block;
}
.tag-inner em {
	font-family: "nimbus-sans-condensed", "Helvetica Neue", Helvetica, Arial, sans-serif;
	line-height: 16px;
	font-size: 14px;
	display: block;
}

/* Change the color of the tag depending on the type of tag. In this case, as a plain destination, it would be the red color. You would add additional variants for flash sales (green) and voluntourism (light pink). */
.price-tag .tag-end {
	background-position: -272px 0;
	position: absolute;
	height: 60px;
	width: 30px;
}
.price-tag.blue-tag .tag-end {
	background-position: -272px -60px;
}
.price-tag.pink-tag .tag-end {
	background-position: -272px -120px;
}
.price-tag.green-tag .tag-end {
	background-position: -272px -180px;
}

.price-tag .tag-end span {
	font-family: "nimbus-sans-condensed", "Helvetica Neue", Helvetica, Arial, sans-serif;
	text-transform: uppercase;
	position: absolute;
	font-weight: 100;
	font-size: 14px;
	opacity: 0.5;
	left: 30px;
	top: 20px;

	-webkit-transform: rotate(-90deg);
	-moz-transform: rotate(-90deg);
	transform: rotate(-90deg);
}

/* If the price tag is in a slider, it should be positioned to the bottom. If it would be in a grid, it should be at the top. That would be declared elsewhere */
.slider-item .price-tag {
	bottom: 20px;
	top: auto;
}
.price-tag3{
	min-width: 100px;
}