@charset "utf-8";

.reviewerWrap {
	position: fixed;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100dvh;
	padding: 30px;
	background: var(--bg1);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	overflow: auto;
}

.mainWrap {
	width: 100%;
	max-width: 1200px;
	background: var(--bg0);
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
	border-radius: 20px;
	display: flex;
}

.mainLeft {
	min-height: calc(100dvh - 60px);
	flex: 0 0 200px;
	border-radius: 20px 0 0 20px;
	padding-bottom: 20px;
	background: var(--naver);
	display: flex;
	flex-direction: column;
}

.mainLeftTop {
	width: 100%;
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	cursor: pointer;
}

.mainLeftTop h3 {
	text-align: center;
	color: var(--blackLevel0);
	font-size: var(--fontDft);
	font-weight: 500;
	line-height: 13px;
}

.mainLeftTop h2 {
	text-align: center;
	color: var(--blackLevel0);
	font-size: 30px;
	font-weight: 700;
	line-height: 30px;
}

.mainLeftTop .welcome {
	margin-top: 10px;
	text-align: center;
	font-size: var(--fontDft);
	font-weight: 500;
	color: var(--blackLevel0);
}

.mainLeft .menu {
	flex: 1 1 0;
	width: 100%;
	padding: 20px 16px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	gap: 3px;
}

.mainLeft .menu h3 {
	width: 100%;
	padding: 10px 16px;
	border-radius: 5px;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 5px;
}

.mainLeft .menu h3:hover {
	background: rgba(255, 255, 255, 0.2);
	box-shadow: var(--dftShadow);
}

.mainLeft .menu h3 p {
	flex: 0 0 20px;
	height: 20px;
	padding-top: 2px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.mainLeft .menu h3 p .material {
	color: var(--blackLevel0);
	font-size: 20px;
	font-weight: 700;
}

.mainLeft .menu h3 > span {
	color: var(--blackLevel0);
	font-size: var(--fontX);
	font-weight: 700;
	line-height: var(--fontX);
	word-wrap: break-word;
}

.mainLeft .menu h3.on {
	background: var(--bg0);
	box-shadow: var(--dftShadow);
}

.mainLeft .menu h3.on p .material { color: var(--naver);}

.mainLeft .menu h3.on > span { color: var(--naver);}

.mainLeft .minimizeList {
	flex: 0 0 auto;
	width: 100%;
	padding: 20px 16px 0 16px;
	display: flex;
	flex-direction: column-reverse;
	justify-content: flex-start;
	align-items: center;
	gap: 3px;
}

.mainLeft .option {
	width: 100%;
	padding: 20px 16px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 5px;
}

.mainLeft .option .optionItemM {
	display: none;
}

.mainLeft .option .optionItem {
	width: 100%;
	padding: 7px 16px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 5px;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 5px;
}

.mainLeft .option .optionItem:hover {
	background: rgba(255, 255, 255, 0.1);
	box-shadow: var(--dftShadow);
}

.mainLeft .option .optionItem p {
	flex: 0 0 16px;
	height: 16px;
	padding-top: 2px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.mainLeft .option .optionItem p .material {
	color: var(--blackLevel0);
	font-size: 18px;
	font-weight: 700;
}

.mainLeft .option .optionItem > span {
	color: var(--blackLevel0);
	font-size: var(--fontDft);
	font-weight: 500;
	line-height: var(--fontDft);
	word-wrap: break-word;
	display: inline-flex;
	align-items: center;
	gap: 3px;
}
.mainLeft .option .optionItem > span > strong {
	background: var(--bgPoint);
	color: var(--naver);
	margin-top: 2px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 5px;
	min-width: 16px;
	height: 16px;
	border-radius: 3px;
	font-size: 11px;
	line-height: 11px;
	padding-bottom: 1px;
	animation: pulse 2s infinite;
}

.mainLeft .option .optionItem span strong i {
	color: var(--naver);
	font-size: 11px;
	line-height: 11px;
	font-weight: 600;
}

.mainLeft .option .optionItemM {
	display: none;
}

@keyframes pulse {
	0% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(3, 199, 90, 0.4);
	}
	60% {
		transform: scale(1);
		box-shadow: 0 0 0 10px rgba(3, 199, 90, 0);
	}
	70% {
		transform: scale(1.1);
		box-shadow: 0 0 0 10px rgba(3, 199, 90, 0);
	}
	80% {
		transform: scale(0.9);
		box-shadow: 0 0 0 10px rgba(3, 199, 90, 0);
	}
	100% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(3, 199, 90, 0);
	}
}

.mainLeft .option .optionItemM > span {
	color: var(--blackLevel0);
	font-size: var(--fontDft);
	font-weight: 500;
	line-height: var(--fontDft);
	word-wrap: break-word;
}

.noExist {
	font-variation-settings: 'FILL' 1;
	color: var(--bgPoint);
	animation: warningBlink 1s ease infinite;	
}
@keyframes warningBlink {
    0% { color: var(--bgPoint);}
    50% { color: var(--naver); }
    100% { color: var(--bgPoint); }
}

.mainLeft .copy {
	width: 100%;
	padding: 0 16px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-size: var(--fontS);
	color: var(--blackLevel0);
}

.mainLeft .copy p { font-weight: 600;}
.mainLeft .copy .persnalagree { transition: all 0.3s ease; cursor: pointer;}
.mainLeft .copy .persnalagree:hover { opacity: 0.8;}

.mainRight {
	border-radius: 0 20px 20px 0;
	flex: 1 1 0;
	background: var(--bgDark);
	display: flex;
	flex-direction: column;
}

.mainRightTop { height: 42px; display: flex;}

.mainRightTopLeft {
	flex: 1 1 0;
	padding: 0 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.topTxt1 {
	color: #03C75A;
	font-size: var(--fontDft);
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 5px;
}

.topTxt2 {
	color: var(--blackLevel4);
	font-size: var(--fontDft);
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 5px;
}

.topTxt2 div {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 5px;
}

.mainRightTopRight { flex: 0 0 240px; padding: 0 16px;}

.mainRightContent {
	flex: 1 1 0;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
}

.mainFrame {
	flex: 1 1 0;
	height: 100%;
	background: var(--bg0);
	border-top-right-radius: 10px;
	position: relative;
	overflow: hidden;
	overflow-y: auto;
}

.mainFrame iframe {
	width: 100%;
	height: 100%;
}

.mainFrame .copy {
	display: none;
}

.rightSection {
	flex: 0 0 240px;
	padding: 20px 16px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 30px;
}

.rightBox {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.rightBox h2 {
	padding: 0 5px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 5px;
}

.rightBox > h2 .title {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 5px;
}

.rightBox > h2 .title > p {
	flex: 0 0 20px;
	height: 20px;
	padding-top: 2px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.rightBox > h2 .title > p > span {
	color: var(--blackLevel0);
	font-size: 20px;
}

.rightBox > h2 .title > span {
	color: var(--blackLevel0);
	font-size: var(--fontX);
	font-weight: 700;
}

.rightBox > h2 .title > strong {
	margin-top: 2px;
	display: flex;
	align-items: center;
	gap: 3px;
	color: var(--blackLevel4);
	font-size: 13px;
	font-weight: normal;
	cursor: pointer;
}

.rightBox > h2 .title > strong > span {
	color: var(--blackLevel4);
	font-size: 16px;
}

.rightBox .completeSwitch {
	margin-top: 3px;
}

.rightBox .boxList {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.rightBox .boxList .boxItem {
	width: 100%;
	padding: 10px;
	background: var(--blackLevel7);
	border-radius: 5px;
	transition: all 0.1s;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.rightBox .boxList .boxItem:hover {
	transform: scale(1.05);
	box-shadow: var(--dftShadow);
}

.rightBox .boxList .boxItem h2 {
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 5px;
}

.rightBox .boxList .boxItem h2 div {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 5px;
}

.rightBox .boxList .boxItem h2 div span {
	flex: 0 0 7px;
	width: 7px;
	height: 7px;
	background: var(--blackLevel5);
	border-radius: 50%;
}

.rightBox .boxList .boxItem h2 div p {
	flex: 1 1 0;
	font-size: var(--fontDft);
	font-weight: 600;
	color: var(--blackLevel1);
}

.rightBox .boxList .boxItem h2 > p {
	flex: 0 0 30px;
	height: 16px;
	text-align: center;
	font-size: var(--fontS);
	line-height: 16px;
	font-weight: normal;
	color: var(--blackLevel3);
	background: var(--blackLevel5);
	border-radius: 3px;
}

.rightBox .boxList .boxItem > div {
	width: 100%;
	padding-left: 15px;
	display: flex;
	flex-direction: column;
}

.rightBox .boxList .boxItem > div > div {
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 5px;
}

.rightBox .boxList .boxItem > div > div > span {
	color: var(--blackLevel4);
	font-size: var(--fontDft);
	font-weight: 500;
}

.rightBox .boxList .boxItem > div > div > p {
	color: var(--blackLevel3);
	font-size: var(--fontDft);
	font-weight: 500;
	word-break: break-all;
}

.rightBox .boxList .boxItem.unread,
.rightBox .boxList .boxItem.todayYet {
	background: var(--bgPoint);
}

.rightBox .boxList .boxItem.unread h2 div span,
.rightBox .boxList .boxItem.todayYet h2 div span {
	background: var(--bgPoint2);
}

.rightBox .boxList .boxItem.unread h2 div p,
.rightBox .boxList .boxItem.todayYet h2 div p {
	color: var(--blackLevel9);
}

.rightBox .boxList .boxItem.unread h2 > p,
.rightBox .boxList .boxItem.todayYet h2 > p {
	color: var(--blackLevel0);
	background: var(--bgPoint2);
}

.rightBox .boxList .boxItem.unread > div > div > span,
.rightBox .boxList .boxItem.todayYet > div > div > span {
	color: var(--blackLevel6);
}

.rightBox .boxList .boxItem.unread > div > div > p,
.rightBox .boxList .boxItem.todayYet > div > div > p {
	color: var(--blackLevel8);
}

.rightBox .boxList > p { text-align: center;}

.rightBox .boxList > p > span {
	color: var(--blackLevel5);
	font-size: var(--fontDft);
	font-weight: 500;
	border-bottom: 1px solid var(--blackLevel5);
	cursor: pointer;
	transition: all 0.2s;	
}

.rightBox .boxList > p > span:hover {
	color: var(--blackLevel3);
	border-bottom: 1px solid var(--blackLevel3);
}

.rightBox .boxList .boxItem .noData {
	text-align: center;
	font-size: var(--fontDft);
	font-weight: 500;
	color: var(--blackLevel4);
}

@media all and (max-width: 1200px) {
	.reviewerWrap {
		padding: 0px;
		overflow-y: hidden;
	}
	
	.mainWrap {
		height: 100dvh;
		border-radius: 0px;
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		gap: 0;
	}
	
	.mainLeft {
		width: 100%;
		flex: 0 0 auto;
		min-height: unset;
		padding: 0;
		border-radius: 0;
		gap: 0;
	}

	.mainLeft .option {
		order: -1;
		padding: 5px 16px;
		flex-direction: row;
		align-items: center;
		justify-content: flex-end;
		gap: 15px;
	}

	.mainLeft .option .optionItem {
		width: auto;
		padding: 3px 0px;
		background: none;
		border-radius: 0;
		gap: 3px;
	}
	
	.mainLeft .option .optionItem p {
		order: 1;
		flex: 0 0 14px;
		height: 14px;
	}
	
	.mainLeft .option .optionItem p .material {
		font-size: 14px;
	}

	.mainLeft .option .optionItem > span > i {
		display: none;
	}

	.mainLeft .option .optionItemM {
		display: flex;
	}

	.mainLeft .option .optionItem.openNotice p {
		display: none;
	}
	
	.mainLeftTop {
		padding: 20px 16px;
		border-top: 1px solid #6BE6A2;
		cursor: default;
		flex-direction: row;
		align-items: baseline;
		gap: 5px;
	}
		
	.mainLeftTop h2 {
		order: -1;
		font-size: 20px;
		line-height: 20px;
	}
	
	.mainLeftTop .welcome {
		margin-top: 0;
		text-align: right;
		flex: 1 1 0;
	}
	
	.mainLeft .menu {
		flex: 0 0 auto;
		padding: 0 16px;
		flex-direction: row;
		gap: 5px;
	}
	
	.mainLeft .menu h3 {
		padding: 14px 16px;
		border-radius: 5px 5px 0 0;
		background: rgba(0, 0, 0, 0.1);
		justify-content: center;
		gap: 5px;
	}
		
	.mainLeft .menu h3 p {
		flex: 0 0 16px;
		height: 16px;
	}
	
	.mainLeft .menu h3 p .material {
		font-size: 16px;
	}
	
	.mainLeft .menu h3 > span {
		font-size: var(--fontDft);
		line-height: var(--fontDft);
	}
		
	.mainLeft .minimizeList {
		padding: 16px;
		gap: 3px;
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		z-index: 5;
	}	
	
	.mainLeft .copy {
		display: none;
	}
	
	.mainRight {
		flex: 1 1 0;
		width: 100%;
		overflow: hidden;
		background: var(--white);
		border-radius: 0;
	}
	
	.mainRightTop { display: none;}
	
	.mainRightContent {
		display: block;
		overflow: hidden;
	}
	
	.mainFrame {
		border-top-right-radius: 0;
		display: block;
		position: relative;
		overflow-y: auto;
	}

	.mainFrame iframe {
		position: relative;
		width: 100%;
		vertical-align: top;
		min-height: calc(100dvh - 134px);
	}

	.mainFrame .copy {
		display: block;
		padding: 20px 16px;
		background: var(--naver);
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		font-size: var(--fontS);
		color: var(--blackLevel0);
	}
	
	.mainFrame .copy p { font-weight: 600;}	

	.rightSection {
		display: none;
	}
}



/**/
.persnalagreeLayer {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 100;
}

.persnalagreeLayer .layerShadow {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.1);
	backdrop-filter: blur(1px);
	animation: blurShow 0.5s ease-in-out;
}

.persnalagreeLayer .layerBox {
	width: 300px;
	height: 450px;
	border: 2px solid var(--naver);
	border-radius: 10px;
	background: var(--white);
	overflow: hidden;
}
.persnalagreeLayer .layerContentsBody {
	padding: 0;
	max-height: unset;
}
.persnalagreeLayer iframe {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
}
/* 개인정보보호 레이어 스타일 */
.persnalagreeContents {
	font-size: 12px;
	line-height: 1.6;
	color: #333;
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100dvh;
	padding: 0 16px 16px 16px;
	z-index: 100;
	overflow: hidden;
	overflow-y: auto;
}

.privacy-main-title {
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 20px;
	color: #000;
	border-bottom: 2px solid #333;
	padding-bottom: 10px;
}

.privacy-section-title {
	font-size: 14px;
	font-weight: bold;
	margin: 20px 0 10px 0;
	color: #000;
	border-top: 1px solid var(--blackLevel3);
	padding-top: 15px;
}

.privacy-sub-title {
	font-size: 13px;
	font-weight: bold;
	margin: 15px 0 8px 0;
	color: #333;
	padding-left: 5px;
}

.privacy-content {
	font-size: 12px;
	line-height: 1.6;
	padding-left: 10px;
	margin-bottom: 10px;
	color: #555;
	word-break: keep-all;
}




/*공지사항*/
.noticeLayer {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	z-index: 500;
}

.noticeLayer .layerShadow {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.1);
	backdrop-filter: blur(1px);
	animation: blurShow 0.5s ease-in-out;
}

.noticeLayer .layerBox {
	position: relative;
	margin: auto 0;
	width: 600px;
	height: 800px;
	max-height: 85dvh;
	border: 2px solid var(--naver);
	border-radius: 10px;
	background: var(--white);
	overflow: hidden;
}

.noticeLayer .layerBox iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

@media all and (max-width: 650px) {
	.noticeLayer .layerBox {
		width: 100%;
		height: 100%;
		max-height: 100dvh;
		border-radius: 0;
	}
}















/*로그인전환*/

.loginChangeLayer {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	z-index: 100;
}

.loginChangeLayer .layerShadow {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.1);
	backdrop-filter: blur(1px);
	animation: blurShow 0.5s ease-in-out;
}

.loginChangeLayer .layerBox {
	position: absolute;
	border: 2px solid var(--naver);
	padding: 0;
	border-radius: 10px;
	background: var(--white);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.loginChangeLayer .layerBox a {
	width: 100%;
	padding: 5px 20px;
	transition: all 0.2s;
}

.loginChangeLayer .layerBox a:hover {
	background: var(--naverHover);
	color: var(--naver);
}












/*비번생성*/

.makePasswordLayer {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	z-index: 100;
}

.makePasswordLayer .layerShadow {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.1);
	backdrop-filter: blur(1px);
	animation: blurShow 0.5s ease-in-out;
}

.makePasswordLayer .layerBox {
	position: relative;
	margin: auto 0;
	width: 400px;
	height: 410px;
	max-height: 85vh;
	border: 2px solid var(--naver);
	border-radius: 10px;
	background: var(--white);
	overflow: hidden;
}

.makePasswordLayer .layerBox iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}



/*상세보기*/

/*인덱스레이어*/
.viewDetailLayer {
	z-index: 1000;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.viewDetailLayer.moving-down {
	transform: translateY(2px);
}

.viewDetailLayer.moving-up {
	transform: translateY(-2px);
}

.viewDetailWrap {
	background: var(--white);
	border: 1px solid var(--bgDark);
	border-radius: 5px;
	overflow: hidden;
	box-shadow: var(--dftShadow);
	display: flex;
	flex-direction: column;
	transition: all 0.3s;
}

.viewDetailWrap .layerHeader {
	flex: 0 0 auto;
	background: var(--bgDark);
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: 5px 5px 5px 16px;
}

.viewDetailWrap .layerHeader h2 {
	flex: 1 1 0;
	color: var(--blackLevel0);
	font-size: var(--fontDft);
	font-weight: 700;
}

.viewDetailWrap .layerHeader > div {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 3px;
}

.viewDetailWrap .layerHeader > div > span {
	cursor: pointer;
	width: 20px;
	height: 20px;
	border-radius: 3px;
	background: var(--white);
	font-size: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.viewDetailWrap .layerBox {
	flex: 1 1 0;
	width: 100%;
	position: relative;
	overflow: hidden;
}

.viewDetailWrap .layerBox iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

@media all and (max-width: 1200px) {
	.viewDetailLayer {
		position: absolute;
		left: 0;
		bottom: 0;
		top: unset;
		width: 100vw;
	}

	.viewDetailLayer .viewDetailWrap {
		width: 100vw;
		height: 100dvh;
		border-radius: 0;
	}

	.viewDetailLayer.minimized .viewDetailWrap {
		width: 168px;
		height: 30px;
	}
}

.layerContents {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.layerContentsHeader {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: 5px;
}

.layerContentsHeader .material {
	font-size: 24px;
	cursor: pointer;
	color: var(--naver);
}

.layerContents form {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.layerContentsBody {
	flex-grow: 1;
	overflow-y: auto;
	max-height: 400px;
	padding: 5PX 20px 20px 20px;
}

.layerFooter {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 15px 0;
}

.layerFooter .saveLayer {
	cursor: pointer;
	padding: 5px 10px;
	border-radius: 3px;
	background: var(--naver);
	color: var(--white);
}

.layerFooter .saveLayer:hover {
	background: var(--naver2);
}

.staffSetLayer {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 100;
}

.staffSetLayer .layerShadow {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.1);
	backdrop-filter: blur(1px);
	animation: blurShow 0.5s ease-in-out;
}

.staffSetLayer .layerBox {
	width: 400px;
	border: 2px solid var(--naver);
	border-radius: 10px;
	background: var(--white);
	overflow: hidden;
}

.staffList {
	margin-top: 10px;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 1px;
	overflow: hidden;
	border-radius: 5px;
	border: 1px solid var(--blackLevel3);
	background: var(--blackLevel3);
}

.staffListHeader {
	width: 100%;
	display: flex;
	gap: 1px;
}

.staffListHeader > div {
	background: var(--bg2);
	padding:  2px 5px;
	text-align: center;
	font-size: 11px;
	font-weight: 600;
	color: var(--blackLevel5);
}

.staffListBody {
	width: 100%;
	display: flex;
	flex-direction: column;
}
.staffListBody > div {
	width: 100%;
	display: flex;
	gap: 1px;
}

.staffListBody > div > div {
	position: relative;
	padding: 0;
	height: 28px;
	background: var(--bg0);
	overflow: hidden;	
	border-bottom: 1px solid var(--blackLevel3);
	display: flex;
	align-items: center;
	justify-content: center;
}

.staffListBody > div:last-child > div {
	border-bottom: none;
}

.staffListBody > .staffList_item > .staffList_num,
.staffListBody > .staffList_item > .staffList_status {
	text-align:center;
	font-size: 13px;
}

.staffList input[type="text"],
.staffList input[type="password"] {
	position: absolute;
	width: 100%;
	height: 100%;
	padding: 0 10px;
	border: none;
	text-align: center;
	background: none;
	font-size: 13px;
	font-weight: 500;
	color: var(--blackLevel9);
	outline: none;
	transition: all 0.2s;
}

.staffList input[type="text"]:focus,
.staffList input[type="password"]:focus {
	background: var(--cellOver);
}

.staffList input[type="text"]::placeholder,
.staffList input[type="password"]::placeholder {
	color: var(--blackLevel4);
	font-weight: 400;
}

.staffList_num {
	flex: 0 0 35px;
}

.staffList_name {
	flex-grow: 1;
	overflow: hidden;
}

.staffList_status {
	flex: 0 0 80px;
}

.staffList_function {
	flex: 0 0 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
}

.staffList_function > p {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border-radius: 3px;
	border: 1px solid var(--blackLevel4);
	color: var(--blackLevel5);
	gap: 5px;
	cursor: pointer;
	font-size: 20px;
	transition: all 0.2s;
}
.staffList_function > p:hover {
	background: var(--blackLevel1);
	color: var(--blackLevel10);
}
.staffList_function > p > span {
	font-size: 16px;
}

.staffPlus {
	padding: 0 5px;
}

.staffPlus > div {
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	gap: 5px;
	font-size: 15px;
	cursor: pointer;
}
.staffPlus > div:hover {
	color: var(--naver);
}

.staffPlus > div > p {
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	background: var(--naver);
	border: 1px solid var(--naver3);
	border-radius: 5px;
	color: var(--white);
}

.staffPlus > div:hover > p {
	background: var(--naver2);
}

.staffPlus > div > p > span {
	font-size: 16px;
}


/*쳇봇*/
.chatBot { 
	position: fixed;
	right: 10px;
	bottom: 5px;
	z-index: 9;
}
.chatBot .chatCon {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 61px;
	height: 59px;
	background: url(../images/public/chatcon.png) center no-repeat;
	background-size: contain;
	
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 0;
	display: none;
	overflow: hidden;
	filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}
.chatBot .chatCon.on {
	animation-name: supportIconOn;
	animation-duration: 0.7s;
	animation-timing-function: ease-in-out;
	animation-fill-mode: forwards;
	opacity: 0;
	display: flex;
}

.pushMsg{
	position: fixed;
	display:inline-flex;
	align-items:center;
	padding:5px;
	bottom: 65px;
	background:#FFFACF;
	right:10px;
	color:#000;
	box-shadow:0px 5px 5px rgba(0, 0, 0, 0.2);
	font-size:13px;
	border-radius:5px;
	cursor:pointer;
}
.pushMsg::before{
	content: '';
	display:inline-block;
	position:absolute;
	right:10px;
	bottom:-10px;
	width: 0;
	height: 0;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-top: 16px solid #FFFACF; /* 역삼각형 색상 */

}
.pushMsg > i.bellImg{
	display:inline-block;
	width:16px;
	height:18px;
	background:url(../images/public/bell.png);
}

@keyframes supportIconOn {
	0% {
		transform: scale(0.5);
		opacity: 0.3;
	}
	40% {
		transform: scale(1.05);
		opacity: 1;
	}
	70% {
		transform: scale(0.85);
		opacity: 1;
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}
.chatBot .chatCon.off {
	animation-name: supportIconOff;
	animation-duration: 0.7s;
	animation-timing-function: ease-in-out;
	animation-fill-mode: forwards;
}
@keyframes supportIconOff {
	0% {
		transform: scale(1);
		opacity: 1;			
	}
	30% {
		transform: scale(1.05);
		opacity: 1;
	}
	70% {
		transform: scale(0.85);
		opacity: 1;
	}
	100% {
		transform: scale(0.5);
		opacity: 0.3;
	}		
}

/*채팅레이어*/
.chatWrap {
	position: fixed;
	right: 8px;
	bottom: 8px;
	z-index: 10000001 !important;

}
.chatWrap .chatFrame {
	position: absolute;
	right: 0;
	bottom: 58px;
	width: 340px;
	height: 600px;
	border-radius: 20px 20px 10px 10px;
	overflow: hidden;
	background: #fff;
	box-shadow: rgba(255, 255, 255, 0.12) 0px 0px 2px 0px inset, rgba(0, 0, 0, 0.05) 0px 0px 2px 1px, rgba(0, 0, 0, 0.3) 0px 12px 60px;
	animation-duration: 0.25s;
	animation-delay: 0s;
	animation-name: ani_chatOepn;
	animation-fill-mode: forwards;
	transform-origin: center;
	opacity: 0;
}
.chatWrap .chatFrame iframe {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border: none;
}

.chatWrap .chatClose {
	position: absolute;
	right: 8px;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.chatWrap .chatClose > div {
	width: 52px;
	height: 52px;
	border-radius: 52px;
	background: #f2f1f0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #eee url(../images/public/close.png) center no-repeat;
	background-size: 26px;
	box-shadow: rgba(255, 255, 255, 0.2) 0px 0px 0px 1px inset, rgba(0, 0, 0, 0.1) 0px 4px 6px, rgba(0, 0, 0, 0.15) 0px 8px 30px;
	cursor: pointer;
	transition: visibility 400ms ease 0s;
	animation: 0.5s cubic-bezier(0.36, 0, 0, 1) 0s 1 normal both running supportCloseOn;
}

@keyframes ani_chatOepn {
	0% {
		opacity: 0;
		transform: translateY(10px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}


@media all and (max-width: 1250px) {
	.chatWrap .chatFrame {
		height: 500px ;
	}
}

@media all and (max-width: 800px) {
	.chatWrap .chatClose {
		right: 5px;
		bottom: 0;
	}
	.chatBot .chatCon{
		width:51px;
		height:49px;
	}
}