@charset "utf-8";

@font-face {
    font-family: 'Pretendard';
    font-weight: 900;
    font-display: swap;
    src: local('Pretendard Black'), url(/common/fonts_pretendard/Pretendard-Black.woff2) format('woff2'), url(/common/fonts_pretendard/Pretendard-Black.woff) format('woff');
}
@font-face {
    font-family: 'Pretendard';
    font-weight: 800;
    font-display: swap;
    src: local('Pretendard ExtraBold'), url(/common/fonts_pretendard/Pretendard-ExtraBold.woff2) format('woff2'), url(/common/fonts_pretendard/Pretendard-ExtraBold.woff) format('woff');
}

@font-face {
    font-family: 'Pretendard';
    font-weight: 700;
    font-display: swap;
    src: local('Pretendard Bold'), url(/common/fonts_pretendard/Pretendard-Bold.woff2) format('woff2'), url(/common/fonts_pretendard/Pretendard-Bold.woff) format('woff');
}
@font-face {
    font-family: 'Pretendard';
    font-weight: 600;
    font-display: swap;
    src: local('Pretendard SemiBold'), url(/common/fonts_pretendard/Pretendard-SemiBold.woff2) format('woff2'), url(/common/fonts_pretendard/Pretendard-SemiBold.woff) format('woff');
}
@font-face {
    font-family: 'Pretendard';
    font-weight: 500;
    font-display: swap;
    src: local('Pretendard Medium'), url(/common/fonts_pretendard/Pretendard-Medium.woff2) format('woff2'), url(/common/fonts_pretendard/Pretendard-Medium.woff) format('woff');
}
@font-face {
    font-family: 'Pretendard';
    font-weight: 400;
    font-display: swap;
    src: local('Pretendard Regular'), url(/common/fonts_pretendard/Pretendard-Regular.woff2) format('woff2'), url(/common/fonts_pretendard/Pretendard-Regular.woff) format('woff');
}
@font-face {
    font-family: 'Pretendard';
    font-weight: 300;
    font-display: swap;
    src: local('Pretendard Light'), url(/common/fonts_pretendard/Pretendard-Light.woff2) format('woff2'), url(/common/fonts_pretendard/Pretendard-Light.woff) format('woff');
}
@font-face {
    font-family: 'Pretendard';
    font-weight: 200;
    font-display: swap;
    src: local('Pretendard ExtraLight'), url(/common/fonts_pretendard/Pretendard-ExtraLight.woff2) format('woff2'), url(/common/fonts_pretendard/Pretendard-ExtraLight.woff) format('woff');
}
@font-face {
    font-family: 'Pretendard';
    font-weight: 100;
    font-display: swap;
    src: local('Pretendard Thin'), url(/common/fonts_pretendard/Pretendard-Thin.woff2) format('woff2'), url(/common/fonts_pretendard/Pretendard-Thin.woff) format('woff');
}



h1,h2,h3,h4,h5,h6,b,strong,footer,div,input,button{
    font-family: 'Pretendard';
}
b{
    font-weight: 600; 
}
:root {
    --main-color: #0030DC;
    --sub-color: #E6EBFC;
    --dark-grey-color: #BABABA;
    --grey-color: #D4D4D4;
    --light-grey-color: #C0C0C0;
    --white-color:#fff;
    --bg-black-op-5: #00000080;
    --shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
}

/* common */
body {
    font-size: 15px;
    font-family: 'Pretendard';
    font-weight: normal;
    line-height: 1.5;
    letter-spacing: -0.5px;
    -ms-overflow-style: none;
    height: 100vh;
}
/* .out_main{
    width: calc(100% - 250px);
    height: 100vh;
    overflow: auto;
    margin-left: 250px;
} */
main{
    width: calc(100% - 250px);
    /* height: 100vh; */
    overflow: auto;
    margin-left: 250px;
}
main.main{
    width: calc(100% - 550px);
}
header{
    width: 100%;
    height: 12%;
    display: flex;
    align-items: center;
    padding: 0 50px;
    justify-content: space-between;
    flex-wrap: wrap;
}
.index_wrap {
    padding: 40px 10vw 0px 150px;
    min-width: 1100px;
}
.wrap {
    padding: 150px 150px 0px 150px;
    min-width: 1100px;
}
.wrap_my{
    padding: 84px 100px 0 100px !important;
}
.pointer{
    cursor: pointer;
}
.d-flex{
    display: flex;
}
.scroll{margin:0 2px;overflow:hidden;overflow-y:auto;}
.scroll::-webkit-scrollbar{width:4px;height:4px;}
.scroll::-webkit-scrollbar-track{background-color:#fff;border-radius:5px;}
.scroll::-webkit-scrollbar-thumb{background:#d2d2d2;border-radius:5px;height:10%;}
.scroll::-webkit-scrollbar-thumb:hover{background:#d2d2d2;}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* aside */
aside{
    background-color: var(--main-color);
    width: 250px;
    height: 100%;
    position: fixed;
}
.logo{
    padding: 50px 40px;
    cursor: pointer;
}
.aside_bg{
    position: absolute;
    bottom: 0;
    width: 250px;
}
.logout_w{
    position: absolute;
    bottom: 8%;
    left: 0;
    width: 100%;
    color: var(--white-color);
    text-align: center;
}
.user_name{
    font-size: 23px;
}
.user_name b{
    font-size: 28px;
    margin-right: 8px;
}
.btn_logout{
    display: flex;
    justify-content: center;
}
.btn_logout::after{
    content: "";
    width: 25px;
    background: url(https://s1.unipware.com/GST.lab/images/img_logout.svg) 50% 50% no-repeat;
    background-size: contain;
    margin: 0 0 5px 10px;

}

/* nav */
nav{
    color: var(--white-color);
    margin-top: 19px;
    font-size: 22px;
    text-align: center;
    font-weight: 400;
}
nav ul li a{
    opacity: 0.5
}
nav ul li.active a{
    opacity: 1;
}
nav li:first-child{
    margin-bottom: 30px;
}

/* modal */
.modal_popup {
    display: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: fixed;
    width: 100%;
    min-height: 100%;
    overflow: hidden;
    background: var(--bg-black-op-5);
    z-index: 201;
}
.modal_wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    padding: 15px 16px 20px 16px;
    background: #fff;
    z-index: 101;
    text-align: center;
    box-shadow: 0px 3px 9px rgba(0, 0, 0, .5);
}
.modal_wrap.m_size {
    width: 460px;
}
.modal_wrap.l_size {
    width: 520px;
}
.modal_btn_x_w{
    width: 100%;
    height: 20px;
    display: flex;
    justify-content: end;
}
.modal_btn_x_w.modal_title{
    width: 100%;
    height: 20px;
    display: flex;
    justify-content:space-between;
}
.modal_btn_x_w.modal_title>div{
    font-size: 23px;
    font-weight: 600;
}
.modal_btn_x_w img{
    width: 20px;
}
.modal_content {
    font-size: clamp(15px, 3vw, 17px);
    padding: 50px 20px 30px 20px;
}
.user_add_tap_w{
    padding: 50px 20px 0px 20px;
    display: flex;
}
.user_add_tap_w div{
    text-align: center;
    width: 100%;
    font-size: 16px;
    padding: 7px 0;
    border: 1px solid var(--main-color);
    color: var(--main-color);
    font-weight: 600;
    cursor: pointer;
}
.user_add_tap_w div.active{
    background: var(--main-color);
    color: #fff;
    font-weight: 400;
}
.modal_content.input .item{
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}
.modal_content.input .item .title{
    width: 20%;
    text-align: left;
    margin-right: 10px;
}
.modal_content.input .item input, .modal_content.input .item .birthdate_area, .select_machine_W, .select_date.device{
    width: 80%;
}
.modal_content.input .item .birthdate_area, .modal_content.input .item .birthdate_area>div{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.modal_content.input .item input {
    border: 1px solid var(--light-grey-color);
}
.modal_content.input .item input{
    border: 1px solid var(--light-grey-color);
    background: var(--white-color);
}
.select_date{
    position: relative;
}
.select_date button.btn_select{
    border: 1px solid var(--light-grey-color);
    background: var(--white-color);
    padding: 7px 3px 7px 8px ;
    margin-right: 5px;
    display: flex;
    align-items: center;
}
.birthdate_area .btn_select::after{
    display: block;
    content: "";
    background: url(https://s1.unipware.com/GST.lab/images/ico_arrow.svg) 50% 50% no-repeat;
    width: 13px;
    height: 15px;
    transition: all 0.4s 0s;
    background-size: contain;
    margin: 0 5px;
}
.select_date .select_item{
    display: none;
    position: absolute;
    box-shadow: 0px 3px 9px rgba(0, 0, 0, .5);
    background: var(--white-color);
    top: 40px;
    width: 80px;
    padding: 5px 0;
    max-height: 300px;
    overflow-y: scroll;
    overflow-x: hidden;
    z-index: 1;
}
.select_date.active .select_item{
    display: block;
}
.select_date .btn_select::after{
    display: block;
    content: "";
    background: url(https://s1.unipware.com/GST.lab/images/ico_arrow.svg) 50% 50% no-repeat;
    width: 13px;
    height: 15px;
    transition: all 0.4s 0s;
    background-size: contain;
    margin: 0 6px;
}
.select_date.active .btn_select::after{
    transform: rotate(180deg);
}
.select_date .select_item button{
    background: var(--white-color);
}
.select_date .select_item button:hover{
    background: var(--main-color);
    color: var(--white-color);
}
.select_item.month, .select_item.day{
    width: 50px;
}
.select_item.month button, .select_item.day button{
    padding: 5px 10px;
}
.select_date.device .btn_select{
    width: 100%;
    position: relative;
}
.select_date.device .btn_select:after{
    position: absolute;
    right: 10px;
}
.select_date.device .select_item{
    width: 100%;
}
.select_date.device .select_item button{
    width: 100%;
    text-align: left;
}
.radio_area{
    display: flex;
}
.radio_area input{
    margin-right: 8px;
    margin-bottom: 2px;
}
.radio_area input+label{
    margin-right: 20px;
}
.modal_btn {
    font-weight: 300;
    padding: 5px 20px;
    font-size: clamp(13px, 2vw, 16px);
    background: var(--main-color);
    color: #fff;
}
.modal_btn.edit{
    margin-right: 10px;
}

.modal_content.input.direct, .modal_content.input.excel{
    display: none;
}
.modal_content.input.direct.active, .modal_content.input.excel.active{
    display: block;
}
.modal_content.input.excel .text{
    font-size: 20px;
    line-height: 1.5;
    padding-top: 30px;
}
.modal_content.input.excel .download{
    padding: 50px 0;
}
.modal_content.input.excel .download img{
    width: 30px;
    cursor: pointer;
}
.modal_content.input.excel .download div{
    font-size: 14px;
    color: var(--main-color);
}
.modal_content.input.excel .filebox{
    display: flex;
    align-items: center;
    justify-content:center;
    margin-bottom: 30px;
}
.filebox label{
    background: var(--main-color);
    color: #fff;
    padding: 7px 15px;
    margin-top: 1px;
}
.upload-name.input {
    padding: 7px 12px;
    background-color: #fff;
    border: 1px solid var(--light-grey-color);
    border-left: 0px;
    border-radius: 0px;
}
.file_name_w{
    position: relative;
}
.file_name_w .ico_img_cancel {
    background: url(../images/ico_input_cancle.svg) no-repeat;
    cursor: pointer;
    position: absolute;
    width: 15px;
    height: 15px;
    background-size: 15px;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

/* login */
main.login{
    background: var(--main-color);
    margin-left: 0;
    width: 100%;
    position: relative;
    height: 100vh;
}
.img_logo_big01{
    position: absolute;
    width: 700px;
    left: 400px;
    top: 0px;
}
.img_logo_big02{
    position: absolute;
    width: 700px;
    left: -100px;
    bottom: 0px;
    overflow: hidden;
}
.logo_w{
    width: 100%;
    padding: 40px;
    display: flex;
    justify-content: end;
}
.logo_w img{
    width: 200px;
    z-index: 1;
}
.login_w{
    position: absolute;
    top: 45%;
    right: 16%;
    transform: translateY(-50%);
    color: var(--white-color);
    text-align: end;
}
.login .index{
    position: absolute;
    bottom: 0;
    width: 100%;
    font-size: 70px;
    text-align: end;
    opacity: 0.3;
    font-weight: 100;
    color: var(--white-color);
    padding: 40px;
}
.radio_area.login{
    margin-bottom: 30px;
    justify-content: end;
    font-size: 18px;
}
.item.login{
    display: flex;
    align-items: center;
    font-size: 23px;
    justify-content: end;
}
.login_w .item.login.id{
    margin-bottom: 20px;
}
.login_w .item.login.pw{
    margin-bottom: 30px;
}
.item.login .title{
    margin-right: 20px;
}
.login_w .item.login input{
    border: 0px;
}
.btn_login{
    width: 83%;
    background: #0400C9;
    color: var(--white-color);
    padding: 10px 0;
    font-size: 20px;
    margin-bottom: 30px;
    border: 3px solid var(--main-color);
}
.find_idpw_w{
    width: 100%;
    display: flex;
    justify-content: end;
}
.find_idpw_w>div{
    width: 65%;
    margin-right: 30px;
    display: flex;
    justify-content: space-between;
}

/* index */
.main.top{
    padding: 0px 0px 100px 150px;
    display: flex;
    align-items: flex-end;
    max-height: 320px;
    width: 100%;
    min-width: 1100px;
}
.main .leftside, .main .rightside{
    width: 50%;
}
.main .leftside img{
    width: 200px;
    margin-bottom: 10px;
}
.main_top div img{
    width: 200px;
}
.dashboard_w{
    width: 100%;
    display: flex;
    border: 1px solid var(--grey-color);
    border-left: 0;
    border-right: 0;
    justify-content: space-between;
}
.dashboard_box_w{
    width: 100%;
    padding: 15px 0px;
}
.dashboard_box_w.center{
    text-align: center;
}
.dashboard_box_w .standard{
    margin-bottom: 20px;
    font-size: 14px;
}
.border_right{
    border-right: 1px solid var(--grey-color);
}
.dashboard_box_w .title{
    color: var(--main-color);
    font-weight: 500;
    margin-bottom: 20px;
    font-size: 17px;
}
.dashboard_box_w .content{
    font-weight: 100;
    font-size: clamp(16px, 4vw, 30px);
}
.dashboard_w.none_top{
    border-top: 0;
}
.dashboard_box_w.inner_padding{
    padding: 20px 40px 10px ;
}
.measure_data_w{
    padding: 20px;
}
.measure_data_w canvas{
    width: 100% !important;
    /* height: 100% !important; */
}
.dashboard_box_w.inner_padding.more{
    padding: 50px 40px 10px ;
    justify-content: space-between;
}
.chart_area{
    width: 100%;
}
.chart_area:first-child{
    margin-right: 100px;
}
.chart_w{
    width: 100%;
    display: flex;
    justify-content: center;
}
.chart_w.period_user>canvas{
    width: 100% !important;
    max-height: 300px !important;
}
.chart_w.gender>canvas, .chart_w.age>canvas{
    width: 100% !important;
    height: 10% !important;
}

/* 데이터 현황 */
.serch_w{
    width: 100%;
    position: relative;
}
input.serch{
    font-size: 14px;
    font-weight: 400;
    color: var(--light-grey-color);
    border: 1px solid var(--light-grey-color);
    border-radius: 20px;
    padding: 10px 15px 10px 45px;
    width: 300px;
}
.ico_serch{
    position: absolute;
    background: url("../images/ico_serch.svg") 50% no-repeat;
    top: 50%;
    left: 13px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-size: contain;
}
.period_btn_w{
    width: 100%;
    display: flex;
    padding: 40px 0; 
    align-items: center;
}
.period_btn_w>.icon{
    margin-left: 16px;
}
button, input{
    padding: 8px 15px;
    font-size: 15px;
}
input.date{
    font-size: 14px;
    font-weight: 400;
    color: var(--light-grey-color);
    border: 1px solid var(--light-grey-color);
    border-radius: 5px;
    padding: 7px 15px 7px 10px;
    width: 150px;
}
.period_btn_w button{
    background: var(--white-color);
    border: 1px solid var(--light-grey-color);
    font-size: clamp(8px, 2vw, 14px);
    margin-right: 10px;
    border-radius: 5px;
}
.period_btn_w input, .period_btn_w div{
    margin-right: 10px;
}
input.date{
    color: #000000;
}
button.blue{
    background: var(--main-color);
    border: 0;
    color: var(--white-color);
}
.period_btn_w button.active{
    background: var(--main-color);
    border: 1px solid var(--main-color);
    color: var(--white-color);
}
.ico{
    width: 24px;
    height: 24px;
    cursor: pointer;
}
.ico.on{
    filter: invert(17%) sepia(98%) saturate(7130%) hue-rotate(230deg) brightness(81%) contrast(116%);
}
.ico_list{
    background: url('../images/ico_list.svg');
}
.ico_chart{
    background: url('../images/ico_chart.svg');
    margin-right: 0 !important;
}

table{
    border-collapse: collapse;
    border-spacing: 0;
    margin-bottom: 30px;
}
table.data{
    text-align: center;
    width: 100%;
}
table.data thead{
    border: 3px solid var(--grey-color);
    border-left: 0;
    border-right: 0;
}
table.data tbody tr{
    border: 1px solid var(--grey-color);
    border-left: 0;
    border-right: 0;
}
table.data tbody tr:hover{
    background: var(--sub-color);
}
table.data tr th, table.data tr td{
    padding: 15px 0;
}
th.sorting{
    position: relative;
}
th.sorting::before{
    position: absolute;
    display: block;
    opacity: .125;
    font-size: .6em;
    content: "▲";
    right: 15px;
}
th.sorting::after{
    position: absolute;
    display: block;
    opacity: .125;
    font-size: .6em;
    content: "▼";
    right: 15px;
    bottom: 13px;
}
th.sorting.active::before, th.sorting.active::after{
    opacity: 1;
}
.highlight{
    background:var(--sub-color);
}

/* 데이터 현황 > 상세 페이지 */
.wrap.user_info{
    padding: 150px 300px 0px 150px;
    position: relative;
    width: 100%;
}
.user_info_w{
    width: 100%;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #000000;
    padding: 0px 20px 20px;
}
.user_info_w>div{
    display: flex;
    align-items: center;
}
.user_info_w .name{
    font-size: 30px;   
    font-weight: 600;
    margin-right: 40px;
}
.user_info_w .birthdate, .user_info_w .gender{
    font-size: 20px;   
    font-weight: 400;
    margin-right: 40px;
}
.period_btn_w.user_info{
    justify-content: center;
}
.detail_graph_w{
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 30px 50px;
}
.detail_graph_w>canvas{
    width: 100% !important;
    height: 100% !important;
}
.category_w{
    position: absolute;
    width: 100px;
    top: 220px;
    right: 100px;
    text-align: center;
}
.category_w>div{
    background: var(--dark-grey-color);
    color: var(--white-color);
    padding: 10px 20px;
    margin-bottom: 20px;
    font-weight: 500;
}
.category_w>div.active{
    background: var(--main-color);
}
.category_detail{
    margin-top: 20px;
    display: none;
}
.category_detail.active{
    display: block;
}
.category_detail>div{
    padding: 10px 0px;
}
.category_detail .item{
    font-weight: 200;
}
.category_detail .index{
    font-weight: 100;
    font-size: 25px;
}



/* 사용자 */
table.user{
    text-align: center;
    width: 100%;
    margin-top: 50px;
}
table.user thead{
    border: 3px solid var(--grey-color);
    border-left: 0;
    border-right: 0;
}
table.user tbody tr{
    border: 1px solid var(--grey-color);
    border-left: 0;
    border-right: 0;
}
table.user tbody tr:hover{
    background: var(--sub-color);
}
table.user tr th, table.user tr td{
    padding: 15px 0;
}
.serch_w.user{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.add_user.pointer{
    margin-right: 10px;
}
.add_user, .add_user_excel, .down_user_excel{
    display: flex;
    border-radius: 0;
    background-color: var(--main-color);
    color: var(--white-color);
    align-items: center;
    justify-content: center;
}
.add_user::before, .add_user_excel::before{
    display: block;
    content: " ";
    background: url("../images/ico_plus.svg") 50% no-repeat;
    width: 14px;
    height: 14px;
    margin-right: 7px;
    margin-bottom: 1px;
}
.down_user_excel::before{
    display: block;
    content: " ";
    background: url("../images/ico_down.svg")  50% no-repeat;
    width: 14px;
    height: 14px;
    margin-right: 7px;
    margin-bottom: 1px;
}
.serch_w .btn_w{
    display: flex;
}
button+label, input+button{
    margin-left: 7px;
}
input[type="file"] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
.non_clickable{
    pointer-events: none;
}
.non_clickable input{
    pointer-events: auto;
}

/* B타입 */
/* index */
.dashboard_tap.user{
    position: relative;
    width: 100%;
    background: var(--main-color);
    padding: 8px 20px;
    color: var(--white-color);
    font-size: 18px;
    display: flex;
    align-items: center;
}
.dashboard_tap.user div:first-child{
    margin-right: 10px;
}
.dashboard_tap.user div:last-child{
    font-size: 30px;
}
.dashboard_tap.user:after{
    position: absolute;
    display: block;
    content: "";
    background: url(https://s1.unipware.com/GST.lab/images/ico_arrow_w.svg) 50% 50% no-repeat;
    width: 30px;
    height: 20px;
    transition: all 0.4s 0s;
    background-size: contain;
    margin: 0 6px;
    right: 20px;
    cursor: pointer;
    transform: rotate(180deg);
}
.dashboard_content{
    /* display: none; */
    margin: 30px 0;
}
.card_w{
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.card .title{
    justify-content: space-between;
    align-items: center;
    padding: 0 5px;
}
.card .title div:first-child{
    color: var(--main-color);
    font-weight: 700;
    font-size: 20px;
    max-width: 250px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.card .title div:last-child{
    font-weight: 300;
}
.card .content{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 0 5px;
}
.card .content:last-child{
    margin-bottom: 0px;
}
.card{
    box-shadow: 0px 2px 4px rgba(0, 0, 0, .2);
    padding: 20px;
    width: 23%;
    cursor: pointer;
}
.card hr{
    border: 1px solid var(--main-color);
    margin: 10px 0 20px 0;
}
.content div:first-child{
    background: var(--sub-color);
    padding: 3px 5px;
    min-width: 100px;
    text-align: center;
    margin-right: 10px;
}
.card:hover{
    box-shadow: 0 0 0 2px var(--main-color);
}
.card.active{
    box-shadow: 0 0 0 2px var(--main-color);
}
.index_wrap.active .dashboard_tap.user:after{
    transform: rotate(0deg);
}
.selected_organization{
    text-align: center;
    font-size: 35px;
    padding: 30px;
    background: var(--sub-color);
    margin-bottom: 40px;
    font-weight: 500;
}
.index_wrap.organization{
    margin: 40px 0;
    padding: 0;
    display: none;
    width: 100%;
}
.index_wrap.organization.active{
    display: block;
    min-width: 0;
}
.index_wrap.organization_w.active .index_wrap.organization.active{
    display: none;
}

/* B기관 사용자 > 기관 선택 */

.select_date.organ .btn_select{
    min-width: 200px;
    justify-content: space-between;
    margin-right: 0;
}
.select_date.organ .select_item{
    min-width: 200px;
}
.select_date.organ .select_item button{
    width: 100%;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
table.user.measure_data{
    margin-top: 0;
    font-size: 15px;
    margin-bottom: -1px;
}
.modal_content.input .scroll{
    max-height: 450px;
    padding: 0 10px;
}
.table_thead_scorll{
    padding: 0 15px 0 12px;
}

.list_cont{
    display: none;
}
.chart_cont{
    min-height: 623.5px;
    display: none;
}
.chart_my_wrap{
    width: 100%;
}
.chart_my_wrap .title{
    text-align: center;
    font-size: 22px;
    color: var(--main-color);
    font-weight: bolder;
    padding: 60px 0 40px 0;
}
.chart_my_wrap canvas{
    max-height: 300px;
    margin-bottom: 50px;
}

/* right_aside */
.right_aside{
    width: 300px;
    height: 100%;
    position: fixed;
    right: 0;
    top: 0;
    background-color: var(--white-color);
    box-shadow: 0 0 5px rgba(0, 0, 0, .2);
    margin-right: -300px;
    padding: 80px 30px;
}
.right_aside.open{
    margin-right: 0;
    transition: all 1s;
}
.right_aside>.user{
    text-align: center;
    padding-bottom: 36px;
    border-bottom: 1px solid #cccccc;
}
.user .name{
    font-size: 24px;
}
.user .name span{
    font-size: 30px;
    font-weight: 600;
}
.title_a{
    margin: 30px 0;
    text-align: center;
}
.info_title{
    position: relative;
    padding: 6px 20px;
    display: inline-block;
    color: var(--main-color);
    border-radius: 50px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}
.info_title::after{
    content: '';
    width: 150px;
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    border-bottom: 15px solid #DEE4FB;
}
.time{
    font-size: 14px;
    color: #868686;
    position: relative;
    padding-left: 18px;
    display: inline-block;
}
.time::before{
    position: absolute;
    content: '';
    display: inline-block;
    background-image: url('../images/m_clock.svg');
    width: 15px;
    height: 15px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 15px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.cont_area{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}
.cont_area .area_01 .tt{
    font-size: 20px;
    font-weight: bolder;
}
.cont_area .area_01 .tt span{
    font-weight: normal;
    font-size: 15px;
    margin-left: 6px;
}
.cont_area .area_01 .info{
    font-size: 14px;
}
.cont_area .area_02{
    font-size: 36px;
    position: relative;
    padding-left: 22px;
}
.area_03{
    padding-left: 4px !important;
}
.cont_area .area_02.up::before{
    content: '';
    position: absolute;
    left: 0;
    top: 45%;
    transform: rotate(135deg);
    border-bottom: 5px solid #ff0000;
    border-top: 5px solid transparent;
    border-left: 5px solid #ff0000;
    border-right: 5px solid transparent;
}
.cont_area .area_02.down::before{
    content: '';
    position: absolute;
    top: 40%;
    left: 0;
    transform: rotate(-45deg);
    border-bottom: 5px solid var(--main-color);
    border-top: 5px solid transparent;
    border-left: 5px solid var(--main-color);
    border-right: 5px solid transparent;
}
.cont_area .area_02.keep::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 10px;
    border-bottom: 3px solid #000;
}




footer{
    width: calc(100% - 250px);
    padding: 30px;
    font-size: 13px;
    font-weight: 200;
    color: var(--grey-color);
    letter-spacing: 0.5px;
    text-align: center;
    margin-left: 250px;
}
footer.footer{
    width: calc(100% - 550px);
}



/* 미디어쿼리 */
@media (max-width:1440px) {
    .main.top{
        padding: 0px 0px 100px 80px;
    }
    .index_wrap{
        padding: 40px 50px 0px 80px;
    }
    .wrap{
        padding: 150px 80px 0px 80px;
    }
    .wrap.user_info {
        padding: 150px 300px 0px 80px;
    }
    button {
        padding: 8px 10px;
    }
}
@media (max-width:1160px) {
    .login .index{
        display: none;
    }
}