.product-interest-popup {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 99;

	width: 45rem;
	max-height: 90vh;
	height: auto;
	overflow-x: auto;

	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;

	border-radius: 2rem;
	background-color: #fff;

	padding: 7.2rem 4.5rem 5rem 4.5rem;

	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.product-interest-popup.show {
	display: flex;
	opacity: 1;
	visibility: visible;
}

.product-interest-popup__text {
	max-width: 34rem;
}