#yappyBuyMinicart,
#yappybuy-checkout-button-cart{
	cursor:pointer;
	margin-bottom:10px;
}

.yb-popup-bg{
	position: fixed;
	background-color: rgba(0, 0, 0, 0.5);
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 99999;
}

.yb-popup-bg	#yappyBuy-popup{
	background: #902183;		
	width: 250px;
	max-width: 50%;
	padding: 80px 20px;
	border: 3px solid #AD71AD;
	border-radius: 5px;	
	
	text-align: center;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);

}

.yb-popup-bg	#yappyBuy-iframe-wrapper{
	position: fixed;
	top: 10%;
	width: 90%;
	left: 50%;
	max-width:1000px;
	transform: translateY(0%) translateX(-50%);
	height: 80%;
	border: 3px solid #AD71AD;
	border-radius: 10px;
	background: #fff;
}
 .yb-popup-bg	#yappyBuy-iframe-wrapper iframe{
	width: 100%;
	height: 100%;
	/* height: calc(100% - 65px); */
	border: none;
}


.yappyBuy-close {
	position: absolute;
	right: -18px;
	top: -18px;
	width: 30px;
	height: 30px;
	opacity: 0.5;
	background: #5F357F;
	border-radius: 32px;
	padding: 5px;
	box-sizing: unset;
}

@media only screen and (max-width: 999px) {
	.yappyBuy-close {	
		right: 1px;
		top: 1px;
	}
}

.yappyBuy-close:hover {
  opacity: 1;
}
.yappyBuy-close:before, .yappyBuy-close:after {
	position: absolute;
	left: 19px;
	content: ' ';
	height: 28px;
	width: 1px;
	background-color: #fff;
	padding: 1px;
}
.yappyBuy-close:before {
  transform: rotate(45deg);
}
.yappyBuy-close:after {
  transform: rotate(-45deg);
}