.pce-open-btn {
	cursor: pointer;
	border: none;
	display: inline-block;
	font-size: 16px;
}

.pce-overlay {
	display: flex;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999999;
	align-items: center;
	justify-content: center;
	padding: 20px;
	box-sizing: border-box;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.3s ease;
}

.pce-overlay.pce-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.pce-popup-box {
	position: relative;
	max-height: 90vh;
	overflow-y: auto;
	box-sizing: border-box;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.pce-overlay[data-animation="zoom"] .pce-popup-box {
	transform: scale(0.85);
}
.pce-overlay[data-animation="zoom"].pce-active .pce-popup-box {
	transform: scale(1);
}

.pce-overlay[data-animation="slide-up"] .pce-popup-box {
	transform: translateY(50px);
}
.pce-overlay[data-animation="slide-up"].pce-active .pce-popup-box {
	transform: translateY(0);
}

.pce-overlay[data-animation="none"] .pce-popup-box {
	transition: none;
}

.pce-popup-inner {
	position: relative;
	box-sizing: border-box;
}

.pce-close-btn {
	cursor: pointer;
	border: none;
	font-family: inherit;
}

.pce-close-topright {
	position: absolute;
	top: 10px;
	right: 16px;
	font-size: 26px;
	line-height: 1;
	background: transparent !important;
	color: inherit;
}

.pce-close-bottom {
	display: block;
	width: 100%;
	margin-top: 10px;
	font-size: 15px;
}

.pce-copy-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-left: 8px;
	cursor: pointer;
	opacity: 0.85;
	vertical-align: middle;
}
.pce-copy-btn:hover {
	opacity: 1;
}
.pce-copy-btn.pce-copied::after {
	content: "Copied";
	font-size: 11px;
	margin-left: 4px;
}

.pce-qr {
	margin-top: 10px;
	display: flex;
	justify-content: center;
}
.pce-qr img,
.pce-qr canvas {
	background: #fff;
	padding: 6px;
	border-radius: 6px;
}

.pce-item-btn {
	text-align: center;
	padding: 12px 20px;
	font-size: 15px;
	text-decoration: none;
	box-sizing: border-box;
}

@media (max-width: 480px) {
	.pce-open-btn {
		font-size: 14px;
	}
	.pce-item-btn {
		padding: 10px 16px;
		font-size: 14px;
	}
}
