@charset "utf-8";
/* CSS Document */

/* ------------------------- Sidebar : Start ------------------------- */
.sidebar {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 10;
    width: 240px;
    padding: 40px;
    border-right: 1px solid #E3E3E3;
    background: #FFFFFF;
}
.sidebar .logo {
    display: block;
    font-family: 'Montserrat';
    font-size: 20px;
    font-weight: 700;
    color: #333333;
}



.sidebar .gnb {
    margin-top: 56px;
}
.gnb .depth {
    display: block;
}
.gnb .depth.one {
    margin-bottom: 40px;
}
.gnb .depth .ico {
    width: 24px;
    height: 24px;
    margin-right: 24px;
}
.gnb .depth .ico-menu-01 {
    background: url(../images/ico-menu-01-default-24px.svg) no-repeat center / 100%;
}
.gnb .depth .ico-menu-02 {
    background: url(../images/ico-menu-02-default-24px.svg) no-repeat center / 100%;
}
.gnb .depth .fz-16 {
    color: #777777;
}
.gnb .depth.selected .fz-16,
.gnb .depth:hover .fz-16 {
    color: #333333;
}



.user .comp-dropdown {
    width: 100%;
}
.user .dropdown-toggle {
    display: flex;
    align-items: center;
    width: 100%;
    border: none;
}
.user .comp-dropdown.open .dropdown-toggle {
    border: none;
    box-shadow: none;
}


.user .dropdown-toggle .box-left {
    flex: 0 1 auto;
    flex-basis: 40px;
}
.user .dropdown-toggle .thumb {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 16px;
    background: url(../images/img-thumb-40px.svg) no-repeat center / 100%;
    border-radius: 12px;
}
.user .dropdown-toggle .box-center {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.user .dropdown-toggle .box-right .ico-arrow {
    width: 24px;
    height: 24px;
    background: url(../images/ico-arrow-default-24px.svg) no-repeat center / 100%;
    transform: rotate(-90deg);
    border-radius: 4px;
}
.user .dropdown-toggle .box-right .ico-arrow:hover,
.user .comp-dropdown.open .dropdown-toggle .box-right .ico-arrow {
    background-color: #EEEEEE;
}
/* ------------------------- Sidebar : End ------------------------- */





/* ------------------------- Content : Start ------------------------- */
.content {
    width: calc(100% - 240px);
    margin-left: 240px;
    background: #FAFAFA;
}



/********** Content-Header : Start **********/
.content-header {
    padding: 48px 48px 40px;
}
/********** Content-Header : End **********/



/********** Content-Body : Start **********/
.content-body {
    padding: 0 48px 40px 48px;
}



/* Wrap-Section : Start */
.wrap-section {
    margin-bottom: 40px;
    border: 1px solid #CCCCCC;
    border-radius: 16px;
    background: #FFFFFF;
}
.box-header,
.box-body,
.box-footer {
    display: flex;
}
.box-header,
.box-footer {
    padding: 24px 32px;
}
.box-header {
    border-bottom: 1px solid #CCCCCC;
}
.box-footer {
    border-top: 1px solid #CCCCCC;
}
.box-left,
.box-center,
.box-right {
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    gap: 8px;
}
.box-left {
    justify-content: flex-start;
}
.box-center {
    justify-content: center;
}
.box-right {
    justify-content: flex-end;
}
/* Wrap-Section : End */



/* Wrap-Tbl : Start */
.wrap-tbl .box-body {
    padding: 16px 0;
}
.tbl {
    width: 100%;
}
.tbl dl {
    display: flex;
}
.tbl dl dt {
    flex-basis: 200px;
    padding: 16px 32px;
}
.tbl dl dd {
    flex-grow: 1;
    flex-basis: calc(50% - 200px);
}
.form-group {
    padding: 8px 28px 8px 16px;
}
.form-group > * {
    margin: 8px 4px !important;
}
.comp-txt {
    display: flex;
    align-items: center;
    min-height: 40px;
    line-height: 1.5;
}
span.comp-txt {
    display: inline-flex;
}
/* Wrap-Tbl : End */



/* Wrap-Datagrid : Start */
.pagenation {
    display: flex;
    gap: 16px;
}
.page-nav,
.page-num-group {
    display: flex;
}
.page-nav .btn-nav,
.page-nav .page-num {
    width: 40px;
    height: 40px;
    padding: 11px 7px;
    margin: 0 4px;
    border: 1px solid #BBBBBB;
    border-radius: 8px;
    text-align: center;
}
.page-nav .btn-nav:disabled {
    border: 1px solid #DDDDDD;
    background: #EEEEEE;
}
.page-nav .btn-nav.first {
    margin-left: 0;
}
.page-nav .btn-nav.first .ico {
    background: url(../images/ico-first-default-16px.svg) no-repeat center / 100%;
}
.page-nav .btn-nav.first:disabled .ico {
    background: url(../images/ico-first-disabled-16px.svg) no-repeat center / 100%;
}
.page-nav .btn-nav.prev {
    margin-right: 16px;
}
.page-nav .btn-nav.prev .ico {
    background: url(../images/ico-prev-default-16px.svg) no-repeat center / 100%;
}
.page-nav .btn-nav.prev:disabled .ico {
    background: url(../images/ico-prev-disabled-16px.svg) no-repeat center / 100%;
}
.page-nav .btn-nav.next {
    margin-left: 16px;
}
.page-nav .btn-nav.next .ico {
    background: url(../images/ico-next-default-16px.svg) no-repeat center / 100%;
}
.page-nav .btn-nav.next:disabled .ico {
    background: url(../images/ico-next-disabled-16px.svg) no-repeat center / 100%;
}
.page-nav .btn-nav.last {
    margin-right: 0;
}
.page-nav .btn-nav.last .ico {
    background: url(../images/ico-last-default-16px.svg) no-repeat center / 100%;
}
.page-nav .btn-nav.last:disabled .ico {
    background: url(../images/ico-last-disabled-16px.svg) no-repeat center / 100%;
}
.page-nav .page-num {
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
    color: #777777;
}
.page-nav .page-num.selected {
    font-weight: 700;
    color: #333333;
}


/* Ico-Empty-Data : Start */
.ico-empty-data {
    width: 120px;
    height: 120px;
    background: url(../images/ico-empty-data-120px.svg) no-repeat center / 100%;
}
/* Ico-Empty-Data : Start */

/* Wrap-Datagrid : End */



/* Wrap-Filter, Comp-Filter : Start */
.wrap-filter,
.comp-filter {
    display: flex;
    border-bottom: 1px solid #CCCCCC;
}
.wrap-filter .box-left,
.wrap-filter .box-right,
.comp-filter .box-left,
.comp-filter .box-right {
    padding: 32px;
}
.wrap-filter .box-right,
.comp-filter .box-right {
    flex: 0 1 auto;
}
.wrap-filter .box-row,
.comp-filter .box-row {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}
.wrap-filter .box-group .label,
.comp-filter .box-group .label {
    margin-bottom: 8px;
    line-height: 24px;
}
.wrap-filter .box-group .box,
.comp-filter .box-group .box {
    display: flex;
    gap: 16px;
}
.wrap-filter {
    border: 1px solid #CCCCCC;
    background: #FFFFFF;
    border-radius: 16px;
}
/* Wrap-Filter, Comp-Filter : End */



/* Wrap-Chart : Start */
.wrap-chart .box-body {
    padding: 32px;
}
/* Wrap-Chart : End */

/********** Content-Body : End **********/





/********** Content-Footer : Start **********/
.content-footer {
    display: flex;
    padding: 40px;
    border-top: 1px solid #CCCCCC;
}
.content-footer .box-left {
    gap: 16px;
}
/********** Content-Footer : End **********/
/* ------------------------- Content : End ------------------------- */





/* ------------------------- Login : Start ------------------------- */
.login {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    background: #FAFAFA;
}
.login .inner-box {
    display: flex;
    width: 1000px;
    height: 620px;
    padding: 24px;
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 4px 100px 0 rgba(0,0,0,0.16);
}
.login .logo {
    font-family: 'Montserrat';
    font-size: 20px;
    font-weight: 700;
    color: #333333;
}
.login .inner-box .box-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    width: 400px;
    padding: 56px 50px;
    background: url(../images/img-login-bg.png) no-repeat center / 100%;
    border-radius: 16px;
}
.login .inner-box .box-left .fz-20 {
    line-height: 1.5;
}

.login .inner-box .box-right {
    flex: 1 1 auto;
    width: calc(100% - 400px);
}
.login .inner-box .box-right .box {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: auto;
}
.login .box-right .logo {
    margin-bottom: 32px;
    font-size: 48px;
    text-align: center;
}
/* ------------------------- Login : End ------------------------- */
