/**
 *
 * Version: 0.1
 *
*/


/* Testing ONLY */
.pricing-set {
	border: 1px solid #e3e3e3;
	margin-bottom: 10px;
}

.pricing-set .set-header {
	font-size: 14px;
	padding: 10px 15px;
	border-bottom: 1px solid #e3e3e3;
}

.pricing-set ul {
	width: 100%;
	padding: 8px 0;
}

.pricing-set ul li {
	padding: 8px 15px;
	cursor: pointer;
}

.pricing-set ul li:hover {
	background: #e3e3e3;
}

.pricing-set ul li::after {
    content: '';
    clear: both;
    display: table;
}

.pricing-set ul li:nth-child(even) {
}

.pricing-set ul li > span {
	display: inline-block;
	font-size: 13px;
	vertical-align: middle;
}

.pricing-set ul li span.quantities-from {
	/*width: 25%;*/
	padding-right: 4%
}

.pricing-set ul li .quantity,
.pricing-set ul li .quantity input,
.pricing-set ul li .button {
	display: none !important;
}

.pricing-set ul li span.amount {
	width: calc( 75% - 80px );
}

.pricing-set ul li span.discount_label {
	display: inline-block;
	max-width: 90px;
	text-align: center;
	background: #f1ce0a;
	padding: 5px 15px;
	text-transform: uppercase;
	font-weight: 600;
	position: relative;
	/*cursor: pointer;*/
	overflow: hidden;
	font-size: 10px;
	float: right;
}

.pricing-set ul li span.percentage-amount {
	margin-left: 5px;
}

.pricing-set ul li span.discount_label:after {
	content: attr(data-quick-add-text);
	display: inline-block;
	width: calc( 100% + 20px );
	height: 100%;
	padding: 5px 0;
	color: #FFF;
	position: absolute;
	top: 0;
	left: 0;
	background: #19b763;
	text-align: center;
	transition:	all .48s cubic-bezier(.74,-0.53,.29,1.48);
	transform: translate3d( calc(100% - 20px),0,0);
}

.pricing-set ul li span.discount_label .label-text {
	transition:	all .48s cubic-bezier(.74,-0.53,.29,1.48);
}
/*
.pricing-set ul li span.discount_label:hover .label-text {
	transform: translate3d(-100%,0,0);
}

.pricing-set ul li span.discount_label:hover:after {
	transform: translate3d(-10px,0,0);
}
*/