.tax-toggle-tax-button {
	color: #fff;
	padding: 8px 16px;
	font-size: 12px;
	border-radius: 30px;
	justify-content: center;
	align-items: center;
	user-select: none;
}

.product-tax-off {
	display: none;
}

button.tax-toggle-no-vat-button {
	color: var(--tax-toggle-without-tax-button-text-color);
	background-color: var(--tax-toggle-without-tax-button-color);
	border: 1px solid;
}

button.tax-toggle-with-tax-button {
	color: var(--tax-toggle-with-tax-button-text-color);
	background-color: var(--tax-toggle-with-tax-button-color);
	border: unset;
}

.tax-toggle-active-tax-button {
	background-color: #4a4b4a;
}

.tax-toggle-button {
	padding: 15px 30px;
}

.tax-toggle-button:hover {
	cursor: pointer;
}

.tax-toggle-tax-popup-background {
	display: none;
	background-color: rgba(0,0,0,0.7);
	height: 120vh;
	width: 120vw;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 9999;
}

.tax-toggle-tax-popup-wrapper {
	display: none;
	background-color: var(--tax-toggle-popup-background-color);
	padding: 40px;
	height: fit-content;
	position: fixed;
	top: 30%;
	left: 50%;
	transform: translate(-50%, -20%);
	max-width: 500px;
	z-index: 9999;
}

.tax-toggle-tax-button {
	/* Existing styles */
	transition: background-color 0.3s ease;
}

.tax-toggle-vat-button-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: center;
	padding: 10px 0px 10px 0px;
	width: 100%;
}

.tax-toggle-toggle-button-wrapper {
	display: inline-flex;
	padding: 3px;
	cursor: pointer;
	background-color: #000;
	border-radius: 30px;
}

+ .tax-toggle-tax-button-block {
	margin-left: 2px;
}

@media screen and (max-width: 950px) {
	.tax-toggle-with-tax-button, .tax-toggle-no-vat-button {
		width: 100%;
		margin-top: 10px;
		margin-right: 0px;
	}

	.tax-toggle-tax-popup-wrapper {
		width: 90vw;
	}
}

@media (max-width: 768px) {
	.tax-toggle-toggle-button-wrapper {
		padding: 3px;

		.tax-toggle-tax-button {
			padding: 6px 12px;
			font-size: 0.9em;
		}
	}
}
