/*********************************************************
[ 반응형 사이즈 ] - 고객요청으로 반응형 사이즈 디테일하게 설정

* PC : ~ 1200
@media print, screen and (max-width: 75em) {}

* PC : ~ 1100
@media print, screen and (max-width: 68.75em) {}

* Tablet1 :	~ 960
@media print, screen and (max-width: 60em) {}

* Tablet2 : ~ 870
@media print, screen and (max-width: 54.38em) {}

* Tablet3 : ~ 768
@media print, screen and (max-width: 48em) {}

* Mobile : ~ 700
@media print, screen and (max-width: 43.75em) {}

* Mobile : ~ 360
@media print, screen and (max-width: 22.5em) {}

[ root 설정 ]
고객요청으로 대표색상 / 본문색상 / 라인색상을 지정
*********************************************************/
:root {
	--global-color: #202026;
	--global-color-rgb: 32, 32, 38;
	--global-title-color: var(--global-color);
	--global-title-color-rgb: var(--global-color-rgb);
	--global-summary-color: #484852;
	--global-border-color: #ddd;
	--global-border-radius: .188rem;
	--nd-body-color: var(--global-color);
}
.banner_box {
	--nd-banner-border-radius: var(--global-border-radius);
	overflow: hidden;
}

/* back to top */
.back-to-top {
	--nd-topbtn-zindex: 1003;
	--nd-topbtn-offset-x: 3.125rem;
	--nd-topbtn-offset-y: var(--nd-topbtn-offset-x);
	--nd-topbtn-width: 54px;
	--nd-topbtn-height: var(--nd-topbtn-width);
	--nd-topbtn-bg: var(--nd-white, #fff);
	--nd-topbtn-border-color: var(--global-color);
	--nd-topbtn-box-shadow: none;
}
@media print, screen and (max-width: 43.75em) {	/* 700 */
	.back-to-top {
		--nd-topbtn-offset-x: 1.25rem;
		--nd-topbtn-offset-y: 3.125rem;
	}
}



/* 아이핀/모바일 인증 버튼 */
.nice-check-btn {width:300px;border:1px solid #ccc;background:#eee;padding:1rem;margin:.425rem;cursor:pointer}
.nice-check-btn p {font-size:.813rem;color:#999;line-height:1;padding:.875rem 0;margin-bottom:0}
.nice-check-btn .icon i {font-size:1.75rem;color:#555}

/* 가입인증 */
.reveal-container .reveal-msg {color:#1e1e1e}

/* 회원가입 약관동의 모달 */
#nice-check-modal .reveal-header {justify-content:center}
#nice-check-modal .reveal-msg {font-size:1.063rem;text-align:center}
#nice-check-modal .ipin-button {margin-top:1.25rem;padding:1.25rem;background-color:rgba(0,0,0,.035);border:1px solid rgba(0,0,0,.08)}
#nice-check-modal .ipin-button > strong {display:block;margin-bottom:5px}
#nice-check-modal .ipin-button > p {margin:0}

