.webc-popup-wrapper {
	position: fixed;
	top: 0;
	width: 100vw;
	height: 100vh;
	background: url('../vendor/popup_bg.png');
	background-repeat: repeat;
	background-size: cover;
	z-index: 99999;
}

.webc-popup-wrapper .webc-popup-container {
	display: block;
	position: relative;
	top: 50%;
	left: 50%;
	max-width: 80vw;
	max-height: 80vh;
	padding: 20px;
	background: #fff;
	transform: translate(-50%, -50%);
	overflow-x: hidden;
	overflow-y: auto;
}

.webc-popup-wrapper .webc-popup-close {
	display: block;
	position: absolute;
	top: 20px;
	right: 50px;
	height: 50px;
	width: 50px;
	cursor: pointer;
}

.webc-popup-wrapper .webc-popup-close:before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	width: 5px;
	height: 100%;
	border-radius: 5px;
	background: #fff;
	transform: translateX(-50%) rotate(-45deg);
}

.webc-popup-wrapper .webc-popup-close:after {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	width: 5px;
	height: 100%;
	border-radius: 5px;
	background: #fff;
	transform: translateX(-50%) rotate(45deg);
}