#contract_wrap {
    background: rgba(238, 238, 238, 0.5);
    min-height: 100%;
    height: 100%;
    margin: 0 auto 0;
    padding: 0;
}

#contract_header {
    padding : 20px 0;
    background: #FFF;
    border-bottom : 8px solid #F6F6F6;
}

#contractBody{
    position: absolute;
    right: 0;
    left: 0;
    bottom: 50px;
    top: 118px;
    z-index: 1002;
    overflow: hidden;
}

#contractLeftSide {
    width: 168px;
    height: 100%;
    background: #FFF;
    padding : 20px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    overflow: auto;
}

#contractLeftSide::-webkit-scrollbar {
    display: none;  /* WebKit 기반 브라우저 */
}

.preview_list {
    border-radius: 8px;
    padding : 6px;
    background: #FFF;
    cursor: pointer;
}

.preview_list.select {
    background: rgba(136, 43, 255, 0.1);
}

.preview_list:not(:first-child) {
    margin-top: 15px;
}

.preview_list .previrw_img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 160px;
    border : 1px solid #EEE;
    background: #FFF;
}

.preview_list.select .previrw_img {
    border: 1px solid #882BFF;
}

#contractRightSide {
    position: absolute;
    top : 24px;
    right: 24px;
    z-index: 10;
    width: 240px;
    max-height : 540px;
    padding : 16px;
    background: #fff;
    border-radius: 16px;
    overflow: auto;
}

#contractRightSide::-webkit-scrollbar {
    display: none;  /* WebKit 기반 브라우저 */
}


#contractPreviewBox {
    width: 100%;
    height: 100%;
    background: rgba(238, 238, 238, 0.5);
    padding-top:40px;
}

.contractHistory {
    padding : 16px;
    border-radius: 8px;
    margin-top : 15px;
    background: #F6F6F6;
}

.contractHistory.complete {
    background: #FBF9FF;
}

.contractPreview {
    width: 595px;
    height: 100%;
    margin : 0 auto;
    /* background: #FFF; */
    overflow: auto;
    transform: translateX(-100px);
}
.contractPreview::-webkit-scrollbar {
    display: none;  /* WebKit 기반 브라우저 */
}

.contractPreview a {
    display: inline-block;
}

#contractFooter {
    padding : 12px 24px;
    background: #222;
    width: 100%;
    z-index: 1040;
    background-color: #222;
    position: fixed;
    bottom: 0;
}

.contractDownload {
    border : 1px solid #FFF;
    border-radius: 8px;
    padding : 12px 16px;
    cursor: pointer;
}
/*  */

.contractFooterBtn {
    padding : 11px 16px;
    border-radius: 8px;
    background: #882BFF;
    font-size : 14px;
    font-weight: 500;
    color : #FFF;
    cursor: pointer;
}


#contract_easy_sign_layer {
    position: fixed;
    top: 0;
    left: 0;
    z-index : 1100;
    background: rgba(34,34,34, 0.5);
    width: 100%;
    height: 100%;
}

#contract_easy_sign_layer .contract_easy_sign_inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #FFF;
    width: 567px;
    max-height: 85%;
    overflow: auto;
    padding : 20px 24px;
    border-radius: 16px;
}


.contract_easy_sign_inner::-webkit-scrollbar {
    width: 5px; /* 스크롤바 너비 */
    height: 5px; /* 가로 스크롤바 높이 */
}

.contract_easy_sign_inner::-webkit-scrollbar-track {
    background: #f1f1f1; /* 트랙 배경색 */
    border-radius: 10px; /* 트랙 모서리 둥글게 */
}

.contract_easy_sign_inner::-webkit-scrollbar-thumb {
    background: #888; /* 스크롤바 색상 */
    border-radius: 10px; /* 스크롤바 모서리 둥글게 */
}


.contract_easy_sign_info {
    background: #F6F6F6;
    padding : 10px 16px;
    border-radius : 8px;
    align-items: flex-start;
}

.contract_easy_sign_info svg path {
    fill : #F17742;
}

.contract_easy_sign_box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width : 140px;
    height: 140px;
    border: 1px solid #EEE;
    border-radius: 16px;
    margin : 16px auto;
}

.easy_sign_chagne {
    position: absolute;
    top : 10px;
    right : 10px;
    border : 1px solid #222;
    border-radius: 8px;
    padding : 4px 12px;
    z-index: 10;
    font-size: 10px;
    font-weight: 500;
    cursor: pointer;
    background: #fff;
}

.easy_sign_list {
    position: absolute;
    top: 0;
    right: 0;
    margin-right: 75px;
    border-radius: 8px;
    padding : 12px;
    background: #F6F6F6;
    height: 140px;
    overflow: auto;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.easy_sign_list .easy_sign_item {
    display: flex;
    align-items: center;
    width: 48px;
    height: 48px;
    justify-content: center;
    border : 1px solid #EEE;
    border-radius: 8px;
    background-color: #FFF;
    cursor: pointer;
}

.easy_sign_list .easy_sign_item:hover {
    background: #EEEEEE;
}
.easy_sign_list .easy_sign_item > img {
    width: 80%;
}

.easy_sign_list .easy_sign_item:not(:first-child) {
    margin-top : 8px;
}

.easy_sign_close, .project_calculate_close {
    padding : 8px 41px;
    border : 1px solid #EEE;
    border-radius: 100px;
    font-size :15px;
    font-weight: 500;
    cursor: pointer;
}

.easy_sign_save, .project_calculate_save{
    padding : 8px 41px;
    border-radius: 100px;
    background: #222;
    font-size :15px;
    font-weight: 500;
    color : #fff;
    cursor: pointer;
}

#project_calculate_layer {
    position: fixed;
    top: 0;
    left: 0;
    z-index : 1100;
    background: rgba(34,34,34, 0.5);
    width: 100%;
    height: 100%;
}

#project_calculate_layer .project_calculate_inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #FFF;
    width: 567px;
    max-height: 85%;
    overflow: auto;
    padding : 20px 24px;
    border-radius: 16px;
}

.project_calculate_info {
    border: 1px solid #EEE;
    border-radius: 16px;
    padding : 16px;
}

.calculate_info_content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.calculate_info_content svg{
    width: 20px;
    height: 20px;

}
.calculate_info_table {
    border-top: 8px solid #F6F6F6;
}

.calculate_info_table thead tr {
    border-bottom : 1px solid #EEE;
}


.calculate_info_table th {
    font-size: 13px;
    font-weight: 500;
    color: #AAA;
    text-align: center;
    padding : 16px 0;
}

.calculate_info_table tbody tr {
    border-bottom : 1px solid #EEE;
}

.calculate_info_table td {
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    padding : 16px 0;
}

/* 대시보드 */

#contractDashBoard {
    width: 1200px;
    margin: 0 auto;
    padding-top: 32px;
}

.dashboard_infobox {
    background: #fff;
    padding : 24px;
    border-radius: 16px;
}

.contract_title {
    width: 125px;
}

.dashboard_item {
    width: 48%;
    flex-shrink: 0;
}
