.nt-extra-items-box,
.nt-extra-items-box * {
	box-sizing: border-box;
}

.nt-extra-items-box {
	display: block !important;
	width: 100% !important;
	max-width: 100% !important;
	clear: both;
	margin: 14px 0 12px;
	padding: 12px;
	border: 1px solid rgba(17, 24, 39, .10);
	border-radius: 12px;
	background: #fff;
	direction: rtl;
	text-align: right;
}

.single-product form.cart .nt-extra-items-box {
	order: 15;
}

.nt-extra-title {
	display: block;
	margin: 0 0 10px !important;
	padding: 0;
	font-size: 15px !important;
	line-height: 1.6 !important;
	font-weight: 800 !important;
	color: inherit;
}

.nt-extra-options {
	display: grid;
	grid-template-columns: 1fr;
	gap: 8px;
	width: 100%;
}

.nt-extra-option {
	position: relative;
	display: flex !important;
	align-items: center;
	gap: 10px;
	width: 100%;
	min-height: 46px;
	padding: 10px 12px;
	margin: 0 !important;
	border: 1px solid rgba(17, 24, 39, .10);
	border-radius: 10px;
	background: #fff;
	cursor: pointer;
	transition: border-color .18s ease, box-shadow .18s ease;
}

.nt-extra-option:hover {
	border-color: rgba(17, 24, 39, .22);
}

.nt-extra-option.is-selected {
	border-color: currentColor;
	box-shadow: 0 0 0 1px currentColor inset;
}

.nt-extra-check-wrap {
	position: relative;
	display: inline-flex;
	flex: 0 0 auto;
	width: 20px;
	height: 20px;
}

.nt-extra-checkbox {
	position: absolute !important;
	inset: 0;
	width: 20px !important;
	height: 20px !important;
	margin: 0 !important;
	opacity: 0;
	cursor: pointer;
	z-index: 2;
}

.nt-extra-custom-check {
	display: inline-flex;
	width: 20px;
	height: 20px;
	align-items: center;
	justify-content: center;
	border: 1.5px solid rgba(17, 24, 39, .28);
	border-radius: 6px;
	background: #fff;
}

.nt-extra-checkbox:checked + .nt-extra-custom-check {
	background: currentColor;
	border-color: currentColor;
}

.nt-extra-checkbox:checked + .nt-extra-custom-check::after {
	content: "";
	width: 8px;
	height: 4px;
	border: solid #fff;
	border-width: 0 0 2px 2px;
	transform: rotate(-45deg) translateY(-1px);
}

.nt-extra-option-label {
	flex: 1 1 auto;
	min-width: 0;
	font-size: 14px;
	font-weight: 650;
	line-height: 1.7;
	text-align: right;
}

.nt-extra-gift-badge,
.nt-extra-price-badge {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 4px 9px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 800;
	white-space: nowrap;
}

.nt-extra-gift-badge {
	background: #eaf7ee;
	color: #177a35;
}

.nt-extra-price-badge {
	background: rgba(17, 24, 39, .06);
	color: inherit;
}

.nt-extra-price-badge .woocommerce-Price-amount {
	font-weight: 800;
}

.nt-extra-live-total {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 10px;
	padding: 9px 11px;
	border-radius: 10px;
	background: rgba(17, 24, 39, .045);
	font-size: 12.5px;
}

.nt-extra-live-total[hidden] {
	display: none !important;
}

.nt-extra-live-total strong {
	font-size: 14px;
	white-space: nowrap;
}

.nt-extra-noscript {
	margin: 10px 0 0;
	font-size: 12px;
	color: #b42318;
}

@media (max-width: 480px) {
	.nt-extra-items-box {
		padding: 10px;
		border-radius: 10px;
	}

	.nt-extra-option {
		padding: 9px 10px;
		min-height: 44px;
		flex-wrap: wrap;
	}

	.nt-extra-gift-badge,
	.nt-extra-price-badge {
		margin-right: auto;
	}
}