:root {
	--color-black: #000000;
	--color-white: #FFFFFF;
	--color-brand: #19479E;
	--color-brand-dark: #1A2D62;
	--color-brand-light: #0273BB;
	--color-brand-lighter: #8CA3CF;
	--color-title: #333333;
	--color-text: #585858;
	--height-header-top: 40px;
	--height-header-bottom: 80px;
	--height-footer: 84px;
	--padding-main-top: 44px;
	--body-min-width: 1024px;
	/* container and sidebar width */
	--container-width: 1500px; 
	--sidebar-width: 275px; 
	--sidebar-margin-right: 44px;
}
body {
	width: 100%;
	font-family: "Pretendard", "Apple SD Gothic Neo", "Malgun Gothic", "Nanum Gothic", "Noto Sans", "sans-serif", "Meiryo UI";
	color: var(--color-black);
	font-size: 14px;
	line-height: 1;
}
body.page-login,
body.main,
body.page{
    min-width: var(--body-min-width);
    min-height: 700px;
}

/* header */
.site-header{
	position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    min-width: var(--body-min-width);
	background: var(--color-white);
	box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.12);
	z-index: 100;
}
.site-header .header-top{
	display: flex;
	align-items: center;
	width: 100%;
	height: var(--height-header-top);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.2;
	padding: 0 20px;
	background: #F4F4F4;
}
.header-top .text-hello{
	color: var(--color-black);
}
.header-top .text-hello .name{
	font-weight: 700;
	color: var(--color-brand-dark);
}
.header-top .sub-menu{
	display: flex;
	align-items: center;
	column-gap: 36px;
	margin-left: auto;
	color: var(--color-text);
}
.header-top .sub-menu img{
	margin-right: 7px;
}
.site-header .header-bottom{
	display: flex;
	align-items: center;
	width: 100%;
	height: var(--height-header-bottom);
	padding: 0 20px;
}
.header-bottom .logo-wrap{
	display: flex;
	align-items: center;
	column-gap: 16px;
}
.header-bottom .logo{
	font-size: 18px;
	font-weight: 900;
	line-height: 24px;
	color: var(--color-brand-dark);
}
.header-bottom .logo-company{
	position: relative;
	height: 40px;
	padding-left: 17px;
}
.header-bottom .logo-company:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 1px;
	height: 100%;
	background: #BBBBBB;
}
.header-bottom .logo-company img{
	width: auto;
	height: 100%;
}
.header-bottom .site-menu,
.header-bottom .main-menu{
	display: flex;
	align-items: center;
}
.header-bottom .site-menu{
	margin-left: auto;
}
.header-bottom .main-menu{
	column-gap: 64px;
	margin-right: 48px;
}
.main-menu .text-small{
	font-size: 13px;
	font-weight: 400;
	line-height: 16px;
	color: var(--color-brand-light);
}
.main-menu .text-menu{
	font-size: 16px;
	font-weight: 700;
	line-height: 24px;
	color: var(--color-black);
}
.main-menu > li > .menu-item{    
	position: relative;
	display: flex;
    height: var(--height-header-bottom);
    flex-direction: column;
    justify-content: center;
}
.main-menu > li > .menu-item.active:after{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: var(--color-brand-light);
}
.main-menu li{
	position: relative;
}
.main-menu li.has-child > .menu-item{
	background: url(../assets/images/ico-arrow-right-gray.svg) no-repeat 92% center;
}
.main-menu li > .sub-menu{
	display: none;
    position: absolute;
    top: 0;
	right: -163px;
    width: 163px;
    padding: 9px 0;
    background-color: #ffffff;
    border: 1px solid #ccc;
}
.main-menu li > .sub-menu .menu-item{
	display: block;
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	color: #585858;
	padding: 8px 16px;
}
.main-menu > li > .sub-menu{
	top: var(--height-header-bottom);
    left: 50%;
    margin-left: -82px;
	border-top: none;
}
.main-menu > li > .sub-menu li.menu-opened > .menu-item,
.main-menu > li > .sub-menu .menu-item.active,
.main-menu > li > .sub-menu .menu-item:hover{
	color: var(--color-brand);
	background-color: #eee;
}
.header-bottom .system-menu{
	position: relative;
	height: 40px;
	padding-left: 32px;
}
.header-bottom .system-menu:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 1px;
	height: 100%;
	background: #BBBBBB;
}
.system-menu .menu-item{
	display: block;
	font-size: 15px;
	font-weight: 700;
	line-height: 38px;
	color: var(--color-brand-dark);
	padding: 0 18px;
	border: 1px solid var(--color-brand-dark);
	border-radius: 24px;
}

/* main */
body.main .site-main,
body.page .site-main{
    min-height: calc(100% - var(--height-header-top) - var(--height-header-bottom));
}
body.main .site-main{
    padding-top: 50px;
}
body.page .site-main{
	padding-top: var(--padding-main-top);
}
.site-main .container{
	position: relative;
	width: 100%;
	max-width: var(--container-width);
	padding: 0 20px;
	margin: 0 auto;
}
body:not(.main) .site-main .container{
	display: flex;
}

/* footer */
.site-footer{
	width: 100%;
    min-width: var(--body-min-width);
	height: var(--height-footer);
	font-size: 13px;
	line-height: 1.2;
	padding: 20px;
    background: var(--color-white);
	border-top: 2px solid #D9D9D9;
	z-index: 100;
}
.site-footer .footer-inner{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
	height: 100%;
}
.site-footer .footer-info{
    display: flex;
    align-items: center;
    column-gap: 16px;
    margin-right: auto;
}
.footer-info .logo{
	margin-right: 9px;
}
.site-footer .copyright{
	color: var(--color-text);
}

/* page */
.site-content{
    position: relative;
	width: calc(100% - var(--sidebar-width) - var(--sidebar-margin-right));
    background: #fff;
	transition: width 0.1s;
}
.site-sidebar.close + .site-content{
	width: 100%;
}
.site-tree + .site-content{
	width: calc(100% - var(--sidebar-width) - var(--sidebar-margin-right) - 336px);
}
.site-sidebar.close + .site-tree + .site-content{
	width: calc(100% - 336px);
}
.site-content h1 {
    font-size: 30px;
    margin: 20px 0 15px;
    line-height: 1.6;
}
.site-content h2 {
    font-size: 24px;
    margin: 20px 0 10px;
    line-height: 1.59375;
}
.page-header{
	position: relative;
	padding-top: 20px;
	padding-bottom: 16px;
	border-bottom: 3px solid #BBBBBB;
}
.page-header .page-title{
	font-size: 24px;
	font-weight: 700;
	line-height: 32px;
	color: var(--color-black);
}
.page-content .page-header{
	overflow: hidden;
    padding-bottom: 2px;
    border-bottom: none;
}
.page-content .page-header + .pq-grid{
    margin-top: 10px;
}
.page-content .page-header .page-title{
	font-size: 20px;
	font-weight: 600;
	color: var(--color-brand);
}
.page-header .breadcrumbs{
	position: absolute;
	top: -18px;
	right: 0;
	display: flex;
	align-items: center;
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	color: var(--color-black);
}
.page-header .breadcrumbs .home{
	width: 13px;
	height: 12px;
	background: url(../assets/images/ico-home.svg) no-repeat center;
	background-size: 13px 12px;
}
.page-header .breadcrumbs > span:before{
	content: '';
	display: inline-block;
	width: 6px;
	height: 10px;
    margin: 7px 12px 0 12px;
	background: url(../assets/images/ico-arrow-right.svg) no-repeat center;
	background-size: 6px 10px;
    vertical-align: top;
}
.page-header .btn-print {
    position: absolute;
    display: block;
    text-indent: -9999px;
    right: 0;
    bottom: 16px;
    padding: 0;
    border: 1px solid #BBBBBB;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    width: 32px;
    height: 32px;
}
.page-header .btn-print:before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: url(../assets/images/ico-print.svg) no-repeat 0 0;
}

body.main .page-content,
body.page .page-content{
	padding-top: 20px;
	padding-bottom: 100px;
}
.page-content p {
    font-size: 15px;
	font-weight: 400;
    line-height: 24px;
	color: var(--color-title);
    margin: 24px 0;
}

/* sidebar */
.site-sidebar{
	position: -webkit-sticky;
    position: sticky;
    top: 164px;
    display: flex;
    flex-direction: column;
    width: var(--sidebar-width);
	height: calc(100vh - var(--height-header-top) - var(--height-header-bottom) - var(--padding-main-top));
    margin-right: var(--sidebar-margin-right);
	z-index: 1;
	transition: all 0.1s;
}
.site-sidebar.close{
	width: 0;
	margin-right: 0;
}
.site-sidebar.close + .site-content{
	width: 100%;
}
.site-sidebar.close .sidebar-title, 
.site-sidebar.close .sidebar-navigation{
	opacity: 0;
} 
.site-sidebar .sidebar-title{   
	font-size: 24px;
	font-weight: 400;
	line-height: 32px;
	color: var(--color-black);
	padding-bottom: 16px;
	border-bottom: 3px solid var(--color-brand-light);
}
.site-sidebar .sidebar-title p{
	overflow: hidden;
}
.site-sidebar .sidebar-title .sub{
	font-size: 16px;
	font-weight: 400;
	line-height: 1;
	color: var(--color-brand-light);
	margin-bottom: 4px;
}
.site-sidebar .button-sidebar{
    position: absolute;
    top: 58px;
	right: -14px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 25px;
	height: 25px;
	background: var(--color-brand-light);
	border-radius: 50%;
}
.site-sidebar .button-sidebar img{
	width: 15px;
}
.site-sidebar.close .button-sidebar{
	position: fixed;
	top: calc(var(--height-header-top) + var(--height-header-bottom) + var(--padding-main-top) + 58px);
	left: 0;
}
.site-sidebar.close .button-sidebar:before{
	content: '';
    position: absolute;
    top: 0;
    left: 0px;
    display: block;
    width: 12px;
    height: 25px;
    background: var(--color-brand-light);
    z-index: -1;
}
.site-sidebar.close .button-sidebar img{
	transform: rotate(180deg);
}
.site-sidebar .sidebar-navigation{
    flex: 1;
	padding: 16px 10px 16px 0;
    overflow-y: auto;
	overflow-x: hidden;
}
.sidebar-navigation .sub-menu{
	height: 0;
	margin-top: 4px;
	overflow: hidden;
}
.sidebar-navigation .open > .sub-menu{
	height: auto;
	overflow: visible;
}
.sidebar-navigation a{
	position: relative;
	display: block;
}
.sidebar-navigation .menu-item.has-child > a:after{
	content: '';
	position: absolute;
	top: calc(50% - 8px);
	right: 0;
	width: 14px;
	height: 16px;
	background: url(../assets/images/ico-menu-arrow.svg) no-repeat center / cover;
}
.sidebar-navigation .menu-item.has-child.open > a:after{
	transform: rotate(180deg);
}
.sidebar-navigation .menu-item.active > a{
	background: #EEEEEE;
}
.sidebar-navigation > .menu-item > a{
	font-size: 18px;
	font-weight: 400;
	line-height: 26px;
	padding: 8px 16px;
}
.sidebar-navigation > .menu-item > .sub-menu > .menu-item > a{
	font-size: 16px;
	font-weight: 700;
	line-height: 24px;
	color: #515E84;
	padding: 6px 16px 6px 26px;
}
.sidebar-navigation .sub-menu .sub-menu > .menu-item > a{
	font-size: 14px;
	font-weight: 400;
	line-height: 21px;
	color: #555555;
	padding: 5px 16px 5px 36px;
}
.site-tree{
    position: sticky;
    top: 189px;
	width: 300px;
	height: calc(100vh - var(--height-header-top) - var(--height-header-bottom) - var(--padding-main-top) - 25px);
	padding-bottom: 40px;
	margin-right: 36px;
	padding-right: 40px;
	font-size: 14px;
	color: #555;
	border-right: 1px solid #D9D9D9;
	overflow-y: auto;
}
.page-content .site-tree{
    position: static;
	width: 100%;
	height: fit-content;
	padding-bottom: 10px;
	margin-right: 0;
	padding-right: 0;
	border-right: none;
}
.site-tree .tree-title{
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    column-gap: 17px;
	font-size: 24px;
	font-weight: 400;
	line-height: 32px;
	color: #000;
}
.site-tree .jstree-default .jstree-anchor{
	height: auto;
	white-space: normal;
	padding-left: 27px;
}
.site-tree .jstree-default .jstree-anchor > .jstree-icon{position: absolute;top: 0;left: 25px;}
.site-tree .jstree-default .jstree-node{
	position: relative;
	z-index: 0;
	background: none;
}
.site-tree .jstree-default .jstree-node:before{
	content: '';
    display: block;
    position: absolute;
    top: 1px;
    left: 11px;
    width: 1px;
    height: calc(100% - 1px);
    border-left: 1px dotted #999;
    z-index: -1;
}
.site-tree .jstree-default .jstree-node.jstree-last::before{
	height: 12px;
}
.site-tree .jstree-default .jstree-ocl{position: relative;background: none !important;}
.site-tree .jstree-default .jstree-ocl:before{
	content: '';
    display: block;
    position: absolute;
    top: 12px;
    left: 50%;
    width: 50%;
    height: 1px;
    border-top: 1px dotted #999;
}
.site-tree .jstree-default .jstree-ocl:after{
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
}
.site-tree .jstree-default .jstree-open>.jstree-ocl:after{
	background: url(../assets/images/ico-tree-open.svg) no-repeat;
    background-position: 5px 5px;
}
.site-tree .jstree-default .jstree-closed>.jstree-ocl:after{
	background: url(../assets/images/ico-tree-closed.svg) no-repeat;
    background-position: 0px 4px;
}
.site-tree .jstree-default .jstree-themeicon{
	background: url(../assets/images/ico-tree-folder.svg) no-repeat;
    background-position: 4px 5px;
}
.site-tree .jstree-default .jstree-file{
	background: url(../assets/images/ico-tree-file.svg) no-repeat;
    background-position: 6px 5px;
}


/* class */
.text-bold{
	font-weight: 700;
}
.color-title{
	color: var(--color-title);
}
.color-text{
	color: var(--color-text);
}
.title {
    font-weight: bold;
    text-align: left;
}


/* modal */
body.layer-open{
	overflow: hidden;
}
.dim-layer{
	display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
}
.dim-layer .dimBg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	background: #000;
	opacity: 0.4;
}
.pop-layer{
    position: fixed;
    top: 50%;
    left: 50%;
	transform: translate(-50%, -50%);
    width: 800px;
    height: auto;
    background-color: #fff;
    box-shadow: 0 12px 24px 0 rgba(0, 0, 0, 0.2);
    z-index: 100;
}
.pop-layer .pop-container{
	padding: 32px;
}
.pop-layer .pop-header .title{
	font-size: 18px;
	font-weight: 700;
	line-height: 1.4;
	color: var(--color-title);
	margin-top: 4px;
	margin-bottom: 13px;
	padding: 0 13px;
}
.pop-layer .pop-main{
	font-size: 15px;
	font-weight: 400;
	line-height: 24px;
	color: var(--color-title);
	border-top: 1px solid var(--color-brand);
	border-bottom: 1px solid var(--color-brand);
}
.pop-layer .pop-main .meta{
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	color: var(--color-text);
	padding: 8px 13px;
}
.pop-layer .pop-main .text{
	height: 287px;
	padding: 18px 13px;
	border-top: 1px solid var(--color-brand-lighter);
	border-bottom: 1px solid var(--color-brand-lighter);
	overflow-y: auto;
}
.pop-layer .pop-main .attach{
    display: flex;
    column-gap: 20px;
	padding: 8px 13px;
}
.pop-layer .pop-main .attach-list{
	flex: 1;
}
.pop-layer .btn-wrap{
	margin-top: 20px;
	text-align: right;
}
.pop-layer .btn-layerClose{
	display: inline-block;
	width: 160px;
	height: 48px;
	font-size: 18px;
	font-weight: 700;
	line-height: 48px;
	color: #fff;
	background: var(--color-brand);
	border-radius: 12px;
	text-align: center;
}

/* component */
/* table */
table {
	margin: 10px 0;
	padding: 0;
	border-spacing: 0;
	border-collapse: collapse;
	width: 100%;
	border-top: 2px solid var(--color-brand);
	border-bottom: 1px solid #CCCCCC;
}
th em {
    color: #E32C7B;
    font-size: 14px;
}
table th,
table td {
	border-bottom: 1px solid #CCCCCC;
	padding: 10px;
	text-align: center;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.7;
}
table tbody th,
table tbody td{
	text-align: left;
}
table tbody th {
	background-color: #F7F7F7;
}
table thead td, 
table thead th {
    position: relative;
    background-color: #F7F7F7;
}
table thead td:before,
table thead th:before {
	content: '';
	width: 1px;
	height: calc(100% - 20px);
	position: absolute;
	right: 0;
	top: 10px;
	background-color: #CCCCCC;
}
table thead td:last-child:before,
table thead th:last-child:before {
	display: none;
}
table thead th[rowspan],
table thead td[rowspan],
table tbody th[rowspan],
table tbody td[rowspan]{
	vertical-align: middle !important;
}
table tbody th label,
table tbody td label {
	margin-right: 15px;
}
table tbody th label span,
table tbody td label span,
table tbody th label input,
table tbody td label input{
	vertical-align: middle;
}
table tbody th label:last-child,
table tbody td label:last-child {
	margin-right: 0;
}
table tbody th label + span + input,
table tbody td label + span + input {
	margin-left: 10px;
}
table tbody th .checkbox-wrap,
table tbody td .checkbox-wrap {
	margin-top: -10px;
	margin-bottom: -10px;
}
table tbody th .checkbox-wrap label,
table tbody td .checkbox-wrap label {
	display: inline-block;
	padding: 10px 0;
}
table tbody th .checkbox-wrap.col-1 label,
table tbody td .checkbox-wrap.col-1 label {
	margin-right: 0;
	display: block;
}
table tbody th .checkbox-wrap.col-2,
table tbody td .checkbox-wrap.col-2 {
	overflow: hidden;
}
table tbody th .checkbox-wrap.col-2 label,
table tbody td .checkbox-wrap.col-2 label {
	height: 30px;
	width: 49%;
	margin-right: 1%;
	float: left;
	margin-right: 0;
}
table tbody th.description,
table tbody td.description {
	text-align: left;
	padding: 23px 35px;
}
.output-table table tbody th {
	width: 170px;
}
.output-table table tbody td {
	padding: 15px 30px;
}
table.table-sm tbody th,
table.table-sm tbody td {
	padding: 4px;
}
table caption {
	overflow: hidden;
	width: 1px;
	height: 1px;
	padding: 0;
	margin-top: -1px;
	font-size: 0;
	line-height: 0;
	text-indent: -9999px;
}
table + .btns {
	margin-top: 30px;
	text-align: center;
}
table + .btns + table{
	margin-top: 50px;
}
.form-table{
	position: relative;
    padding-top: 16px;
}
.form-table .red{
    color: #E32C7B;
}
.form-table .req{
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	color: #555;
	margin-bottom: 20px;
	text-align: right;
}
.form-table .btn-table{
	position: absolute;
    top: 16px;
    right: 0px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
	background: var(--color-brand-light);
	text-indent: -9999px;
}
.form-table .btn-table:before{
	content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    width: 15px;
    height: 15px;
	background: url(../assets/images/ico-sidebar.svg) no-repeat;
    transform: rotate(90deg);
}
.form-table .table-wrap{
	margin-bottom: 60px;
}
.form-table + .view-list {
	margin-top: 50px;
}
.form-table .btn-table + .table-wrap {
    display: none;
    clear: both;
}
.form-table .btn-table.active + .table-wrap {
    display: block;
}
.form-table + .table-sm {
	margin-top: 40px;
}
.form-table table tbody th,
.form-table table tbody td {
	text-align: left;
    vertical-align: top;
} 
.form-table table tbody th{
	padding: 13px 14px;
	color: #000;
}
.form-table table tbody td{
	padding: 12px 14px;
	color: #555;
    line-height: 1.8;
}
.form-table .inner-table-wrap {
	margin: -13px -14px;
	padding: 13px 14px;
}
.form-table .inner-table-wrap table{
	margin: 0;
	border-top: none;
	border-bottom: none;
}
.form-table .inner-table-wrap table th, 
.form-table .inner-table-wrap table td{
	font-size: 13px;
	color: #555;
	padding: 3px 0 9px 0;
	border-bottom: none;
}
.form-table .inner-table-wrap table tr:last-of-type th, 
.form-table .inner-table-wrap table tr:last-of-type td{
	padding-bottom: 3px;
} 
.form-table select,
.form-table .bootstrap-select select.selectpicker + .btn.dropdown-toggle{
	color: #555;
}
.form-table .btns .btn,
.form-table .btn.btn-save,
.form-table .btn.btn-cancel{
	min-width: 120px;
}
.form-table td .btn.btn-sm,
.form-table .btn-search,
.form-table .btn-new,
.form-table .btn.fileinput-button{
    display: inline-block;
    padding: 0 8px;
    font-size: 13px;
	font-weight: 400;
    line-height: 26px;
    color: var(--color-brand-light);
    border-radius: 3px;
    background: #EFF5FF;
    border: 1px solid var(--color-brand-light);
    text-align: center;
}
.form-table a.atitle,
.form-table .btn-search + span,
.MultiFile-label > .MultiFile-title{
    display: inline-block;
	font-size: 13px;
	font-weight: 400;
    line-height: 24px;
	color: #1A2D62;
    text-decoration: underline;
}
.form-table .btn-delete{
	float: none !important;
    margin-left: 10px;
    margin-top: 6px;
    border: 0;
    background-color: transparent;
    padding: 0;
    cursor: pointer;
    height: 18px;
    width: 18px;
    background: url(/common/images/ico-delete.png) no-repeat center / cover;
    text-indent: -9999px;
}
.form-table .file-list,
.form-table .uploaded-list{
	width: auto !important;
	background-color: transparent !important;
}
.form-table .uploaded-list a{
    display: inline-block;
	font-size: 13px;
	font-weight: 400;
    line-height: 24px;
	color: #1A2D62;
    text-decoration: underline;
}
.file-list > .MultiFile-label:first-child,
.uploaded-list > li:first-of-type{margin-top: 10px;}
.file-list > .MultiFile-label,
.uploaded-list > li{padding: 0 10px;}
.MultiFile-label{
	display: flex;
	align-items: center;
	column-gap: 15px;
}
.MultiFile-label .MultiFile-label{display: inline-block;}
.MultiFile-label .MultiFile-remove{order: 1;}
.MultiFile-label .MultiFile-remove img{
    width: 18px;
	float: none !important;
}

/* button */
.btn, .form-table .btns .btn {
    display: inline-block;
    padding: 10px 32px;
    margin-bottom: 0;
    font-size: 18px;
    line-height: 26px;
    font-weight: 700;
    background-color: #F4F8FF;
	border: 1px solid var(--color-brand);
    border-radius: 10px;
    color: var(--color-brand-dark);
}
.btn.btn-primary, .form-table .btns .btn.btn-primary{
    color: #fff;
	background: var(--color-brand-dark);
	border: 1px solid var(--color-brand-dark);
}
.btn.btn-subPrimary,
.form-table .btns .btn.btn-copy,
.form-table .btns .btn.btn-print,
.form-table .btns .btn.btn-list,
.form-table .btns .btn.btn-subPrimary{
	color: #fff;
	background: var(--color-brand-light);
	border-color: var(--color-brand-light);
}
/* input */
textarea{
	width: 100%;
    height: 98px;
    padding: 10px;
    border: 1px solid #999;
    border-radius: 3px;
    resize: none;
    outline: none;
    vertical-align: top;
}
input[type="password"], input[type="text"]{
	height: 28px;
    padding: 5px;
    border: 1px solid #999;
    border-radius: 3px;
    outline: none;
    vertical-align: top;
}
textarea:focus, input[type="password"]:focus, input[type="text"]:focus{
	border-color: var(--color-brand-light);
}
select, .bootstrap-select select.selectpicker + .btn.dropdown-toggle{
    height: 28px;
    padding: 0 22px 0 10px;
	font-size: 14px;
    font-weight: 400;
    color: #000;
    border: 1px solid #999;
    border-radius: 3px;
	background: url(../assets/images/ico-dropdown.svg) no-repeat calc(100% - 10px) center;
	background-size: 7px 4px;
    appearance: none;
    -webkit-appearance: none;
}
.bootstrap-select select.selectpicker + .btn.dropdown-toggle{background: none !important;}
select:disabled, .bootstrap-select select.selectpicker:disabled + .btn.dropdown-toggle{
	color: #999;
    border-color: #ccc;
	background-color: #eee;
	background-image: url(../assets/images/ico-dropdown-disabled.svg);
}
input[type="checkbox"] + label,
input[type="radio"] + label{
	position: relative;
	padding-left: 18px;
}
input[type="checkbox"] + label:before,
input[type="radio"] + label:before{
	content: "";
	position: absolute;
	top: 2px;
	left: 0;
	display: inline-block;
	width: 13px;
	height: 13px;
	border: 1px solid #999;
	border-radius: 2px;
	vertical-align: middle;
}
input[type="radio"] + label:before{
	border-radius: 50%;
}
input[type="checkbox"]:checked + label:before,
input[type="radio"]:checked + label:before{
    border-color: var(--color-brand);
	background-color: var(--color-brand);
}
input[type="checkbox"]:checked + label:before{
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12 5c-.28 0-.53.11-.71.29L7 9.59l-2.29-2.3a1.003 1.003 0 00-1.42 1.42l3 3c.18.18.43.29.71.29s.53-.11.71-.29l5-5A1.003 1.003 0 0012 5z'/%3e%3c/svg%3e");
}
input[type="radio"]:checked + label:before{
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 13 13' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='6.5' cy='6.5' r='3.5'/%3e%3c/svg%3e");
}
input[type="checkbox"]:disabled + label:before{
    border-color: #ccc;
	background-color: #eee;
}
textarea + select, select + select, input + select, textarea + span, select + span, input + span, textarea + input, select + input, input + input, .btn + .btn{
	margin-left: 5px;
}
.width-date{
	width: 120px;
}
/* tab */
.tabs{
	display: flex;
	justify-content: flex-start;
	align-items: flex-end;
	column-gap: 6px;
	padding: 0 18px;
	border-bottom: 3px solid var(--color-brand-light);
	overflow-x: auto;
}
.tabs li{
	flex: 0 0 auto;
}
.tabs li a{
	display: block;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: #222;
	padding: 13px 32px;
	background: #D9D9D9;
	border: 1px solid #CCCCCC;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
}
.tabs li a.active{
	font-weight: 700;
    line-height: 26px;
	color: #fff;
	background: var(--color-brand);
	border-color: var(--color-brand);
}

/* datepicker */
.ui-datepicker table{
	border-bottom: none;
}
.ui-datepicker .ui-datepicker-header{
    background: #fff;
    border: none;
}
.ui-datepicker th{
    font-family: 'Pretendard';
	padding: .3em;
}
.ui-datepicker select.ui-datepicker-month, .ui-datepicker select.ui-datepicker-year{
    font-family: 'Pretendard';
    font-size: 14px;
	background-color: #fff;
}
.ui-datepicker td span, .ui-datepicker td a.ui-state-default{
    font-family: 'Pretendard';
    background: #fff;
    border-color: transparent;
    text-align: center;
	color: #000;
}
.ui-datepicker td a.ui-state-hover{
	color: #fff;
	background: var(--color-brand-lighter)
}
.ui-datepicker td a.ui-state-active{
	color: #fff;
	background: var(--color-brand);
}
.ui-datepicker td.ui-datepicker-today a.ui-state-default{
	color: #000;
	background: #fff;
	border-color: var(--color-brand-lighter);
}
.ui-datepicker .ui-datepicker-buttonpane button{
    font-family: 'Pretendard';
    font-size: 14px;
	background: #eee;
}

/* class */
.width-full{
	width: 100%;
}
.vertical-top{
    vertical-align: top;
}