/**
 * Cart page "add custom design service" checkbox.
 *
 * @package My_Child_Theme
 */

.my-child-theme-custom-design-fee {
	display: flex;
	align-items: flex-start;
	gap: 0.6em;
	margin: 0 0 1.25em;
	padding: 0.9em 1em;
	border: 1px solid #eee;
	border-radius: 10px;
	background: #fafafa;
	transition: opacity 0.15s ease-in-out;
}

.my-child-theme-custom-design-fee.is-loading {
	opacity: 0.6;
	pointer-events: none;
}

.my-child-theme-custom-design-fee input[type="checkbox"] {
	width: 18px;
	height: 18px;
	margin-top: 0.2em;
	accent-color: #16321a;
	cursor: pointer;
}

.my-child-theme-custom-design-fee label {
	line-height: 1.4;
	cursor: pointer;
}

.my-child-theme-custom-design-fee-price {
	font-weight: 700;
	color: #16321a;
}
