.noti {
	width: 28.6875rem;
	padding: 1.375rem 1.5rem 1.375rem 1.5rem;
	border-radius: 1.5rem;
	background: #FFF;
	box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.04), 0px 10px 40px -10px rgba(0, 0, 0, 0.12);
	display: flex;
	flex-direction: column;
	align-items: center;
	position: fixed;
	top: 70%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1002;
	opacity: 0;
	pointer-events: none;
	transition: all 0.75s;
}
.noti.active {
	top: 50%;
	opacity: 1;
	pointer-events: auto;
}
.noti svg {
	width: 2.75rem;
	height: 2.75rem;
	margin-bottom: 1.5rem;
}
.noti_title {
	color: #1C1C1E;
	text-align: center;
	font-family: Poppins;
	font-size: 1.5rem;
	font-style: normal;
	font-weight: 600;
	line-height: 140%; /* 2.1rem */
	letter-spacing: -0.03125rem;
	margin-bottom: 0.5rem;
}
.noti_desc {
	color: rgba(46, 46, 46, 0.60);
	font-family: Poppins;
	font-size: 0.875rem;
	font-style: normal;
	font-weight: 400;
	line-height: 150%; /* 1.3125rem */
	letter-spacing: -0.03125rem;
}
.noti_btn {
	margin-top: 1.5rem;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 0.5rem;
	background: var(--Green, #0B6836);
	padding: 0.96875rem 0;

	color: var(--White, #FFF);
	text-align: center;
	font-family: Poppins;
	font-size: 1rem;
	font-style: normal;
	font-weight: 600;
	line-height: 1.56113rem; /* 156.112% */
	cursor: pointer;
}
@media (max-width: 639px) { 
	.noti {
		width: 17.625rem;
		padding: 1.75rem 1.5625rem 1.75rem 1.5rem;
		border-radius: 0.75rem;
		background: #FFF;
		box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.04), 0px 10px 40px -10px rgba(0, 0, 0, 0.12);
	}
	.noti_title {
		color: #1C1C1E;
		text-align: center;
		font-family: Poppins;
		font-size: 1.125rem;
		font-style: normal;
		font-weight: 600;
		line-height: normal;
		letter-spacing: -0.025rem;
	}
	.noti_desc {
		color: var(--text-body-60, rgba(46, 46, 46, 0.60));
		font-family: Poppins;
		font-size: 0.75rem;
		font-style: normal;
		font-weight: 400;
		line-height: 160%; /* 1.2rem */
		letter-spacing: -0.01563rem;
	}
}