.bck-grey {
	background-color: #fafafa;
}
/* Header Start */
.head-wrap {
	display: flex;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	min-width: 700px;
	width: 100%;
	height: 80px;
	background-color: #fff;
	z-index: 55
}

.head-wrap > div {
	height: 100%;
}

.head-left {
	display: flex;
	align-items: center;
	width: 250px;
	padding: 0 0 0 35px;
}

.head-left a.logo {
	display: block;
	width: 200px;
	height: 40px;
	background-image: url("../../img/header-logo.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
}

.head-center {
	display: flex;
	width: 100%;
	max-width: calc(100% - 450px);
	min-width: 345px;
	align-items: center;
	padding: 0 45px;
}

.head-search-wrap {
	position: relative;
	width: 60%;
	max-width: 530px;
	min-width: 300px;
}

.head-search-wrap .search-input {
	width: 100%;
	height: 40px;
	padding: 0 55px 0 20px;
	border: 1.5px solid #EDEDED;
	border-radius: 20px;
	background-color: #FFF;
}

.head-search-wrap .search-btn {
	position: absolute;
	top: 10.92px;
	right: 18.8px;
	width: 18.22px;
	height: 18.16px;
	background-image: url("../../img/header-search-btnoff.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
}

.head-search-wrap .search-btn:hover {
	background-image: url("../../img/header-search-btnon.png");
}

.head-right {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 200px;
	padding: 0 40px;
}

.head-right .alarm-btn {
	position: relative;
	width: 29.15px;
	height: 30.19px;
	margin: 0 15px 0 0;
	background-image: url("../../img/header-alarm-btnoff.png");
	background-repeat: no-repeat;
	background-position: 0 6.2px;
	background-size: 20.15px 23.99px;
}

.head-right .alarm-btn:hover {
/* 	background-image: url("../../img/header-alarm-btnon.png"); */
}

.alarm-btn .alarm-balloon {
	position: absolute;
	right: 0;
	top: 0;
	width: 20px;
	height: 20px;
	padding: 0 1.5px 0 0;
	line-height: 20px;
	border-radius: 20px;
	background-color: #FF7F50;
	font-size: 14px;
	font-weight: 700;
	color: #FFF;
	text-align: center;
}

.head-right .mypage-btn {
	width: 34.33px;
	height: 34.33px;
	background-image: url("../../img/header-mypage-btnoff.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
}

.head-right .mypage-btn:hover {
/* 	background-image: url("../../img/header-mypage-btnon.png"); */
}

.head-right .right-btn {
	position: absolute;
	right: 20px;
	bottom: -15px;
	width: 30px;
	height: 30px;
	border-radius: 30px;
	background-image: url("../../img/header-right-btnoff.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
	box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}

.head-right .right-btn:hover {
	background-image: url("../../img/header-right-btnon.png");
}

.head-right .right-btnon {
	animation: slideToLeft 0.3s ease-in-out both;
}

.head-right .right-btnoff {
	animation: slideToRight 0.3s ease-in-out both;
}

@keyframes slideToLeft {
	from {
		right: 20px;
		transform: rotate(0deg);
	}

	to {
		right: calc(100% + 170px);
		transform: rotate(180deg);
	}
}

@keyframes slideToRight {
	from {
		right: calc(100% + 170px);
		transform: rotate(180deg);
	}

	to {
		right: 20px;
		transform: rotate(0deg);
	}
}
/* Header End */

/* leftside Start */
.leftside-wrap {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position:fixed;
	left: 0;
	top: 80px;
	width: 250px;
	height: calc(100% - 80px);
	background-color: #0C6852;
	border: 1px solid #EDEDED;
	z-index: 50;
}

.menu-wrap {
	display: block;
	width: 100%;
	list-style: none;
}

.menu-wrap .depth1 {
	display: flex;
	align-items: center;
	position: relative;
	height: 60px;
	padding: 0 30px 0 35px;
	border-bottom: 1px solid #EDEDED;
	background-color: #0C6852;
	font-family: 'NotoSans', sans-serif;
	font-weight: 600;
	font-size: 17px;
	color: #fff;
	cursor: pointer;
}

.menu-wrap .depth1:hover {
	color: #fff;
}

.menu-wrap .depth1-on {
	background-color: #fff;
	color: #0C6852 !important;
}

.menu-wrap .depth1-on:before {
	border: 1.5px solid #D3D3D3 !important;
	color: #D3D3D3 !important;
}

.menu-wrap .depth1-fold:before {
	content: '>';
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 22.5px;
	right: 30px;
	width: 15px;
	height: 15px;
	border: 1.5px solid #D3D3D3;
	border-radius: 4px;
	font-family: cursive;
	font-size: 11px;
	color: #D3D3D3;
}

.menu-wrap .depth1-fold:hover:before {
/* 	border: 1.5px solid #0C6852; */
/* 	color: #0C6852; */
}

.menu-wrap .depth1-sett {
	padding: 0 30px 0 68px;
	border-bottom: none;
	background-image: url("../../img/leftside-sett-iconoff.png");
	background-repeat: no-repeat;
	background-position: 35px 23px;
	background-size: 19.33px;
	color: #D3D3D3;
}

.menu-wrap .depth1-sett:hover {
	background-image: url("../../img/leftside-sett-iconon.png");
}

.menu-wrap .depth2 {
	display: none;
}

.menu-wrap .depth2 ul {
	padding: 8px 30px 8px 20px;
	background-color: #EDEDED;
}

.menu-wrap .depth2 li {
	margin: 0 0 7px 0;
	font-family: 'NotoSans', sans-serif;
	font-weight: 700;
	font-size: 14px;
	color: #AAAAAA;
	list-style: disc;
	list-style-position: inside;
	cursor: pointer;
}

.menu-wrap .depth2 li:hover {
	color: #78B12E;
}

.menu-wrap .depth2 li.on {
	color: #78B12E;
}

.menu-wrap .depth2 > ul > li:last-child {
	margin: 0;
}

.menu-wrap .depth1-fold-on:before {
	animation: rotateUp 0.3s ease-in-out both;
}

.menu-wrap .depth1-fold-off:before {
	animation: rotateDown 0.3s ease-in-out both;
}

@keyframes rotateUp {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(-90deg);
	}
}

@keyframes rotateDown {
	from {
		transform: rotate(-90deg);
	}

	to {
		transform: rotate(0deg);
	}
}

.logout-btn {
	margin: 0 0 33px 35px;
	padding: 0 0 0 35px;
	background-image: url("../../img/leftside-logout-btnoff.png");
	background-repeat: no-repeat;
	background-position: 0 center;
	background-size: 21px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	font-size: 18px;
	color: #fff;
}

.logout-btn:hover {
/* 	background-image: url("../../img/leftside-logout-btnon.png"); */
/* 	color: #0C6852; */
}
/* leftside End */

/* Contents Area Start */
.container {
	position: fixed;
	top: 80px;
	left: 250px;
	min-width: 500px;
	width: calc(100% - 250px);
	height: calc(100% - 77px);
	background-color: #FFF;
	overflow: auto;
	z-index: 45;
}

.contents-div {
	min-height: calc(100% - 100px);
}

/* Footer Start */
.footer, .login-footer {
	font-family: 'Montserrat', sans-serif;
    background: var(--c-text);            /* #1f2937 - 다크 배경 */
    color: #454545;
    font-size: 13px;
/*     margin-top: 40px; */
/*     padding: 28px 40px 0; */
    border-top: none;
}
.footer-inner {
/*     max-width: 1280px; */
	margin-left: 50px;
/*     margin: 0 auto; */
    display: flex;
    gap: 40px;
    align-items: flex-start;
/*     padding-bottom: 18px; */
/*     border-bottom: 1px solid #374151; */
}
.footer-logo {
    font-size: 22px;
    font-weight: 700;
    color: #454545;
    line-height: 1.3;
    min-width: 160px;
    flex-shrink: 0;
    letter-spacing: 0.5px;
}
.footer-logo span {
    display: block;
    font-size: 11px;
    font-weight: 400;
    color: #AAAAAA;
    margin-top: 6px;
    letter-spacing: 0;
}

.footer-info { flex: 1; line-height: 1.9; color: #454545; font-size: 13px; }
.footer-info p { margin: 0; font-size: 13px; color: #454545; }
.footer-info p strong,
.footer-info .ft-label {
    color: #454545;
    font-weight: 400;
    margin-right: 1px;
}
.footer-info .ft-sep {
    display: inline-block;
    color: #454545;
    margin: 0 8px;
}

.footer-links {
    margin-top: 6px;
    display: flex;
    gap: 26px;
    font-size: 13px;
}
.footer-links a {
    color: #AAAAAA;
    text-decoration: none;
}
.footer-links a:hover { color: #454545; text-decoration: underline; }

/* Footer End */

/* Rightside Start */
.rightside-wrap {
	position: fixed;
	top: 80px;
	right: 0;
	width: 420px;
	height: calc(100% - 80px);
	background: #FFF;
	box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
	transform: translateX(420px);
	transition: transform 300ms ease-in-out;
	z-index: 50;
	overflow-y: auto;
}

.displayRightMenu {
	transform: translateX(0) !important;
}
/* Rightside End */

/* Notification */
.notice-pop {
	display: none;
	position: absolute;
	top: 65px;
	right: 125px;
	width: 400px;
	height: 70px;
	padding: 22px 12px 22px 24px;
	border: 2px solid #D3D3D3;
	border-radius: 17px;
	background-color: #FFF;
	box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}

.notice-item-contents {
	display: block;
	width: 100%;
	margin: 5px 0 0;
	font-family: 'Pretendard', sans-serif;
	font-weight: 500;
	font-size: 15px;
	color: #454545;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

/* Alarm */
.alarm-pop {
	display: none;
	position: absolute;
	top: 65px;
	right: 125px;
	width: 400px;
	height: 250px;
	padding: 22px 12px 22px 24px;
	border: 2px solid #D3D3D3;
	border-radius: 17px;
	background-color: #FFF;
	box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}

/* �Ʒ��� ��� �ڵ�� ����::�ڵ�� ��� */
.cust-scroll {
	width: 100%;
	height: 100%;
	padding: 0 12px 0 0;
	overflow-y: auto;
}
.cust-scroll::-webkit-scrollbar {
	width: 6px;
}

.cust-scroll::-webkit-scrollbar-thumb {
	border-radius: 30px;
	background: #D3D3D3;
}

.cust-scroll::-webkit-scrollbar-track {
	padding: 10px 0;
	border-radius: 30px;
	background: #EDEDED;
}

.alarm-pop-title {
	padding: 0 0 13px 5px;
	border-bottom: 1px solid #D3D3D3;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 20px;
	color: #454545;
}

.alarm-pop-list > li {
	display: block;
	padding: 13px 5px;
	border-bottom: 1px solid #EDEDED;
}

.alarm-item-title {
	font-family: 'Pretendard', sans-serif;
	font-weight: 700;
	font-size: 13px;
	color: #AAAAAA;
}

.alarm-item-contents {
	display: block;
	width: 100%;
	margin: 5px 0 0;
	font-family: 'Pretendard', sans-serif;
	font-weight: 500;
	font-size: 15px;
	color: #454545;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.alarm-item-contents.alarm-notice-contents:hover {
	color: #FF7F50;
	text-decoration: underline;
	cursor: pointer;
}

.orange {
	color: #FF7F50;
}

.alarm-item-date {
	margin: 5px 0 0;
	font-family: 'Pretendard', sans-serif;
	font-weight: 500;
	font-size: 11px;
	color: #D3D3D3;
}