.my_items_container {
    width: 100%;
    max-width: 1200px;
}

.my_items_list {
    width: 100%;
    min-width: auto;
}

.my_item_div {
    overflow: hidden;
    display: flex;
    justify-content: flex-start;
    width: 100%;
    position: relative;
    background-color: #fff;
    margin: 2px;
    border-radius: 6px;
    box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.05);
    -webkit-box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.05);
}

.list_item_img {
    display: block;
}

.list_item_img > img {
    height: 110px;
    width: 110px;
    /* border-radius: 4px; */
}

.list_item_detail {
    width: 100%;
    padding: 5px;
    padding-left: 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Item Name */
.item_name {
    /* font-weight: 500; */
    font-size: 16px;
    color: #5b5b74;
    display: block;
}

.item_name:hover {
    color: var(--primary-color);
}


/* Item Price Div */
.item_price_div {
    font-size: 15px;
    margin-top: 10px;
}

.item_price {
    font-size: 16px;
    font-weight: 500;
    color: var(--main-black);
}

.bfd_price {
    text-decoration: line-through;
    margin-left: 10px;
    color: var(--header-subtext-color);
    font-size: 14px;
}

/* / Item Price Div */

.add_to_cart_btn {
    width: fit-content;
    margin-top: auto;
    font-weight: 500;
    padding: 6px 0;
    color: var(--hover-highlight);
    background-color: #FFF;
    text-transform: uppercase;
}

.add_to_cart_btn:hover {
    color: var(--dark-blue);
}


.out_of_stock {
    width: fit-content;
    color: var(--dark-blue);
    margin-top: auto;
    /* font-weight: 500; */
    text-transform: uppercase;
    padding: 6px 0;
    font-size: 14px;
}

/* ----------------------------- */

/* Item Status Div */
.item_status_div {
    font-size: 15px;
    margin-top: auto;
}

.item_status_div .title {
    font-weight: 500;
    color: var(--gray-made-color);
}

.item_status_div .value {
    margin-left: 5px;
    color: var(--header-subtext-color);
    font-weight: 500;
}


.item_status_div .tracking_link {
    font-size: 14px;
    font-weight: 500;
    color: #1685f5;
}

.pd_qty {
    color: var(--dark-gray);
}

/* ----------------------------- */
/* Remove item btn  */
.remove_item_btn {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 25px;
    height: 30px;
    width: 30px;
    color: var(--dark-gray);
    background-color: rgba(255, 255, 255, 0.8);
    transition: transform 0.2s;
}

.remove_item_btn:hover {
    transform: scale(1.5);
    color: var(--dark-blue);
}

.hr_line {
    /* background-color: var(--dark-gray); */
    height: 1px;
    width: 100%;
    margin: 5px 0;
}

/* Order Status Colors */
.orangeC {
    color: var(--bottom-nav) !important;
    font-weight: 500;
}

.greenC {
    color: #26ad26 !important;
    font-weight: 500;
}

.saved_amount {
    margin-left: 6px;
    /* text-transform: uppercase; */
}

.delivered {
    color: var(--success-green) !important;
}

.vr_chln_hr {
    margin: 0 6px;
    font-weight: 500;
    color: var(--ft-text-gray);
}

/* --------------------------------------------- */

@media screen and (max-width: 1050px) {

    .b_container {
        max-width: none;
    }
}

@media screen and (max-width: 450px) {

    .item_status_div {
        font-size: 14px;
        margin-top: auto;
    }

    .item_name,
    .item_price {
        font-size: 14px;
    }

    .hr_line {
        margin: 3px 0;
    }

}


@media screen and (max-width: 400px) {

    .wl_pricing__,
    .address_div {
        padding: 15px 8px;
    }

}

@media screen and (max-width: 350px) {
    .my_items_container {
        flex-direction: column;
        padding: 5px;
    }
}