/* 멤버스영역 ( 로그인 , 회원가입, 아이디 및 비밀번호 찾기 공용 ) */
#membersWrap {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: table;
}
#membersWrap > div {
    width: 100%;
    height: 100%;
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}
#membersWrap > div.background {
    background-color: rgba(0, 0, 0, 0.2);
    position: absolute;
}

#membersBox {
    width: 1000px;
    height: 488px;
    background-color: rgb(255, 255, 255);
    display: inline-block;
    box-shadow: rgba(0, 0, 0, 0.53) 0px 0px 80px;
}
#membersBox.join {
    height: 710px;
}

#membersBox > .visualWrap {
    width: 440px;
    height: 100%;
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
}
#membersBox > .visualWrap > .bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
#membersBox > .visualWrap > .bgWrap {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
#membersBox > .visualWrap > .bgDarkWrap {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.6;
    z-index: 3;
}
#membersBox > .visualWrap > .logo {
    margin-top: 200px;
    z-index: 4;
}
#membersBox > .visualWrap > .loginLogo {
    width: 80%;
}

#membersBox > .formWrap {
    width: calc(100% - 440px);
    height: 100%;
    float: left;
    padding: 0 110px;
    background: #fdcb2a;
}
#membersBox > .formWrap > div {
    width: 100%;
    float: left;
}

#membersBox > .formWrap > .copyrightWrap {
    position: absolute;
    left: 0;
    bottom: 25px;
    color: #212121;
    font-size: 12px;
    font-weight: 500;
}

#membersBox > .formWrap > .titWrap {
    height: 21px;
    margin-top: 100px;
    margin-bottom: 20px;
    text-align: left;
    border-left: 2px solid #333;
    padding-left: 10px;
}
#membersBox > .formWrap > .titWrap > span {
    font-weight: bold;
    font-size: 16px;
    color: #333;
}

#membersBox > .formWrap > .inputWrap > input {
    width: 100%;
    height: 40px;
    float: left;
    border: 1px solid #e1e1e1;
    background-color: #f4f4f4;
    padding: 0 15px;
    font-size: 14px;
    letter-spacing: -0.5px;
    color: #666;
    margin-bottom: 10px;
}
#membersBox > .formWrap > .inputWrap > input.btninput {
    width: 74%;
}
#membersBox > .formWrap > .inputWrap > input:focus {
    transition: border 0.5s;
}
#membersBox > .formWrap > .inputWrap > input::placeholder {
    color: #bbb;
}
#membersBox > .formWrap > .inputWrap > span {
    width: 100%;
    float: left;
    font-size: 13px;
    font-weight: bold;
    text-align: left;
    margin-bottom: 3px;
}
#membersBox > .formWrap > .inputWrap > span.important::before {
    content: "*";
    margin-right: 2px;
}
#membersBox > .formWrap > .inputWrap > button {
    width: 25%;
    height: 40px;
    float: left;
    margin-left: 1%;
    background-color: #aaa;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
}

#membersBox > .formWrap > .btnWrap {
    margin-top: 5px;
}
#membersBox > .formWrap > .btnWrap > button {
    width: 100%;
    height: 40px;
    float: left;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
}
#membersBox > .formWrap > .btnWrap > button > i {
    margin-right: 5px;
}

#membersBox > .formWrap > .saveWrap {
    margin-top: 12px;
}
#membersBox > .formWrap > .saveWrap > label {
    font-size: 14px;
    color: #404040;
}
#membersBox > .formWrap > .saveWrap > label > i {
    float: left;
    top: 3px;
    margin-right: 5px;
}
#membersBox > .formWrap > .saveWrap > label > i.off {
    color: #aaa;
}
#membersBox > .formWrap > .saveWrap > label > span {
    float: left;
}

/* 데이터 간단정리표 */
.dataInfoSimpleWrap {
    width: 100%;
    float: left;
    border: 3px solid #dfdfdf;
    padding: 25px 0;
    margin-bottom: 35px;
}
.dataInfoSimpleWrap > div {
    width: 100%;
    display: table;
}
.dataInfoSimpleWrap > div > div {
    height: 50px;
    display: table-cell;
    vertical-align: middle;
}

.dataInfoSimpleWrap .iconWrap {
    width: 150px;
    border-right: 1px solid #e1e1e1;
    text-align: center;
}
.dataInfoSimpleWrap .iconWrap > i {
    color: #c8c8c8;
    font-size: 35px;
}

.dataInfoSimpleWrap .conWrap > ul {
    width: 100%;
    float: left;
}
.dataInfoSimpleWrap .conWrap > ul > li {
    float: left;
    margin-left: 40px;
}
.dataInfoSimpleWrap .conWrap > ul > li > span {
    float: left;
    font-size: 17px;
    font-weight: bold;
}
.dataInfoSimpleWrap .conWrap > ul > li > span > span {
    font-weight: 400;
}
.dataInfoSimpleWrap .conWrap > ul > li > .label {
    color: #333;
    margin-right: 20px;
}
.dataInfoSimpleWrap .conWrap > ul > li > .value {
    letter-spacing: -0.5px;
}

.dataInfoSimpleWrap .btnWrap {
    width: 260px;
    border-left: 1px solid #e1e1e1;
    padding: 0 30px;
}
.dataInfoSimpleWrap .btnWrap > * {
    width: 200px;
    height: 50px;
    line-height: 48px;
    font-size: 16px;
}
.dataInfoSimpleWrap .btnWrap > *:nth-child(2) {
    height: 35px;
    line-height: 33px;
    font-size: 14px;
    margin-top: 5px;
}

/* 데이터 검색영역 */
.searchWrap {
    width: 100%;
    float: left;
    border: 1px solid #ededed;
    padding: 30px 0;
    margin-bottom: 60px;
}
.searchWrap > form {
    width: 100%;
    float: left;
}

.searchWrap .formWrap {
    width: calc(100% - 326px);
    float: left;
    padding-left: 50px;
}
.searchWrap .formWrap > li {
    width: 100%;
    float: left;
    margin-bottom: 7px;
}
.searchWrap .formWrap > li:last-of-type {
    margin-bottom: 0;
}
.searchWrap .formWrap > li > * {
    float: left;
}
.searchWrap .formWrap > li > .label {
    width: 90px;
    height: 35px;
    line-height: 35px;
    font-size: 15px;
    font-weight: bold;
    color: #333;
}
.searchWrap .formWrap > li > .label > .labelBtn {
    width: 54px;
    height: 22px;
    line-height: 20px;
    float: left;
    cursor: pointer;
    background-color: #fff;
    border-radius: 3px;
    font-size: 11px;
    font-weight: bold;
    text-align: center;
    top: -3px;
    color: #999;
    border: 1px solid #ccc;
}
.searchWrap .formWrap > li > .label > .labelBtn::after {
    content: "전체보기";
}
.searchWrap .formWrap > li > .label > .labelBtn.active {
    background-color: #f2f2f2;
}
.searchWrap .formWrap > li > .label > .labelBtn.active::after {
    content: "닫기";
}
.searchWrap .formWrap > li > select {
    margin-right: 10px;
}
.searchWrap .formWrap > li > .value {
    width: 500px;
}
.searchWrap .formWrap > li > .s_date {
    width: 140px;
}
.searchWrap .formWrap > li > .e_date {
    width: 140px;
    margin-right: 20px;
}
.searchWrap .formWrap > li > .hypen {
    width: 25px;
    height: 35px;
    float: left;
    line-height: 35px;
    color: #666;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
}
.searchWrap .formWrap > li > .dateBtn {
    width: 50px;
    height: 35px;
    float: left;
    line-height: 35px;
    color: #333;
    font-weight: bold;
    font-size: 13px;
    text-align: center;
    cursor: pointer;
    background-color: #ebebeb;
    margin-right: 7px;
}
.searchWrap .formWrap > li > .dateBtn:hover {
    background-color: #ddd;
}

.searchWrap .btnWrap {
    position: absolute;
    right: 0;
    top: 50%;
    padding: 0 65px;
    border-left: 1px solid #e1e1e1;
    margin-top: -17.5px;
}
.searchWrap .btnWrap > * {
    width: 130px;
}

/* 데이터 검색영역 */
.simpleSearchWrap {
    width: 100%;
    float: left;
    margin-top: 50px;
}
.simpleSearchWrap > form {
    width: 100%;
    float: left;
    border: 1px solid #eaeaea;
    text-align: center;
    padding: 35px 0;
}
.simpleSearchWrap > form > * {
    display: inline-block;
    float: none;
    margin: 0 3px;
}
.simpleSearchWrap > form > input {
    width: 300px;
}

/* 데이터 목록영역 */
.listWrap {
    width: 100%;
    float: left;
}
.listWrap img {
    max-width: 100%;
}
.listWrap > .info {
    width: 100%;
    float: left;
    font-size: 15px;
    color: #aaa;
    margin-top: 40px;
    margin-bottom: 15px;
    border: 3px solid #ccc;
    font-weight: 500;
    text-align: center;
    padding: 15px;
}
.listWrap > .info:first-of-type {
    margin-top: 0;
}
.listWrap > .info > span {
    letter-spacing: -0.5px;
    font-weight: bold;
}
.listWrap > table {
    width: 100%;
    float: left;
    border-top: 2px solid #666;
    border-bottom: 1px solid #666;
}
.listWrap > .tit {
    width: 100%;
    float: left;
    font-size: 16px;
    font-weight: bold;
    color: #000;
    padding-bottom: 6px;
    margin-top: 60px;
}
.listWrap > .tit:first-of-type {
    margin-top: 0;
}

.listWrap > table > thead > tr > th {
    font-size: 13px;
    font-weight: bold;
    color: #333;
    border-right: 1px solid #ddd;
    padding: 10px 0;
    text-align: center;
    vertical-align: middle;
    border-bottom: 1px solid #ddd;
}
.listWrap > table > thead > tr > th:last-of-type {
    border-right: 0;
}
.listWrap > table > thead > tr:nth-of-type(1) > th {
    background-color: #f3f3f3;
}
.listWrap > table > thead > tr:nth-of-type(2) > th {
    background-color: #ececec;
}
.listWrap > table > thead > tr:nth-of-type(2) > th.last {
    border-right: 1px solid #ddd;
}

.listWrap > table > tbody > tr.rowMove {
    cursor: pointer;
}
.listWrap > table > tbody > tr.rowMove:hover > td {
    background-color: #fbfbfb;
}
.listWrap > table > tbody > tr > td {
    height: 38px;
    font-size: 13px;
    font-weight: 400;
    color: #666;
    border-bottom: 1px solid #ddd;
    border-right: 1px solid #eee;
    text-align: center;
    padding: 7px;
    word-break: break-all;
}
.listWrap > table > tbody > tr:last-of-type > * {
    border-bottom: 0;
}
.listWrap > table > tbody > tr > td.no {
    color: #ccc;
}
.listWrap > table > tbody > tr > td.tl {
    text-align: left;
}
.listWrap > table > tbody > tr > td:last-of-type {
    border-right: 0;
}

.listWrap > table td.stopProgram {
    cursor: default;
}
.listWrap > table td.sub {
    line-height: 15px;
}
.listWrap > table span.small {
    font-size: 12px;
    color: #bbb;
}
.listWrap > table td i.click {
    font-size: 15px;
}
.listWrap > table td .listMiniInfoBoxBtn {
    font-size: 15px;
    color: #ddd;
}
.listWrap > table td .listMiniInfoBoxBtn.active {
    color: #dc3333;
    cursor: pointer;
}
.listWrap > table td .listMiniInfoBoxWrap {
    position: absolute;
    width: 650px;
    min-height: 100%;
    top: 0;
    background-color: #444;
    border: 1px solid #333;
    color: #fff;
    font-weight: 400;
    font-size: 13px;
    display: none;
    z-index: 10;
}
.listWrap > table td .listMiniInfoBoxWrap.right {
    right: 100%;
    text-align: right;
}
.listWrap > table td .listMiniInfoBoxWrap > p {
    width: 100%;
    height: 100%;
    display: table-cell;
    vertical-align: middle;
    padding: 10px;
    letter-spacing: -0.5px;
}
.listWrap > table td .listMiniInfoBoxWrap.active {
    display: table;
}
.listWrap > table td i.dbCsLogBtn {
    font-size: 16px;
}
.listWrap > table td i.dbCsLogBtn.csStatusY {
    color: #ccc;
}
.listWrap > table td i.dbStatusLogBtn {
    font-size: 16px;
}
.listWrap > table td i.logViewBtn {
    font-size: 16px;
    cursor: pointer;
}
.listWrap > table td span.logCntTxt {
    font-size: 11px;
    color: #aaa;
    letter-spacing: -0.5px;
}

.listWrap > .dateChartWrap .today > * {
    background-color: #f7ffd4;
    font-weight: 500;
    color: #333;
}
.listWrap > .dateChartWrap th.nowHour {
    border-top: 2px solid #dc3333;
    border-left: 2px solid #dc3333;
    border-right: 2px solid #dc3333;
}
.listWrap > .dateChartWrap td.nowHour {
    border-left: 2px solid #dc3333;
    border-right: 2px solid #dc3333;
}
.listWrap > .dateChartWrap tr:last-of-type > td.nowHour {
    border-bottom: 2px solid #dc3333;
}

.listEtcWrap {
    width: 100%;
    float: left;
    margin-bottom: 10px;
}
.listEtcWrap > .right > * {
    margin-left: 5px;
}
.listEtcWrap > .left > .cnt {
    height: 35px;
    line-height: 35px;
    float: left;
    color: #333;
    font-weight: bold;
    font-size: 14px;
}

.listChartWrap {
    width: 100%;
    float: left;
    border: 1px solid #ededed;
    padding: 50px;
    margin-bottom: 35px;
}
.listChartWrap > div {
    width: 100%;
    height: 400px;
    float: left;
}
.listChartWrap.mini {
    width: 75%;
    margin-right: 1%;
}

.listChartDataWrap {
    width: 24%;
    height: 502px;
    float: right;
    border: 1px solid #ededed;
}
.listChartDataWrap > .tit {
    width: 100%;
    float: left;
    font-size: 16px;
    color: #000;
    font-weight: bold;
    padding: 20px;
    padding-bottom: 5px;
}
.listChartDataWrap > .tit > i {
    margin-right: 5px;
}

.listChartDataWrap > table {
    width: 100%;
    height: 452px;
    float: left;
}
.listChartDataWrap > table thead > tr > * {
    height: 35px;
    text-align: center;
    font-size: 13px;
}
.listChartDataWrap > table thead > tr > * > .mini {
    font-size: 11px;
}
.listChartDataWrap > table tbody > tr > * {
    text-align: center;
    font-size: 13px;
    border-top: 1px solid #eee;
    border-right: 1px solid #eee;
}
.listChartDataWrap > table tbody > tr > *:last-child {
    border-right: 0;
}
.listChartDataWrap > table tbody > tr:nth-of-type(odd) {
    background-color: #fafafa;
}
.listChartDataWrap > table tbody > tr > * > .mini {
    color: #aaa;
    font-size: 11px;
}

/* 데이터 정보영역 */
.viewWrap {
    width: 100%;
    float: left;
}
.viewWrap > table td.sub {
    line-height: 15px;
}
.viewWrap > table span.small {
    font-size: 12px;
    color: #bbb;
}
.viewWrap img {
    max-width: 100%;
}
.viewWrap > .tit {
    width: 100%;
    float: left;
    font-size: 18px;
    font-weight: bold;
    color: #000;
    padding-bottom: 6px;
    margin-top: 60px;
}
.viewWrap > .tit:first-of-type {
    margin-top: 0;
}
.viewWrap > .tit > i {
    margin-right: 5px;
}
.viewWrap > table {
    width: 100%;
    float: left;
    border-top: 2px solid #666;
    border-bottom: 1px solid #666;
}

.viewWrap > table th {
    font-size: 13px;
    font-weight: bold;
    color: #333;
    border-bottom: 1px solid #ddd;
    background-color: #f8f8f8;
    text-align: left;
    vertical-align: top;
    padding: 13px 18px;
}
.viewWrap > table td {
    height: 56px;
    font-size: 13px;
    font-weight: 400;
    color: #666;
    border-bottom: 1px solid #ddd;
    padding: 10px 15px;
    text-align: left;
}
.viewWrap > table tr:last-of-type > * {
    border-bottom: 0;
}

/* 데이터 작성영역 */
.writeWrap {
    width: 100%;
    float: left;
}
.writeWrap table td.sub {
    line-height: 15px;
}
.writeWrap table span.small {
    font-size: 12px;
    color: #bbb;
}
.writeWrap img {
    max-width: 100%;
}
.writeWrap form {
    width: 100%;
    float: left;
}
.writeWrap .tit {
    width: 100%;
    float: left;
    font-size: 16px;
    font-weight: bold;
    color: #000;
    padding-bottom: 6px;
    margin-top: 60px;
}
.writeWrap .tit:first-of-type {
    margin-top: 0;
}
.writeWrap .tit > i {
    margin-right: 5px;
}
.writeWrap table {
    width: 100%;
    float: left;
    border-top: 2px solid #666;
    border-bottom: 1px solid #666;
}

.writeWrap table th {
    font-size: 13px;
    font-weight: bold;
    color: #333;
    border-bottom: 1px solid #ddd;
    background-color: #f8f8f8;
    text-align: left;
    vertical-align: top;
    padding: 13px 18px;
}
.writeWrap table th.important::before {
    content: "*";
    color: #dc3333;
    margin-right: 2px;
}
.writeWrap table td {
    height: 56px;
    font-size: 13px;
    font-weight: 400;
    color: #666;
    border-bottom: 1px solid #ddd;
    padding: 10px 15px;
}
.writeWrap table td.tl {
    text-align: left;
}
.writeWrap table tbody > tr:last-of-type > * {
    border-bottom: 0;
}

.writeWrap > .info {
    width: 100%;
    float: left;
    font-size: 13px;
    color: #aaa;
    border: 3px solid #ccc;
    font-weight: 500;
    text-align: center;
    padding: 15px;
}
.writeWrap > .info i {
    margin-right: 5px;
}

.cntControlerWrap {
    width: 100%;
    float: left;
    -ms-user-select: none;
    -moz-user-select: -moz-none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    user-select: none;
    text-align: center;
}
.cntControlerWrap > * {
    float: left;
}
.cntControlerWrap > i {
    width: 35px;
    background-color: #f5f5f5;
    color: #bbb;
    border: 1px solid #ccc;
    font-size: 14px;
    height: 35px;
    line-height: 35px;
    cursor: pointer;
}
.cntControlerWrap > input {
    width: 80px !important;
    border: 1px solid #ccc !important;
    border-left: 0 !important;
    border-right: 0 !important;
    height: 35px;
    text-align: center;
    font-weight: bold;
}

/* 팝업형 미니 리스트 등록폼 */
.listMiniWriteWrap {
    width: 100%;
    float: left;
    background-color: #f5f5f5;
    padding: 10px;
    margin-bottom: 20px;
}
.listMiniWriteWrap > li {
    float: left;
    padding: 0 2px;
}

/* 버튼 영역 */
.dataBtnWrap {
    width: 100%;
    float: left;
    padding: 10px 0;
}
.dataBtnWrap.border {
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 10px;
}

.dataBtnWrap > .left > * {
    margin-right: 5px;
}
.dataBtnWrap > .left > .line {
    width: 1px;
    height: 40px;
    float: left;
    background-color: #e8e8e8;
    margin: 0 15px 0 10px;
}

.dataBtnWrap > .right > * {
    margin-left: 5px;
}

/* 팝업 영역 */
.popupWrap {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
}
.popupWrap > .popupBox {
    position: absolute;
    width: 1200px;
    height: 700px;
    left: 50%;
    top: 50%;
    margin-top: -350px;
    margin-left: -600px;
    background-color: #fff;
}

.popupWrap .guideWrap {
    width: 100%;
    float: left;
    margin-top: 50px;
}
.popupWrap .guideWrap > div {
    width: 100%;
    display: table;
    background-color: #efefef;
}
.popupWrap .guideWrap > div > * {
    display: table-cell;
    vertical-align: middle;
}

.popupWrap .guideWrap > div > .iconWrap {
    width: 220px;
    text-align: center;
    color: #fff;
    font-size: 45px;
}
.popupWrap .guideWrap > div > .conWrap {
    padding: 30px 0;
}
.popupWrap .guideWrap > div > .conWrap > li {
    float: left;
}
.popupWrap .guideWrap > div > .conWrap > li.basic {
    width: 100%;
    color: #646464;
    font-size: 13px;
}
.popupWrap .guideWrap > div > .conWrap > li.basic > span {
    font-weight: 500;
}

.popupWrap > .popupBox > .titWrap {
    width: 100%;
    float: left;
    padding: 25px 0;
    border-bottom: 1px solid #ebebeb;
}
.popupWrap > .popupBox > .titWrap > .left {
    padding-left: 50px;
    font-size: 21px;
    color: #333;
    font-weight: bold;
}
.popupWrap > .popupBox > .titWrap > .left > .guide {
    font-size: 13px;
    color: #bbb;
    font-weight: 500;
    margin-left: 15px;
    top: -3px;
}
.popupWrap > .popupBox > .titWrap > .right {
    height: 31px;
}
.popupWrap > .popupBox > .titWrap > .right > i {
    position: absolute;
    font-size: 40px;
    right: 30px;
    top: 50%;
    margin-top: -20px;
    color: #ccc;
    cursor: pointer;
}
.popupWrap > .popupBox > .titWrap > .right > i:hover {
    color: #bbb;
}

.popupWrap > .popupBox > .frameWrap {
    width: 100%;
    height: calc(100% - 82px);
    float: left;
    padding: 0;
    overflow-y: auto;
}

.popupBox .popupContentsWrap {
    width: 100%;
    height: calc(100% - 80px);
    float: left;
    overflow-y: auto;
    padding: 30px 60px;
}
.popupBox .popupContentsWrap::-webkit-scrollbar {
    background-color: #fff;
}
.popupBox .popupContentsWrap .tit {
    margin-top: 35px;
}
.popupBox .popupContentsWrap .tit:first-of-type {
    margin-top: 0;
}

.popupBox .popupBtnWrap {
    width: 100%;
    height: 80px;
    line-height: 80px;
    float: left;
    text-align: center;
}
.popupBox .popupBtnWrap > * {
    float: none;
    display: inline-block;
    margin: 0 2px;
}

/* 페이징 */
.pagingWrap {
    width: 100%;
    float: left;
    margin-top: 30px;
}
.pagingWrap > ul {
    width: 100%;
    float: left;
    text-align: center;
}
.pagingWrap > ul > li {
    display: inline-block;
    margin: 0 2px;
}
.pagingWrap > ul > li > a {
    float: left;
    color: #aaa;
    font-weight: 500;
    font-size: 14px;
    padding: 2px 9px;
    border: 1px solid #eee;
}
.pagingWrap > ul > li > a:hover {
    color: #999;
    border: 1px solid #ccc;
}
.pagingWrap > ul > li > span {
    float: left;
    color: #354c8e;
    font-weight: 500;
    font-size: 14px;
    padding: 2px 9px;
    border: 1px solid #354c8e;
}

/* 엑셀 */
#excelFileName {
    height: 40px;
    line-height: 40px;
    float: left;
    color: #999;
    margin-left: 10px;
    font-size: 13px;
}
.getFileNameSpan {
    height: 40px;
    line-height: 40px;
    float: left;
    color: #999;
    margin-left: 10px;
    font-size: 13px;
}

/* 긴급공지 */
#importantPopupWrap {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 1000;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 0;
}
#importantPopupWrap img {
    max-width: 100%;
}

#importantPopupBox {
    width: 800px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -400px;
    background-color: #fff;
    border-radius: 3px;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    margin-top: -276.5px;
}

#importantPopupBox > .topWrap {
    width: 100%;
    float: left;
    border-bottom: 1px solid #eee;
    font-size: 16px;
    font-weight: bold;
    color: #dc3333;
    text-align: center;
    letter-spacing: -0.5px;
    padding: 10px 0;
}

#importantPopupBox > .btmWrap {
    width: 100%;
    float: left;
    font-size: 12px;
    font-weight: 300;
    color: #fff;
    text-align: right;
    padding: 10px;
    background-color: #151c20;
}
#importantPopupBox > .btmWrap > a {
    margin-left: 10px;
    color: #fff;
}

#importantPopupBox > .conWrap {
    width: 100%;
    float: left;
    padding: 20px;
    padding-bottom: 10px;
}
#importantPopupBox > .conWrap > li {
    width: 100%;
    float: left;
    height: 400px;
    overflow: auto;
    display: none;
}

#importantPopupBox > .conWrap > li > .titWrap {
    width: 100%;
    float: left;
    border-bottom: 1px solid #f2f2f2;
    padding-bottom: 10px;
}
#importantPopupBox > .conWrap > li > .titWrap > .big {
    width: 100%;
    float: left;
    font-size: 21px;
    font-weight: bold;
    color: #333;
    letter-spacing: -1px;
    line-height: 26px;
}
#importantPopupBox > .conWrap > li > .titWrap > .small {
    width: 100%;
    float: left;
    font-size: 14px;
    font-weight: 300;
    color: #999;
    letter-spacing: -0.5px;
    margin-top: 10px;
}

#importantPopupBox > .conWrap > li > .infoWrap {
    width: 100%;
    float: left;
    font-size: 15px;
    font-weight: 300;
    color: #333;
    letter-spacing: -0.5px;
    padding: 10px 0;
}

#importantPopupBox > .navWrap {
    width: 100%;
    float: left;
    text-align: center;
    padding-bottom: 20px;
}
#importantPopupBox > .navWrap > li {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #ccc;
    border-radius: 100%;
    margin: 0 1px;
    cursor: pointer;
}
#importantPopupBox > .navWrap > li.active {
    background-color: #333;
}

/* 데이터 정리 */
.dbCheckDataInfoWrap {
    width: 100%;
    float: left;
    margin-bottom: 30px;
}

.dbCheckDataInfoWrap > .titWrap {
    width: 100%;
    height: 25px;
    float: left;
    margin-bottom: 10px;
}
.dbCheckDataInfoWrap > .titWrap > .left {
    font-size: 18px;
    color: #000;
    font-weight: bold;
}
.dbCheckDataInfoWrap > .titWrap > .left > i {
    margin-right: 5px;
}
.dbCheckDataInfoWrap > .titWrap > .right > .label {
    height: 25px;
    line-height: 25px;
    float: left;
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-right: 15px;
}
.dbCheckDataInfoWrap > .titWrap > .right > .value {
    height: 25px;
    float: left;
    font-size: 14px;
    line-height: 25px;
    padding: 0 30px;
    color: #fff;
    font-weight: 500;
    border-radius: 50px;
}
.dbCheckDataInfoWrap > .titWrap > .right > .rightBtn {
    height: 30px;
    float: left;
    font-size: 13px;
    line-height: 30px;
    padding: 0 30px;
    color: #fff;
    font-weight: 500;
    border-radius: 50px;
    background-color: #ccc;
    top: -2px;
}
.dbCheckDataInfoWrap > .titWrap > .right > .rightBtn > i {
    margin-right: 5px;
}
.dbCheckDataInfoWrap > .titWrap > .right > .rightBtn.active {
    cursor: pointer;
}

.dbCheckDataInfoWrap > .infoWrap {
    width: 100%;
    float: left;
    border: 2px solid #eee;
    padding: 20px 30px;
}
.dbCheckDataInfoWrap > .infoWrap > ul {
    width: 100%;
    float: left;
    margin-bottom: 10px;
}
.dbCheckDataInfoWrap > .infoWrap > ul:last-of-type {
    margin-bottom: 0;
}
.dbCheckDataInfoWrap > .infoWrap > ul > li {
    float: left;
    padding: 0 15px;
    border-right: 1px solid #eee;
}
.dbCheckDataInfoWrap > .infoWrap > ul > li:first-of-type {
    padding-left: 0;
}
.dbCheckDataInfoWrap > .infoWrap > ul > li:last-of-type {
    border-right: 0;
}
.dbCheckDataInfoWrap > .infoWrap > ul > li > span {
    float: left;
    color: #333;
    font-size: 13px;
}
.dbCheckDataInfoWrap > .infoWrap > ul > li > span.label {
    margin-right: 20px;
    font-weight: bold;
}

.dbCheckDataInfoWrap > .infoWrap > button {
    position: absolute;
    right: 50px;
    top: 50%;
    margin-top: -17.5px;
}

/* 200617 엑셀 업로드 결과 정리표 */
#excelResultInfoWrap {
    width: 100%;
    float: left;
    margin-bottom: 20px;
}
#excelResultInfoWrap > ul {
    width: 100%;
    float: left;
    border-right: 1px solid #ccc;
}
#excelResultInfoWrap > ul > li {
    height: 50px;
    line-height: 50px;
    float: left;
    text-align: center;
    font-size: 14px;
}
#excelResultInfoWrap > ul > li.label {
    width: 18%;
    font-weight: bold;
    color: #fff;
}
#excelResultInfoWrap > ul > li.label > .background {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.3;
    top: 0;
    left: 0;
}
#excelResultInfoWrap > ul > li.value {
    width: 15.33%;
    font-weight: 500;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

/* 200805 정보페이지 상단 정보 */
#viewMoreInfoWrap > .section {
    padding: 35px !important;
}

#viewMoreInfoWrap .infoWrap {
    width: 100%;
    float: left;
    display: table;
    table-layout: fixed;
}
#viewMoreInfoWrap .infoWrap > li {
    display: table-cell;
    vertical-align: middle;
}

#viewMoreInfoWrap .infoWrap > .icon {
    width: 80px;
}
#viewMoreInfoWrap .infoWrap > .icon > i {
    width: 80px;
    height: 80px;
    line-height: 80px;
    float: left;
    text-align: center;
    color: #fff;
    border-radius: 100%;
    font-size: 32px;
}

#viewMoreInfoWrap .infoWrap > .info {
    padding-left: 35px;
}

#viewMoreInfoWrap .infoWrap > .info > .siteInfo {
    width: 100%;
    float: left;
    margin-bottom: 10px;
}
#viewMoreInfoWrap .infoWrap > .info > .siteInfo > .name {
    float: left;
    font-size: 20px;
    font-weight: bold;
    color: #333;
}
#viewMoreInfoWrap .infoWrap > .info > .siteInfo > a {
    float: left;
    font-size: 13px;
    font-weight: 400;
    color: #999;
    letter-spacing: -0.8px !important;
    margin-left: 15px;
    top: 8px;
}
#viewMoreInfoWrap .infoWrap > .info > .siteInfo > a > i {
    color: #666;
    margin-right: 5px;
}

#viewMoreInfoWrap .infoWrap > .info > .chartInfo {
    width: calc(100% - 240px);
    float: left;
    border-radius: 3px;
    padding: 10px 20px;
}
#viewMoreInfoWrap .infoWrap > .info > .chartInfo > span {
    float: left;
    font-size: 13px;
    letter-spacing: -0.8px;
    color: #666;
}
#viewMoreInfoWrap .infoWrap > .info > .chartInfo > span > b {
    letter-spacing: -0.5px;
    font-weight: 500;
    margin-left: 5px;
}
#viewMoreInfoWrap .infoWrap > .info > .chartInfo > .line {
    font-size: 11px;
    margin: 0 15px;
    color: #aaa;
}
#viewMoreInfoWrap .infoWrap > .info > .chartInfo.type1 {
    width: 100% !important;
}

#viewMoreInfoWrap .infoWrap > .info > button {
    width: 230px;
    height: 40px;
    float: left;
    border-radius: 3px;
    overflow: hidden;
    margin-left: 10px;
}
#viewMoreInfoWrap .infoWrap > .info > button > .name {
    width: 100%;
    height: 40px;
    float: left;
    line-height: 40px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    z-index: 2;
}
#viewMoreInfoWrap .infoWrap > .info > button > .name > i {
    font-size: 16px;
    margin-right: 10px;
}
#viewMoreInfoWrap .infoWrap > .info > button > .background {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #fff;
    opacity: 0.3;
}

/* 200805 프로젝트 상담폼 등록 */
#prFrmValEditPopupList {
    width: 100%;
    float: left;
}
#prFrmValEditPopupList > li {
    width: 100%;
    float: left;
    margin-bottom: 5px;
}
#prFrmValEditPopupList > li > .txtBox {
    width: calc(100% - 35px);
}
#prFrmValEditPopupList > li > i {
    width: 35px;
    height: 35px;
    line-height: 35px;
    float: left;
    font-size: 18px;
    cursor: pointer;
    text-align: center;
}
#prFrmValEditPopupList > li > .popupMoreValueAddBtn {
    color: #3366cc;
}
#prFrmValEditPopupList > li > .popupMoreValueRemoveBtn {
    color: #ccc;
}

#prFrmValEditPopupList > li:last-of-type {
    margin-bottom: 0;
}
#prFormWriteWrap {
    width: 100%;
    float: left;
    margin-bottom: 60px;
}
#prFormWriteWrap > .tit {
    width: 100%;
    float: left;
    font-size: 16px;
    font-weight: bold;
    color: #000;
    padding-bottom: 6px;
}
#prFormWriteWrap > form {
    width: 100%;
    float: left;
    background-color: #f5f5f5;
    border-radius: 5px;
    padding: 50px 30%;
}
#prFormWriteWrap > form > ul {
    width: 100%;
    float: left;
}
#prFormWriteWrap > form > ul > li {
    width: 100%;
    float: left;
    margin-bottom: 5px;
}
#prFormWriteWrap > form > ul > li:last-of-type {
    margin-bottom: 0;
}
#prFormWriteWrap > form > ul > li > .label {
    width: 100px;
    height: 35px;
    line-height: 35px;
    float: left;
    font-size: 14px;
    font-weight: bold;
    color: #333;
}
#prFormWriteWrap > form > ul > li > .txtBox {
    float: left;
    max-width: calc(100% - 100px);
}
#prFormWriteWrap > form > ul > li > .moreValue {
    width: calc(100% - 100px);
    float: left;
}
#prFormWriteWrap > form > ul > li > .moreValue > .txtBox {
    width: calc(100% - 35px);
    margin-bottom: 5px;
}
#prFormWriteWrap > form > ul > li > .moreValue > i {
    width: 35px;
    height: 35px;
    line-height: 35px;
    float: left;
    font-size: 18px;
    cursor: pointer;
    text-align: center;
    margin-bottom: 5px;
}
#prFormWriteWrap > form > ul > li > .moreValue > .moreValueAddBtn {
    color: #3366cc;
}
#prFormWriteWrap > form > ul > li > .moreValue > .moreValueRemoveBtn {
    color: #ccc;
}
#prFormWriteWrap > form > .btnWrap {
    width: 100%;
    float: left;
    border-top: 1px solid #ccc;
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
}
#prFormWriteWrap > form > .btnWrap > button {
    float: none;
    display: inline-block;
}

.prFormListWrap {
    width: 100%;
    float: left;
    border-bottom: 1px solid #666;
}
.prFormListWrap > ul {
    width: 100%;
    float: left;
}
.prFormListWrap > ul > li {
    width: 100%;
    float: left;
    cursor: move;
    display: table;
    table-layout: fixed;
    border-bottom: 1px solid #ddd;
    background-color: #fff;
}
.prFormListWrap > ul > .ui-sortable-helper {
    border: 1px solid #666 !important;
    z-index: 2;
}
.prFormListWrap > ul > li:last-of-type {
    border-bottom: 0;
}
.prFormListWrap > ul > li > div {
    display: table-cell;
    vertical-align: middle;
    border-right: 1px solid #ddd;
    text-align: center;
    padding: 10px;
    font-size: 13px;
    color: #666;
}
.prFormListWrap > ul > li > div:last-of-type {
    border-right: 0;
}
.prFormListWrap > ul > li label.toggle {
    float: none;
    display: inline-block;
    top: 2px;
}
.prFormListWrap > ul > li > div:first-of-type {
    font-size: 14px;
    font-weight: 500;
}
.prFormListWrap > ul > li > div:first-of-type > i {
    margin-right: 5px;
    color: #aaa;
}
.prFormListWrap > ul > li > div:last-of-type > i {
    font-size: 16px;
    cursor: default;
    color: #ccc;
}
.prFormListWrap > ul > li > div:last-of-type > i.formListDeleteBtn {
    cursor: pointer;
    color: #dc3333;
}
.prFormListWrap > ul > li > div i.frmValEditBtn {
    font-size: 16px;
    cursor: pointer;
    color: #333;
}

/* 200814 그외참고URL */
#mylinkListWrap {
    width: 100%;
    float: left;
}
#mylinkListWrap > ul {
    width: 100%;
    float: left;
    padding: 30px 120px;
    background-color: #f5f5f5;
    margin-bottom: 50px;
}
#mylinkListWrap > ul:last-of-type {
    margin-bottom: 0;
}
#mylinkListWrap > ul > li {
    width: 100%;
    float: left;
    text-align: center;
}

#mylinkListWrap > ul.type1 > li.url {
    border-radius: 5px;
    letter-spacing: -0.5px;
    font-size: 14px;
    color: #fff;
    padding: 20px;
    font-weight: 500;
}
#mylinkListWrap > ul.type1 > li.info {
    color: #dc3333;
    font-weight: 500;
    font-size: 12px;
    margin-top: 10px;
}

#mylinkListWrap > ul.type2 > li.info {
    font-size: 15px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}
#mylinkListWrap > ul.type2 > li.info > i {
    margin-right: 5px;
}
#mylinkListWrap > ul.type2 > li.url {
    border-radius: 5px;
    padding: 20px 200px;
    background-color: #999;
}
#mylinkListWrap > ul.type2 > li.url > span {
    width: 100%;
    float: left;
    text-align: center;
}
#mylinkListWrap > ul.type2 > li.url > span.url {
    font-size: 14px;
    letter-spacing: -0.5px;
    font-weight: 500;
}
#mylinkListWrap > ul.type2 > li.url > span.info {
    color: #fff;
    font-size: 12px;
    border-top: 1px solid #ccc;
    margin-top: 20px;
    padding-top: 20px;
}

/* 200818 회원아이콘설정 */
.m_icon + label {
    font-size: 32px !important;
    color: #ccc !important;
    margin-right: 3px !important;
}
.m_icon + label:hover {
    color: #aaa !important;
}

/* 200818 설정용 프로젝트 */
.prSettingSelectWrap {
    padding-top: 0 !important;
}
.prSettingSelectWrap > ul {
    width: 100%;
    float: left;
}
.prSettingSelectWrap > ul > li {
    float: left;
    margin-top: 10px;
    margin-right: 10px;
}
.prSettingSelectWrap > ul > li > label {
    height: 40px;
    line-height: 36px;
    float: left;
    font-size: 13px;
    font-weight: 500;
    border: 2px solid #eee;
    color: #ccc;
    border-radius: 10px;
    padding: 0 15px;
}
.prSettingSelectWrap > ul > li > label > .lp05 {
    font-weight: 400;
    color: #aaa;
    opacity: 0.5;
    margin-left: 2px;
}
.prSettingSelectWrap > ul > li > label > i {
    font-size: 15px;
    margin-right: 5px;
    top: 1px;
}
.prSettingSelectWrap > ul > li > input:checked + label > .lp05 {
    opacity: 1;
}

/* 200820 검색창 더 많은 검색값 */
.searchValueMoreWrap > .label {
    height: 57px !important;
}
.searchValueItemWrap {
    width: calc(100% - 90px);
    float: left;
}
.searchValueItemWrap.before {
    max-height: 75px;
    overflow: hidden;
}
.searchValueItemWrap > li {
    float: left;
    margin-bottom: 5px;
    margin-right: 5px;
}
.searchValueItemWrap > li > label {
    height: 35px;
    line-height: 33px;
    float: left;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid #e1e1e1;
    color: #ccc;
    border-radius: 5px;
    padding: 0 15px;
    background-color: #fff;
    letter-spacing: -0.5px;
}
.searchValueItemWrap > li > label > i {
    font-size: 15px;
    margin-right: 5px;
    top: 1px;
}
.searchValueItemWrap > li > label > .on {
    display: none;
}
.searchValueItemWrap > li > label > .off {
    display: inline;
    color: #ddd;
}
.searchValueItemWrap > li > input:checked + label > .on {
    display: inline;
}
.searchValueItemWrap > li > input:checked + label > .off {
    display: none;
}

/* 200820 분배설정 */
.distSettingWrap {
    width: 100%;
    float: left;
}
.distSettingWrap > li {
    width: 300px;
    height: 47px;
    float: left;
    padding: 5px;
    border: 1px solid #ddd;
    margin-right: 10px;
    margin-top: 10px;
    cursor: move;
    background-color: #fff;
}
.distSettingWrap > li > .cnt {
    width: 50px;
    float: right;
    text-align: center;
    background-color: #fafafa;
    font-weight: 500;
}
.distSettingWrap > li > .sort {
    width: 35px;
    height: 35px;
    line-height: 35px;
    float: left;
    background-color: #ddd;
    border-radius: 100%;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    color: #333;
    letter-spacing: -0.8px;
}
.distSettingWrap > li > .name {
    height: 35px;
    line-height: 35px;
    float: left;
    font-size: 13px;
    font-weight: 500;
    color: #333;
    margin-left: 5px;
}
.distSettingWrap > li > .name > .code {
    font-weight: 400;
    color: #aaa;
    margin-left: 3px;
    letter-spacing: -0.5px;
}
.distSettingWrap li.placeholder {
    background-color: #f1f1f1;
    border: 1px solid #f1f1f1;
}

.popupContentsWrap .distSettingWrap > li {
    width: 270px;
    margin-right: 5px;
}

.distSelectWrap {
    width: 100%;
    float: left;
    -ms-user-select: none;
    -moz-user-select: -moz-none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    user-select: none;
}
.distSelectWrap > li {
    width: 25%;
    float: left;
    text-align: left;
}
.distSelectWrap > li > label {
    height: 35px;
    line-height: 35px;
    float: left;
}
.distSelectWrap > li > label > span {
    letter-spacing: -0.5px;
    color: #bbb;
    margin-left: 5px;
}
.distSelectWrap > li > label > i {
    vertical-align: middle;
}
.distSelectWrap > li > label > .off {
    color: #ddd;
    display: inline-block;
}
.distSelectWrap > li > label > .on {
    color: #3366cc;
    display: none;
}
.distSelectWrap > li > input:checked + label > span {
    color: #666;
}
.distSelectWrap > li > input:checked + label > .off {
    display: none;
}
.distSelectWrap > li > input:checked + label > .on {
    display: inline-block;
}
.distSelectWrap > li > span {
    color: #bbb;
}

/* 200821 첨부파일 멀티업로더 */
.multiFileUploadWrap {
    width: 100%;
    float: left;
    border: 1px solid #ccc;
    margin-top: 10px;
}
.multiFileUploadWrap ul {
    width: 100%;
    float: left;
}
.multiFileUploadWrap ul > li {
    float: left;
    text-align: center;
    font-size: 13px;
}
.multiFileUploadWrap ul > li:nth-of-type(1) {
    width: 5%;
}
.multiFileUploadWrap ul > li:nth-of-type(2) {
    width: 70%;
}
.multiFileUploadWrap ul > li:nth-of-type(3) {
    width: 15%;
}
.multiFileUploadWrap ul > li:nth-of-type(4) {
    width: 10%;
}
.multiFileUploadWrap ul.no > li {
    width: 100% !important;
    text-align: center;
    height: 30px;
    line-height: 30px;
    font-size: 12px;
    color: #ccc !important;
}

.multiFileUploadWrap > ul.head {
    background-color: #f5f5f5;
    border-bottom: 1px solid #ccc;
}
.multiFileUploadWrap > ul.head > li {
    height: 30px;
    line-height: 30px;
    font-weight: bold;
    color: #999;
    border-right: 1px solid #ddd;
}
.multiFileUploadWrap > ul.head > li:last-of-type {
    border-right: 0;
}

.multiFileUploadWrap > .body {
    width: 100%;
    float: left;
}
.multiFileUploadWrap > .body > ul {
    border-bottom: 1px solid #ddd;
}
.multiFileUploadWrap > .body > ul:last-of-type {
    border-bottom: 0;
}
.multiFileUploadWrap > .body > ul > li {
    height: 30px;
    line-height: 30px;
    padding: 0 10px;
    border-right: 1px solid #e5e5e5;
    color: #666;
    letter-spacing: -0.5px;
}
.multiFileUploadWrap > .body > ul > li:last-of-type {
    border-right: 0;
}
.multiFileUploadWrap > .body > ul > li:nth-of-type(2) {
    text-align: left;
}
.multiFileUploadWrap > .body > ul > li .multiFileUploadDeleteBtn {
    cursor: pointer;
}
.multiFileUploadWrap > .body > ul > li a {
    cursor: pointer;
}

/* 200824 자료실 */
.filesUploadWrap {
    width: 100%;
    float: left;
}
.filesUploadWrap > form {
    width: 100%;
    float: left;
}
.filesUploadWrap > form > .typeBtn {
    margin-right: 5px;
}

.filesListWrap {
    width: 100%;
    float: left;
    padding: 30px;
    background-color: #f9f9f9;
    border: 1px solid #d9d9d9;
    margin-top: 20px;
}

.filesItem {
    cursor: pointer;
    width: 100%;
    float: left;
    margin-bottom: 10px;
    padding: 5px;
    padding-top: 10px;
    border: 1px solid transparent;
}
.filesItem:last-of-type {
    margin-bottom: 0;
}
.filesItem:hover {
    background-color: #cce8ff;
}
.filesItem > * {
    float: left;
}
.filesItem > img {
    width: 30px;
    margin-right: 8px;
}
.filesItem > span {
    position: relative;
    top: 6px;
    font-size: 14px;
    letter-spacing: -0.5px;
}
.filesItem input {
    border: 1px solid #d9d9d9;
    top: 2px;
    position: relative;
    font-size: 12px;
    position: relative;
    padding: 3px 6px;
}

.filesListWrap .active {
    background-color: #cce8ff;
    border: 1px solid #99d1ff;
}

.filesURL {
    color: #666 !important;
}
.filesURL > .now {
    color: #dc3333 !important;
}
.filesURL > a:hover {
    color: #dc3333 !important;
    text-decoration: underline;
}

/* 200824 대시보드 */
#mainDashbaordWrap {
    width: 100%;
    float: left;
    padding: 50px;
}
#mainDashbaordWrap .section {
    width: 100%;
    float: left;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 3px 7px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 30px;
}
#mainDashbaordWrap .sectionTitle {
    width: 100%;
    height: 25px;
    line-height: 25px;
    float: left;
    font-size: 15px;
    font-weight: bold;
    color: #555;
    padding: 0 20px;
    margin-bottom: 10px;
}
#mainDashbaordWrap .sectionTitle > .right {
    font-size: 13px;
    font-weight: 500;
    color: #999;
    letter-spacing: -0.5px;
}
#mainDashbaordWrap .sectionTitle > .right > i {
    margin-right: 5px;
}
#mainDashbaordWrap .section > .sectionTitle {
    height: 50px;
    line-height: 50px;
    margin: 0;
    border-bottom: 1px solid #eee;
}

#mainDashbaordWrap .left > div:last-of-type .section {
    margin-bottom: 0 !important;
}
#mainDashbaordWrap .right > div:last-of-type {
    margin-bottom: 0 !important;
}

#mainDashbaordWrap > .cmpyInfoWrap > li {
    height: 65px;
    line-height: 65px;
    float: left;
}
#mainDashbaordWrap > .cmpyInfoWrap > .icon {
    width: 65px;
    text-align: center;
    font-size: 20px;
    color: #fff;
    background-color: #bbb;
    margin-right: 25px;
}
#mainDashbaordWrap > .cmpyInfoWrap > .info {
    font-size: 13px;
    margin-right: 30px;
}
#mainDashbaordWrap > .cmpyInfoWrap > .info:last-of-type {
    margin-right: 0;
}
#mainDashbaordWrap > .cmpyInfoWrap > .info > .label {
    float: left;
    font-weight: 500;
    color: #999;
    margin-right: 7px;
}
#mainDashbaordWrap > .cmpyInfoWrap > .info > .value {
    float: left;
    font-weight: 500;
    color: #333;
}

#mainDashbaordWrap > .left {
    width: calc(100% - 350px);
    padding-right: 30px;
}

#mainDashbaordWrap > .right {
    width: 350px;
}
#mainDashbaordWrap > .right > .userInfoWrap {
    background-color: #333;
}
#mainDashbaordWrap > .right > .userInfoWrap > * {
    width: 100%;
    float: left;
}
#mainDashbaordWrap > .right > .userInfoWrap > .profileWrap {
    padding: 30px 0;
}
#mainDashbaordWrap > .right > .userInfoWrap > .profileWrap > i {
    width: 100%;
    float: left;
    text-align: center;
    font-size: 68px;
    color: #aaa;
    margin-bottom: 10px;
}
#mainDashbaordWrap > .right > .userInfoWrap > .profileWrap > .name {
    width: 100%;
    float: left;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
}
#mainDashbaordWrap > .right > .userInfoWrap > .profileWrap > .name > span {
    font-weight: 500;
    letter-spacing: -0.5px;
    opacity: 0.4;
    margin-left: 2px;
}
#mainDashbaordWrap > .right > .userInfoWrap > .profileWrap > .id {
    width: 100%;
    float: left;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    color: #666;
    letter-spacing: -0.5px;
    margin-top: -2px;
}
#mainDashbaordWrap > .right > .userInfoWrap > .infoWrap {
    background-color: #1d1d1d;
    padding: 20px 50px;
}
#mainDashbaordWrap > .right > .userInfoWrap > .infoWrap > li {
    width: 100%;
    float: left;
    font-size: 13px;
    margin: 3px 0;
}
#mainDashbaordWrap > .right > .userInfoWrap > .infoWrap > li > .label {
    width: 65px;
    height: 21px;
    line-height: 21px;
    float: left;
    color: #555;
    font-weight: 500;
}
#mainDashbaordWrap > .right > .userInfoWrap > .infoWrap > li > .value {
    width: calc(100% - 65px);
    height: 21px;
    line-height: 21px;
    float: left;
    color: #aaa;
    font-weight: 400;
    letter-spacing: -0.5px;
}

#mainDashbaordWrap .dataTableAWrap {
    width: 100%;
    float: left;
}
#mainDashbaordWrap .dataTableAWrap > .section {
    width: calc(50% - 15px);
    margin-right: 30px;
    padding: 30px 40px;
    display: table;
    table-layout: fixed;
}
#mainDashbaordWrap .dataTableAWrap > .section:nth-of-type(2n) {
    margin-right: 0;
}
#mainDashbaordWrap .dataTableAWrap > .section > div {
    display: table-cell;
    vertical-align: middle;
}
#mainDashbaordWrap .dataTableAWrap > .section > .infoWrap {
    width: 80px;
}
#mainDashbaordWrap .dataTableAWrap > .section > .infoWrap > .icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    background-color: #dc3333;
    border-radius: 100%;
    text-align: center;
    color: #fff;
    font-size: 28px;
}
#mainDashbaordWrap .dataTableAWrap > .section > .infoWrap > .icon > i {
    z-index: 2;
}
#mainDashbaordWrap .dataTableAWrap > .section > .infoWrap > .icon > .background {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: #fff;
    top: 0;
    left: 0;
}
#mainDashbaordWrap .dataTableAWrap > .section > .infoWrap > span {
    width: 100%;
    float: left;
    text-align: center;
    font-size: 15px;
    color: #333;
    font-weight: bold;
    margin-top: 7px;
}
#mainDashbaordWrap .dataTableAWrap > .section > .dataCntWrap {
    width: calc(100% - 80px);
    padding-left: 40px;
}
#mainDashbaordWrap .dataTableAWrap > .section .cntWrap {
    width: 100%;
    height: 72px;
    float: left;
}
#mainDashbaordWrap .dataTableAWrap > .section .cntWrap > ul {
    width: 100%;
    height: 100%;
    float: left;
    border-radius: 3px;
    border: 1px solid #e5e5e5;
    padding: 10px 20px;
}
#mainDashbaordWrap .dataTableAWrap > .section .cntWrap > ul > li {
    height: 25px;
    line-height: 25px;
    float: left;
}
#mainDashbaordWrap .dataTableAWrap > .section .cntWrap > ul > li > .label {
    float: left;
    font-weight: 500;
    font-size: 14px;
    color: #999;
}
#mainDashbaordWrap .dataTableAWrap > .section .cntWrap > ul > li > .value {
    float: right;
    letter-spacing: -0.5px;
    font-weight: bold;
    font-size: 14px;
    color: #666;
}
#mainDashbaordWrap .dataTableAWrap > .section .cntWrap > ul > li.sub {
    width: calc(50% - 10px);
    margin-right: 20px;
}
#mainDashbaordWrap .dataTableAWrap > .section .cntWrap > ul > li.sub:nth-of-type(2n) {
    margin-right: 0;
}
#mainDashbaordWrap .dataTableAWrap > .section .cntMainWrap {
    width: 100%;
    float: left;
    padding: 0 20px;
    margin-bottom: 10px;
}
#mainDashbaordWrap .dataTableAWrap > .section .cntMainWrap > span {
    height: 30px;
    line-height: 30px;
    font-weight: bold;
    font-size: 16px;
}
#mainDashbaordWrap .dataTableAWrap > .section .cntMainWrap > .label {
    float: left;
    color: #333;
}
#mainDashbaordWrap .dataTableAWrap > .section .cntMainWrap > .value {
    float: right;
    letter-spacing: -0.8px;
}

#mainDashbaordWrap .dataTableBWrap .dataListWrap {
    width: 100%;
    float: left;
    padding: 25px 40px;
}
#mainDashbaordWrap .dataTableBWrap .dataListWrap > li {
    width: 25%;
    float: left;
    display: table;
    table-layout: fixed;
}
#mainDashbaordWrap .dataTableBWrap .dataListWrap > li > div {
    display: table-cell;
    vertical-align: middle;
}
#mainDashbaordWrap .dataTableBWrap .dataListWrap > li > .iconWrap {
    width: 65px;
    height: 65px;
    border-radius: 100%;
    text-align: center;
    color: #fff;
    font-size: 21px;
}
#mainDashbaordWrap .dataTableBWrap .dataListWrap > li > .iconWrap > i {
    z-index: 2;
}
#mainDashbaordWrap .dataTableBWrap .dataListWrap > li > .iconWrap > .background {
    position: absolute;
    width: 65px;
    height: 65px;
    z-index: 1;
    background-color: #fff;
    top: 0;
    left: 0;
    opacity: 0.6;
}
#mainDashbaordWrap .dataTableBWrap .dataListWrap > li > .infoWrap {
    width: calc(100% - 65px);
    padding-left: 20px;
}
#mainDashbaordWrap .dataTableBWrap .dataListWrap > li > .infoWrap > .label {
    width: 100%;
    float: left;
    font-size: 13px;
    font-weight: 500;
    color: #333;
    margin-top: 2px;
}
#mainDashbaordWrap .dataTableBWrap .dataListWrap > li > .infoWrap > .value {
    width: 100%;
    float: left;
    font-size: 21px;
    font-weight: bold;
    color: #333;
    margin-top: -3px;
}

#mainDashbaordWrap .dataTableCWrap {
    width: 100%;
    float: left;
    display: table;
    table-layout: fixed;
}
#mainDashbaordWrap .dataTableCWrap > div {
    width: 50%;
    display: table-cell;
    vertical-align: top;
}
#mainDashbaordWrap .dataTableCWrap > div:nth-of-type(1) {
    padding-right: 15px;
}
#mainDashbaordWrap .dataTableCWrap > div:nth-of-type(2) {
    padding-left: 15px;
}
#mainDashbaordWrap .dataTableCWrap > div:nth-of-type(2) > .section {
    width: calc(100% - 15px);
    height: calc(100% - 65px);
    position: absolute;
    bottom: 0;
    padding-top: 40px;
    left: 15px;
}
#mainDashbaordWrap .dataTableCWrap .section {
    min-height: 400px;
}
#mainDashbaordWrap .dataTableCWrap .section .bb-chart-arcs-title {
    font-weight: 500;
    font-size: 13px;
}
#mainDashbaordWrap .dataTableCWrap .section .bb-chart-arc text {
    font-weight: 500;
    font-size: 12px;
    letter-spacing: -0.5px;
}
#mainDashbaordWrap .dataTableCWrap .section .dataChartWrap {
    width: 100%;
    float: left;
    padding: 0 40px;
}
#mainDashbaordWrap .dataTableCWrap .section .dataChartWrap > div {
    width: 100%;
    height: 100%;
    float: left;
}
#mainDashbaordWrap .dataTableCWrap .section .dataChartListWrap {
    width: 100%;
    float: left;
    padding: 40px;
}
#mainDashbaordWrap .dataTableCWrap .section .dataChartListWrap > ul {
    width: 100%;
    float: left;
}
#mainDashbaordWrap .dataTableCWrap .section .dataChartListWrap > ul > li {
    width: 100%;
    float: left;
    margin-bottom: 20px;
}
#mainDashbaordWrap .dataTableCWrap .section .dataChartListWrap > ul > li > div {
    width: 100%;
    float: left;
}
#mainDashbaordWrap .dataTableCWrap .section .dataChartListWrap > ul > li > .titleWrap {
    padding: 0 5px;
}
#mainDashbaordWrap .dataTableCWrap .section .dataChartListWrap > ul > li > .titleWrap > span {
    height: 25px;
    line-height: 25px;
}
#mainDashbaordWrap .dataTableCWrap .section .dataChartListWrap > ul > li > .titleWrap > .title {
    float: left;
    font-size: 13px;
    font-weight: 500;
    color: #333;
}
#mainDashbaordWrap .dataTableCWrap .section .dataChartListWrap > ul > li > .titleWrap > .cnt {
    float: right;
    font-size: 12px;
    font-weight: 500;
    color: #666;
    letter-spacing: -0.5px;
}
#mainDashbaordWrap .dataTableCWrap .section .dataChartListWrap > ul > li > .barWrap {
    height: 10px;
    border-radius: 10px;
    background-color: #eee;
    margin-top: 5px;
    overflow: hidden;
}
#mainDashbaordWrap .dataTableCWrap .section .dataChartListWrap > ul > li > .barWrap > .background {
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    transition: width 0.5s;
}

#mainDashbaordWrap .dataTableDWrap .dataChartWrap {
    width: 100%;
    float: left;
    padding: 40px;
}
#mainDashbaordWrap .dataTableDWrap .dataChartWrap > div {
    width: 100%;
    height: 350px;
    float: left;
}
#mainDashbaordWrap .dataTableDWrap .dataListWrap {
    width: 100%;
    float: left;
    padding: 40px;
}

#mainDashbaordWrap .bbsList {
    width: 100%;
    float: left;
    padding: 10px 20px;
}
#mainDashbaordWrap .bbsList > li {
    width: 100%;
    float: left;
}
#mainDashbaordWrap .bbsList > li > * {
    height: 21px;
    line-height: 21px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
#mainDashbaordWrap .bbsList > li > span {
    width: 65px;
    float: right;
    font-size: 13px;
    color: #aaa;
    letter-spacing: -0.5px;
    font-weight: 400;
    text-align: right;
}
#mainDashbaordWrap .bbsList > li > a {
    width: calc(100% - 65px);
    float: left;
    font-size: 13px;
    color: #333;
    font-weight: 500;
}
#mainDashbaordWrap .bbsList > li > a > b {
    background-color: #dc3333;
    color: #fff;
    font-size: 12px;
    height: 21px;
    line-height: 21px;
    float: left;
    width: 30px;
    text-align: center;
    border-radius: 5px;
    margin-right: 5px;
}
#mainDashbaordWrap .bbsList > li > a:hover {
    color: #aaa;
}

/* 200827 팝업 */
.popupViewBox {
    position: absolute;
    width: 500px;
    background-color: #fff;
    left: 0;
    top: 0;
    z-index: 50;
    overflow: hidden;
}
.popupViewBox > .conWrap {
    width: 100%;
    float: left;
}
.popupViewBox > .conWrap img {
    max-width: 100%;
}
.popupViewBox > .btnWrap {
    width: 100%;
    float: left;
    background-color: #333;
    padding: 5px 10px;
}
.popupViewBox > .btnWrap > a {
    height: 23px;
    line-height: 23px;
    font-size: 12px;
    color: #fff;
    font-weight: 500;
}
.popupViewBox > .btnWrap > a.left {
    float: left;
    opacity: 0.6;
}
.popupViewBox > .btnWrap > a.right {
    float: right;
}

/* 201026 제휴사목록 */
.affiliateSelectList {
    width: 100%;
    float: left;
}
.affiliateSelectList > li {
    height: 30px;
    line-height: 28px;
    float: left;
    margin-top: 5px;
    border: 1px solid #3366cc;
    padding: 0 10px;
    font-size: 12px;
    font-weight: bold;
    color: #3366cc;
    margin-right: 5px;
}
.affiliateSelectList > li > i {
    margin-left: 20px;
    color: #ccc;
    font-size: 13px;
    cursor: pointer;
}
