﻿@charset "utf-8";

/* webFont */
@font-face {
	font-family: 'Noto Sans KR';
	font-style: normal;
	font-weight: 300;
	src: url(../../fonts/NotoSansKr/NotoSansKR-Light.woff2) format('woff2'),
	url(../../fonts/NotoSansKr/NotoSansKR-Light.woff) format('woff'),
	url(../../fonts/NotoSansKr/NotoSansKR-Light.otf) format('opentype');
}

@font-face {
	font-family: 'Noto Sans KR';
	font-style: normal;
	font-weight: 400;
	src: url(../../fonts/NotoSansKr/NotoSansKR-Regular.woff2) format('woff2'),
	url(../../fonts/NotoSansKr/NotoSansKR-Regular.woff) format('woff'),
	url(../../fonts/NotoSansKr/NotoSansKR-Regular.otf) format('opentype');
}

@font-face {
	font-family: 'Noto Sans KR';
	font-style: normal;
	font-weight: 500;
	src: url(../../fonts/NotoSansKr/NotoSansKR-Medium.woff2) format('woff2'),
	url(../../fonts/NotoSansKr/NotoSansKR-Medium.woff) format('woff'),
	url(../../fonts/NotoSansKr/NotoSansKR-Medium.otf) format('opentype');
}

@font-face {
	font-family: 'Noto Sans KR';
	font-style: normal;
	font-weight: 700;
	src: url(../../fonts/NotoSansKr/NotoSansKR-Bold.woff2) format('woff2'),
	url(../../fonts/NotoSansKr/NotoSansKR-Bold.woff) format('woff'),
	url(../../fonts/NotoSansKr/NotoSansKR-Bold.otf) format('opentype');
}

/* Basic */
html {
	overflow-x: hidden !important;
	overflow-y: auto !important;
	height: 100%;
	min-height: 100%;
	font-size: 16px;
	letter-spacing: -0.04em;
	line-height: 1;
}

html, body, div, span, iframe, h1, h2, h3, h4, h5, h6, p, a, em, img, q, strong, sub, sup, b, u, i, center, dl, dt, dd, ol, ul, li,
form, label, table, caption, tbody, tfoot, thead, tr, th, td, article, footer, header, menu, nav, section {
	margin: 0;
	padding: 0;
}

*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

article, footer, header, menu, nav, section {
	display: block;
}

body, table, th, td, button, select, input, textarea {
	font-family: 'Noto Sans KR', "맑은 고딕", "Malgun Gothic", Dotum, Arial, sans-serif !important;
	color: #202020;
	font-size: 1rem !important;
	font-weight: 300;
	-webkit-text-size-adjust: none;
}

textarea {
	line-height: 1.5 !important;
}

body {
	width: 100%;
	height: 100%;
	min-height: 100vh;
	background-color: #fff;
	margin: 0;
}

h1, h2, h3, h4, h5, h6 {
	letter-spacing: 0;
}

h1 {font-size: 3rem;}
h2 {font-size: 2.5rem;}
h3 {font-size: 2rem;}
h4 {font-size: 1.5rem;}
h5 {font-size: 1.375rem;}
h6 {font-size: 1.25rem;}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
	color: inherit;
	text-decoration: none;
}

ol, ul {
	list-style: none;
}

ul.style-square > li {
	position: relative;
	padding-left: 12px;
}
	
ul.style-square > li::before {
	position: absolute;
	top: 11px;
	left: 0px;
	content: "";
	display: block;
	width: 4px;
	height: 4px;
	background-color: #aaa;
}

img {
	border: 0;
	vertical-align: middle;
}

button {
	margin: 0px;
	padding: 0px;
	cursor: pointer;
	border: 0px;
	background: none;
	text-transform: none;
	line-height: normal;
}

em, var {
	font-style: normal;
	font-weight: normal;
}

a {
	cursor: pointer;
	color: #202020;
	text-decoration: none;
	outline: none;
}
a:active, a:hover, a:focus {
	text-decoration: none;
}
a:hover {
	color: #2971bd;
}

table {
	width: 100%;
	word-break: keep-all;
	border-collapse: collapse;
	border-spacing: 0;
	box-sizing: border-box;
}

label {
    display: inline-block;
    font-weight: 500 !important;
    margin-right: 8px;
    margin-left: 24px;
    margin-bottom: 1px;
}

label.arrow:before {
    content: "";
    background: url(../../images/mng/common/icon-arrow-right.svg) no-repeat -8px 3px;
    filter: invert(91%) sepia(7%) saturate(486%) hue-rotate(179deg) brightness(75%) contrast(82%);
    padding-right: 10px;
}

/* Overflow */
.overflow-x-auto {overflow-x: auto;}
.overflow-y-auto {overflow-y: auto;}

/* Text */
.fw-300 {font-weight: 300 !important;}
.fw-400 {font-weight: 400 !important;}
.fw-500 {font-weight: 500 !important;}
.fw-700 {font-weight: 700 !important;}

.text-xsm {font-size: 0.875rem !important;}
.text-sm {font-size: 0.938rem !important;}

.fc-primary {color: #2971bd;}

.white-space-nowrap {
	white-space: nowrap !important;
}

/* Border & Box */
.border-double-3 {
	background: #fff;
	border: 3px double #ddd;
}

/* Flex */
.row {
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: 0px;
	margin-left: 0px;
}

.row-df {
	display: flex;
	-ms-flex-direction: row;
	flex-direction: row;
	box-sizing: border-box;
}

.row-cc {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
}

.row-sb {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	box-sizing: border-box;
}

.margin-left-auto {
	margin-left: auto;
}

/* Button & Input & Select */
.form-group {
    margin-bottom: 0;
}

.form-control {
    display: block;
    width: 100%;
	height: calc(1.5em + 0.75rem);
    padding: 0.25rem 0.5rem;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.5;
    color: #202020;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ddd;
    border-radius: 0;
	box-shadow: none !important;
}

.form-control:focus {
	color: #202020;
	background-color: #fff;
	border-color: #909090;
	outline: none;
}

.form-control:disabled, .form-control[readonly] {
    background-color: #f2f2f2;
    opacity: 1;
}

.form-control-sm {
    height: calc(1.5em + 0.5rem);
    padding: 0.25rem 0.625rem;
	line-height: 1.2;
}

.input-group-prepend {margin-left: -1px;}

.input-group-text {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 0.25rem 0.625rem;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    color: #202020;
    text-align: center;
    white-space: nowrap;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 0;
}

::-webkit-input-placeholder {color: #a2a2a2 !important;}
:-ms-input-placeholder {color: #a2a2a2 !important;}
input::placeholder {color: #a2a2a2 !important;}

.btn {
	display: inline-block;
	color: #202020;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.2;
	text-align: center;
	vertical-align: middle;
	white-space: nowrap;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background-color: transparent;
	border: 1px solid transparent;
	border-radius: 0rem;
	padding: 0.25rem 0.75rem;
	margin-right: 0.25rem;
}

.btn:hover, .btn:focus, .btn.focus {
	color: #202020;
	text-decoration: none;
	outline: 0;
	box-shadow: none !important;
}

.btn-default {
	min-width: 64px;
	height: 40px;
	white-space: nowrap;
	background-color: #fff;
	border: 1px solid #ddd;
	padding: 0px 20px;
}

.btn-default:hover, .btn-default:active, .btn-default:focus {
	color: #f36441;
	background-color: #fff;
	border: 1px solid #ddd;
}

.btn-round {
	border-radius: 10rem;
	padding: 0px 16px;
}

.btn-primary {color: #fff; background-color: #2971bd !important; border: none !important;}
.btn-primary:hover, .btn-primary:active, .btn-primary:focus {color: #fff; background-color: #2464a8 !important; border: none !important;}

.btn-secondary {color: #fff; background-color: #576177 !important; border: none !important;}
.btn-secondary:hover, .btn-secondary:active, .btn-secondary:focus {color: #fff; background-color: #485062 !important; border: none !important;}

.btn-tertiary {color: #fff; background-color: #606060 !important; border: none !important;}
.btn-tertiary:hover, .btn-tertiary:active, .btn-tertiary:focus {color: #fff; background-color: #4b4b4b !important; border: none !important;}

.btn-gray {color: #fff; background-color: #909090 !important; border: none !important;}
.btn-gray:hover, .btn-gray:active, .btn-gray:focus {color: #fff; background-color: #7b7b7b !important; border: none !important;}

.btn-excel {color: #fff; background-color: #228d53 !important; border: none !important;}
.btn-excel:hover, .btn-excel:active, .btn-excel:focus {color: #fff; background-color: #107c41 !important; border: none !important;}

.btn-print {color: #fff; background-color: #00a0af !important; border: none !important;}
.btn-print:hover, .btn-print:active, .btn-print:focus {color: #fff; background-color: #008f9d !important; border: none !important;}

.btn-sms {color: #fff; background-color: #7552cc !important; border: none !important;}
.btn-sms:hover, .btn-sms:active, .btn-sms:focus {color: #fff; background-color: #6245a7 !important; border: none !important;}

.btn-toggle-search {color: #fff; background-color: #606060; border: none !important;}
.btn-toggle-search:hover, .btn-toggle-search:active, .btn-toggle-search:focus {color: #fff; background-color: #4b4b4b; border: none !important;}

.btn-sm {
	height: 32px;
	font-size: 0.938rem;
	font-weight: 400;
}

.btn-md {
	height: 36px;
	font-size: 0.938rem;
	font-weight: 400;
}

select:not([multiple]) {
	-moz-appearance: none;
	     appearance: none;
	-webkit-appearance: none;
	background-image: url(../../images/mng/icon-select.svg);
	background-size: 20px;
	background-position: calc(100% - 5px) 55%;
	background-repeat: no-repeat;
	padding-right: 26px;
}

/* Custom Radio */
.radio-custom {
	position: relative;
	padding: 0 0 0 22px;
	margin-bottom: 7px;
	margin-top: 0;
}

.radio-custom input[type="radio"] {
	opacity: 0;
	position: absolute;
	top: 50%;
	left: 3px;
	margin: -6px 0 0 0;
	z-index: 2;
	cursor: pointer;
}

.radio-custom input[type="radio"]:checked + label:after {
	content: '';
	position: absolute;
	top: 50%;
	left: 4px;
	margin-top: -5px;
	display: inline-block;
	font-size: 11px;
	line-height: 1;
	width: 10px;
	height: 10px;
	background-color: #555;
	border-radius: 50px;
	box-shadow: 0px 0px 1px #555;
}

.radio-custom input[type="radio"]:disabled {
	cursor: not-allowed;
}

.radio-custom input[type="radio"]:disabled:checked + label:after {
	color: #999;
}

.radio-custom input[type="radio"]:disabled + label {
	cursor: not-allowed;
}

.radio-custom input[type="radio"]:disabled + label:before {
	background-color: #eee;
}

.radio-custom label {
	cursor: pointer;
	font-weight: 300 !important;
	line-height: 1.2;
	text-align: left;
	margin-right: 16px;
	margin-bottom: 0;
}

.radio-custom label:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -9px;
	width: 18px;
	height: 18px;
	display: inline-block;
	border-radius: 50px;
	border: 1px solid #bbb;
	background: #fff;
}

/* Custom Checkbox */
.checkbox-custom {
	position: relative;
	padding: 0 0 0 25px;
	margin-bottom: 7px;
	margin-top: 0;
}

.checkbox-custom:last-child, .checkbox-custom:last-of-type {
	margin-bottom: 0;
}

.checkbox-custom input[type="checkbox"] {
	opacity: 0;
	position: absolute;
	top: 50%;
	left: 3px;
	margin: -6px 0 0 0;
	z-index: 2;
	cursor: pointer;
}

.checkbox-custom input[type="checkbox"]:checked + label:after {
	position: absolute;
	display: inline-block;
	content: "";
	background: url(../../images/mng/icon-check.svg) no-repeat 50% 50%;
	top: 50%;
	left: 2px;
	margin-top: -8px;
	font-size: 11px;
	line-height: 1;
	width: 16px;
	height: 16px;
	color: #202020;
}

.checkbox-custom input[type="checkbox"]:disabled {
	cursor: not-allowed;
}

.checkbox-custom input[type="checkbox"]:disabled:checked + label:after {
	color: #999;
}

.checkbox-custom input[type="checkbox"]:disabled + label {
	cursor: not-allowed;
}

.checkbox-custom input[type="checkbox"]:disabled + label:before {
	background-color: #eee;
}

.checkbox-custom label {
	cursor: pointer;
	font-weight: 300 !important;
	text-align: left;
	line-height: 1.2;
	margin-bottom: 0;
}

.checkbox-custom label:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -9px;
	width: 19px;
	height: 18px;
	display: inline-block;
	border-radius: 2px;
	border: 1px solid #bbb;
	background: #fff;
}

/* Icon */
.user-info:before {
    content: "";
    background: url(../../images/mng/icon-user.svg) no-repeat 0% 2px;
    filter: invert(42%) sepia(1%) saturate(0%) hue-rotate(183deg) brightness(103%) contrast(89%);
    padding-right: 24px;
}

.user-logout {
    padding: 0px 16px;
}

.user-logout:before {
    content: "";
    background: url(../../images/mng/icon-logout.svg) no-repeat 0% 50%;
    filter: invert(42%) sepia(1%) saturate(0%) hue-rotate(183deg) brightness(103%) contrast(89%);
    padding-right: 24px;
}

.location-home:before {
    content: "";
    background: url(../../images/mng/icon-home.svg) no-repeat 50% -2px;
    filter: invert(42%) sepia(1%) saturate(0%) hue-rotate(183deg) brightness(103%) contrast(89%);
    padding: 8px 16px;
}

.menu-home:before {
    content: "";
    background: url(../../images/mng/icon-home.svg) no-repeat 50%;
    filter: invert(1000%) sepia(0%) saturate(0%) hue-rotate(183deg) brightness(100%) contrast(100%);
    padding: 8px 16px;
    background-size: cover; 
}

.fa-chevron-up:before {
    content: "";
	background: url(../../images/mng/icon-top.svg) no-repeat 50% 50%;
	filter: invert(42%) sepia(1%) saturate(0%) hue-rotate(183deg) brightness(103%) contrast(89%);
    opacity: 1;
    padding: 0px 12px;
}

.icon-calendar:before {
    content: "";
    background: url(../../images/mng/icon-calendar.svg) no-repeat 50% 50%;
    padding: 0px 8px;
}

.arrow-right:before {
    content: "";
    background: url(../../images/mng/icon-arrow-right.svg) no-repeat -8px 3px;
    filter: invert(75%) sepia(0%) saturate(3271%) hue-rotate(148deg) brightness(92%) contrast(89%);
    padding-right: 8px;
}

.icon-search:before {
    content: "";
    background: url(../../images/mng/icon-search.svg) no-repeat -2px 1px;
    filter: invert(100%) sepia(0%) saturate(7430%) hue-rotate(167deg) brightness(120%) contrast(114%);
    padding-right: 20px;
}

.icon-excel:before {
    content: "";
    background: url(../../images/mng/icon-excel.svg) no-repeat 2px 3px;
    filter: invert(100%) sepia(0%) saturate(7430%) hue-rotate(167deg) brightness(120%) contrast(114%);
    padding-right: 24px;
}

.img-print:before {
    content: "";
    background: url(../../images/mng/icon-print-md.svg) no-repeat 50% 1px;
	filter: invert(36%) sepia(56%) saturate(1805%) hue-rotate(155deg) brightness(102%) contrast(103%);
    padding-right: 24px;
}

.img-print:hover, .img-print:active, .img-print:focus {
	filter: invert(50%) sepia(29%) saturate(736%) hue-rotate(149deg) brightness(83%) contrast(98%);
}

.icon-print:before {
    content: "";
    background: url(../../images/mng/icon-print.svg) no-repeat 0% 50%;
    filter: invert(100%) sepia(0%) saturate(7430%) hue-rotate(167deg) brightness(120%) contrast(114%);
    padding-right: 24px;
}

.icon-sms:before {
    content: "";
    background: url(../../images/mng/icon-sms.svg) no-repeat 0% 2px;
    filter: invert(100%) sepia(0%) saturate(7430%) hue-rotate(167deg) brightness(120%) contrast(114%);
    padding-right: 24px;
}

/* 20231216 추가 */
.icon-new {
	display: inline-block;
	width: 13px;
	height: 13px;
	background: url(../../images/mng/common/icon-new-01.png) no-repeat 50% 50%;
	margin-left: 4px;
}

.icon-attach { /* 20231221 수정 */ /* 20231227 수정 */
	position: relative;
	top: 2px;
	display: inline-block;
	width: 16px;
	height: 16px;
	background: url(../../images/mng/common/icon-attach.svg) no-repeat 10% 50%;
	filter: invert(39%) sepia(53%) saturate(637%) hue-rotate(155deg) brightness(99%) contrast(91%);
	background-size: 120%;
}

.icon-lock { /* 20231227 추가 */
	position: relative;
	top: 3px;
	display: inline-block;
	width: 16px;
	height: 18px;
	background: url(../../images/mng/common/icon-lock.svg) no-repeat 50% 50%;
	filter: invert(55%) sepia(89%) saturate(579%) hue-rotate(13deg) brightness(97%) contrast(99%);
	background-size: 120%;
}

.icon-calendar:hover{
    cursor:pointer;
}