.holiday-popup {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 98;

	width: 54rem;
	height: 29.5rem;

	display: none;
	flex-direction: column;
	align-items: center;
	row-gap: 3rem;

	border-radius: 2rem;
	background-color: #fff;

	padding-top: 6.2rem;
}

.holiday-popup.show {
	display: flex;
}

.holiday-popup__title {
	font-size: 2.4rem;
	font-weight: 500;
}

.holiday-popup__text {
	max-width: 44.5rem;
	width: 100%;

	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1.2;
	text-align: center;

	margin-bottom: 0;
}

.holiday-popup__image {
	width: 8rem;
	height: 8rem;

	display: flex;
	align-items: center;
	justify-content: center;

	border-radius: 100%;
	background-color: #3F892C;
}

.holiday-popup__close {
	top: 1rem;
	right: 1rem;
}