.prdct_ajx_block {
    align-items: center;
    justify-content: center;
    display: flex;
    height: 100px;
    background-color: #f4f7ff;
    color: #888;
    font-size: 16px;
    margin-bottom: 18px;
}
.d-none
{
    display: none !important;
}
@media (max-width: 767px) {
    .nav-tabs {
        display: flex;
        flex-direction: column;
    }
    .nav-tabs > li {
        float: none;
        width: 100%;
    }
    .nav-tabs > li > a {
        text-align: center;

    }
}
.nav-tabs > li > a {
    white-space: nowrap;

}

/*offcanvas css start*/
.offcanvas {
    position: fixed;
    top: 0;
    right: -100%;
    width: 400px;
    height: 100%;
    background-color: #fff;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
    transition: right 0.3s ease;
    z-index: 9999;
}

.offcanvas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}

.offcanvas-title {
    margin: 0;
}

.btn-close {
    background: none;
    border: none;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    color: #000;
}

.offcanvas-body {
    padding: 15px;
    overflow-y: auto;
    height: calc(100% - 56px); /* Adjust based on header height */
}

.offcanvas.active {
    right: 0;
}
/*offcanvas css end*/