.my_cart_popover {
    width: 400px;
    padding: 0;
}


.my_cart_popover .popover_inner {
    padding: 0px 20px;
}



/* .my_cart_popover::-webkit-scrollbar {
    display: none;
} */

.my_cart_items_list {
    width: 100%;
    overflow: auto;
}

.small_cart_img {
    height: 80px;
    width: 80px;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.cart_item_div {
    overflow: hidden;
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    padding: 10px 0px;
    width: 100%;
    position: relative;
    background-color: var(--white);
}

.cart_item_div:not(:last-of-type) {
    border-bottom: 1px solid var(--ft-text-gray);
}

.cart_item_detail {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.item_name {
    font-size: 1.05rem;
    color: var(--main-black);
}

.item_name:hover {
    color: var(--primary-color);
}

.item_price {
    font-size: 1rem;
    color: var(--gray-made-color);
}

.bfd_price {
    text-decoration: line-through;
    margin-left: 10px;
    color: var(--small-text-gray);
    font-size: 0.9rem;
}

.item_qty_div {
    position: absolute;
    bottom: 10px;
    right: 1px;
    font-size: 11pt;
    color: var(--small-text-gray);
}

.my_cart_popover .popover_header {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 102;
    background-color: var(--white);
}

.popover_cart_btn {
    margin-top: 0px;
    padding: 10px 0;
    position: sticky;
    bottom: 0;
    left: 0;
    z-index: 105;
    background-color: var(--white);
}

.popover_cart_btn .popover_btn {
    margin-top: 0px;
}

@media screen and (max-width: 550px) {
    .my_cart_popover {
        width: 100%;
        /* padding: 15px 5%; */
        /* padding-bottom: 40px; */
    }

    .my_cart_popover .popover_inner {
        height: 100%;
        max-height: none;
        padding: 0px 10px;
    }

    .close_popover_btn {
        top: 4px;
    }

    .my_cart_items_list {
        margin-top: 20px;
    }
}