.category-wrapper {
    text-align: left;
    margin: 1.5rem 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
} 
.products-container {
    display: grid;
    /* grid-template-columns: 15rem auto; */
    grid-template-columns: auto;
    column-gap: 2rem;
    margin: 0 auto;
    max-width: 85rem;
}
.drop-down-wrraper {
    width: 40%;
    max-width: 12rem;
    border: solid 0.1rem #149bbc;
    border-radius: 0.475rem;
    padding-left: 0.4rem;
}
select#drpCategories {
    width: 100%;
    padding: 0.4rem;
    border: none;
    background: none;
    box-shadow: none;
    outline: none;
}
.category-item:hover {
    background-color: #00008024;
}
.products-container .search-box {
    padding-right: 1.5rem;
}

.search-box .categories {
    border: 0.1rem solid lightgray;
    border-radius: 0.675rem;
    box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
    padding: 0.9rem;
    max-height: 30rem;
    overflow: auto;
    --scrollbarBG: rgb(37, 37, 38);
    --thumbBG: #59595a;
    margin-bottom: 1.8rem;
}
.search-box .categories .category-item.active-category {
    background-color: #e0dbdb;
}

.search-box .categories::-webkit-scrollbar {
    width: 0.4rem;
}

.search-box .categories::-webkit-scrollbar-track {
    background: var(--scrollbarBG);
}

.search-box .categories::-webkit-scrollbar-thumb {
    background-color: var(--thumbBG);
    border-radius: 6px;
}

.search-box .categories .category-item {
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
}

.search-box .categories .category-item .category-button {
    background: none;
    border: none;
    box-shadow: none;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    font-size: 0.8rem;
}

.search-box .categories .category-item .category-button i {
    margin-left: 0.9rem;
    font-size: 1.9rem;
    height: 3rem;
}

.search-box .categories .category-item.all-categories {
    margin: 0px;
}

.search-box .categories .category-item .image-wrapper {
    width: 1.8rem;
    height: 1.8rem;
    overflow: hidden;
    display: inline-flex;
    margin-left: 0.8rem;
}

.search-box .categories .category-item .image-wrapper > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-left: 1rem;
}

.search-box .categories .category-item .category-button > span {
    display: flex;
    color: rgb(68, 68, 68);
    font-weight: 600;
}

.pl-header {
    display: flex;
    flex-flow: column nowrap;
}
.pl-header .top-toolbar .products-count {
    display: inline-flex;
    margin-right: auto;
    align-items: center;
    flex-direction: row;
    margin-left: 0.8rem;
}

.pl-body{
    margin-bottom: 1.8rem;
}

.products-container .products-grid .pg-grid{
    display: grid;
    column-gap: 0.5rem;
    font-size: 0.8rem;
}
.products-container:not(.b-is-admin) .products-grid .pg-grid{
    /* grid-template-columns: 3rem 6rem 28rem 4rem 7rem 7.5rem 4rem 4.5rem 4.5rem 4.5rem 4.5rem ; */
        grid-template-columns: 5% 10% 25% 5% 8% 7% 7% 8% 8% 7% 5%;
    /* grid-template-columns: 2rem 5rem 7rem 2rem 4rem 3rem 2rem 2.5rem 1.5rem 2.5rem 2.5rem; */
    align-items: center;

}

.products-container.b-is-admin .products-grid .pg-grid{
    /* grid-template-columns: 3rem 6rem 28rem 4rem 7rem 7.5rem 4rem 4.5rem 4.5rem 4.5rem 4.5rem ; */
        grid-template-columns: 5% 10% 25% 5% 8% 7% 7% 8% 8% 7% 5%;
        /* grid-template-columns: 2rem 5rem 7rem 2rem 4rem 3rem 2rem 2.5rem 1.5rem 2.5rem 2.5rem; */
    align-items: center;

}

.pg-header-columns {
    color: rgb(175, 175, 175);
    border-bottom: 0.1rem solid lightgray;
    padding-bottom: 0.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    text-align: center;
}

.pg-body .pg-row {
    margin-bottom: 0.8rem;
    border-bottom: 0.1rem solid lightgray;
    padding-bottom: 0.8rem;
}
.pg-body .no-data-alert ,.products-list-grid .no-data-alert{
    font-weight: bolder;
    text-align: center;
    margin: 3rem 0px;
    color: navy;
}
.pg-body .pg-body-columns {
    color: rgb(51, 51, 51);
    line-height: 1.45rem;
    text-align: center;
}
.pg-body .pg-body-columns .body-column {
    color: black;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.pg-body .pg-body-columns .image-wrapper {
    position: relative;
    width: 100%;
    height: 3.3rem;
    overflow: hidden;
}

.pg-body .pg-body-columns .image-wrapper > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pg-body .pg-body-columns .brand-image-wrapper {
    position: relative;
    width: 100%;
    height: 3rem;
    overflow: hidden;
}

.pg-body .pg-body-columns .brand-image-wrapper > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pg-body .pg-body-columns .swing-number {
    font-size: .9rem;
    font-weight: 700;
    direction:ltr;
}

.pl-footer {
    margin-bottom: 1.8rem;
}

.pl-footer  ul{
    margin: 0;
    padding: 0;
}



/*----------------------------------------------------------------------------
           Result Search  category
----------------------------------------------------------------------------*/
.products-list .search-result-wrraper {
    height: 50%;
    min-width: 60%;
    position: absolute;
    background-color: whitesmoke !important;
    z-index: 100;
    top: 3rem;
    border-radius: 10px 0 0 10px;
    box-shadow: -2px 1px 3px 2px #c3baba;
    right: 20rem;
     padding: 13px 40px 13px 22px;
}
.right-items .title-result-sid-bar {
    font-weight: bolder;
    color: #000000de;
    font-size: 17px;
      cursor: pointer;
}
.right-items .items-value-result {
    cursor: pointer;
}
.image-brand-result-wrraper {
    width: 70px;
    height: 70px;
    margin-top: 7px;
    border: 1px solid #e3e0e0;
}
.image-brand-result-wrraper .image-barnd-result {
    width: 100% !important;
}



/*----------------------------------------------------------------------------
            Media Query For Responsive
----------------------------------------------------------------------------*/
@media only screen and (max-width: 1050px) {
   .products-container {
        /* grid-template-columns: 13rem auto; */
        grid-template-columns: auto;
        column-gap: 1rem;
    }

    .search-box .categories .category-item .category-button {
        font-size: 0.75rem;
    }

    .products-list{
    overflow-x: scroll;
    }

    .products-container:not(.b-is-admin) .products-grid .pg-grid {
        grid-template-columns: 2rem 3.9rem 9rem 2.5rem 3rem 4rem 4rem 4.5rem 4rem 4rem 3rem 2rem;
        align-items: center;
        width: fit-content;
    }
    .products-container.b-is-admin .products-grid .pg-grid{
        grid-template-columns: 2rem 5rem 7rem 2rem 4rem 3rem 2rem 2.5rem 1.5rem 2.5rem 2.5rem;
        align-items: center;
    }
    .pg-body .pg-row {
        width: fit-content;
    }
    .products-container .products-grid .pg-grid {
        column-gap: 0.5rem;
        font-size: 0.75rem;
    }    

    .price-title{
    font-size: 1rem!important;
    font-weight: 400!important;
    }
    select#drpCategories {
    font-size: .8rem;
    }
}

@media only screen and (min-width: 2000px) {
}

@media only screen and (min-width: 2300px) {
}

.w-5{
    width: 5%;
}
.w-10{
    width: 10%;
}
.w-20{
    width: 20%;
}
.price-title{
    font-size: 2rem;
    font-weight: 800;
}