.wrap {
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
    width: 100%;
    min-width: 1366px;
    overflow: hidden;
    overflow-x: auto;
    -mox-box-sizing: border-box;
    box-sizing: border-box;
}

.container {
    position: relative;
    background: #fff;
    height: 100%;
    width: 100%;
    border-radius: 0 0 0 10px;
    overflow: hidden;
}

/*헤더*/
header {
    display: flex;
    gap: 2rem;
    height: 60px;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem;
    background: #fff;
    border-bottom: 1px solid #ddd;
    z-index: 89;
}

header .menu_wrap {
    flex:1;
    margin-left: 2rem;
}

header .menu_box {
    display: flex;
    gap: 3rem;
}

header .menu_box .depth1 {
    cursor: pointer;
    font-weight: 500;
    font-size: 15px;
}

header .menu_box .depth1>ul {
    display: none;
    padding: 0.6rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
}

header .menu_box .depth1:hover>ul {
    display: block;
    position: absolute;
}

header i {
    width: 24px;
    height: 24px;
}

header .menu_box .depth2 {
    font-size: 14px;
}

header .menu_box .depth3>a {
    font-size: 13px;
    font-weight: 300;
}

header .menu_box li a {
    display: block;
    padding: 0.5rem;
    border-radius: 4px;
}

header .menu_box .depth1 a:hover {
    background-color: #f7f7f7;
}

header .menu_box .depth2:has(ul>li.depth3) {
    padding: 0.5rem;
}

header .menu_box .depth2:has(ul>li.depth3)>ul {
    margin-top: 0.4rem;
    margin-bottom: 0.8rem;
}

header .menu_box .depth2:has(ul>li.depth3)>ul:last-child {
    margin-bottom: 0;
}

header .menu_box .depth3 a {
    padding: 0.4rem;
}

header .corp_switch {
    display: flex;
    align-items: center;
    gap: 4px;
}

header .corp_switch button{
    margin-left: 8px;
}

header .logout:before {
    content: '';
    height: 20px;
    width: 1px;
    display: inline-block;
    background: #ddd;
    margin-right: 1rem;
}


/*컨텐츠*/
.content {
    height: calc(100vh - 100px);
}

.tab_content {
    height: 100%;
}

.page_title_wrap {
    display: flex;
    justify-content: space-between;
    padding: 1rem 1.2rem 0.8rem;
}

.page_title {
    display: flex;
    align-items: center;
    gap: 4px;
}

.page_title p {
    font-weight: 600;
    font-size: 18px;
}

.page_title_wrap .page_btn {
    display: flex;
    gap: 4px;
}


.scoll-area {
    position: relative;
    overflow-y: auto;
    height: calc(100vh - 152px);
    padding: 0 1.2rem;
}

.scoll-area:has(.search_wrap){
    padding-top: 0;
}

.scoll-area article:has(.search_wrap){
    padding-bottom: 1.2rem;
}

.search_wrap {
    position: relative;
}

.search_box {
    background: #F8F9F8;
    border: 1px solid #CFD7E0;
    border-radius: 8px;
    padding: 1rem;
}

.search_box .input_wrap > .input_wrap, .search_box .input_wrap > [class*=input_box] {
    flex:0 0 280px;
}

.input_wrap>.input_wrap,
.input_wrap>[class*=input_box]>.form_inner:only-of-type {
    width: 100%;
}

.input_wrap>.input_wrap,
.input_wrap>[class*=input_box]>.form_inner:not(:only-of-type) {
    margin-right: 4px;
}

.input_wrap>.input_wrap,
.input_wrap>[class*=input_box]>.form_inner:not(:only-of-type):last-child {
    margin: 0;
}

.search_box [class*=input_box] label.label {
    min-width: 120px;
    flex: 0 0 120px;
}

.search_box label[name]:hover:after{
    content:attr(name); 
    position: absolute;
    top: 20px;
    left: 0px;
    padding: 0px 3px;
    background: #fff;
    font-size: 13px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 1px 2px #4e4e4e6b;
    z-index: 100;
}

.input_box_mix [class*=input_box]+[class*=input_box] {
    margin-left: 4px;
}

.input_box_mix [class*=input_box]+[class*=btn_block] {
    margin-left: 4px;
}

.input_box_mix [class*=input_box]:not(:last-child) {
    margin-bottom: 0px;
}

.input_box_mix:has(.input_box_search + .input_box) .input_box_search > .form_inner {
    width: 100px;
    flex: 1 0 100px;
}

.input_box_mix:has(.input_box_search + .input_box) .input_box:not(:has(.chk_box)){
    flex:1;
}

.input_box_mix:has(.input_box_search + .input_box) .input_box > .form_inner {
    width: 100%;
}

.input_box_mix_column{
    display: flex;
    flex-direction: column;
}
.input_box_mix_column [class*=input_box]:not(:last-child){
    margin: 0;
}

.input_box_mix_column [class*=input_box]+[class*=input_box] {
    margin-top: 4px;
}

.input_box_mix_column:has(.chk_wrap + .input_box) {
    flex-direction: row;
    flex-wrap: wrap;
}

.input_box_mix_column:has(.chk_wrap + .input_box) .chk_wrap {
    display: flex;
    align-items: center;
    margin-right: 1rem;
}

.input_box_mix_column:has(.chk_wrap + .input_box) .input_box{
    flex: 1 1 60%;
}

.req {
    position: relative;
}

.req:after {
    content: "";
    position: absolute;
    top: calc(50% - 3px);
    right: 10px;
    width: 4px;
    height: 4px;
    background: #fd2929;
    border-radius: 50%;
    vertical-align: super;
}

button.search_view_more {
    position: absolute;
    display: flex;
    background: #726662;
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 0 0 4px 4px;
    margin-left: 1rem;
}

.search_btn {
    display: flex;
    justify-content: flex-end;
    margin-top: 0.6rem;
    gap: 8px;
    align-items: center;
}

.search_btn .input_wrap {
    margin: 0;
    column-gap: 4px;
}

.search_wrap > .search_btn > .input_wrap > [class*=input_box]{
    padding-left: 0.4rem;
}

.search_wrap > .search_btn > .input_wrap [class*=input_box] label.label {
    min-width: fit-content;
}

.search_wrap > .search_btn > .input_wrap [class*=input_box] label.label:has(.label_box_combo){
    padding-right: 30px;
}

.search_wrap > .search_btn > .input_wrap [class*=input_box] label.label:has(.label_box_combo) .label_box_combo .combo_inner:not(.locat):after{
    right: -16px;
}

.input_wrap .input_box_cal .form_inner:has(span) span {
    font-size: 12px;
}

.input_wrap .input_box_cal .form_inner:has(span) input[type=text]{
    text-align: center;
}

.search_box .input_wrap:has([class*=input_box]:nth-child(3)) >[class*=input_box]{
    flex: 1;
}

.cal_wrap{
    position: absolute;
    margin-top: -37px;
    z-index: 10;
    border-radius: 5px;
    border: 1px solid #ddd;
    background: #f9f9f9;
    text-align: right;
}

.cal_wrap > div{
    display: flex;
}

.cal_wrap > div .flatpickr-calendar.inline{
    box-shadow: none;
    top: 0;
}

.cal_wrap > div > div:first-child .flatpickr-innerContainer{
    border-right: 1px solid #ddd;
}

.cal_wrap button{
    margin: 0.6rem;
}


@media (min-width: 1367px) {
    .search_box .input_wrap > .input_wrap, .search_box .input_wrap > [class*=input_box] {
        flex: 0 0 23.7%;
    }
}

/*그리드, 테이블, 결과영역*/

.grid_row {
    display: flex;
    gap: 1rem;
    padding-top: 1.1rem;
    flex: 1;
}

.grid_wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.grid_column_wrap {
    flex: 1;
}

.grid_title_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    height: 24px;
}

.grid_title p:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.4rem;
    border-radius: 50%;
    background: #2C4E80;
    padding: 4px;
}

.grid_title p {
    font-weight: 500;
}

.grid {
    position: relative;
    width: 100%;
    min-height: 14rem;
    background: #f9f9f9;
    height: 100%;
}

.grid.list{
    height: 20rem;
}

.grid.thin{
    min-height: auto;
    height: 8rem;
}

.grid_bottom {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    padding-top: 0.6rem;
}

.grid_bottom [class*=input_box]:not(:last-child) {
    margin-bottom: 0px;
}

.grid_row:has(.grid_wrap + .grid_column_wrap) .grid {
    height: calc(100% - 34px);
}

.grid_row .grid_column_wrap .grid_wrap+.grid_wrap {
    margin-top: 1rem;
}

.grid_wrap .search_wrap .search_box {
    display: flex;
    justify-content: space-between;
    border: 1px solid #f2f2f2;
    background: #ffffff;
}

.grid_wrap .search_wrap .input_wrap>.input_wrap,
.grid_wrap .search_wrap .input_wrap>[class*=input_box]>.form_inner:only-of-type {
    width: auto;
}

.grid_wrap .search_wrap .search_box .search_btn {
    margin: 0;
}

.grid_wrap .search_wrap .search_box .input_wrap:not(:last-child) {
    margin-bottom: 0;
}

.grid_wrap:has(.search_wrap) .grid_title_wrap {
    margin-top: 10px;
}

.grid_wrap .search_wrap .input_wrap>[class*=input_box]{
    flex:1;
}


.grid_column {
    display: flex;
    flex-direction: column;
}

.grid_row:has(.grid_column)>div {
    flex: 1;
    gap: 1rem;
}

.grid_row:has(.grid_column) .grid_row {
    margin-top: 0;
}


.grid_top_btn button{
    background-color: #efefef;
    border: none;
}

.grid_top_btn button:hover span{
    color: #222;
}

.grid_top_btn:has(.input_box_combo) {
    display: flex;
    gap: 4px;
}

.grid_top_btn [class*=input_box]:not(:last-child) {
    margin-bottom: 0px;
}

.grid_top_btn [class*=input_box]:not(:has(label.label)) {
    max-width: 100px;
}

.grid_top_btn .input_wrap:not(:last-child){
    margin-bottom: 0;
}

.grid_top_btn .input_box_mix{
    max-width: max-content !important;
}

.grid_top_btn .input_wrap{
    column-gap: 4px;
}

.grid_column_wrap .grid_wrap {
    height: calc(50% - 8px);
}

.grid_footer {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 0 0 4px 4px;
    padding: 0.2rem 1rem;
    background: #F9F9F9;
    height: 30px;
    gap: 1rem;
    border:1px solid #ddd;
    border-top:none;
}

.grid_footer .grid_footer_count {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 13px;
}

.grid_footer span {
    padding: 0.1rem 0.4rem;
    color: #666;
    background-color: #E2E2E2;
    border-radius: 20px;
}

.grid_footer .input_box_combo {
    width: auto;
}

.grid_footer .input_box_combo .form_inner {
    width: 100px;
}

/*그리드 테이블*/
.gridtable_row {
    display: flex;
    gap: 1rem;
    margin-top: 1.1rem;
}

.table_title_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    height: 24px;
}

.table_title p {
    font-weight: 500;
}

.table_title p:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.4rem;
    border-radius: 50%;
    background: #A72B2A;
    padding: 4px;
}

.table_wrap .table {
    font-size: 14px;
    border-radius: 4px;
    box-shadow: 0 0 0 1px #ddd;
}

.table_wrap table tr {
    border-bottom: 1px solid #ddd;
    height: 30px;
}

.table_wrap table tr:last-child {
    border: none;
}

.table_wrap table th {
    text-align: left;
    padding-inline: 0.8rem;
    background: #f9f9f9;
}

.table_wrap table td {
    padding: 0.1rem 0.2rem;
}

.table_wrap .table tr:first-child th{
    border-radius: 4px 0 0 0;
}

.table_wrap .table tr:last-child th{
    border-radius: 0 0 0 4px;
}

.table_wrap table th label.label {
    font-size: 13px;
    color: #222;
    font-weight: normal;
    margin-right: 1rem;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.table_wrap table th .req:after {
    right: -8px;
}

.table_wrap .form_inner {
    width: 100%;
}

.gridtable_row .grid_wrap .grid {
    height: calc(100% - 34px);
}

.gridtable_row .grid_wrap:has(.grid_footer) .grid {
    height: calc(100% - 64px);
    min-height: auto;
}

.table_row{
    display: flex;
    gap: 1rem;
    margin-top: 1.1rem;
}

.table_wrap{
    display: flex;
    flex-direction: column;
    flex:1;
}

.table_wrap th.topth{
    border-right:1px solid #ddd;
    text-align: center;
}

.table_wrap th.topth label.label{
    margin: 0;
}

.table_wrap .input_box_mix [class*=input_box]{
    width: 100%;
}

.table_wrap .input_box_mix:has([class*=input_box], .chk_box) .chk_box{
    flex:2;
    margin-left: 4px;
}

.table_wrap .input_box_mix:has([class*=input_box] + .chk_box) [class*=input_box]{
    flex:1;
}

.table_wrap .form_inner:has(textarea) textarea{
    min-height: 56px;
}

.table_wrap td .input_box:has(.form_inner:nth-child(2)){
    gap: 4px;
}

.table_wrap td:has(.chk_box+.input_box) .input_box{
    margin-top: 4px;
}

.file_list .file{
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    background-repeat: no-repeat;
    background-image: url('/external/image/clip.svg');
    background-position: 0px 50%;
    background-size: 18px 18px;
    padding: 5px 16px 5px 24px;
}

.file_list .file a{
    text-decoration: underline;
}

.file_list .file span{
    color:#a5a5a5;
}

.edit_text{
    height: 46vh;
    line-height: 1.6;
    align-content: flex-start;
    overflow: hidden;
    overflow-y: auto;
}


/* 팝업 */

.modal_body .search_box .radio_box:not(:last-of-type) {
    margin-right: 0;
}

.modal_body .search_box [class*=input_box] label.label {
    min-width: 90px;
    width: 90px;
}

.modal_body .search_box .input_wrap > [class*=input_box] {
    flex: 0 1 48%;
}

.modal-content.md .modal_body .input_wrap>[class*=input_box]:only-of-type .form_inner {
    width: 313px;
}

.grid_column_btn {
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
}

.modal-content .grid_row:has(.grid_column_btn) .grid_wrap:first-child {
    flex: 60%;
}

.modal-content .grid_row:has(.grid_column_btn) .grid_wrap:last-child {
    flex: 40%;
}

.modal_body:not(:has(.search_wrap)) .grid_row {
    margin-top: 0;
    padding-top: 0;
}

.modal_body:not(:has(.search_wrap)) .table_row {
    margin-top: 0;
}

.modal_body .table_row+button {
    margin-top: 0.6rem;
}

.modal_body .table_wrap .table tr:first-child th{
    border-radius: 4px 0 0 0;
}

.modal_body .table_wrap .table tr:last-child th{
    border-radius: 0 0 0 4px;
}


/* paginationjs */

.paginationjs-pages ul {
    display: flex;
    gap: 0.8em;
    align-items: center;
    font-size: 12px;
}

.paginationjs-pages ul li {
    border-radius: 8px;
    padding: 4px;
}

.paginationjs-pages ul li:hover {
    background-color: #e7e7e7;
}

.paginationjs-pages ul li.active {
    background-color: #A72B2A;
    color: #fff;
}

.paginationjs-pages ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: normal;
    width: 12px;
    height: 12px;
}

.paginationjs-pages svg {
    width: 12px;
    height: 12px;
}

.paginationjs-pages ul li.disabeld svg {
    filter: opacity(0.2);
}

.paginationjs-pages ul li.disabeld:hover {
    background-color: transparent;
}

.paginationjs-pages ul li.disabeld a {
    cursor: auto;
}

.paginationjs {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.paginationjs-pages {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
}

.paginationjs .J-paginationjs-size-select {
    height: 24px;
    background-color: #ffffff;
    padding-inline: 8px 30px;
    border: 0.0625rem solid #dddddd;
    border-radius: 4px;
}

select{
    background: url(data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 18 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 6L9 12L3 6' stroke='%23666666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A) no-repeat 0 0;
    transition: transform 0.2s;
}



/*login*/
.login_wrap {
    width: 100%;
    height: 100%;
    background: #FBFBFB url(/external/image/login_bg.png)no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
}

.login_wrap .login_box {
    width: 430px;
    background: #fff;
    padding: 2rem 3rem;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    margin-bottom: 4rem;
}

.login_wrap .input_wrap>.input_wrap,
.login_wrap .input_wrap>[class*=input_box] {
    display: flex;
    flex-direction: column;
    flex:1;
}

.login_wrap [class*=btn_block] {
    width: 100%;
    margin-block: 0.6rem;
}

.login_wrap .form_inner {
    height: 32px;
}

.login_wrap .login_bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.login_wrap .textbtns {
    display: flex;
    gap: 1rem;
    font-size: 12px;
}

.login_wrap .textbtns li:after {
    content: '';
    border-right: 1px solid #ddd;
    width: 1px;
    height: 10px;
    padding-right: 7px;
    position: absolute;
}

.login_wrap .textbtns li:last-child:after {
    display: none;
}




/*서브탭*/
.info_tab_menu {
    position: relative;
    margin-top: 1.1rem;
}

.info_tab_menu .list {
    overflow: hidden;
    display: flex;
    border-bottom: 1px solid #ddd;
    height: 24px;
}

.info_tab_menu .list li {
    margin-right: 14px;
}

.info_tab_menu .list .btn {
    font-size: 14px;
}

.info_tab_menu .list .cont {
    display: none;
    position: absolute;
    left: 0;
    width: 100%;
}

.info_tab_menu .list li.is_on .btn {
    font-weight: bold;
    color: #a72b2a;
}

.info_tab_menu .list li.is_on .cont {
    display: block;
}

.info_tab_menu .list li .cont > div {
    margin-top: 1.1rem;
}

.info_tab_menu .list li.is_on{
    border-bottom: 2px solid #a72b2a;
}

.info_tab_menu [class*=input_box]:not(:last-child){
    margin: 0;
}

.info_tab_menu .table_wrap .table {
    overflow: visible;
}

.info_tab_menu .table_wrap table td{
    height: 30px;
}

.info_tab_menu .table_wrap table td [class*=input_box]{
    width: 100%;
}

.info_tab_menu .table_wrap table td:not(:has([class*=input_box]:only-child)){
    display: flex;
    justify-content: space-between;
}

.grid_row + .info_tab_menu .table_wrap table td .input_box_combo .form_inner:not(.locat):has(.combo_list_inner.top > li:not(:empty)).on {
  border-radius: 0 0 4px 4px;
}

.grid_row + .info_tab_menu .table_wrap table td .input_box_combo .form_inner:not(.locat).on .combo_list:has(.combo_list_inner.top > li:not(:empty)){
    top:17.5rem;
    border-radius: 4px 4px 0 0;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.12);
}

.result_wrap:has(.grid_row + .info_tab_menu) .grid_row .grid {height: 23rem;}

.error_wrap{
    width: 100%;
    height: 100%;
    background: #FBFBFB;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.6rem;
    background: url(/external/image/404.svg)no-repeat;
    background-position: center 25%
}

.error_wrap h3{
    margin-bottom: 1rem;
}


/*popupSample*/
article#popupSample .search_box{
    height: 100vh;
}

article#popupSample .search_box .input_wrap{
    border-bottom: 1px dashed #ddd;
    margin: 0;
    padding: 0.4rem;
}

article#popupSample .search_box .input_wrap:last-child{
    border: none;
}

article#popupSample .search_box .input_wrap > [class*=input_box]{
    flex: 0 0 40%
}

article#popupSample .search_box [class*=input_box] label.label{
    flex: 0 0 200px;
}

article.form_template .input_box:has(textarea){
    margin-top: 0.4rem;
    flex:1;
}

article.form_template .preview{
    height: 20rem;
    overflow-y: auto;
}

article.form_template .table_wrap table tr:has(.preview) {
    border-top: 1px solid #ddd;
}

/*메인 대시보드*/

.scoll-area:has(.dashboard){
    padding: 1.2rem;
    height: 100%;
    /* display: flex; */
}

.scoll-area:has(.dashboard) article{
    flex:1;
    display: flex;
}

.dashboard{
    display: flex;
    gap: 1rem;
    flex:1;
}

.dashboard .page_title_wrap{
    padding: 0.8rem;
}

.dashboard .left{
    flex:1;
    display: flex;
    flex-direction: column;
}

.dashboard .left .widget{
    display: flex;
    gap: 0.6rem;
}

.dashboard .left .widget>div{
    flex:1;
    padding: 2rem;
    border-radius: 8px;
    background-blend-mode: color-burn;
}

.dashboard .left .widget .icon_widget1{
    background: rgba(243,247,255,.8) url(/external/image/my.svg)no-repeat;
    background-position: 12% 68%;
}

.dashboard .left .widget .icon_widget2{
    background: rgba(255,243,243,.8) url(/external/image/unregistered.svg)no-repeat;
    background-position: 12% 68%;
}

.dashboard .left .widget .icon_widget3{
    background: rgba(236,254,241,.8) url(/external/image/manual.svg)no-repeat;
    background-position: 12% 68%;
}

.dashboard .left .widget .icon_widget4{
    background: rgba(255,252,241,.8) url(/external/image/evidence.svg)no-repeat;
    background-position: 12% 68%;
}

.dashboard .left .widget p{
    font-size: 16px;
    font-weight: 500;
}

.dashboard .left .widget p.total{
    font-size: 36px;
    text-align: right;
    margin-top: 1rem;
    font-weight: 500;
}

.dashboard .left .widget p.total span{
    font-size: 16px;
    padding-left: 4px;
}

.dashboard .left .widget_grid {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dashboard .right{
    flex-basis: 300px;
}

.dashboard .right svg{
    width: 14px;
    height: 14px;
    filter: opacity(0.5);
}

.dashboard .right .notice{
    background: #F9F9F9;
    padding: 1rem;
    border-radius: 8px;
}

.dashboard .right .notice li{
    padding-bottom: 1rem;
}

.dashboard .right .notice li+li{
    padding-top: 1rem;
    border-top: 1px solid #ddd;
}

.dashboard .right .notice li:last-child{
    padding-bottom: 0;
}

.dashboard .right .notice li p:first-child{
    overflow: hidden;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-height: 20px;
    max-height: 43px;
    font-size: 15px;
}

.dashboard .right .notice li p.date{
    padding-top: 0.8rem;
    font-size: 14px;
    color:#999;
}

.dashboard .right .notice li:hover p:first-child{
    text-decoration: underline;
}

.dashboard .right .notice .no_notice {
    background: url(/external/image/nodata.svg) no-repeat;
    background-size: 32px 32px;
    background-position: center center;
    padding-block: 4rem 1rem;
    margin-bottom: 1rem;
    font-size: 14px;
    color: #888;
    font-weight: 400;
    text-align: center;
}

.dashboard .right .notice:has(ul>li) .no_notice{
    display: none;
}

.dashboard .right .notice:not(:has(ul>li)) .no_notice{
    display: block;
}


#SCCOM0006 .info_tab_menu{
    min-height: 120px;
}