#customer-dashboard-popup {
    display: flex;
    position: relative;
    min-width: 1100px;
    max-width: 1500px;
    width: 90%;
    height: calc(95% - 40px);
    max-height: 850px;
    box-shadow: 14px 14px 24px 24px rgb(0 0 0 / 50%);
    z-index: 100;
    box-sizing: border-box;
    background: #2C2C2C;
    font-family: sans-serif;
    border-radius: 3px;
    padding: 24px;
}

#customer-info-fixedbox {
    width: 330px;
    height: 100%;
    background-color: #383838;
    border-radius: 3px;
}

#customer-info-fixedbox > label {
    display: block;
    font-size: 14px;
    color: #CCCCCC;
}

#customer-info-wrap,
#customer-edit-info-wrap {
    position: relative;
    height: calc(100% - 21px);
    color: #FFFFFF;
    text-align: center;
    font-size: 14px;
    padding: 12px;
}

#customer-edit-info-wrap {
    padding: 0 24px;
}

#customer-info-wrap > .customer-info-head {
    height: 160px;
    padding: 12px 12px 0 12px;
    margin-bottom: 24px;
}

#customer-info-wrap > .customer-info-body {
    height: calc(100% - 186px - 199px); /* 헤더와 푸터 높이만큼 빼고 남은 공간 높이 */
    margin: 12px;
    overflow-y: auto; /* 스크롤바 추가 */
}

#customer-dashboard-popup #customer-info-wrap > .customer-info-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(100% - 24px);
    margin: 12px 0px;
    overflow-y: auto;
    padding-left: 12px;
}

.customer-info-footer-wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 199px;
    border-top: 1px solid #4B4B4B;
    padding: 12px;
    gap: 12px;
}

#customer-info-wrap > .customer-info-body::-webkit-scrollbar,
#customer-dashboard-popup #customer-info-wrap >.customer-info-footer::-webkit-scrollbar,
#customer-dashboard-popup .product-desc-line-wrap::-webkit-scrollbar {
    width: 6px;
}

#customer-info-wrap > .customer-info-body::-webkit-scrollbar-thumb,
#customer-dashboard-popup #customer-info-wrap >.customer-info-footer::-webkit-scrollbar-thumb,
#customer-dashboard-popup .product-desc-line-wrap::-webkit-scrollbar-thumb {
    display: block;
    background-color: #575757;
    border-radius: 6px;
}

.customer-profile-img {
    width: 80px;
    height: 80px;
}

.customer-edit-preview-img-wrap {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 12px auto;
}

.customer-edit-preview-img-wrap > .customer-edit-preview-img-remove-btn {
    position: absolute;
    cursor: pointer;
    right: -8px;
    top: 0px;
    width: 14px;
    height: 14px;
}

.customer-edit-preview-img-wrap > .customer-profile-img {
    width: 100px;
    height: 100px;
    border-radius: 100px;
    cursor: pointer;
}

.customer-edit-profile-btn {
    position: absolute;
    width: 24px;
    height: 24px;
    line-height: 22px;
    border: 1px solid #7C7C7C;
    border-radius: 24px;
    background-color: #4A4A4A;
    right: -6px;
    bottom: -3px;
    cursor: pointer;
}

.customer-edit-profile-btn > img {
    width: 12px;
    height: 12px;
}

.customer-edit-name-box {
    width: 100%;
    margin-bottom: 24px;
}

.customer-edit-name-box > div.customer-edit-name-box-half {
    text-align: left;
}

.customer-edit-name-box-half + .customer-edit-name-box-half {
    margin-left: 6px;
}

.customer-edit-name-box > div.customer-edit-name-box-half > label {
    font-size: 12px;
    color: #CCCCCC;
    margin-bottom: 2px;
}

.customer-edit-name-box > div.customer-edit-name-box-half > input {
    width: 100%;
    height: 36px;
    font-size: 16px;
    padding-left: 12px;
    color: #FFFFFF;
    background-color: #4A4A4A;
    border: none;
    border-radius: 3px;
}

.customer-edit-date-input {
    width: 100%;
    height: 28px;
    border: none;
    border-radius: 3px;
    background-color: #4A4A4A;
    color: #FFFFFF;
    padding: 0 9px;
}

.customer-edit-number-input,
.customer-edit-text-input {
    width: 100%;
    height: 28px;
    border: none;
    border-radius: 3px;
    background-color: #4A4A4A;
    color: #FFFFFF;
    padding: 0 9px;
}

.customer-edit-text-area {
    background-color: #4A4A4A;
    border : none;
    border-radius: 3px;
    resize: none;
    padding: 12px;
}

.customer-edit-address-input-wrap {
    width: 100%;
}

.customer-edit-address-get-in-wrap {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
}

.customer-edit-find-address-btn {
    width: 60px;
    height: 28px;
    line-height: 28px;
    background-color: #E86E2C;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    text-align: center;
}

#customer-info-wrap .customer-status-box {
    width: 46px;
    height: 20px;
    line-height: 20px;
    margin-right: 6px;
    font-size: 12px;
    border-radius: 5px;
}

.actions-box {
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    width: 40px;
    height: 36px;
    padding: 8px 12px;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.actions-big-box {
    display: flex;
    height: 36px;
    padding: 6px;
    justify-content: center;
    align-items: center;
    gap: 6px;
    flex: 1 0 0;
    cursor: pointer;
    border-radius: 6px;
    font-weight: 600;
}

#product-purchase-box {
    background-color: #FF751A;
}

.main-box-color {
    background-color: #FF751A;
}

#message-box {
    border: 1px solid #8C8C8C;
    background-color: #414141;
}

#message-box:hover {
    border: 1px solid #FFFFFF;
}

#more-action-box {
    width: 40px;
    height: 36px;
    border: 1px solid #8C8C8C;
    background-color: #414141;
    position: relative;
}

#more-action-box:hover {
    border: 1px solid #FFFFFF;
}

.customer-basic-info-wrap {
    display: flex;
    align-items: baseline;
    margin-bottom: 16px;
    width: 100%;
    font-size: 14px;
    color: #FFFFFF;
    gap: 20px;
}

.customer-basic-info-wrap.align-baseline {
    align-items: baseline;
}

#customer-info-wrap .customer-info-footer-wrap > .customer-basic-info-wrap {
    margin-bottom: 0px;
}

.customer-basic-info-title {
    display: inline-block;
    text-align: left;
    width: 90px;
    color: #CCC;
    font-weight: 600;
}

#customer-info-fixedbox .customer-basic-info-content {
    width: calc(100% - 110px);
    word-break: break-word;
    color: #FFF;
}

.customer-basic-info-content {
    display: inline-block;
    width: calc(100% - 90px);
    text-align: left;
}

.customer-basic-info-message {
    color: #FF3B30;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding-top: 4px;
}

.customer-basic-info-content > .underline-content {
    width: max-content;
    text-decoration: underline;
    cursor: pointer;
}

.customer-basic-info-content.select {
    background-color: #4A4A4A;
    color: #FFFFFF;
    padding: 0 12px;
    height: 28px;
    border: none;
    border-radius: 3px;
}

#customer-dashboard-stage {
    width: calc(100% - 354px);
    height: 100%;
    margin: 0 0 0 24px;
    position: relative;
}

#dashboard-stage-head {
    width: 100%;
    height: 30px;
    line-height: 30px;
    font-size: 16px;
    color: #C5C5C5;
    margin-bottom: 24px;
    font-weight: 500;
}

.dashboard-head-title {
    display: inline-block;
    width: max-content;
    text-align: center;
    margin-right: 12px;
    cursor: pointer;
    pointer-events: auto;
}

.dashboard-head-title.active {
    color: #FF751A;
    font-weight: 600;
}

.dashboard-head-title-icon {
    filter: brightness(1);
    width: 16px;
    height: 16px;
    margin-right: 4px;
}

.dashboard-head-title.active > .dashboard-head-title-icon {
    filter: brightness(100);
}

#dashboard-stage-body {
    height: calc(100% - 54px);
    overflow: auto;
}

#dashboard-grid-container {
    display: grid;
    grid-template-columns: [first] 1fr [second] 1fr;
    grid-template-rows: repeat(9, 100px);
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    width: 100%;
}

.dashboard-stage-section {
    width: 100%;
    padding: 12px;
    border-radius: 3px;
    background-color: #383838;
}

/*!* 출석률 있을 때*!*/
/*.dashboard-stage-section:nth-child(1) {*/
/*    grid-column: 1 / 2;*/
/*    grid-row: 1 / 2;*/
/*}*/

/*.dashboard-stage-section:nth-child(2) {*/
/*    grid-column: 2 / 3;*/
/*    grid-row: 1 / 3;*/
/*}*/

/*.dashboard-stage-section:nth-child(3) {*/
/*    grid-column: 1 / 2;*/
/*    grid-row: 2 / 6;*/
/*}*/

/*.dashboard-stage-section:nth-child(4) {*/
/*    grid-column: 2 / 3;*/
/*    grid-row: 3 / 6;*/
/*}*/

/*.dashboard-stage-section:nth-child(5) {*/
/*    grid-column: 1 / 3;*/
/*    grid-row: 6 / 9;*/
/*}*/

/*.dashboard-stage-section:nth-child(6) {*/
/*    grid-column: 1 / 3;*/
/*    height: max-content;*/
/*    !*grid-row: 8 / 10;*!*/
/*}*/

.dashboard-stage-section:nth-child(1) {
    grid-column: 1 / 2; /* 1열 */
    grid-row: 1 / 6; /* 1행 - 5행  */
}

.dashboard-stage-section:nth-child(2) {
    grid-column: 2 / 3; /* 2열을 차지 */
    grid-row: 1 / 3; /* 1행 - 2행*/
}

.dashboard-stage-section:nth-child(3) {
    grid-column: 2 / 3; /* 2열 */
    grid-row: 3 / 6; /* 3행 - 5행 */
}

.dashboard-stage-section:nth-child(4) {
    grid-column: 1 / 3; /* 1열 - 2열 */
    grid-row: 6 / 9; /* 6행 - 8행 */
}

.dashboard-stage-section:nth-child(5) {
    grid-column: 1 / 3; /* 1열 - 2열 */
    grid-row: 9 / 12; /* 9행 - 11행 */
}

.section-title-wrap {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    color: #C5C5C5;
    width: 100%;
    align-items: center;
    margin-bottom: 24px;
}

.section-title-wrap label {
    font-weight: 600;
}

.payment-history-list-wrap {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.dashboard-payment-content-line {
    width: 100%;
    background: #4B4B4B;
    padding-top: 1px;
    margin: 4px 0;
}

.payment-history-list-wrap.loading {
    height : 21px;
    margin-bottom: 6px;
}

.payment-history-list-wrap.loading:nth-child(1) {
    width : 60%;
}

.payment-history-list-wrap.loading:nth-child(2) {
    width : 30%;
}

.payment-history-list-wrap.loading:nth-child(3) {
    width : 70%;
}

.payment-history-list-wrap.loading:nth-child(4) {
    width : 50%;
}
.payment-history-list-wrap.loading:nth-child(5) {
    width : 100%;
}

.dashboard-more-detail {
    font-size: 14px;
    color: #C5C5C5;
    display: flex;
    align-items: center;
}

.dashboard-more-detail-text {
    cursor: pointer;
}

.memo-title-wrap {
    display: flex;
    color: #C5C5C5;
    align-items: center;
}

.memo-middle-line {
    width: 1px;
    height: 10px;
    margin: 0 6px;
    background: #7C7C7C;
}

#dashboard-active-product-section .section-title-wrap{
    align-items: flex-start;
}

.dashboard-more-btn {
    display: flex;
    gap: 4px;
    color: #FF751A;
    cursor: pointer;
}

.dashboard-more-btn img {
    width: 20px;
    height: 20px;
}

.dashboard-middle-line {
    width: 1px;
    height: 12px;
    background: #7C7C7C;
    margin: 0 12px;
}

#newsfeed-table {
    /*width: auto !important;*/
}

#customer-memo-btn {
    width: 75px;
    height: 28px;
    line-height: 28px;
    color: #FFFFFF;
    background-color: #E86E2C;
    border-radius: 5px;
    font-size: 12px;
    margin-top: 6px;
    text-align: center;
    cursor: pointer;
}

.customer-memo-box {
    position: relative;
    width: 100%;
    height: max-content;
    min-height: 84px;/*100px;*/
    font-size: 14px;
    color: #FFFFFF;
    border-radius: 5px;
    background: #414141;
    padding: 12px;
    margin-bottom: 12px;
}

.customer-memo-funk-wrap {
    position: absolute;
    display: flex;
    right: 12px;
    gap: 12px;
}


.customer-memo-funk-icon-box {
    width: 20px;
    height: 20px;
    background: none;
    border-radius: 3px;
    text-align: center;
    cursor: pointer;
}

.customer-memo-funk-icon-box:hover {
    background: #545454;
}

.customer-memo-funk-icon-box > img {
    width: 100%;
}

.customer-memo-box > p {
    color: #A4A4A4;
    font-size: 14px;
}

.customer-memo-box-text {
    white-space: pre-wrap;
    word-break: break-all;
    margin-top: 12px;
    max-height: 144px;
    overflow: auto;
    /*min-height: 1em;*/
}

.customer-memo-box > textarea {
    resize: none;
    background: none;
    border: none;
    margin-top: 12px;
}

.customer-memo-img-view-wrap {
    display: flex;
    height: auto;
    /*margin-top: 12px;*/
}

.dashboard-products-wrap {
    margin-bottom: 12px;
}

.dashboard-products-wrap > label{
    font-size: 14px;
    color: #C5C5C5;
}

/*#active-product-wrap {*/
/*    padding-left: 12px;*/
/*}*/

.customer-product-box,
.loading-product-box {
    position: relative;
    width: 100%;
    padding: 12px;
    background-color: #414141;
    color: #FFFFFF;
    border-radius: 3px;
    margin-bottom: 6px;
}

.loading-product-box {
    height : 60px;
}

.customer-inactive-box {
    cursor: pointer;
    width: 100%;
    height: 60px;
    line-height: 60px;
    border: 1px dashed #7C7C7C;
    border-radius: 3px;

    text-align: center;
    font-size: 12px;
    color: #A4A4A4;
    background: none;
}

.customer-inactive-box:hover {
    color: #FFFFFF;
    border-color: #FFFFFF;
}

.customer-product-box-label {
    font-size: 12px;
    color: #FFFFFF;
}

.customer-product-more-btn {
    position: absolute;
    cursor: pointer;
    top: 12px;
    right: 12px;
    width: 24px;
    height: 24px;
    text-align: center;
    border-radius: 3px;
    background: none;
}

.customer-more-btn {
    position: absolute;
    width: 120px;
    color: #CCCCCC;
    background-color: #414141;
    z-index: 3;
    font-size: 14px;
    padding-top: 6px;
    padding-bottom: 6px;
    border-radius: 3px;
    text-decoration: none;
    text-align: left;
    box-shadow: 3px 3px 3px 1px #00000040;
    top: 36px;
    left: 0px;
}

.more-popup-row {
    padding-left: 12px;
    height: 28px;
    line-height: 28px;
}

.more-popup-row:hover {
    color: #FFFFFF;
    background-color: #545454;
    }

.customer-product-more-btn:hover {
    background: #545454;
}

.customer-product-more-btn > img {
    width: 16px;
    height: 4px;
}

.customer-product-title-wrap {
    font-size: 16px;
    display: flex;
    gap: 10px;
    padding-top: 8px;
}

.customer-product-box-title {
    display: inline-block;
    font-weight: 600;
}

.customer-product-status-box {
    display: inline-block;
    font-size: 14px;
    color: #000000;
    width: 48px;
    height: 20px;
    line-height: 20px;
    border-radius: 2px;
    text-align: center;
}

.customer-product-text-status-box {
    font-size: 12px;
    width: 24px;
}

.customer-product-period {
    display: inline-flex;
    font-size: 14px;
    color: #C5C5C5;
    position: relative;
}

.customer-product-holding {
    color: #815DF0;
    padding: 2px 0px 0px 50px;
}

.customer-product-count.text-underline {
    text-decoration: underline;
    cursor: pointer;
}

.customer-product-count {
    font-size: 12px;
}

.customer-product-period .category-set-popup {
    position: absolute;
    width: 230px;
    min-height: 65px;
    padding: 3px 0px 3px 10px;
    border-radius: 3px;
    box-shadow: 0 0 0px 0 rgb(0 0 0 / 50%), 0 2px 4px 0 rgb(0 0 0 / 50%);
    background-color: #4A4A4A;
    border: 1px solid #4A4A4A;
}

.hover-text-btn {
    width: 100%;
    color: #fff;
    padding: 4px 8px;
    text-align: center;
    cursor: pointer;
    background: #815DF0;
    border-radius: 4px;
    font-size: 14px;
    margin-top: 6px;
}

#memo-popup-subtitle {
    font-size: 14px;
    color: #CCCCCC;
    margin-bottom: 24px;
}

.memo-popup-content-wrap {
    position: relative;
    height: max-content;
    margin-bottom: 12px;
}

.memo-popup-content-title {
    color: #A4A4A4;
    font-size: 14px;
    width: 40px;
    margin-right: 12px;
}

.memo-popup-content-box {
    position: relative;
}

#memo-popup-img-upload-box {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border: 1px dashed #7C7C7C;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 6px;
}

#memo-popup-img-view-wrap {
    width: 100%;
    height: 100px;
}

#customer-payment-view-wrap {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.customer-payment-view-box {
    position: relative;
    width: 24%;
    height: 100px;
    padding: 12px;
    background: #383838;
    border-radius: 3px;
}

.customer-payment-view-box-title {
    font-size: 14px;
    color: #CCCCCC;
}

.customer-payment-view-box-content-wrap {
    position: absolute;
    bottom: 0px;
    right: 12px;
}

.customer-payment-view-box-content {
    color: #E86E2C;
    font-size: 30px;
    margin-right: 3px;
}

.customer-payment-view-box-unit {
    color: #FFFFFF;
    font-size: 16px;
}

.product-list-header,
.detail-list-header {
    width: 100%;
    height: 40px;
    line-height: 40px;
    color: #C5C5C5;
    font-size: 18px;
    border-bottom: 1px solid #414141;
}

.product-list-body {
    width: 100%;
    height: calc(100% - 40px);
    padding-top: 12px;
    overflow: auto;
}

.product-itme-label {
    color: #C5C5C5;
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
}

.detail-list-body {
    width: 100%;
    height: calc(100% - 40px);
    padding-top: 12px;
    overflow: auto;
}

.product-list-header > div + div,
.detail-list-header > div + div {
    margin-left: 24px;
}

.product-list-tab,
.detail-list-tab {
    display: inline-block;
    min-width: 52px;
    width: max-content;
    height: 100%;
    cursor: pointer;
    text-align: center;
}

.product-list-tab.active,
.detail-list-tab.active {
    color: #FFFFFF;
    border-bottom: 2px solid #FF751A;
    pointer-events: none;
    cursor: none;
    font-weight: 600;
}

.flex-css {
    display: inline-flex;
    align-items: center;
}

.customer-product-card-wrap {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
}

.customer-product-card {
    position: relative;
    display: inline-block;
    width: 32%;
    padding: 12px;
    background-color: #383838;
    color: #FFFFFF;
    border-radius: 3px;
    margin-bottom: 24px;
}

.customer-product-desc-box {
    height: 345px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #7C7C7C;
}

.product-content-wrap {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-desc-data-wrap {
    height: max-content;
    font-size: 14px;
    color: #C5C5C5;
}

.product-desc-data-wrap > div:nth-child(1) {
    font-weight: 500;
    font-size: 12px;
}

.product-desc-data-wrap > div:nth-child(2) {
    color: #FFFFFF;
    padding-top: 2px;
}

.product-desc-line-wrap {
    height: 100%; /*220px;*/
    overflow-y: auto;
}

.product-desc-memo-wrap {
    font-size: 14px;
    color: #CCCCCC;
}

.product-desc-memo-wrap > div {
    height: 70px;
    background-color: #414141;
    border-radius: 3px;
    white-space: pre-line;
    word-break: break-all;
    overflow-y: auto;
    padding: 6px 12px;
    margin-top: 6px;
}

.product-desc-data-wrap + .product-desc-data-wrap,
.product-desc-memo-wrap {
    margin-top: 12px;
}

.detail-option-wrap {
    height : max-content;
    display: flex;
    justify-content: flex-end;
}

.detail-option-wrap > div:not(:first-of-type) {
    margin-left: 6px;
}

.detail-list-active-option-btn,
.detail-list-inactive-option-btn {
    width: 100px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-size: 14px;
    border-radius: 3px;
    cursor: pointer;
}

.detail-list-active-option-btn {
    background-color: #E86E2C;
    color: #FFFFFF;
}

.detail-list-inactive-option-btn {
    border: 1px solid #7C7C7C;
    color: #CCCCCC;
}

.detail-list-inactive-option-btn:hover {
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
}

.detail-table-wrap {
    width: 100%;
    height: calc(100% - 30px);
    padding-top: 12px;
}

#detail-holding-list-table {
    height: 100%;
}

#detail-holding-list-table > tbody {
    height: calc(100% - 35px);
}

.holding-delete-popup.description-show-zone.singularity_popup,
.remarks-delete-popup.description-show-zone.singularity_popup {
    position: absolute;
    left: -400px;
    top: 0;
    width: 400px;
    min-height: max-content;
    max-height: 150px;
    z-index: 2;
    overflow-y: auto;
    text-align: left;
    white-space: pre-line;
    word-break: break-all;
}

.sign-up-box-wrap, .invite-box-wrap {
    width: 100%;
    height: 100%;
    padding: 12px 14px 12px 24px;
}

.sign-up-info-input-wrap, .invite-search-wrap {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    color: #FFFFFF;
}

.sign-up-info-input,
.sign-up-info-select,
.invite-search-input {
    width: 100%;
    height: 36px;
    background-color: #383838;
    border: none;
    border-radius: 3px;
    color: #FFFFFF;
    padding: 6px;
}

.dashboard-select-appearance {
    cursor: pointer;
    background: url("data:image/svg+xml,<svg height='10px' width='10px' viewBox='0 0 16 16' fill='%23FFFFFF' xmlns='http://www.w3.org/2000/svg'><path d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/></svg>") no-repeat;
    background-position: calc(100% - 0.75rem) center !important;
    background-color: #383838;
    -moz-appearance:none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    padding-right: 2rem !important;
}

.possible-id-desc {
    color: #3489EB;
}

.impossible-id-desc {
    color: #F4510B;
}

.sign-up-info-input.valid {
    border: 1px solid #3489EB;
}

.sign-up-info-input.invalid {
    border: 1px solid #F4510B;
}

.sign-up-info-input.w330, .invite-search-input.w330 {
    width: 330px;
}

.sign-up-info-input.w150 {
    width: 150px;
}

.sign-up-info-select.w120 {
    width: 120px;
}

.sign-up-info-id-check-btn,
.invite-search-button {
    width: 100px;
    height: 36px;
    line-height: 36px;
    border: none;
    border-radius: 3px;
    background-color: #FA6400;
    text-align: center;
    cursor: pointer;
}

.sign-up-info-line {
    width: 100%;
    height: 80px;
}

.sign-up-info-line > label {
    font-size: 14px;
    margin-bottom: 6px;
    color: #FFFFFF;
}

.sign-up-info-line > label > span {
    color: #FA6400;
}

.terms-of-use-box-wrap {
    width: 100%;
    height: max-content;
    border-radius: 3px;
    background-color: #383838;
    padding: 12px;
}

.terms-of-use-box-wrap .agreement-box {
    margin-top: 12px;
}

.terms-of-use-box-wrap .agreement-box .agreement-checkbox-wrap {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.terms-of-use-box-wrap .agreement-box .agreement-checkbox-wrap > div {
    cursor: pointer;
    color: #3489EB;
}

.terms-of-use-box-wrap .agreement-box .agreement-checkbox-wrap > div:hover {
    text-decoration: underline;
}

.terms-of-use-box-wrap .agreement-box > label {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.terms-of-use-box-wrap > .full-agreement-box {
    padding-bottom: 12px;
    border-bottom: 1px solid #7C7C7C;
}

#full-agreement-desc-label {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.sign-warning {
    color: #F4510B;
}

.invite-search-result-zone {
    margin-top: 24px;
}

.invite-search-result-customer-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
    background-color: #414141;
    padding: 12px;
    border-radius: 3px;
}

.invite-button {
    width: 76px;
    height: 36px;
    line-height: 36px;
    border-radius: 3px;
    background-color: #D6E3F7;
    text-align: center;
    color: #121212;
    cursor: pointer;
}

.dashboard-content-empty-notice-element {
    display: flex;
    justify-content: center;
    font-size: 12px;
    align-items: center;
    height: 100%;/*calc(100% - 30px);*/
    color: #A4A4A4;
}

.customer-table-status-box {
    width: 60px;
    height: 25px;
    line-height: 25px;
    border-radius: 5px;
    margin: 0 auto;
    font-weight: 600;
}

.customer-table-status-box.active,
.customer-product-status-box.active{
    background-color: #69C56B;
    color: #131F13;
}

.customer-product-text-status-box.active {
    background-color: transparent;
    color: #5AC371;
}

.customer-table-status-box.soon-inactive,
.customer-product-status-box.soon-inactive {
    background-color: #EE744F;
    color: #501A0A;
}

.customer-product-text-status-box.soon-inactive {
    color: #F67354;
}

.customer-table-status-box.holding,
.customer-product-status-box.holding {
    background-color: #A359E1;
    color: #3D145F;
}
.customer-product-text-status-box.holding {
    color: #815DF0;
}

.customer-table-status-box.soon-active,
.customer-product-status-box.soon-active {
    background-color: #F7C75E;
    color: #3E3115;
}

.customer-product-text-status-box.soon-active {
    color: #FBC568;
}

.customer-table-status-box.inactive,
.customer-product-status-box.inactive {
    background-color: #E8E6FC;
    color: #2A2A31;
}

.customer-product-text-status-box.inactive {
    color: #E7E5FB;
}

.customer-table-status-box.unregistered,
.customer-product-status-box.unregistered {
    background-color: #E7D9CB;
    color: #2F2A26;
}

.customer-table-status-box.error,
.customer-product-status-box.error {
    background-color: #DA5D58;
    color: #FFFFFF;
}

.customer-product-text-status-box.error {
    color: #DA5D58;
}

.calendar-top-zone {
    display: flex;
    gap: 40px;
    width: 100%;
}

.dashboard-calendar-zone {
    width: 400px;
    height: 400px;
    display: inline-flex;
}

.dashboard-calendar-detail-zone {
    width: calc(100% - 450px);
    padding-top: 5px;
    color: #ccc;
    border-left: 1px solid #95969a;
    padding-left: 40px;
}

.dashboard-count-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: end;
}

.dashboard-text-bold {
    font-weight: 800;
}

.dashboard-text-semi-bold {
    font-weight: 600;
}

.dashboard-count-box {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.book-info-text {
    padding: 3px;
    border-radius: 8px;
    width: 70px;
    color: #ffffff;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.show-count-type {
    background: #65B49F;
}

.noshow-count-type {
    background: #EB5252;
}

.none-count-type {
    background: #95969A;
}

.loading {
    background-image: linear-gradient(120deg, #414141 30%, #4a4a4a 38%, #4a4a4a 40%, #414141 48%);
    background-size: 1000%;
    animation: sweep 1s ease-in infinite alternate;
    /*box-shadow: 0 0 6px 0 #a3a3a331;*/
}
@keyframes sweep {
    0% {
        background-position: right;
    }
    100% {
        background-position: left;
    }
}

#dashboard-stage-body .fc .fc-view-harness {
    background: transparent;
}

#dashboard-stage-body .fc .fc-daygrid-day.fc-day-today {
    background: transparent;
}

#dashboard-stage-body .fc .fc-daygrid-day-bottom {
    color: #E86E2C !important;
    margin-left: 6px;
    margin-top: -4px;
    font-size: 13px;
}

#dashboard-stage-body .fc .fc-daygrid-day.fc-day-today .fc-daygrid-day-number {
    background: #fa6400b0;
    border-radius: 15%;
    font-weight: 800;
}

#dashboard-stage-body .fc .fc-toolbar-title {
    font-size: 18px;
}

#dashboard-stage-body table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    max-width: 100%;
    padding: 0;
}

#dashboard-stage-body .fc .fc-daygrid-body {
    width: auto !important;
}

#dashboard-stage-body .fc .fc-button-primary {
    background: none;
    border: none;
    margin: 4px 10px;
    height: 20px;
    width: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

#reservation-list-container .dashboard-list-zone .brojlist-container {
    min-height: 246px;
}

#attendance-list-container .dashboard-list-zone .brojlist-container {
    min-height: 300px;
}

#dashboard-stage-body #contract-list-page {
    padding: 0;
}

.empty-notice {
    width: 100%;
    height: 100%;
    text-align: center;
    font-size: 12px;
    color: #a4a4a4;
}

.oontalk-connection-btn {
    color: #FF751A;
    text-decoration: underline;
}

.customer-profile-box {
    position: relative;
    width: fit-content;
    object-fit: cover;
    /*margin: 0 auto;*/
}

.customer-edit-photo-btn {
    top: 0;
    right: -80px;
    position: absolute;
    width: 90px;
    color: #CCCCCC;
    background-color: #414141;
    z-index: 3;
    font-size: 14px;
    padding-top: 6px;
    padding-bottom: 6px;
    border-radius: 3px;
    text-decoration: none;
    text-align: left;
    box-shadow: 3px 3px 3px 1px #00000040;
    cursor: pointer;
}

.customer-status-box > .customer-table-status-box {
    width: 46px;
    height: 20px;
    border-radius: 5px;
    margin-right: 6px;
    font-size: 11px;
    padding: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#dashboard-memo-section .section-title-wrap {
    margin-bottom: 5px;
}

#customer-memo-btn-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: #a4a4a4;
}

#customer-memo-btn-wrap.memo-wrap-space-between {
    justify-content: space-between;
}

.customer-memo-label {
    margin-top: 10px;
}

.customer-dashboard-navigate-wrap {
    display: flex;
    padding-bottom: 6px;
    box-sizing: border-box;
}

.customer-dashboard-navigate-item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    margin-right: 12px;
    cursor: pointer;
    position: relative;
}

.customer-dashboard-navigate-item.active {
    color: #FFF;
    font-weight: 600;
}

.customer-dashboard-navigate-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px; /* 선 두께 */
    width: 100%;
    background-color: #FF751A;
    transform: translateY(6px); /* 공백 추가 */
}

#dashboard-active-product-section .section-title-wrap {
    box-shadow: 0 2px 0 0 #414141;
    margin-bottom: 0;
}

#dashboard-payment-list-section .section-title-wrap {
    margin-bottom: 13.5px;
}

.dashboard-product-number {
    margin-left: 4px;
}

.product-box-card {
    width: max-content;
    padding: 6px;
    height: 19px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    color: #FFFFFF;
    box-sizing: border-box;
    font-weight: 700;
    font-size: 12px;
}

.product-box-padding {
    padding-top: 8px;
}

.product-percentage-circle {
    width: 40px;
    height: 40px;
    position: relative;
}

.product-percentage-circle-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.product-stick-wrap {
    background: #D9D9D9;
    height: 4px;
    width: 240px;
    border-radius: 18px;
    position: relative;
}

.product-percentage-wrap {
    position: absolute;
    height: inherit;
    border-radius: 18px;
    right: 0;
}

.product-percentage-wrap.active {
    background-color: #5AC371;
}

.product-percentage-wrap.soonactive {
    background-color: #FBC568;
}

.product-percentage-wrap.sooninactive {
    background-color: #F67354;
}

.product-percentage-wrap.holding {
    background-color: #815DF0;
}

.product-percentage-wrap.inactive {
    background-color: #E7E5FB;
}

.product-percentage-wrap.error {
    background-color: #DA5D58;
}

.customer-product-status-wrap {
    display: flex;
    flex-direction: column;
    gap: 2px;
    width: calc(100% - 50px);
}

.customer-product-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.class-info-wrap {
    display: flex;
    font-size: 14px;
    justify-content: space-between;
    color: #cccccc;
    padding-left: 34px;
    padding-top: 4px;
    gap: 4px;
}

.customer-product-tag-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
}

.product-tag-list-wrap {
    display: flex;
    align-items: center;
    font-size: 12px;
}

.customer-product-head-wrap .product-tag-list-wrap {
    margin: 5px 0;
}

.customer-product-head-wrap .product-tag-list-wrap p{
    display: none;
}

.product-tag-start-line {
    border-right: 1px solid #CCC;
    margin: 0 6px;
    height: 14px;
}

.product-tag-item {
    display: flex;
    height: 19px;
    padding: 2px 6px;
    justify-content: center;
    align-items: center;
    border-radius: 99px;
    margin-right: 6px;
    font-weight: 600;
}

.product-tag-brand {
    border: 1px solid #FFE3EA;
    color: #FFE3EA;
}

.product-tag-family {
    border: 1px solid #E6DFFC;
    color: #E6DFFC;
}

.product-tag-subscribe_plan {
    border: 1px solid #FAE2D5;
    color: #FAE2D5;
}

.product-tag-package {
    border: 1px solid #E1F4E4;
    color: #E1F4E4;
}

.calendar-toggle-zone {
    width: 100%;
    color: #ccc;
    font-size: 14px;
}

.reservation-toggle-btn {
    padding: 6px 20px;
    cursor: pointer;
}

.reservation-toggle-btn.active {
    background: #fa6400b0;
    font-weight: bold;
    color: #FFFFFF;
}

.reservation-toggle-wrap {
    display: flex;
    width: max-content;
    border-radius: 8px;
    background: #383838;
    margin-bottom: 10px;
    overflow: hidden;
}

.customer-accordion-content-wrap {
    display: flex;
    flex-wrap: wrap;
}

.customer-accordion-btn {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    font-size: 14px;
    color: #CCCCCC;
    cursor: pointer;
    text-decoration: underline;
}

.customer-accordion-btn::after {
    content: '더보기';
}

.customer-accordion-content.toggle-on + .customer-accordion-btn::after {
    content: '닫기';
}

.customer-accordion-content {
    width: 100%;
    white-space: pre-line;
    word-break: break-all;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.customer-head-info-box {
    display: flex;
    gap: 16px;
}

.customer-accordion-content.toggle-on { /* 펼쳐진 상태 */
    -webkit-line-clamp: unset;
}

.customer-name-box {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: baseline;
}

.status-attendance-box {
    display: flex;
    align-items: center;
}

.attendance-text {
    color: #C5C5C5;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
}

.customer-info-actions-box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 16px;
    gap: 8px;
}
/* 출석체크 */

.attendance-color {
    background-color: #FF751A;
    color: #FFF;
    cursor: pointer;
}

.not-attendance-color {
    border: 1px solid #949494;
    color: #FFF;
}

.disabled-attendance-color {
    background-color: #494949;
    color: #7C7C7C;
    cursor: not-allowed;
}

/* 구독 플랜 관련 */
.active-subscribe-wrap {
    display: flex;
    justify-content: space-between;
}

.active-subscribe-name {
    text-decoration: underline;
    cursor: pointer;
    width: 110px;
    overflow: hidden;
    text-overflow: ellipsis;
    /*word-break: keep-all;*/
    white-space: nowrap;
}

.active-subscribe-status {
    color: #FF751A;
    width: calc(100% - 110px);
    display: flex;
    justify-content: flex-end;
}

.product-description-box {
    display: flex;
    padding: 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    border-radius: 4px;
    border: 2px solid #494949;
    margin-top: 6px;
}

/* 대시보드 내 Description box 내용 */
.dashboard-line-content-wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.dashboard-line-row-wrap {
    display: flex;
    align-items: baseline;
    gap: 16px;
    font-size: 14px;
    width: 100%;
}

.dashboard-line-row-title {
    width: 112px;
    color: #CCC;
}

.dashboard-line-row-value {
    width: calc(100% - 112px - 24px);
}

.select-locker-btn {
    text-decoration: underline;
    cursor: pointer;
}

/* 카테고리 css */
.customer-lesson-kind-wrap {
    display: flex;
    gap: 6px;
    width: 100%;
    flex-wrap: wrap;
}

.customer-lesson-kind-box {
    max-width: 110px;
    min-width: 58px;
    height: 20px;
    line-height: 12px;
    padding: 4px 12px;
    text-align: center;
    border-radius: 3px;
    color: #FFF;
    font-weight: 600;
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.dashboard-payment-top-content {
    display: flex;
    flex-direction: column;
    gap: 1.5px;
}

.dashboard-payment-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

@media screen and (max-width: 1400px) {
    /*.product-tag-list-wrap {*/
    /*    font-size: 10px;*/
    /*}*/
}
