.nps-widget {
	--nps-red-color: #b44869;
	--nps-green-color: #3f6142;
	--nps-active-color: #ffffff;
	--nps-choice-dot-size: 15px;
	box-sizing: border-box;
	max-width: 100%;
}

.added_to_cart.wc-forward {
	display: none !important;
}

.nps-widget *,
.nps-widget *::before,
.nps-widget *::after {
	box-sizing: border-box;
}

.nps-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	column-gap: 24px;
	row-gap: 14px;
	width: 100%;
	max-width: 100%;
	margin-right: auto;
	margin-left: auto;
}

.nps-tile {
	position: relative;
	display: block;
	min-width: 0;
	min-height: 105px;
	border: 1px solid;
	border-radius: 10px;
	background: #fffdf8;
	cursor: pointer;
	transition-property: background-color, border-color, color, box-shadow, opacity;
	transition-duration: 180ms;
	transition-timing-function: ease;
}

.nps-tile--red {
	border-color: var(--nps-red-color);
}

.nps-tile--green {
	border-color: var(--nps-green-color);
}

.nps-tile--red.nps-tile--selected {
	background: var(--nps-red-color);
}

.nps-tile--green.nps-tile--selected {
	background: var(--nps-green-color);
}

.nps-tile--disabled {
	cursor: not-allowed;
	opacity: 0.45;
}

.nps-tile__inner {
	display: flex;
	min-height: inherit;
	flex-direction: column;
	justify-content: center;
	padding: 14px 18px;
	text-align: center;
}

.nps-tile__topline {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
	width: 100%;
}

.nps-choice {
	position: absolute;
	top: 14px;
	left: 16px;
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	z-index: 3;
}

.nps-choice__input {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

.nps-choice__visual {
	position: relative;
	display: inline-flex;
	width: 25px;
	height: 25px;
	margin-right: 0;
	align-items: center;
	justify-content: center;
	border: 2px solid currentColor;
	border-radius: 999px;
	background: transparent;
	transition-property: border-color, background-color;
	transition-duration: 180ms;
}

.nps-choice__visual::after {
	position: absolute;
	width: var(--nps-choice-dot-size);
	height: var(--nps-choice-dot-size);
	border-radius: 999px;
	background: var(--nps-active-color);
	content: "";
	opacity: 0;
	transform: scale(0.6);
	transition: opacity 180ms ease, transform 180ms ease;
}

.nps-choice__input:checked + .nps-choice__visual::after,
.nps-tile--selected .nps-choice__visual::after {
	opacity: 1;
	transform: scale(1);
}

.nps-tile--selected .nps-choice__visual {
	border-color: var(--nps-active-color);
}

.nps-tile--red .nps-choice__visual,
.nps-tile--red .nps-product-name,
.nps-tile--red .nps-price,
.nps-tile--red .nps-unit-price {
	color: var(--nps-red-color);
}

.nps-tile--green .nps-choice__visual,
.nps-tile--green .nps-product-name,
.nps-tile--green .nps-price,
.nps-tile--green .nps-unit-price {
	color: var(--nps-green-color);
}

.nps-tile--selected .nps-choice__visual,
.nps-tile--selected .nps-product-name,
.nps-tile--selected .nps-price,
.nps-tile--selected .nps-unit-price {
	color: var(--nps-active-color);
}

@media (hover: hover) and (pointer: fine) {
	.nps-tile--red:not(.nps-tile--disabled):hover {
		background: var(--nps-red-color);
	}

	.nps-tile--green:not(.nps-tile--disabled):hover {
		background: var(--nps-green-color);
	}

	.nps-tile:not(.nps-tile--disabled):hover .nps-choice__visual,
	.nps-tile:not(.nps-tile--disabled):hover .nps-product-name,
	.nps-tile:not(.nps-tile--disabled):hover .nps-price,
	.nps-tile:not(.nps-tile--disabled):hover .nps-unit-price {
		color: var(--nps-active-color);
	}
}

.nps-product-name {
	display: block;
	min-width: 0;
	font-size: 25px;
	font-weight: 800;
	line-height: 1.08;
	overflow-wrap: anywhere;
	transition-property: color;
}

.nps-product-meta {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	min-height: 46px;
	margin-top: 8px;
}

.nps-price {
	display: block;
	font-size: 21px;
	font-weight: 500;
	line-height: 1.16;
	transition-property: color;
}

.nps-price del {
	opacity: 0.72;
}

.nps-price ins {
	background: transparent;
	text-decoration: none;
}

.nps-unit-price {
	display: block;
	margin-top: 4px;
	font-size: 13px;
	line-height: 1.2;
	transition-property: color;
}

.nps-sold-out {
	display: block;
	color: #777777;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
}

.nps-discount {
	--nps-discount-rotation: 0deg;
	position: absolute;
	right: 14px;
	bottom: -24px;
	z-index: 2;
	display: block;
	width: 72px;
	max-width: 42%;
	height: auto;
	pointer-events: none;
	transform: rotate(var(--nps-discount-rotation));
	transform-origin: center;
}

.nps-hint {
	margin: 22px 0 26px;
	color: #565656;
	font-size: 22px;
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
}

.nps-actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 100%;
	margin-right: auto;
	margin-left: auto;
	gap: 14px;
}

.nps-button {
	display: inline-flex;
	width: 100%;
	min-height: 64px;
	align-items: center;
	justify-content: center;
	gap: 12px;
	border-style: solid;
	border-radius: 999px;
	font: inherit;
	font-size: 23px;
	font-weight: 800;
	line-height: 1.1;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	cursor: pointer;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, opacity 180ms ease, box-shadow 180ms ease;
}

.nps-button--cart {
	border-width: 0;
	border-color: #0f8795;
	background: #0f8795;
	color: #ffffff;
	box-shadow: 13px 12px 18px rgba(0, 0, 0, 0.22);
}

.nps-button--checkout {
	border-width: 2px;
	border-color: #0f8795;
	background: transparent;
	color: #0f8795;
}

.nps-button--cart:hover {
	border-color: #0b6e7b;
	background: #0b6e7b;
	color: #ffffff;
}

.nps-button--checkout:hover {
	background: #0f8795;
	color: #ffffff;
}

.nps-button:disabled,
.nps-button--loading {
	cursor: wait;
	opacity: 0.65;
}

.nps-button__icon {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	color: currentColor;
	font-size: 28px;
	line-height: 1;
}

.nps-button__icon svg {
	display: block;
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.nps-button--icon-right {
	flex-direction: row;
}

.nps-button__text {
	min-width: 0;
	overflow-wrap: anywhere;
}

.nps-message {
	min-height: 1.35em;
	margin-top: 12px;
	color: #8a243f;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.35;
	text-align: center;
}

.nps-message--success {
	color: #2f6b39;
}

.nps-message:empty {
	display: block;
	visibility: hidden;
}

@media (max-width: 480px) {
	.nps-grid {
		column-gap: 12px;
		row-gap: 12px;
	}

	.nps-tile__inner {
		padding: 12px 10px;
	}

	.nps-choice__visual {
		width: 22px;
		height: 22px;
	}

	.nps-product-name {
		font-size: 20px;
	}

	.nps-price {
		font-size: 18px;
	}

	.nps-unit-price {
		font-size: 11px;
	}

	.nps-hint {
		font-size: 18px;
	}

	.nps-button {
		min-height: 56px;
		font-size: 18px;
	}
}

@media (max-width: 340px) {
	.nps-grid {
		grid-template-columns: 1fr;
	}
}
