/*PopUp Window*/

	.popup-wrapper, .popup-wrapper * {box-sizing: border-box;}

	.popup-wrapper {
		position: fixed;
		top:0;
		left:0;
		background: rgba(70, 166, 175, 0.33);
		width:100%;
		height: 100%;
		display: none;
		z-index: 1000;
	}

	.popup {
		background: #fff;
		position: absolute;
		width:auto;
		/* height: auto; */
		top: 50%;
		left: 50%;
		/*border-radius: 15px;*/
		display: block;
		/* overflow: hidden; */
		/*box-shadow: 0 0 20px rgba(70, 166, 175,0.4);*/
		/*width: 800px;*/
	}

	.popup-wrapper.relative {
		overflow: auto;
	}

	.popup-wrapper.relative .popup {
		position: relative;
		margin-top: 60px !important;
		margin-bottom: 60px !important;
		/*width:600px !important;*/
		/*left: 0;*/
		/*top: 0;*/
	}

	.popup-wrapper.relative .popup.minimized { width:90% !important;}

	/*popup minimized*/
	.popup.minimized {
		width:90%;
	}
	/*popup minimized*/

	.popup-content {
		/*padding: 15px;*/
	}

	.popup.minimized .popup-content {
		/*width:100%;*/
	}

/*PopUp Window*/

/*popup elements style*/

.popup-close {
	position: absolute;
	top: 13px;
	right: 24px;
	/* border-radius: 20px; */
	/* border: 2px solid #999; */
}

.popup-close img {opacity: 0.8;}
.popup-close:hover img {opacity: 1;}

.popup-header {
	position: relative;
	background: #30a70b;
	text-align: center;
	height:60px;
	padding: 20px 15px 0;
}
.popup-title {
	color: #fefdfd;
	font-size: 22px;
	font-family: "Roboto Condensed", sans-serif;
	font-weight: 600 ;
	line-height: 1;
	text-transform: uppercase;
}
.popup-body {
	position: relative;
	padding: 65px 35px 25px;
}

.popup-text {

}

.popup-grid {}
.popup-grid > .table_cell {
	width:50%;
	vertical-align: top;
}
.popup-grid > .table_cell:first-child {padding-right: 10px;}
.popup-grid > .table_cell:last-child {padding-left: 10px;}

.popup-body form {margin: 0 0 0 0 !important; display: block !important;}

.popup-message {
	padding:0 0 20px;
}
.popup-message-text {
	color: #000;
	font-size: 14px;
}

.popup-body .btn-wrapper {}

/*popup elements style*/

/*--------------------- CART POPUP ---------------------*/
.added-cart-item-arrow {
	position: absolute;
	top:15px;
	left:50%;
	margin:0 0 0 -94.5px;
}

.popup-cart-icon {
	display: inline-block;
}
.cart-icon-wrapper {
	text-align: center;
}

.cart-add-info {
	box-sizing: border-box;
	border-collapse: collapse;
	border-spacing: 0;
	width:100%;
}

.cart-add-info td {width:50%;}
.cart-add-info td:first-child {padding-right: 50px;}
.cart-add-info td:last-child {padding-left: 50px;}

.cart-add-info tr:first-child td {
	vertical-align: middle;
	padding-bottom: 20px;
}

.cart-add-info .btn-wrapper {
	font-size: 0;
}

.cart-popup-btn {
	color: #fff;
	font-size: 20px;
	font-weight: 600;
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
	display: inline-block;
	height: 40px;
	width: 100%;
	padding: 10px 10px 0;
}
.cart-popup-btn.go-back-to-items	 		{background: #7e7e7e;}
.cart-popup-btn.go-to-cart-btn		 		{background: #65a52a;}
.cart-popup-btn.go-back-to-items:hover	 	{background: #989898;}
.cart-popup-btn.go-to-cart-btn:hover		{background: #7cc02d;}

/*cart item rules rewrite here*/
.popup-cart-item {
	margin: 0 0 0 !important;
	width: 100% !important;
	float: none !important;
}
/*cart item rules rewrite here*/

/*media*/
@media (max-width: 800px) {
	.popup-header {
		height: 42px;
		padding-top: 11px;
	}

	.popup-title {
		font-size: 18px;
	}

	.popup-close {
		top: 7px;
		right: 14px;
	}

	.popup-close img {height: 24px;}

	.added-cart-item-arrow {
		top: 15px;
		margin: 0 0 0 -80px;
		width: 160px;
	}

	.popup-body {
		padding: 55px 25px 25px;
	}

	.cart-add-info td:first-child {padding-right: 15px;}
	.cart-add-info td:last-child {padding-left: 15px;}

	.popup-cart-item .item-img {height:185px;}
	.popup-cart-icon {width: 150px;}
}
@media (max-width: 670px) {
	.added-cart-item-arrow {display: none;}
	.popup-body {
		padding: 25px 15px 25px;
	}
	.cart-add-info td {
		width: 100%;
		display: block;
		padding-left:0 !important;
		padding-right:0 !important;
	}
	.popup-cart-item {
		width: 230px !important;
		margin: 0 auto 0 !important;
		display: block;
	}
	.cart-add-info .btn-container:first-child {padding-bottom:15px;}
}
@media (max-width: 540px) {
	.popup-header {text-align: left;}

	.cart-icon-wrapper {display: none !important;}

	.cart-popup-btn {
		font-size: 14px;
		font-weight: 500;
		height: 35px;
		padding: 12px 10px 0;
	}
	.popup-title {
		font-size: 15px;
		text-transform: none;
	}
	.popup-header {height: 38px;}
}
/*media*/

/*--------------------- CART POPUP ---------------------*/

/*--------------------- LOADING POPUP ---------------------*/
.loading-popup-wrapper {
	background: #cecece;
}
/*--------------------- LOADING POPUP ---------------------*/
