.popup-discount {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	visibility: hidden;
	transition: all 800ms cubic-bezier(0.67, 0.01, 0.2, 0.97);
}
.popup-discount.active {
	visibility: visible;
}
.popup-discount__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.25);
	visibility: hidden;
	opacity: 0;
	transition: all 800ms cubic-bezier(0.67, 0.01, 0.2, 0.97);
}
.popup-discount__content {
	position: absolute;
	left: 50%;
	display: flex;
	padding: 0.546rem;
	border-radius: 1.25rem;
	background: #fff;
	max-width: 40vw;
	z-index: 2;
	top: 100%;
	transform: translate(-50%, 0);
	transition: all 800ms cubic-bezier(0.67, 0.01, 0.2, 0.97);
}
.popup-discount.active .popup-discount__overlay {
	visibility: visible;
	opacity: 1;
}
.popup-discount.active .popup-discount__content {
	top: 50%;
	transform: translate(-50%, -50%);
}
.popup-discount__content.rectangle {
	width: 41.637rem;
}
.popup-discount__content.square {
	width: 31.6875rem;
	aspect-ratio: 1/1;
}
.popup-discount__content.circle {
	width: 31.6875rem;
	height: 31.6875rem;
	border-radius: 100%;
}
.popup-close-btn {
	position: absolute;
	right: 0.8245rem;
	top: 0.875rem;
	background: none;
	outline: none;
	border: 0;
	padding: 0;
	z-index: 1;
	cursor: pointer;
}
.popup-close-btn svg {
	width: 2.1875rem;
	height: 2.1875rem;
}
.discount-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0.625rem;
}
.popup-discount__content.rectangle .discount-image {
	height: auto;
}
@media (max-width: 639.98px) {
	.popup-discount__content {
		max-width: 80vw;
	}
	.popup-discount__content.rectangle {
		width: 21.875rem;
	}
	.popup-discount__content.square {
		width: 21.875rem;
	}
	.popup-discount__content.circle {
		width: 21.875rem;
		height: 21.875rem;
		border-radius: 100%;
	}
}
