.event-popup {
	padding: 110px 30px;
	width: 100%;
	height: 100vh;
	height: 100dvh;
	display: flex;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	background: rgba(22, 13, 13, 0.6);
	overflow-y: scroll;
	opacity: 0;
	pointer-events: none;
}

.event-popup.is-show {
	opacity: 1;
	pointer-events: visible;
	transition: 0.3s ease-out;
}

.event-popup__inner {
	margin: auto;
	width: 100%;
	max-width: 780px;
	position: relative;
}

.event-popup__close {
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
	border: none;
	cursor: pointer;
	font-size: 0;
	position: absolute;
	top: 16px;
	right: 16px;
	transition: 0.3s ease-out;
}

@media (hover: hover) {
	.event-popup__close:hover {
		opacity: 0.7;
	}
}

.event-popup__close svg {
	width: 24px;
	height: 24px;
}

.event-popup__content {
	height: 100%;
	display: none;
}

.event-popup__content.is-show {
	display: block;
}

.event-popup__title {
	display: block;
	margin: 0 0 40px;
	font-family: 'Igra Sans';
	font-weight: 400;
	font-size: 36px;
	line-height: 1;
	color: #141414;
	display: flex;
	gap: 10px;
	justify-content: space-between;
	align-items: center;
	padding-right: 10px;
}

.event-notice {
	padding: 12px 16px;
	width: 100%;
	max-width: 337px;
	text-align: center;
	color: #fff;
	font-size: 16px;
	line-height: 24px;
	background: #d44b3f;
	border-radius: 8px;
	position: fixed;
	top: 100px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10001;
	opacity: 0;
	pointer-events: none;
	transition: 0.3s ease-out;
}

.event-notice.is-show {
	top: 140px;
	opacity: 1;
}

@media (max-width: 1200px) {
	.event-popup {
		padding-left: 16px;
		padding-right: 16px;
	}

	.event-popup__title {
		margin-bottom: 28px;
		font-size: 32px;
	}
}

@media (max-width: 767px) {
	.event-popup {
		padding: 0;
		background: #faf8f8;
		display: block;
	}

	.event-popup__inner {
		margin: 0;
		height: 100%;
	}

	.event-popup__close {
		top: 12px;
		right: 12px;
	}

	.event-notice {
		max-width: 288px;
		font-size: 14px;
		line-height: 19px;
		top: 90px;
	}

	.event-notice.is-show {
		top: 100px;
	}

	.event-popup__title {
		justify-content: start;
		align-items: start;
		flex-direction: column;
		margin-bottom: 29px;
		font-size: 24px;
	}
}
