body.pr-lock {
	overflow: hidden;
}

#prCheckoutPopup {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .75);
	z-index: 999999;
	justify-content: center;
	align-items: center;
}

#prCheckoutPopup[aria-hidden="true"] {
	display: none !important;
}

#prCheckoutPopup .pr-popup-box {
	position: relative;
	width: 480px;
	max-width: 95%;
	background: #fff;
	border-radius: 20px;
	padding: 40px;
	text-align: center;
	box-shadow: 0 30px 60px rgba(0, 0, 0, .3);
	animation: pr-popup-in .35s ease;
	outline: none;
}

@keyframes pr-popup-in {
	from {
		opacity: 0;
		transform: scale(.9);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

.pr-logo {
	width: 120px;
	margin: 0 auto 25px;
	display: block;
}

.pr-popup-box h2 {
	font-size: 34px;
	margin-bottom: 20px;
	color: #000;
}

.pr-popup-box p {
	font-size: 18px;
	line-height: 1.8;
	color: #333;
	margin-bottom: 35px;
}

.pr-buttons {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.pr-buttons button {
	padding: 16px;
	border-radius: 50px;
	font-size: 18px;
	font-weight: 600;
	cursor: pointer;
	transition: .3s;
	border: none;
}

#prBack {
	background: #000;
	color: #fff;
}

#prContinue {
	background: #E13F7C;
	color: #fff;
}

#prBack:hover,
#prContinue:hover {
	background: #FDFDE2;
	color: #000;
}

#prBack:focus-visible,
#prContinue:focus-visible {
	outline: 3px solid #E13F7C;
	outline-offset: 2px;
}

@media (max-width: 768px) {

	#prCheckoutPopup .pr-popup-box {
		padding: 28px;
	}

	.pr-logo {
		width: 90px;
	}

	.pr-popup-box h2 {
		font-size: 28px;
	}

	.pr-popup-box p {
		font-size: 16px;
	}
}
