.wccs-purchase-options {
	max-width: 375px;
	margin: 30px 0;
	font-family: inherit;
	color: #555;
}

.wccs-title {
	margin: 0 0 6px;
	font-size: 19px;
	line-height: 1.3;
	color: #555;
}

.wccs-option {
	display: grid;
	grid-template-columns: 22px minmax(0, 1fr) auto;
	gap: 10px;
	align-items: center;
	min-height: 72px;
	margin: 0;
	padding: 18px 14px;
	border: 1px solid #ddd;
	border-bottom: 0;
	cursor: pointer;
	background: #fff;
}

.wccs-option:last-of-type {
	border-bottom: 1px solid #ddd;
}

.wccs-option input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.wccs-radio {
	width: 20px;
	height: 20px;
	border: 1px solid #666;
	border-radius: 50%;
	position: relative;
}

.wccs-option-selected .wccs-radio::after {
	content: "";
	position: absolute;
	inset: 4px;
	border-radius: 50%;
	background: #666;
}

.wccs-option-name {
	font-weight: 700;
	color: #555;
	font-size: 18px;
	line-height: 1.4;
}

.wccs-option-body {
	grid-column: 2 / 4;
	display: block;
}

.wccs-option-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 12px;
	align-items: start;
}

.wccs-price {
	white-space: nowrap;
	font-size: 18px;
	color: #666;
	font-weight: 400;
}

.wccs-subtext {
	display: block;
	margin-top: 8px;
	font-size: 18px;
	color: #555;
}

.wccs-details {
	margin: 14px 0 0 10px;
	font-size: 19px;
	color: #666;
}

.wccs-details summary {
	cursor: pointer;
}

@media (max-width: 480px) {
	.wccs-purchase-options {
		max-width: 100%;
	}

	.wccs-option {
		grid-template-columns: 22px minmax(0, 1fr);
	}

	.wccs-price {
		white-space: normal;
	}

	.wccs-option-row {
		grid-template-columns: 1fr;
	}
}
