.pagination-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.pagination-link {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 4px;
    text-decoration: none;
    color: #333;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
}

.pagination-link:hover {
    background-color: #ddd;
}

.pagination-link.active {
    background-color: #007bff;
    color: #fff;
    border: 1px solid #007bff;
}

.pagination-link.disabled {
    pointer-events: none;
    color: #ccc;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
}

.no-product {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #e1e1e1;
}

.flex-parent {
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading {
    border-radius: 50%;
    width: 24px;
    height: 24px;
    border: 0.25rem solid rgba(255, 255, 255, 0.2);
    border-top-color: white;
    -webkit-animation: spin 1s infinite linear;
    animation: spin 1s infinite linear;
}

@-webkit-keyframes rotate {
    /* 100% keyframe for  clockwise.
    use 0% instead for anticlockwise */
    100% {
        -webkit-transform: rotate(360deg);
    }
}

.box {
    background-color: #d9c9c9;
    margin: 6px;
    padding: 23px;
}

.product-category-banner .mobile-img {
    display: none;
}

.filter__wrap .searchBox {
    display: none;
}

.filter__wrap .sidebarFilter {
    display: none;
}

.filter__wrap .icns-container {
    margin-right: auto;
}

.product-list-box .grid-view img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ProductWithoutPrint .grid-view .design-slider-container {
    padding: 0 !important;
}

.ProductWithoutPrint .grid-view .card {
    box-shadow: none;
    border: 0;
    margin: 0;
    overflow: hidden;
    width: 100%;
}

.ProductWithoutPrint .grid-view .card:hover {
    cursor: auto;
}

.ProductWithoutPrint .grid-view .card-img {
    padding: 30px;
    padding-bottom: 120px;
    min-height: 400px;
    height: 400px;
}

.ProductWithoutPrint .grid-view .card-bottom {
    padding: 20px 0 20px 14px;
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    background: #fff;
    height: 86px;
    overflow: hidden;
    transition: all .3s ease-in-out;
    border-top: 1px solid #ebebeb;
}

.ProductWithoutPrint .grid-view .card.active .card-bottom {
    height: 280px;
    box-shadow: 0 -7px 50px #00000049;
}

.ProductWithoutPrint .grid-view .prod_des .prod_pr_q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.ProductWithoutPrint .grid-view .prod_des .quantity {
    text-wrap: nowrap;
    width: 48%;
    display: flex;
    align-items: center;
    justify-content: end;
    opacity: 0;
    visibility: hidden;
    transition: all .2s ease-in-out;
}

.ProductWithoutPrint .grid-view .card.active .prod_des .quantity {
    opacity: 1;
    visibility: visible;
}

.ProductWithoutPrint .grid-view .prod_des .quantity b {
    margin-right: 10px;
    font-weight: 400;
}

.ProductWithoutPrint .grid-view .prod_des .price-amount {
    color: var(--secondary-color);
    width: 48%;
    font-weight: 500;
}

.ProductWithoutPrint .grid-view h1 {
    font-size: 16px !important;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    margin-bottom: 4px !important
}

.ProductWithoutPrint .grid-view .price-amount {
    text-wrap: nowrap;
    margin-right: 0px;
}

.ProductWithoutPrint .grid-view .child_prod {
    display: flex;
    border-top: 1px solid #ddd;
    margin-top: 10px;
    padding-top: 10px;
    overflow: hidden;
    overflow-x: scroll;
    display: none;
}

.ProductWithoutPrint .grid-view .card.active .child_prod {
    display: flex;
}

.ProductWithoutPrint .grid-view .child_prod::-webkit-scrollbar-track {
    -webkit-box-shadow: none;
    border-radius: 50px;
    background-color: transparent;
}

.ProductWithoutPrint .grid-view .child_prod::-webkit-scrollbar {
    height: 6px;
    background-color: transparent;
}

.ProductWithoutPrint .grid-view .child_prod::-webkit-scrollbar-thumb {
    border-radius: 50px;
    -webkit-box-shadow: none;
    background-color: #b5b5b5;
}

.ProductWithoutPrint .grid-view .child_prod .box {
    padding: 0;
    background: transparent;
    width: 60px;
    min-width: 60px;
    overflow: hidden;
    cursor: pointer;
}

.product-list-box .grid-view .child_prod img {
    width: 100%;
    height: 60px !important;
    object-fit: contain;
    border: 1px solid #ccc;
}

.product-list-box .grid-view .child_prod img.no-images {
    padding: 10px;
}

.product-list-box .grid-view .child_prod p {
    text-align: center;
    font-size: 12px;
    letter-spacing: 0;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    color: #000;
    margin: 0;
}

.product-list-box .grid-view .btnGroup {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    display: none;
}

.product-list-box .grid-view .card.active .btnGroup {
    display: flex;
}

.product-list-box .grid-view .btnGroup button.btn {
    padding: 10px 20px;
    min-width: 48%;
}

@media only screen and (max-width: 768px) {
    .product-category-banner .desktop-img {
        display: none;
    }
    .product-category-banner .mobile-img {
        display: block;
    }
    .filter__wrap {
        display: flex;
        align-items: start;
        justify-content: space-between;
        width: 100%;
        gap: 14px;
        margin-top: 10px;
        flex-flow: wrap;
        border: 1px solid #ccc;
        padding: 14px;
        background: #ccc;
    }
    .filter__wrap .sidebarFilter {
        border: 1px solid #ccc;
        padding: 8px 10px;
        font-size: 12px;
        color: #495057;
        border-radius: 6px;
        background: #fff;
        width: 35%;
    }
    .filter__wrap .sidebarFilter.active {
        border: 1px solid #015aa8;
    }
    .filter__wrap .searchBox {
        width: 55%;
        position: relative;
    }
    .filter__wrap .searchBox input {
        padding-left: 30px;
        margin: 0;
    }
    .filter__wrap .searchBox i {
        position: absolute;
        top: 50%;
        left: 10px;
        transform: translateY(-50%);
    }
    .productWithoutPrint2 .filterBox .searchBox {
        display: none;
    }
    .productWithoutPrint2 .ProductWithoutPrint .filterBox {
        position: absolute;
        width: 300px;
        z-index: 30;
        top: 0;
        left: 14px;
        padding: 24px;
        border-radius: 9px;
        background: #ccc;
        display: none;
    }
}

@media (min-width: 768px) {
    .book__page .ProductWithoutPrint .filterBox {
        display: block !important;
    }
}