@charset "UTF-8";

#attention-modal {
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(239, 239, 239, 0.85);
	z-index: 10000;
	display: none;
	opacity: 0;
	transition: opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.c-modal-content {
	position: relative;
	max-width: 1000px;
	width: calc(100% - 120px);
	background-color: #EFEFEF;
	text-align: center;
	filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.1));
}

.c-modal-inner {
	padding-block: 90px;
	padding-inline: 90px;
}

.c-modal-content__head {
	font-size: 48px;
	color: #1C5BD9;
}

.c-modal-content__text {
	font-size: 16px;
	line-height: 1.75;
	margin-top: 60px;
	color: #1E1E1E;
}

.c-modal-content__btn {
	margin: 60px auto 0;
}

.c-modal-content__cancel {
	cursor: pointer;
	margin-top: 40px;
	font-size: 16px;
	color: #1E1E1E;
	position: relative;
}

.c-modal-content__close {
	cursor: pointer;
	width: 40px;
	height: 40px;
	position: absolute;
	top: 20px;
	right: 20px;
	border-radius: 50%;
	background-color: #1C5BD9;
}

.c-modal-content__close::before,
.c-modal-content__close::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 20px;
	height: 2px;
	background-color: #fff;
}

.c-modal-content__close::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.c-modal-content__close::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

@media screen and (max-width: 768px) {
	.c-modal-content {
		width: calc(100% - 60px);
	}

	.c-modal-inner {
		padding-block: 80px;
		padding-inline: 25px;
	}

	.c-modal-content__head {
		font-size: 24px;
	}

	.c-modal-content__text {
		font-size: 14px;
		margin-top: 40px;
	}

	.c-modal-content__btn {
		margin-top: 30px;
	}

	.c-modal-content__close {
		width: 24px;
		height: 24px;
	}

	.c-modal-content__close::before,
	.c-modal-content__close::after {
		width: 12px;
		height: 1px;
	}
}
