@charset "UTF-8";

/* ADVANCED POPUP */
.cartPayMethodFee, .cartShippingFee {
	display: none;
}
.basketPopupOverlay, .alertPopupOverlay {
	position: fixed;
	top: 0;
	left:0;
	width: 100%;
	height: 100%;
	background-color:rgba(0,0,0,.50);
	z-index: 9999;
	display: none;
}
.basketPopup, .alertPopup {
	position: absolute;
	background-color: rgba(255,255,255,1.00);
	box-shadow: 0 0 30px rgba(0,0,0,0.6);
	border-radius: 6px;
	top: 50%;
	left: 50%;
	width: 900px;
	max-width: 90%;
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	display: none;
}
.basketPopup:after, .alertPopup:after {
	clear: both;
	content:"";
	display: block;
}
.basketPopupClose, .alertPopupClose {
	position: absolute;
	top:-15px;
	right: -15px;
	height: 30px;
	width:30px;
	background-color: rgba(0,0,0,1.00);
	-webkit-border-radius:50%;
	border-radius: 50%;
	cursor: pointer;
	border:solid 2px white;
	box-shadow: 0 0 6px rgba(0,0,0,0.5);
	display: none;
	text-align: left;
}
.basketPopupClose:after, .alertPopupClose:after {
	content:"+";
	position: absolute;
	top: 50%;
	font-size: 29px;
	font-family: Arial, "sans-serif";
	font-weight: normal;
	line-height: 1;
	width: 100%;
	text-align: center;
	color:rgba(255,255,255,1.00);
	-webkit-transform: translateY(-50%) rotate(45deg);
	transform: translateY(-50%) rotate(45deg);
}
.basketPopupContentTop {
	border-radius: 6px 6px 0 0;
	overflow: hidden;
}
.basketPopupContentTop:after {
	clear: both;
	content:"";
	display: block;
}
.basketPopupLeft {
	width: 50%;
	float: left;
	padding: 0 0 15px;
	text-align: center;
	border-right: solid 1px rgba(227,227,227,1.00);
	border-radius: 6px 0 0;
}
.basketPopupRight {
	width: 50%;
	float: left;
	padding: 0 0 15px;
}
.basketPopupHeaderLeft, .basketPopupHeaderRight {
	padding: 12px 20px;
	border-bottom: solid 1px rgba(227,227,227,1.00);
	font-size: 16px;
	color: rgba(66,66,66,1.00);
	text-transform: uppercase;
}
.basketPopupHeaderRight {
	background-color: rgba(244,244,244,1.00);
}
.basketPopupImage {
	display: inline-block;
	max-width: 40%;
	margin: 10px 0;
}
.basketPopupName {
	font-weight: bold;
	padding: 0 15px;
}
.basketPopupName h3 {
	font-size: 14px;
	margin: 0 0 5px 0;
}
.basketPopupName p {
	font-size: 11px;
	display: inline;
	padding: 0 5px;
}
.basketPopupCountdown {
	border-bottom:solid 1px rgba(227,227,227,1.00);
	padding: 10px 20px;
	font-weight: bold;
}
.basketPopupCountdown .fa {
	margin: 0 10px 0 0;
	font-size: 16px;
}
.basketPopupCountdown.basketPopupRedeemed {
	background-color: #f1f9f7;
	border-bottom-color:#e0f1e9;
	color: #1d9d74;
}
.basketPopupBasket {
	padding: 20px;
}
.basketPopupBasket > div {
	padding: 5px 0;
}
.basketPopupBasket > div:nth-child(2n-1) {
	float: right;
}
.basketPopupBasket > div:nth-child(2n+4) {
	border-top: solid 1px rgba(236,236,236,1.00);
}
.basketPopupButtons {
	padding: 0 20px;
	display: flex;
}
/* .basketPopupButtons:after {
	clear: both;
	content:"";
	display: block;
} */
.basketPopupButtons > div {
	width: 100%;
	flex: auto;
	padding: 10px;
	background-color:rgba(102,102,102,1.00);
	color: rgba(255,255,255,1.00);
	cursor: pointer;
	font-size: 13px;
	-webkit-border-radius:3px;
	border-radius: 3px;
	text-align: center;
	font-weight: bold;
	text-transform: uppercase;
}
.basketPopupButtons > div:last-child {
	margin-left: 4%;
    background: rgb(135,168,37);
    background: -moz-linear-gradient(top, rgba(135,168,37,1) 0%, rgba(108,155,13,1) 100%);
    background: -webkit-linear-gradient(top, rgba(135,168,37,1) 0%,rgba(108,155,13,1) 100%);
    background: linear-gradient(to bottom, rgba(135,168,37,1) 0%,rgba(108,155,13,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#87a825', endColorstr='#6c9b0d',GradientType=0 );
}
.basketPopupButtons > div:hover {
	background-color: rgba(37,37,37,1.00);
}
.basketPopupRelatedHeader {
	padding: 12px 20px;
	border-top: solid 1px rgba(227,227,227,1.00);
	border-bottom: solid 1px rgba(227,227,227,1.00);
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	color: rgba(66,66,66,1.00);
}
.basketPopupRelatedUl {
	margin: 0 -1%;
	padding: 0 20px;
	list-style-type: none;
}
.basketPopupRelatedUl:after {
	clear: both;
	content:"";
	display: block;
}
.basketPopupRelatedUl > li {
	margin: 0 1%;
	float: left;
	width: 23%;
}
.basketPopupRelatedUl > li:nth-child(n+5) {
	display: none;
}

.alertPopup {
	padding: 50px 30px;
	width: 700px;
	background-color: #386fa0;
	color: rgba(255,255,255,1.00);
	text-align: center;
}
.alertPopupText {
	font-size: 20px;
	font-weight: bold;
}
.alertPopupCloseButton {
	border-radius: 5px;
	background-color: #ff7800;
	color: rgba(255,255,255,1.00);
	font-size: 17px;
	font-weight: bold;
	border: 0;
	padding: 10px 25px;
	display: inline-block;
	cursor: pointer;
	text-transform: uppercase;
	margin: 20px 0 0;
}


@media (max-width: 845px) {
	/* ADVANCED POPUP */
	.basketPopupBasket {
		padding: 10px 20px;
	}
	.basketPopupImage {
		max-width: 30%;
	}
	.basketPopupHeaderLeft, .basketPopupHeaderRight {
		padding:9px 20px;
		font-size: 14px;
		text-align: center;
	}
	.basketPopupCountdown {
		text-align: center;
	}
	.basketPopupRelated {
		display: none;
	}
}

@media (max-width: 845px) and (orientation:portrait) {
	
	/* ADVANCED POPUP */
	.basketPopupLeft {
		width: 100%;
		border-right: 0;
	}
	.basketPopupRight {
		width: 100%;
	}
}


@media (max-width: 375px) {
	.basketPopupButtons > div {
		float: none;
		width: 100%;
		margin-bottom: 5px;
	}
	.basketPopupButtons > div:last-child {
		margin-left:0;
	}
}