.container_my_shipments_user {
    flex: 1 1 auto;
    margin-bottom: 20px;
}

.container_tab_user {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px 0;
    background-color: var(--bac-color);
}

.ul_shipments_user {
    width: 100%;
    font-size: 1rem;
}

.li_shipments_user {
    display: flex;

}

.li_shipments_user:nth-of-type(odd) {
    background-color: rgba(0,0,0,.05);
}

.col_shipment_table {
    display: flex;
    width: calc(100% / 6);
}

.col_shipment_table[data-position="center"] {
    justify-content: center;
}

.col_shipment_table:first-of-type {
    width: calc(100% / 3);
}

.col_shipment_table:not(:last-of-type) {
    border-right: 2px solid #cdcdcd;
}

.content_shipment_table {
    margin: auto 0;
    padding: 5px 10px;
}

.col_shipment_table_span {
    display: block;
    text-transform: uppercase;
    font-weight: bold;
    color: var(--bac-color);
}

.btn_tab {
    background-color: white;
    border-radius: 8px;
    color: var(--bac-color);
    padding: 5px 15px;
    margin-right: 20px;
}
@media (max-width: 1600px){
    .container_tab_user > :where(.text_tab, .btn_tab),
    .li_shipments_user{
        font-size: calc(13px + (16 - 13) * (100vw - 320px) / (1600 - 320));
    }
}
@media (max-width: 768px){
    .li_shipments_user{
        flex-direction: column;
    }
    .li_shipments_user > .col_shipment_table{
        width: fit-content;
        border-right: 0;
    }
    .col_shipment_table{
        margin-left: 20px;
        margin-bottom: 15px;
    }
    .col_shipment_table:first-of-type{
        margin-top: 20px;
    }
    .col_shipment_table[data-position="center"]{
        justify-content:flex-start;
    }
    .col_shipment_table_span{
        font-weight: normal;
    }
}
@media (max-width:350px){
    .container_tab_user{
        flex-direction: column;
    }
    .btn_tab{
        margin-right: 0;
    }
}