/* create selign */
#sellproductListItem {
    position: relative !important;
    cursor: pointer;
    user-select: none !important;
}
#sellproductListItem.nostock {
    position: relative !important;
    pointer-events: none !important;
}
#sellproductListItem.active{
    pointer-events: none !important;
}
#sellproductListItem.active::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: #0302163d;
}
#sellproductListItem.nostock::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: #0302169c;
    backdrop-filter: blur(1px);
}
#sellproductListItem.active::before {
    position: absolute;
    top: 0;
    right: 0;
    content: "✔";
    width: 30px;
    height: 30px;
    border-radius: 100% 0.3rem 100% 100%;
    display: flex;
    align-items: center;
    z-index: 1;
    color: #fff;
    justify-content: center;
    background: #28c76f;
}
#sellproductListItem.nostock::before{
    position: absolute;
    content: 'কোন মজুদ নেই';
    top: 50%;
    left: 50%;
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    color: #fff;
}

/* pagination */
.pagination > .page-item.active > .page-link {
    border-radius: 0.3rem !important;
    background: #28c76f !important;
    border: none !important;
}
