.leon-pap {
	--leon-pap-accent: var(--e-global-color-accent, #18bec1);
	--leon-pap-border: #dedede;
	--leon-pap-bg: #f7f7f7;
	--leon-pap-text: #000;

	margin: 0px 0 12px;
	color: var(--leon-pap-text);
}

.leon-pap,
.leon-pap__title,
.leon-pap__label,
.leon-pap__price,
.leon-pap__total-label,
.leon-pap__total-price {
	font-family: inherit;
}

.leon-pap__title {
	margin: 0 0 10px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.4;
}

.leon-pap__options {
	display: grid;
	gap: 10px;
}

.leon-pap__option {
	display: flex;
	align-items: center;
	gap: 16px;
	min-height: 84px;
	padding: 18px 20px;
	margin: 0;
	border: 2px solid transparent;
	border-radius: 10px;
	background: var(--leon-pap-bg);
	cursor: pointer;
	box-sizing: border-box;
	transition:
		border-color 0.18s ease,
		background-color 0.18s ease;
}

.leon-pap__option:hover,
.leon-pap__option.is-selected {
	border-color: var(--leon-pap-accent);
	background: #fff;
}

.leon-pap__input {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
	clip: rect(0 0 0 0) !important;
	clip-path: inset(50%) !important;
	white-space: nowrap !important;
}

.leon-pap__check {
	position: relative;
	flex: 0 0 20px;
	width: 20px;
	height: 20px;
	border: 4px solid #fff;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 0 0 1px #d2d2d2;
	box-sizing: border-box;
}

.leon-pap__input:checked + .leon-pap__check {
	background: var(--leon-pap-accent);
	box-shadow: 0 0 0 1px var(--leon-pap-accent);
}

.leon-pap__input:focus-visible + .leon-pap__check {
	outline: 3px solid rgba(24, 190, 193, 0.28);
	outline-offset: 3px;
}

.leon-pap__copy {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.leon-pap__label,
.leon-pap__price {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.35;
}

.leon-pap__required {
	display: inline-block;
	margin-left: 6px;
	padding: 2px 6px;
	border-radius: 3px;
	background: #222;
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	vertical-align: 2px;
}

.leon-pap__total {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 12px 0 0px;
}

.leon-pap__total-label {
	font-size: 16px;
	font-weight: 700;
}

.leon-pap__total-price {
	font-size: 28px;
	font-weight: 800;
	line-height: 1;
}

@media (max-width: 767px) {
	.leon-pap__option {
		min-height: 72px;
		padding: 16px;
	}

	.leon-pap__total-price {
		font-size: 24px;
	}
}