/* cmm layout */
.wrapper { display: inline; align-items: start; flex-wrap: wrap; }

/***************************************/
/* Bulk Order List Filter Tabs */
/***************************************/
.bulk_order_filter_section {
    /* Layout */
    display: flex;
    height:50px;
    box-sizing: border-box;
    flex-direction: column;
    padding: 0 64px;
    justify-content: flex-end;
    align-items: flex-start;
    /*gap: 24px;*/
    overflow: hidden;

    /* Style */
    border-top: 2px solid #E3E3E3;
    border-bottom: 1px solid #E3E3E3;
    background: #FFF;
}
.bulk_order_filter_tabs {
    /* Layout */
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 48px;
    align-self: stretch;
    white-space: nowrap;
}

.no-scrollbar {
    -webkit-overflow-scrolling: touch;
    overflow: auto;
    -ms-overflow-style: none; /* 인터넷 익스플로러 */
    scrollbar-width: none; /* 파이어폭스 */
}
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

@media screen and (max-width: 1200px) {
    .bulk_order_filter_tabs { justify-content: flex-start; padding: 0; }
}

.bulk_order_filter_tabs li a {
    /* Layout */
    display: flex;
    min-width: 48px;
    height: 34px;
    flex-direction: column;
    align-items: center;
    gap: 12px;

    /* Typography */
    color: #464D56;
    text-align: center;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: -0.24px;
    text-transform: capitalize;
}

.bulk_order_filter_tabs li a::after {
    /* Init */
    content: "";

    /* Layout */
    width: 100%;
    height: 6px;
    flex-shrink: 0;
    display: inline-block;

    /* Style */
    background: transparent;
    transition: all 200ms ease-in-out;
}

.bulk_order_filter_tabs li.active a,
.bulk_order_filter_tabs li:hover a {
    /* Typography */
    font-weight: 700;
}

.bulk_order_filter_tabs li.active a::after,
.bulk_order_filter_tabs li:hover a::after {
    background: var(--dk-orange-500);
}

/***************************************/
/* Bulk Order List */
/***************************************/
/*.wrapper > section { width: 100%; }*/
.bulk_order_list_section {
    display: flex;
    padding: 32px;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    min-height: 240px;
    justify-content: center;
    background: #F5F5F5;
}
.bulk_order_list {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.bulk_order_list_item {
    /* Layout */
    width: 1200px;
    gap: 1px;
    flex-shrink: 0;

    /* Style */
    border: 1px solid #DEDEDE;
    background: #FFF;

    /* Shadow/03 */
    box-shadow: 0 4px 10px 0 rgba(56, 65, 63, 0.05);
}
.bulk_order_list_item,
.bulk_order_list_item__mobile {
    display: flex;
    gap: 1px;
}

.bulk_order_list_item__column {
    /* Layout */
    min-width: 104px;
    display: flex;
    padding: 20px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    align-self: stretch;

    /* Typography */
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    line-height: 165%;
    letter-spacing: -0.18px;
}

.bulk_order_list_item__column {
    border-left: 1px solid #DEDEDE;
}

.bulk_order_list_item__column.mobile_only {
    display: none;
}

.bulk_order_list_item__mobile.row1 .bulk_order_list_item__column:first-child { border-left: none; }

.bulk_order_list_item__mobile.row2 { flex: 1; }

.bulk_order_list_item__mobile.row2 > div {
    display: flex; flex-direction: row; color: var(--gray-700); font-weight: 400;
}

.bulk_order_list_item__column.date,
.bulk_order_list_item__column.id { color: var(--gray-400)}

.bulk_order_list_item__column.name_tag { flex: 1; justify-content: flex-start; }

.bulk_order_list_item__column.name_tag .name_tag {
    /* Layout */
    flex: 1;

    /* Typography */
    text-align: left;
}

.pre_order_tag {
    /* Layout */
    display: flex;
    padding: 8px 8px 6px 8px;
    justify-content: center;
    align-items: center;
    gap: 4px;

    /* Style */
    border-radius: 8px;
    background: var(--dk-orange-100);

    /* Typography */
    color: var(--dk-orange-600);
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    line-height: 14px;
    text-transform: capitalize;
}

/***************************************/
/* List Item : Price */
/***************************************/
.bulk_order_list_item__column.price img {
    width: 39px;
    height: 5px;
}
@media screen and (max-width:1280px){
    .bulk_order_list_item__column.price img {
        display: none;
    }
}

/***************************************/
/* List Item : Status */
/***************************************/
.bulk_order_list_item__column.status {
    /* Layout */
    display: flex;
    width: 142px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    align-self: stretch;
}

.bulk_order_status {
    /* Typography */
    color: #28917B;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    line-height: 130%;
    letter-spacing: -0.4px;
    text-transform: uppercase;
}

.bulk_order_pass_state_tag {
    /* Layout */
    flex-shrink: 0;

    /* Style */
    border-radius: 8px;
    background: var(--gray-100);

    /* Typography */
    display: flex;
    height: 30px;
    padding: 8px 12px 8px 12px;
    justify-content: center;
    align-items: center;
    font-weight: 400;
    gap: 4px;
}
.bulk_order_pass_state_tag > span {
    font-size: 15px; line-height: 15px;
}

.bulk_order_pass_state_tag .pass {
    /* Typography */
    color: var(--status-lv-01);
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    line-height: 15px;
}

.bulk_order_pass_state_tag .pass_count {
    /* Layout */
    display: flex;
    align-items: flex-start;
    gap: 1px;

    /* Typography */
    color: #4C4C4C;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
}

.bulk_order_pass_state_tag .pass_count .separator {
    /* Typography */
    color: #4C4C4C;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    line-height: 12px;
    text-transform: uppercase;
}

.bulk_order_pass_state_tag.mobile_only {
    display: none;
}

.view_detail_button {
    /* Layout */
    display: inline-flex;
    flex-direction: column;
    width: 110px;
    height: 64px;
    padding: 8px 12px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    box-sizing: border-box;

    /* Style */
    background: transparent;
    border-radius: 2px;
    border: 1px solid var(--dk-orange-600);
    cursor: pointer;
    transition: all 200ms ease-in-out;

    /* Typography */
    color: var(--dk-orange-600);
    text-align: center;
    font-size: 16px;
    font-family: Gotham, sans-serif;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.4px;
    text-transform: uppercase;
}

.view_detail_button:hover {
    background: var(--dk-orange-600);
    color: var(--gray-0);
}

/* Pagination */
.bulk_order_list__pagination {
    display: flex;
    padding: 30px 0 0 0;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.bulk_order_list__pagination li {
    /* Layout */
    display: flex;
    height: 32px;
    padding: 7px 6px 0 6px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 7px;
    flex-shrink: 0;
    position: relative;

    /* Typography */
    color: #FCA55D;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 100%;
}

.bulk_order_list__pagination li.active::after {
    /* Init */
    content: "";

    /* Layout */
    position: absolute;
    left:0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 2px;

    /* Style */
    background: #FCA55D;
}

/***************************************/
/* start 모바일 Breakpoint */
/***************************************/
@media screen and (max-width:768px){
    /* filter */
    .bulk_order_filter_section {

        display: flex;
        justify-content: flex-start;
        width: 100%;
        padding: 8px 0 0 8px;
        gap: 0;
        box-sizing: border-box;
        height: 38px;
        overflow-x: scroll;
        overflow-y: hidden;
        background: var(--gray-0);
        border-top: 1px solid var(--gray-30);
        border-bottom: 1px solid var(--gray-30);


    }
    .bulk_order_filter_tabs {
        gap: 4px;
    }
    .bulk_order_filter_tabs li a {
        height: 22px;
        gap: 0;
        box-sizing: border-box;
        padding: 5px 16px 4px 16px;
        justify-content: center;
        align-items: center;
        font-size: 14px;
        letter-spacing: -.4px;
    }

    /* filter li a */
    .bulk_order_filter_tabs li.active a,
    .bulk_order_filter_tabs li:hover a {
        color: #FFF;
        font-weight: 500;
        border-radius: 100px;
        background: var(--dk-orange-500, #FCA55D);
    }

    .bulk_order_filter_tabs li a::after,
    .bulk_order_filter_tabs li a::after {
        content: "";
        clear: both;
        display: none;
    }
}
@media screen and (max-width:1280px){
    /*container*/
    .bulk_order_list_section { width: 100%; padding: 16px; box-sizing: border-box; }

    .bulk_order_list_item {
    box-sizing: border-box;
    }

    .mobile_hide {
        display: none;
    }
    /* bulk order list item */
    .bulk_order_list_item {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: unset;
        column-gap: 12px;
        padding: 12px;
        border-radius: 4px;
    }
    .pre_order_tag {
        padding: 4px 8px;
        box-sizing: border-box;
        font-weight: 400;
        gap: 4px;
        border-radius: 8px;
        font-size: 12px;
    }

    .bulk_order_list_item__column.name_tag {
        font-size: 14px;
        line-height: 18px;
    }
    .separator {
        font-size: 10px;
    }

    .bulk_order_list_item__mobile { width: 100%; }

    .bulk_order_list_item__mobile.row1 {
        display: flex;
        padding-bottom: 8px;
        gap: 12px;
        border-bottom: 1px solid #EBEDF0;
    }
    .bulk_order_list_item__mobile.row1 > div {
        height: 14px;
        font-size: 14px;
    }

    .bulk_order_list_item__mobile.row1 .bulk_order_list_item__column:nth-child(2) { flex: 1; }

    .bulk_order_list_item__mobile.row2 {
        display: flex;
        padding-top: 8px;
        flex-direction: column;
        gap: 4px;
        align-items: flex-start;
    }

    .bulk_order_list_item__mobile.row2 > div {
        width: 100%;
    }

    .bulk_order_list_item__mobile.row2 div:nth-child(3) {
        display: flex;
        justify-content: space-between;
    }

    .bulk_order_list_item__mobile.row2 div:nth-child(2) {
        font-size: 15px;
        line-height: 18px;
        color: #888888;
    }

    .bulk_order_list_item__column {
        min-width: unset;
        justify-content: flex-start;
        padding: 0;
    }

    .bulk_order_list_item__column.status {
        align-items: flex-start;
        font-weight: 500;
        line-height: 20px;
        letter-spacing: -0.4px;
        white-space: nowrap;
    }

    .bulk_order_list_item__column.actions { align-items: flex-end; }

    .bulk_order_list_item__column { border-left: none; }

    .bulk_order_pass_state_tag { display: none; }

    .bulk_order_pass_state_tag.mobile_only {
        display: flex;
        background: transparent;
        padding: 0;
    }

    .view_detail_button {
        /* Layout */
        display: flex;
        width: unset;
        height: unset;
        padding: 5px 12px 6px 12px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        box-sizing: border-box;
        line-height: 14px;

        /* Style */
        border-radius: 4px;
        border: 1px solid var(--dk-orange-500, #FCA55D);

        /* Typography */
        text-transform: capitalize;
    }
}
/***************************************/
/* end 모바일 Breakpoint */
/***************************************/