@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;
	z-index: 10;
}

.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 {
	flex: 0 0 200px;
	max-width: 200px;
	min-height: calc(100dvh - 60px);
	padding-bottom: 20px;
	background: var(--naver);
	border-radius: 20px 0 0 20px;
	display: flex;
	flex-direction: column;
}

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

.mainLeftTop h2 {
	text-align: center;
	color: var(--blackLevel0);
	font-size: 20px;
	font-weight: 700;
	white-space: nowrap;
	max-width: 160px;
	word-wrap: break-word;
	transition: font-size 0.3s ease;
}

.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 10px;
	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 26px;
	height: 26px;
	border-radius: 5px;
	padding-top: 2px;
	background: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
}

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

.mainLeft .option .optionItem > span {
	flex: 1 1 0;
	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;
}

@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 .optionItem > i {
	color: var(--blackLevel0);
	font-size: 17px;
	margin-top: 1px;
}

.mainLeft .option .optionItem.alimList {
	display: none;
}

.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 {
	flex: 1 1 0;
	background: var(--bgDark);
	border-radius: 0 20px 20px 0;
	display: flex;
	flex-direction: column;
}

.mMenuWrap {
	display: none;
}

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

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

.qucikBanners {
	display: flex;
	align-items: center;
	gap: 5px;
}

.topTxt1 {
	color: var(--blackLevel4);
	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;
	justify-content: flex-start;
}

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

.mainFrame .noticeWrap {
	flex: 0 0 auto;
	width: 100%;
	padding: 16px 16px 0 16px;
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.mainFrame .notice {
	flex: 0 0 auto;
	width: 100%;
	padding: 10px 16px;
	background: var(--bgPoint);
	border-radius: 10px;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 5px;
}

.mainFrame .notice:hover {
	background: var(--bgPointOver);
}

.mainFrame .notice > div {
	flex-grow: 1;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 5px;
}

.mainFrame .notice > div > span {
	font-variation-settings: 'FILL' 1;
	color: var(--red);
	font-size: 20px;
}

.mainFrame .notice > div > h2 {
	font-size: var(--fontDft);
	font-weight: 600;
}

.mainFrame .notice > div > p {
	font-size: var(--fontDft);
}

.mainFrame .notice > span {
	font-size: 16px;
}

.mainFrame .mainIframe {
	position: relative;
	width: 100%;
	flex: 1 1 0;
}

.mainFrame .mainIframe iframe {
	position: absolute;
	top: 0;
	left: 0;
	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;
}

.rightBoxWrap {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 30px;
}

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

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

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

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

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

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

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

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

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

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

.alimBox .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;
}

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

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

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

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

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

.alimBox .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;
}

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

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

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

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

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

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

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

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

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

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

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

.alimBox .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;	
}

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

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


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

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

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

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

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

.calendarTitle .calfunction {
	display: none;
}

.rightBox .boxList {
	margin-top: 10px;
	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: flex-start;
	gap: 5px;
}

.rightBox .boxList .boxItem h2 > span {
	flex: 0 0 44px;
	height: 20px;
	text-align: center;
	font-size: var(--fontS);
	line-height: 20px;
	font-weight: normal;
	color: var(--blackLevel0);
	border-radius: 3px;
}

.rightBox .boxList .boxItem h2 > span.package {
	background: var(--bgPackage);
}

.rightBox .boxList .boxItem h2 > span.single {
	background: var(--bgSingle);
}

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

.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: center;
	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;
}

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

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

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

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

.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;
		height: 100dvh;
	}
	
	.mainWrap {
		border-radius: 0;
		height: 100dvh;
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		overflow: hidden;
	}
	
	.mainLeft {
		width: 100%;
		max-width: unset;
		flex: 0 0 auto;
		min-height: unset;
		padding: 5px 16px;
		border-radius: 0;
		align-items: center;
		justify-content: center;
		gap: 0px;
	}
	
	.mainLeftTop {
		flex: 0 0 auto;
		width: 100%;
		padding: 5px;
		align-items: center;
	}
	
	.mainLeftTop h2 {
		text-align: left;
		font-size: 17px;
		max-width: 200px;
		white-space: nowrap;
		overflow: hidden;
	}
	
	.mainLeft .menu {
		display: none;
	}
	
	.mainLeft .minimizeList {
		padding: 16px;
		gap: 3px;
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		z-index: 5;
	}
	
	.mainLeft .option {
		flex: 0 0 auto;
		width: unset;
		padding: 0;
		flex-direction: row;
		align-items: center;
		justify-content: center;
		gap: 15px;
	}

	.mainLeft .option .optionItem {
		flex: 0 0 auto;
		width: unset;
		padding: 7px 0;
		background: none;
		border-radius: 0px;
		display: flex;
		align-items: center;
		justify-content: flex-start;
		gap: 3px;
	}
	
	.mainLeft .option .optionItem p {
		display: none;
	}

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

	.mainLeft .option .optionItem.openNotice > i {
		display: none;
	}
	
	.mainLeft .copy {
		display: none;
	}
		
	.mainRight {
		flex-grow: 1;
		width: 100%;
		background: var(--bgDark);
		border-radius: 0;
		display: block;
		overflow: hidden;
		overflow-y: auto;
	}

	.mMenuWrap {
		display: block;
		padding: 10px 16px 0 16px;
		background: var(--naver);
	}

	.mMenuWrap .menu {
		width: 100%;
		padding: 0;
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		gap: 3px;
	}
	
	.mMenuWrap .menu h3 {
		width: 100%;
		padding: 10px 16px;
		border-radius: 5px 5px 0 0;
		cursor: pointer;
		transition: all 0.3s ease;
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 5px;
	}
	
	.mMenuWrap .menu h3 p {
		flex: 0 0 16px;
		height: 16px;
		padding-top: 2px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	.mMenuWrap .menu h3 p .material {
		color: var(--blackLevel0);
		font-size: 16px;
		font-weight: 700;
	}
	
	.mMenuWrap .menu h3 > span {
		color: var(--blackLevel0);
		font-size: var(--fontDft);
		font-weight: 700;
		line-height: var(--fontDft);
		word-wrap: break-word;
	}
	
	.mMenuWrap .menu h3.on {
		background: var(--bg0);
		box-shadow: var(--dftShadow);
	}
	
	.mMenuWrap .menu h3.on p .material { color: var(--naver);}
	
	.mMenuWrap .menu h3.on > span { color: var(--naver);}
	
	.mainRightTop { 
		display: none;
	}
	
	.mainRightContent {
		flex: 0 0 auto;
		width: 100%;
		display: block;
	}

	.mainFrame {
		border-top-right-radius: 0;
		display: block;
		height: unset;
		overflow: unset;
	}
	
	.mainFrame .mainIframe {
		position: relative;
		width: 100%;
		flex: 1 1 0;
	}
	
	.mainFrame .mainIframe iframe {
		position: relative;
	}
	
	.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 {
		width: 100%;
		flex: 0 0 auto;
		padding: 20px 16px;
		display: flex;
		flex-direction: row;
		align-items: flex-start;
		justify-content: center;
	}

	.rightSection > .rightBox {
		flex: 0 0 240px;
	}

	.rightBoxWrap {
		flex: 0 0 240px;
	}
}

@media all and (max-width: 800px) {
	.mMenuWrap .menu h3 {
		flex: 1 1 auto;
		padding: 10px 0;
	}
	.mMenuWrap .menu h3 p {
		display: none;
	}

	.mainLeft .option .optionItem.alimList {
		display: flex;
	}

	.mainLeft .minimizeList {
		align-items: flex-start;
	}

	.calendarTitle .calfunction {
		font-size: var(--fontS);
		font-weight: normal;
		background: var(--blackLevel6);
		border-radius: 3px;
		padding: 1px 3px 2px 3px;
		cursor: pointer;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 3px;
	}

	.calendarTitle .calfunction .material {
		width: 14px;
		height: 14px;
		font-size: 14px;
	}
	
	.rightSection {
		padding: 0 0 20px 0;
		flex-direction: column;
		gap: 0;		
	}

	.rightSection > .rightBox {
		flex: 0 0 auto;
	}

	.rightBox .boxList .boxItem h2 { padding-left: 0;}

	.alimBox {
		display: none;
	}

	.calendarTitle {
		border-bottom: 1px solid var(--blackLevel6);
	}
	
	.rightBoxWrap {
		flex: 0 0 auto;
		gap: 0;
	}

	.rightBox h2 {
		padding: 10px 21px;
	}

	.rightBox > h2 > p {
		margin-top: 0;
	}

	.rightBox .boxList {
		margin-top: 0;
		padding: 0 16px;
	}
}

/*미니달력*/
.calWrap {
	display: flex;
	flex-direction: column;
	width: 100%;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
	max-height: 500px;
	opacity: 1;
	transform-origin: top;
	transform: scaleY(1);
}

.calWrap.collapsed {
	max-height: 0;
	opacity: 0;
	transform: scaleY(0);
}

.calWrap.expanded {
	max-height: 500px;
	opacity: 1;
	transform: scaleY(1);
}

.calfunction {
	display: none;
}

@media all and (max-width: 560px) {
	.calfunction {
		display: none;
		margin-top: 1px;
		font-size: var(--fontS);
		color: var(--blackLevel3);
		transition: all 0.2s ease;
	}

	.calfunction:hover {
		color: var(--blackLevel3);
	}

	.calfunction.calOpen {
		display: flex;
		align-items: center;
		gap: 3px;
		cursor: pointer;
	}

	.calfunction.calClose {
		display: flex;
		align-items: center;
		gap: 3px;
		cursor: pointer;
	}

	.calfunction .material {
		font-size: 16px;
		transition: transform 0.3s ease;
	}

	.calWrap.collapsed + .calfunction.calOpen .material {
		transform: rotate(0deg);
	}

	.calWrap.expanded + .calfunction.calClose .material {
		transform: rotate(180deg);
	}
}

.calWrap article {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;	
}

.calWrap article > span {
	cursor: pointer;
	border-radius: 5px;
	transition: all 0.2s;
	color: var(--blackLevel3);
}

.calWrap article > span:hover {
	color: var(--blackLevel1);
}

.calWrap article > p {
	display: flex;
	align-items: center;
	gap: 5px;
}

.calWrap article > p > select {
	appearance: none;
	width: auto;
	padding: 5px;
	font-weight: 600;
	text-align: center;
	background: none;
	color: var(--blackLevel3);
	cursor: pointer;
	transition: all 0.2s;
}

.calWrap article > p > select:hover {
	color: var(--blackLevel1);
}

.calWrap article > p > select option {
	color: var(--blackLevel9);
}

.calWrap section {
	flex-grow: 1;
	overflow: hidden;
}

.calWrapTable {
	width: 100%;
	height: 100%;
	table-layout: fixed;
}

.calWrapTable thead tr th {
	font-size: var(--fontDft);
	padding: 3px;
	font-weight: normal;
	vertical-align: middle;
	color: var(--blackLevel3);
}

.calWrapTable thead tr th:first-child {
	color: var(--sun);
}

.calWrapTable tbody tr td:first-child {
	color: var(--sun);
}

.calWrapTable thead tr th:last-child {
	color: var(--sat);
}

.calWrapTable tbody tr td:last-child {
	color: var(--sat);
}

.calWrapTable tbody tr td {
	text-align: center;
	padding: 3px 5px;
	vertical-align: middle;
	color: var(--blackLevel3);
}

.calWrapTable tbody tr td.opacity30 {
	opacity: 0.3;
}

.calWrapTable tbody tr td span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 5px;
	font-size: var(--fontDft);
	width: 24px;
	height: 24px;
	cursor: pointer;
}

.calWrapTable tbody tr td span:hover {
	text-decoration: underline;
}

.calWrapTable tbody tr td span.today {
	background: var(--naver4);
	color: var(--naver);
	font-weight: 600;
}

.calWrapTable tbody tr td span.holiday {
	color: var(--sun);
}

.calWrapTable tbody tr td span.onSchedule {
	position: relative;
}

.calWrapTable tbody tr td span.onSchedule::before {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 50%;
	width: 8px;
	height: 3px;
	border-radius: 50%;
	transform: translateX(-50%);
	background-color: var(--blackLevel3);
}

.calWrapTable tbody tr td span.selected {
	position: relative;
	background: var(--naver);
	color: var(--blackLevel0);
	font-weight: 600;
}


/*로그인전환*/
.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-grow: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	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: fixed;
		left: 0;
		bottom: 0;
		top: unset;
		width: 100vw;
	}

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

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

/*전체보기레이어*/
.packageViewLayer {
	z-index: 100;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.viewPackageAlllWrap {
	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;
}

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

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

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

.viewPackageAlllWrap .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;
}

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

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

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

	.packageViewLayer .viewPackageAlllWrap {
		width: 100vw;
		height: 100dvh;
		border-radius: 0;
	}

	.packageViewLayer.minimized .viewPackageAlllWrap {
		width: 168px;
		height: 30px;
	}
}


/*계약서*/
.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;
	}
}


/**/
.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;
}

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

.shopChacngeLayer .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;
}

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


.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: 340px;
	border: 2px solid var(--naver);
	border-radius: 10px;
	background: var(--white);
	overflow: hidden;
}




.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);
}

.shopChacngeItem {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 5px;
	cursor: pointer;
	transition: all 0.2s;
	font-weight: 600;
	padding: 10px;
	background: var(--bg2);
	border: 1px solid var(--blackLevel2);
	border-radius: 5px;
	margin-bottom: 3px;
}

.shopChacngeItem:hover {
	background: var(--naverHover);
	color: var(--naver);
	border-color: var(--naver);
}

.shopChacngeItem p {
	display: flex;
	align-items: center;
	gap: 5px;
	font-weight: 600;
}

.shopChacngeItem p .material {
	font-size: 20px;
	margin-top: 1px;
}

.shopChacngeItem strong {
	flex: 0 0 auto;
	font-size: 14px;
	font-weight: 600;
	color: var(--naver);
}

.shopChacngeItem .material {
	font-size: 16px;
	flex: 0 0 auto;
}



.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);
}

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

.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_name {
	flex: 0 0 60px;
}

.staffList_phone {
	flex: 0 0 120px;
}

.staffList_password {
	flex-grow: 1;
}

.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;
}

.staffMemo {
	margin-top:5px;
	font-size:13px;
}


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

.fileUploadLayer .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;
}

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

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

.fileUploadLayer .layerContentsHeader {
	flex: 0 0 auto;
	display: flex;
}

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

.fileUploadLayer .layerContentsBody {
	flex-grow: 1;
	overflow-y: auto;
}

.fileUploadLayer .layerContentsBody .fileUploadProgress {
	width: 100%;
	height: 10px;
	background: var(--bg2);
	border-radius: 5px;
	margin-top: 15px;
}

.fileUploadLayer .layerContentsBody .fileUploadProgress .fileUploadProgressBar {
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background: var(--naver);
}

.fileUploadLayer .layerContentsBody .fileUploadStatus {
	width: 100%;
	height: 100%;
	text-align: center;
	font-size: 14px;
	font-weight: 600;
	margin-top: 5px;
}

.fileUploadLayer .layerContentsBody .fileUploadStatus span {
	margin-top: 8px;
	width: 100%;
	height: 100%;
	text-align: center;
	font-size: 13px;
	font-weight: 500;
	color: var(--blackLevel6);
	cursor: pointer;
	text-decoration: underline;
}

/*매뉴얼*/
.manualBtn.on {
	animation-name: supportIconOn;
	animation-duration: 0.7s;
	animation-timing-function: ease-in-out;
	animation-fill-mode: forwards;
	opacity: 0;
}

.manualBtn.off {
	animation-name: supportIconOff;
	animation-duration: 0.7s;
	animation-timing-function: ease-in-out;
	animation-fill-mode: forwards;
}
.manualBtn > div {
	position: relative;
	background: linear-gradient(90deg, #72d0ff, #98f8ff, #72d0ff);
	background-size: 200% 100%;
	background-position: 0% 50%;
	animation: gradientMove 3s ease infinite;
	color: #283f7e;
	z-index: 8;
	border-radius: 4px;
	padding: 0 5px;
	height: 30px;
	filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
	display: flex;
	align-items: center;
	cursor: pointer;
	overflow: hidden;
}
.manualBtn > div::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
	animation: shineMove 3s ease-in-out infinite;
	z-index: 1;
	pointer-events: none;
}
.manualBtn > div > span {
	display: inline-block;
	flex: 0 0 23px;
	width: 23px;
	height: 23px;
	background: url(../images/public/quickcon1.png) center no-repeat;
	background-size: contain;
}
.manualBtn > div > p {
	font-size: 13px;
	font-weight: 600;
	color: #283f7e;
}

.manualLayer {
	position: fixed;
	right: 0;
	top: 0;
	width: 340px;
	height: 100dvh;
	display: flex;
	flex-direction: column;
	z-index: 11;
	background: var(--white);
	border-left: 1px solid var(--blackLevel3);
	transform: translateX(100%);
	transition: transform 0.3s ease-in-out;
}

.manualLayer.open {
	transform: translateX(0);
}

.manualLayer .manualHeader {
	flex: 0 0 auto;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: 8px 16px;
	border-bottom: 1px solid var(--blackLevel2);
}
.manualLayer .manualHeader h2 {
	flex-grow: 1;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	font-size: 16px;
	gap: 5px;
}
.manualLayer .manualHeader h2 .material {
	margin-top: 2px;
	color: var(--blackLevel10);
}
.manualLayer .manualHeader .material {
	font-size: 24px;
	cursor: pointer;
	color: var(--blackLevel5);
}

.manualLayer .manualContents {
	position: relative;
	flex-grow: 1;
	overflow: hidden;
	padding: 0;
}

.manualLayer .manualContents iframe {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border: none;
}

.guideImageWrap {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 605;
	padding: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: auto;
	overflow: hidden;
	overflow-y: auto;
}
.guideImageWrap > div {
	position: relative;
	padding: 0 25px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	margin: auto;
	
}
.guideImageWrap > div > p {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: end;
	padding-right: 25px;
	gap: 5px;
}
.guideImageWrap > div > p > span {
	color: var(--white);
	font-size: 24px;
	cursor: pointer;
}
.guideImageWrap > div > img {
	width: 100%;
	max-width: 1200px;
    height: auto;
    object-fit: contain;
}

.guideImageWrap .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;
}


/*쳇봇*/
.chatBot {
	position: relative;
}
.chatBot .chatCon {	
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 0;
	overflow: hidden;
}
.chatBot .chatCon.on {
	animation-name: supportIconOn;
	animation-delay: 0.2s;
	animation-duration: 0.7s;
	animation-timing-function: ease-in-out;
	animation-fill-mode: forwards;
	opacity: 0;
	display: flex;
}
.chatBot .chatCon.off {
	animation-name: supportIconOff;
	animation-duration: 0.7s;
	animation-timing-function: ease-in-out;
	animation-fill-mode: forwards;
}
.chatBot .chatCon > div {
	position: relative;
	background: linear-gradient(90deg, #ffcc00, #d9ff00, #ffcc00);
	background-size: 200% 100%;
	background-position: 0% 50%;
	animation: gradientMoveYellow 3s ease infinite;
	color: #121212;
	z-index: 8;
	border-radius: 4px;
	padding: 0 5px;
	height: 30px;
	filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
	display: flex;
	align-items: center;
	gap: 3px;
	cursor: pointer;
	overflow: hidden;
}
.chatBot .chatCon > div::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
	animation: shineMove 3s ease-in-out infinite;
	z-index: 1;
	pointer-events: none;
}
.chatBot .chatCon > div > span {
	display: inline-block;
	flex: 0 0 23px;
	width: 23px;
	height: 23px;
	background: url(../images/public/quickcon2.png) center no-repeat;
	background-size: contain;
}
.chatBot .chatCon > div > p {
	font-size: 13px;
	font-weight: 600;
	color: #283f7e;
}
.pushMsg{
	position: absolute;
	display:inline-flex;
	align-items:center;
	padding:5px;
	bottom: 26px;
	background: #DC2F02;
	left:30px;
	color:#fff;
	box-shadow:0px 5px 5px rgba(0, 0, 0, 0.2);
	font-size:13px;
	border-radius:5px;
	white-space: nowrap;
	cursor:pointer;
	transform-origin: center bottom;
	animation: unfoldPushMsg 1.2s ease-out infinite;
	overflow: hidden;
}
.pushMsg::before{
	content: '';
	display:inline-block;
	position:absolute;
	left:10px;
	bottom:-10px;
	width: 0;
	height: 0;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-top: 16px solid #DC2F02; /* 역삼각형 색상 */

}
.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;
	}
}

@keyframes supportIconOff {
	0% {
		transform: scale(1);
		opacity: 1;			
	}
	30% {
		transform: scale(1.05);
	}
	70% {
		transform: scale(0.85);
	}
	100% {
		transform: scale(0.5);
		opacity: 0;
	}		
}

@keyframes gradientMove {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

@keyframes gradientMoveYellow {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

@keyframes shineMove {
	0% {
		left: -100%;
	}
	50% {
		left: 100%;
	}
	100% {
		left: 100%;
	}
}

@keyframes unfoldPushMsg {
	0% {
		transform: scaleY(0);
		opacity: 0;
	}
	10% {
		opacity: 1;
	}
	40% {
		transform: scaleY(1);
	}
	60% {
		transform: scaleY(1);
		opacity: 1;
	}
	100% {
		transform: scaleY(0);
		opacity: 0;
	}
}

@media all and (max-width: 1200px) {
	.qucikBanners {
		gap: 0;
		width: 100vw;
		height: 40px;
		padding: 0;
		z-index: 0;
	}
	/*매뉴얼*/
	.qucikBanners > div {
		flex: 1;
	}
	.qucikBanners > div.chatBot {
		flex: 1.5;
	}
	.manualBtn.off {
		animation-name: supportIconOn;
	}
	.manualBtn > div {
		border-radius: 0px;
		height: 40px;
		filter: none;
		justify-content: center;
	}
	.manualBtn > div > span {
		flex: 0 0 30px;
		width: 30px;
		height: 30px;
	}
	.manualBtn > div > p {
		font-size: 15px;
	}

	.chatBot .chatCon.off {
		animation-name: supportIconOn;
	}
	.chatBot .chatCon > div {
		width: 100%;
		border-radius: 0px;
		height: 40px;
		filter: none;
		justify-content: center;
	}
	.chatBot .chatCon > div > span {
		flex: 0 0 30px;	
		width: 30px;
		height: 30px;
	}
	.chatBot .chatCon > div > p {
		font-size: 15px;
	}
	.pushMsg{
		bottom: unset;
		top: 0px;
		left: 50%;
		margin-top: 5px;
		transform-origin: center bottom;
		animation: unfoldPushMsgMobile 1.2s ease-out infinite;
	}
	@keyframes unfoldPushMsgMobile {
		0% {
			transform: translateX(-50%) scaleY(0);
			opacity: 0;
		}
		10% {
			opacity: 1;
		}
		40% {
			transform: translateX(-50%) scaleY(1);
		}
		60% {
			transform: translateX(-50%) scaleY(1);
			opacity: 1;
		}
		100% {
			transform: translateX(-50%) scaleY(0);
			opacity: 0;
		}
	}
	.pushMsg::before{
		display: none;
	}
	.pushMsg::before{
		display: none;
	}

	.chatWrap::before{
		content: '';
		position: fixed;
		top: 0;
		left: 0;
		width: 100vw;
		height: 100dvh;
		background: rgba(0,0,0,0.1);
		backdrop-filter: blur(1px);
		animation: blurShow 0.5s ease-in-out;
	}
}


/*채팅레이어*/
.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;
	z-index: 9;
}
.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;
	cursor: pointer;
	touch-action: manipulation;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	user-select: none;
}

.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;
	touch-action: manipulation;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	user-select: none;
	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) {
	.viewDetailWrap .layerHeader > div > span {
		width: 26px;
		height: 26px;
		font-size: 26px;
	}
	.chatWrap .chatClose {
		right: 5px;
		bottom: 0;
	}
}

