/* popup */
.overlay {
	z-index: 999; 
	position: fixed; 
	top: 0; 
	left: 0; 
	right: 0; 
	width: 100%; 
	height: 100%; 
	background-color: rgba(0,0,0,0.4);
	display: none;
}
.popup {
	z-index: 9999;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 2.4rem 2rem;
	width: 32.6rem;
	background: #fff;
	border-radius: 1.2rem;
	display: none;
}
.popup .main-desc {
	text-align: center;
	font-size: 2rem;
	font-weight: 600;
	line-height: 1.3;
	color: #1a1a1a;
	padding-bottom: 0.8rem
}
.popup .sub-desc {
	text-align: center;
	font-size: 1.6rem;
	line-height: 1.6;
	letter-spacing: -0.24px;
	color: #767676;
	padding-bottom: 1.6rem;
}
.popup .login-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.6rem;
}
.popup .login-box .btn-close-popup {  
	font-size: 1.4rem;
	font-weight: 600;
	line-height: 1.3;
	color: #1a1a1a;
	border: 1px solid #D1D1D1;
	border-radius: 0.5rem;
	padding: 1.6rem 0;
	width: calc(100% / 2 - 0.3rem);
	text-align: center;
}
.popup .login-box .btn-login {
	font-size: 1.4rem;
	font-weight: 600;
	line-height: 1.3;
	color: #fff;
	border-radius: 0.5rem;
	background: #D62221;
	padding: 1.6rem 0;
	width: calc(100% / 2 - 0.3rem);
	text-align: center;
}

.dev-popup {
	z-index: 998;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 2.4rem 2rem;
	width: 32.6rem;
	background: #fff;
	border-radius: 1.2rem;
	display: none;
}
.dev-popup .notice {
	text-align: center;
	font-size: 2rem;
	font-weight: 600;
	line-height: 1.3;
	color: #1a1a1a;
	padding-bottom: 2.8rem
}
.dev-popup .btn-check {
	font-size: 1.4rem;
	font-weight: 600;
	line-height: 1.3;
	color: #fff;
	border-radius: 0.5rem;
	background: #D62221;
	padding: 1.6rem 0;
	width: 100%;
	text-align: center;
}