.all-products-area {
    padding-top: 68px;
    padding-bottom: 213px;
}

.product-search-area {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.search {
    border: 1px solid var(--border-color);
    border-radius: 3px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.search i {
    color: var(--gray-color2);
}

.search input {
    padding: 8px 5px;
    width: 100%;
    background: transparent;
}

.single-product-list {
    border: none;
    margin-bottom: 24px;
    padding: 10px 10px 40px;
    border-radius: 20px;
    background-color: var(--green);
}
@media screen and (max-width: 991px) {
    .single-product-list {
        border-radius: 10px;
    }
}
@media screen and (max-width: 575px) {
    .single-product-list {
        padding: 10px 10px 20px;
    }
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease-in-out;
}

.product-img {
    border-radius: 20px;
    min-height: 347px;
    max-height: 347px;
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: var(--white);
    z-index: 1;
}
@media screen and (max-width: 991px) {
    .product-img {
        border-radius: 10px;
        min-height: 250px;
        max-height: 250px;
    }
}
.product-img .productTag {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #eee;
    padding: 2px 10px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    color: var(--text-black);
}
@media screen and (max-width: 991px) {
    .product-img .productTag {
        top: 10px;
        left: 10px;
    }
}

.single-product-list .product-img:hover img  {
    transform: scale(1.1);
}

.product-img:after {
    background-color: rgba(33, 119, 56, 0.5);
    z-index: 9;
    height: 100%;
    width: 100%;
    position: absolute;
    content: "";
    opacity: 0;
    left: 0;
    top: 0;
    transition: all 0.5s ease-in-out;
}

.single-product-list .product-img:hover:after {
    opacity: 1;
}

.product-title a {
    display: block;
    font-size: 24px;
    font-weight: 500;
    line-height: 28px;
    color: var(--white);
    padding: 40px 0 22px;
    text-align: center;
}
@media screen and (max-width: 575px) {
    .product-title a {
        font-size: 20px;
        padding: 20px 0;
    }
}

.rating-part {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
}
@media screen and (max-width: 575px) {
    .rating-part {
        margin-bottom: 20px;
    }
}

.rating-part>span {
    font-size: 16px;
    font-weight: 500;
    line-height: 17px;
    color: var(--white);
}

.pice-area {
    display: flex;
    gap: 16px;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    line-height: 21px;
    color: var(--white) !important;
    margin-bottom: 35px;
}
@media screen and (max-width: 575px) {
    .pice-area {
        margin-bottom: 20px;
    }
}

span.old-price {
    text-decoration: line-through;
}

/*span.new-price {*/
/*    color: var(--theme-color);*/
/*    margin-left: 3px;*/
/*}*/

.rating-part-star {
    display: flex;
    align-items: center;
    gap: 7px;
}

/*.rating-part-star .star-ratings {*/
/*    color: var(--yellow);*/
/*}*/

.reatting-input  {
    color: var(--color-yellow);
}

.filter-bar-products{
    text-align: end;
}

/* left side bar */

.header-product .accordion-button:not(.collapsed) {
    background-color: transparent;
}

.header-product .accordion-button {
    background-color: transparent;
    line-height: 26px;
    font-size: 17px;
    font-weight: 500;
    padding: 10px 0;
    color: var(--heading-color);
    padding-right: 14px;
}

.product-categories-list ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 10px;
    color: var(--body-font-color);
    justify-content: space-between;
    padding-right: 14px;
}

.product-categories-list ul li label {
    margin: 0;
}

.product-categories-list ul li input[type="radio"] {
    accent-color: var(--theme-color);
}

.header-product {
    border-bottom: 1px solid var(--border-color);
    border-top: 1px solid var(--border-color);
}

.left-area-title {
    border-right: 1px solid var(--border-color);
}

.left-area-title .accordion-item {
    background: transparent;
}

.product-categories-list {
    margin-top: 16px;
    margin-bottom: 30px;
}

.product-categories-list ul li span label i {
    font-size: 12px;
    color: var(--color-yellow);
    margin-right: 6px;
}

span.totlal-rating-view {
    font-size: 14px;
    font-weight: 400;
}

.product-categories-list ul li span {
    display: flex;
    align-items: center;
    gap: 9px;
}


.value {
    position: absolute;
    top: 30px;
    left: 50%;
    margin: 0 0 0 -20px;
    width: 40px;
    text-align: center;
    display: block;
    font-weight: normal;
    font-family: Verdana, Arial, sans-serif;
    font-size: 14px;
    color: #333;
}

.price-range-both.value {
    width: 100px;
    margin: 0 0 0 -50px;
    top: 26px;
}

.price-range-both {
    display: none;
}

.value i {
    font-style: normal;
}

/* ---------------------
Single Product css
----------------*/

.space-section{
    margin-bottom: 55px;
}

.slider-product.tab-img-part {
    margin-bottom: 30px;
}

.single-product-deities {
    padding-top: 107px;
    padding-bottom: 210px;
}

.border-area {
    border: 1px solid rgba(0, 0, 0, 0.12);
    padding: 60px 30px;
}

.tab-img-slider {
    width: 100%;
}

.tab-img-slider img {
    width: 100%;
}

.tab-img-part button img {
    width: 113px;
}

.tab-img-part button.active {
    background: none !important;
}

.tab-img-part button.active img {
    border: 1.5px solid var(--theme-color);
}

div#v-pills-tabContent {
    width: 100%;
}

div#v-pills-home img {
    width: 100%;
}

.product-name {
    font-size: 32px;
    font-weight: 500;
    line-height: 41.6px;
}

.created-by {
    margin-top: 17px;
    margin-bottom: 29px;
    font-weight: 500;
}

.product-reating {
    display: flex;
    gap: 13px;
    margin-bottom: 52px;
    align-content: center;
    font-size: 18px;
    font-weight: 400;
}

.product-rating-part-star {
    color: var(--color-yellow);
}

.product-price {
    display: flex;
    gap: 9px;
    font-size: 15px;
    line-height: 16.29px;
    font-weight: 500;
    align-items: center;
}

.product-old-price {
    text-decoration: line-through;
}

.stock-product {
    margin-bottom: 25px;
    margin-top: 15px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.product-new-price {
    color: var(--theme-color);
}

.author-content {
    padding-top: 30px;
}

.author-img-content img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 13px;
}

.author-position {
    margin-top: 9px;
    margin-bottom: 33px;
    font-size: 14px;
    font-weight: 400;
    line-height: 16.8px;
}

.author-detiles {
    margin-bottom: 55px;
}

.certificat-year-time {
    display: flex;
    gap: 31px;
    margin-bottom: 10px;
    align-items: center;
    font-size: 15px;
    font-weight: 400;
}

.certification {
    margin-bottom: 30px;
}

span.year {
    color: var(--heading-color);
}

.course-tab-nav-wrap .product-ecommerce.nav-tabs.tab-nav-list li {
    margin-bottom: 10px;
}

/*.course-details-tab-nav-wrap .product-ecommerce.nav-tabs .nav-link.active::after {*/
/*    background: var(--theme-color);*/
/*    top: 33px;*/
/*}*/

.ecommerce-tab-review {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12) !important;
    padding: 13px 0 3px 0 !important;
    margin-bottom: 0 !important;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
}



/* ---------------------
Single Product css end
----------------*/

/*-----------
My Products css start
 -------------*/
.table-size {
    width: 964px  !important;
    border: 0;
}

.title-stock h6 {
    font-size: 24px;
    font-weight: 500;
    line-height: 25.56px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

img.products-img-list {
    width: 44px;
    height: 44px;
    object-fit: cover;
}

.mean-all-icon {
    display: flex;
    gap: 10px;
}

.icon-view-list {
    cursor: pointer;
}

.menu-products table tbody {
    color: var(--gray-color);
}

.menu-products table tbody tr td {
    font-size: 16px;
    font-weight: 400;
    line-height: 19.2px;
    padding: 25px 10px;
}

.stock-btu {
    background: #e1fae1;
    padding: 4px 15px;
    color: #3ebb3e;
    border-radius: 4px;
}

.out-stock-btu {
    background: #fae1e1;
    padding: 4px 15px;
    color: #ff4d4d;
    border-radius: 4px;
}

.stock-btu {
    padding: 2px 10px;
    border-radius: 50px;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: var(--green);
    background-color: rgba(33, 119, 56, 0.1);
}

.pending-status {
    background: #ededed;
    padding: 4px 15px;
    color: #212529;
    border-radius: 4px;
}

.menu-products table thead tr {
    font-size: 15px;
    font-weight: 500;
    color: var(--heading-color);
}

.menu-products table {
    border-right: 0;
    border-left: 0;
}

.time-range p {
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: 500;
}

.time-range input {
    border: 1px solid var(--border-color);
}

/*-----------
My Products css end
 -------------*/

/* -----------------
 dashboard area start
--------------------- */

.dashboard-title {
    font-size: 24px;
    font-weight: 500;
    line-height: 25.56px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 25px;
    margin-top: 30px;
}

.sel-analisis {
    border: 1px solid var(--border-color);
    border-radius: 4px;
    margin-bottom: 24px;
    padding: 18px 21px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.content-sel p {
    font-size: 16px;
    font-weight: 500;
    line-height: 17.04px;
    margin-bottom: 32px;
}

.content-sel h4 {
    font-size: 30px;
    font-weight: 500;
    line-height: 31.95px;
}

.inventory-title {
    background: #F6F7FA;
    padding: 12px 21px;
    font-weight: 500;
    font-size: 16px;
    line-height: 17.04px;
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
}

.model-area-box {
    padding: 30px;
}

.model-title {
    line-height: 28.8px;
    font-size: 24px;
    padding-bottom: 15px;
    font-weight: 500;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 35px;
}

.quantity-area h6 {
    line-height: 18px;
    font-size: 15px;
    font-weight: 500;
}

.quantity-area input {
    border: 1px solid var(--border-color);
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    line-height: 19.2px;
    border-radius: 4px;
    padding: 10px 24px;
    margin-top: 15px;
}

.massage-area {
    margin-top: 20px;
}

.massage-area h6 {
    line-height: 18px;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 15px;
}

.massage-area textarea {
    border: 1px solid var(--border-color);
    padding: 14px 24px;
    border-radius: 4px;
    width: 100%;
    margin-bottom: 20px;
}

.single-chart {
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 18px 20px;
    box-shadow: 0px 4px 4px 0px rgba(240, 240, 240, 0.25);
    margin-bottom: 20px;
}

.chart-ratio {
    font-size: 16px;
    font-weight: 500;
    line-height: 106.5%;
}

.single-chart-sel {
    box-shadow: 0px 4px 4px 0px rgba(240, 240, 240, 0.25);
    border-radius: 4px;
    border: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.chart-ratio-sel {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 106.5%;
    padding: 12px 20px;
    background: #F6F7FA;
}

.chart-area {
    padding: 0 20px;
}

/* -----------------
 dashboard area end
--------------------- */

/* ----------------------
Upload Product area start
-----------------------------*/

.single-product-upload {
    text-align: center;
    padding: 37px 20px 54px;
    background-color: var(--gray-two);
    border-radius: 20px;
    transition: all 0.3s;
}
.single-product-upload:hover{
    background-color: var(--yellow);
}
@media screen and (max-width: 1199px) {
    .single-product-upload {
        padding: 35px 20px;
    }
}

.single-product-upload h4 {
    font-size: clamp(18px,1.25vw,26px);
    font-weight: 500;
    line-height: 1.3;
    margin-top: 13px;
    color: var(--text-black);
}

/* -------------------
Upload Product end
--------------------------*/

/*--------------------
check out area start
------------ */

.checkout-title {
    background: #F6F7FA;
    padding: 15px 20px;
    font-size: 20px;
    line-height: 26px;
    font-weight: 500;
}

.checkout-part {
    border: 1px solid var(--border-color);
}

.single-price-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding: 15px 20px;
}

.single-price-list h5 {
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
}

.single-price-list h6 {
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
}

.single-price-list p {
    color: var(--disable-color);
}

.button-check-out {
    margin: 15px 20px;
}

.product-name-cart {
    font-size: 15px;
    font-weight: 500;
    line-height: 19.5px;
}

.price-all .old-price {font-size: 15px;}

.price-all {
    font-weight: 500;
    font-size: 18px;
}

.quantity-part {
    display: flex;
    align-items: center;
    align-content: center;
    height: 23px;
    background: #E5E8EC;
    width: auto;
    font-size: 15px;
    font-weight: 500;
    gap: 10px;
    border: 1px solid var(--border-color);
}

.increase {padding: 9px;}

.deincrease {
    padding: 10px;
}

.product-name-cart {
    font-size: 15px;
    font-weight: 500;
    line-height: 19.5px;
}

.price-all .old-price {font-size: 15px;}

.price-all {
    font-weight: 500;
    font-size: 18px;
}

.quantity-part {
    display: flex;
    align-items: center;
    align-content: center;
    height: 32px;
    background: #E5E8EC;
    width: auto;
    font-size: 15px;
    font-weight: 500;
    gap: 10px;
}

.increase {padding: 9px;}

.deincrease {
    padding: 10px;
}

.quantity-part input{
    width: 25px;
    background: transparent;
}

.check-out-list{
    background-color: var(--white-color);
}

.cart-table-title {
    background: #F6F7FA;
}

.order-area table {
    border: 1px solid var(--border-color);
    background-color: var(--white-color);
    min-width: 698px;
}

.nav-tabs.product-ecommerce .nav-item.show .nav-link, .nav-tabs.product-ecommerce .nav-link.active{
    background: transparent;
}

.cart-area{
    padding-top: 107px;
    padding-bottom: 200px;
}

.cart-table-title tr th {
    color: var(--heading-color);
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    padding: 15px 20px;
}

.single-row-product td {
    padding: 25px 18px !important;
}

.pagination-product {
    display: inline-block;
    margin-top: 30px !important;
}

.pagination-product ul {
    align-items: center;
}

.pagination-product ul button {
    padding: 9px 16px;
    display: inline-block;
    border: 1px solid var(--border-color);
    width: 45px;
    height: 45px;
    margin-right: 12px;
    border-radius: 4px;
}

.active-pagination {
    background: var(--theme-color)!important;
    color: var(--white-color);
}

.border-color-curd{
    border: 1px solid var(--border-color);
    padding: 49px 40px;
}

/*--------------------
check out area end
------------ */

/* --------------------
ratting area start
-------------------*/



.reatting-input {
    margin-top: 5px;
  }

    .starDiv {
      display: flex;
      align-items: center;
      justify-content: center;

  }
    .starDiv svg {
        position: relative;
        width: 18px;
        height: 17px;
      }









/* -----------------
ratting area end
-------------------*/

/* responsive css */
@media (min-width: 78px) and (max-width: 767.98px) {
    .slider-product .align-items-start {
        flex-direction: column-reverse;
        margin: 10px 0;
        gap: 10px;
    }
    .slider-product .align-items-start .nav-pills {
        flex-direction: row !important;
    }
    .slider-product .align-items-start .nav-pills .nav-link {
        padding: 5px !important;
    }
    .tab-img-part button img {
        width: 60px;
        height: auto;
    }

    .filter-bar-products {
        text-align: left !important;
        margin-bottom: 20px;
    }

    .all-products-area{
        padding-bottom: 68px;
    }

    .product-name {
        font-size: 25px;
        line-height: 33.6px;
    }

    .created-by {
        margin-top: 10px;
        margin-bottom: 14px;
    }

    .product-reating {
        margin-bottom: 20px;
    }

    .single-product-deities{
        padding-top: 68px;
        padding-bottom: 68px;
    }
}
