
.common-tab.style-icon .nav-item .nav-link .product-category-list__item {
    box-shadow: 0px 5px 10px 0px rgba(204, 204, 204, 0.25);
}

.common-tab.style-icon .nav-item .nav-link .product-category-list__item .text {
    display: none;
}

.common-tab.style-icon .nav-item .nav-link.active .product-category-list__item {
    padding: 10px;
    height: unset;
    width: unset;
    border-radius: 50px !important;
    border: 1px solid hsl(var(--main));
    background-color: hsl(var(--white));
    box-shadow: 0px 5px 10px 0px rgba(204, 204, 204, 0.25);
    color: hsl(var(--heading-color));
    font-weight: 500;
}

.common-tab.style-icon .nav-item .nav-link.active .product-category-list__item .text {
    display: block;
}

/* tech list start */
.product-category-list {
    margin-top: 32px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

@media screen and (max-width: 1199px) {
    .product-category-list {
        margin-top: 24px;
        gap: 12px;
    }
}

.product-category-list__item {
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: hsl(var(--white));
    flex-shrink: 0;
}

@media screen and (max-width: 1199px) {
    .product-category-list__item {
        width: 40px;
        height: 40px;
    }
}
/* tech list End */
/* =========================== Product Css Start ========================== */
.product-item {
    border-radius: 8px;
    background-color: #f5f7f9;
    overflow: hidden;
    transition: 0.2s linear;
}

@media (min-width: 424px) and (max-width: 575px) {
    .product-item {
        display: flex;
    }
}

.product-item.overlay-none .product-item__thumb::before {
    display: none;
}

.product-item:hover {
    box-shadow: 0px 20px 30px 0px rgba(197, 196, 201, 0.25);
}

.product-item:hover .product-item__thumb::before {
    height: 100%;
    visibility: visible;
    opacity: 1;
    z-index: 1;
}

.product-item:hover .product-item__thumb img {
    transform: scale(1.1);
}

.product-item__thumb {
    margin: 8px;
    border-radius: inherit;
    overflow: hidden;
    padding-bottom: 0;
    position: relative;
}

@media (min-width: 575px) {
    .product-item__thumb {
        max-height: 156px;
    }
}

.product-item__thumb::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0%;
    left: 0;
    bottom: 0;
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 4, 37, 0.5) 69.5%, rgba(0, 4, 37, 0.5) 100%);
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    transition: 0.2s linear;
}

.product-item__thumb img {
    transition: 0.2s linear;
    width: 100%;
    height: 156px;
}

.product-item__wishlist {
    position: absolute;
    right: 8px;
    top: 8px;
    width: 40px;
    height: 40px;
    border-radius: 30px;
    background-color: hsl(var(--white)/0.5);
    backdrop-filter: blur(5px);
    color: hsl(var(--black));
    z-index: 2;
    transition: 0.2s linear;
}

.product-item__wishlist:active {
    transform: scale(1.15);
}

.product-item__wishlist.style-two {
    position: relative;
    top: 0;
    right: 0;
    background-color: hsl(var(--section-bg));
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
}

.product-item__wishlist.style-two:hover {
    background-color: hsl(var(--black));
    color: hsl(var(--white));
}

.product-item__wishlist:hover {
    background-color: hsl(var(--white));
}

.product-item__wishlist.active {
    background-color: hsl(var(--black));
    color: hsl(var(--white));
}

.product-item__content {
    padding: 24px 16px;
    padding-top: 16px;
}

.product-item__title {
    margin-bottom: 8px;
    text-transform: capitalize;
    font-weight: 600;
}

.product-item__title .link {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-item__author {
    font-size: 0.875rem;
    font-weight: 400;
    color: hsl(var(--black-three));
}

.product-item__author .link {
    color: inherit;
}

.product-item__prevPrice {
    font-size: 0.875rem;
    font-weight: 400;
    color: hsl(var(--gray-three));
}

.product-item__bottom {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e4e3e8;
}

@media screen and (max-width: 767px) {
    .product-item__bottom {
        margin-top: 8px;
        padding-top: 8px;
    }
}

.download-icon:hover .icon .dark-version {
    display: block !important;
}

.download-icon:hover .icon .white-version {
    display: none !important;
}

/* Author Css Start */
.author-info__thumb {
    width: 114px;
    height: 114px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: hsl(var(--white));
    position: relative;
    z-index: 1;
}

.author-info__thumb::before {
    position: absolute;
    content: "";
    width: 80px;
    height: 80px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: hsl(var(--section-bg));
    z-index: -1;
    border-radius: inherit;
}

/* Author Css End */
/* =========================== Product Css End ========================== */
/* ======================= Featured Products Css Start =============================== */
@media (min-width: 576px) {
    .card-wrapper {
        margin-bottom: 56px;
    }
}

@media (min-width: 576px) {
    .card-wrapper div[class*=col]:nth-child(even) .product-item {
        transform: translateY(56px);
    }
}
/* ======================= Featured Products Css End =============================== */
/* ======================= Selling Products css Start ========================= */
.selling-product::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 62%;
    background-color: hsl(var(--black));
    left: 0;
    top: 0;
    z-index: -1;
}

@media (min-width: 575px) {
    .selling-product .bg--gradient, .selling-product .bg-pattern {
        top: 0;
        transform: unset;
        height: 62%;
    }
}

.selling-product .slick-arrow {
    top: 56%;
}

/* ======================= Selling Products css End ========================= */
.popular-item-card:hover .product-item__bottom {
    visibility: visible;
    opacity: 1;
}

.popular-item-card .product-item__bottom {
    position: absolute;
    bottom: 0;
    color: hsl(var(--white));
    z-index: 2;
    width: 100%;
    padding: 16px;
    padding-top: 0;
    margin-top: 0;
    border-top: 0;
    visibility: hidden;
    opacity: 0;
    transition: 0.2s linear;
}

.popular-item-card .product-item__author {
    color: hsl(var(--white));
}
/* ======================== All Product Section Css Start ====================== */
/* Filter Tab Css Start */
.filter-tab {
    margin-bottom: 32px;
}

@media screen and (max-width: 1199px) {
    .filter-tab {
        gap: 24px;
    }
}

@media screen and (max-width: 1199px) {
    .filter-tab {
        gap: 16px;
    }
}

.filter-tab__right {
    gap: 24px;
}

@media screen and (max-width: 1199px) {
    .filter-tab__right {
        gap: 16px;
    }
}

@media screen and (max-width: 991px) {
    .filter-tab__button:hover {
        background-color: transparent !important;
        border-color: hsl(var(--white-one)) !important;
        color: hsl(var(--black)) !important;
    }
}

.filter-tab__button.active {
    background-color: hsl(var(--white-one)) !important;
    border-color: hsl(var(--white-one)) !important;
    color: hsl(var(--black)) !important;
}

.filter-form {
    display: none;
}

/* Filter Tab Css End */
/* List & Grid Buttons Start */
@media screen and (max-width: 991px) {
    .list-grid {
        order: -1;
    }
}

.list-grid__button {
    width: 36px;
    height: 36px;
    border: 1px solid hsl(var(--gray-five));
    border-radius: 8px;
    font-size: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s linear;
}

.list-grid__button.active {
    border-color: hsl(var(--black)) !important;
    background: hsl(var(--black)) !important;
    color: hsl(var(--white)) !important;
}

/* List & Grid Buttons End */
/* List & Grid Card Css Start */
.list-view .list-grid-wrapper > div {
    width: 100%;
}

.list-view .list-grid-wrapper .product-item {
    display: flex;
}

.list-view .list-grid-wrapper .product-item__content {
    flex-grow: 1;
}

/* List & Grid Card Css End */
/* Filter Sidebar Css Start */
.filter-sidebar {
    background-color: hsl(var(--gray-seven));
    padding: 32px 16px;
    border-radius: 8px;
    position: relative;
}

@media screen and (max-width: 991px) {
    .filter-sidebar {
        position: fixed;
        left: 0;
        top: 0;
        z-index: 999;
        border-radius: 0;
        width: 300px;
        transform: translateX(-100%);
        transition: 0.2s linear;
        height: 100vh;
        overflow-y: auto;
        padding-top: 48px;
    }
}

.filter-sidebar.show {
    transform: translateX(0);
}

.filter-sidebar__item:last-child .filter-sidebar__content {
    margin-bottom: 0;
}

.filter-sidebar__content {
    margin-bottom: 44px;
}

@media screen and (max-width: 1199px) {
    .filter-sidebar__content {
        margin-bottom: 32px;
    }
}

@media screen and (max-width: 991px) {
    .filter-sidebar__content {
        margin-bottom: 24px;
    }
}

.filter-sidebar__button {
    margin-bottom: 16px;
    padding-bottom: 16px;
    width: 100%;
    text-align: left;
    position: relative;
    color: hsl(var(--heading-color));
}

.filter-sidebar__button.active::after {
    transform: rotate(180deg);
}

.filter-sidebar__button::before {
    position: absolute;
    content: "";
    width: calc(100% + 32px);
    height: 1px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: hsl(var(--gray-five));
}

.filter-sidebar__button::after {
    position: absolute;
    content: "\f107";
    font-weight: 900;
    font-family: "Line Awesome Free";
    right: 0;
    top: 0px;
    transition: 0.2s linear;
}

.filter-sidebar-list__item {
    margin-bottom: 16px;
}

.filter-sidebar-list__item:last-child {
    margin-bottom: 0;
}

.filter-sidebar-list__text {
    font-size: 0.875rem;
    color: hsl(var(--black-three));
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.2s linear;
}

.filter-sidebar-list__text:hover {
    color: hsl(var(--main));
}

.filter-sidebar-list__text:hover .form-check-label {
    color: hsl(var(--main));
}

.filter-sidebar-list__text .common-check {
    margin-bottom: 0;
}

.filter-sidebar-list__text .form-check-label {
    transition: 0.2s linear;
}

/* Filter Sidebar Css End */
/* ======================== All Product Section Css End ====================== */
/* ======================= Product Details Section Css Start ==================== */
.product-details__thumb {
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

.product-details__buttons {
    background-color: hsl(var(--section-bg));
    padding: 32px;
    border-radius: 0 0 8px 8px;
}

.product-details__desc {
    margin-top: 40px;
    margin-bottom: 24px;
}

@media screen and (max-width: 1199px) {
    .product-details__desc {
        margin-top: 32px;
    }
}

@media screen and (max-width: 991px) {
    .product-details__desc {
        margin-top: 24px;
    }
}

.product-details__item {
    margin-bottom: 24px;
}

/* Product List */
.product-list {
    /* list-style: disc; */
    padding-left: 17px;
}

.product-list__item {
    margin-bottom: 16px;
    display: list-item;
}

.product-list__item:last-child {
    margin-bottom: 0;
}

/* More Item  */
.more-item, .follower-item {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid hsl(var(--gray-five));
}

.more-item__content, .follower-item__content {
    gap: 15px;
}

.more-item__item .link:hover::before, .follower-item__item .link:hover::before {
    height: 100%;
    visibility: visible;
    opacity: 1;
    z-index: 1;
}

.more-item__item .link:hover img, .follower-item__item .link:hover img {
    transform: scale(1.1);
}

.more-item__item img, .follower-item__item img {
    width: 80px;
    height: 80px;
    border-radius: 4px;
}

/* Product Details Sidebar Css Start */
.product-sidebar {
    padding: 24px 32px;
    border-radius: 8px;
    background: #f5f7f9;
}

@media screen and (max-width: 1399px) {
    .product-sidebar {
        padding: 24px;
    }
}

@media screen and (max-width: 1199px) {
    .product-sidebar {
        padding: 24px 16px;
    }
}

.product-sidebar__top {
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid hsl(var(--gray-five));
}

.btn-has-dropdown {
    font-weight: 600;
    padding-right: 16px;
    position: relative;
    color: hsl(var(--heading-color));
}

.btn-has-dropdown::before {
    position: absolute;
    content: "\f107";
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: hsl(var(--heading-color));
    font-size: 1rem;
    transition: 0.2s linear;
}

.license-dropdown {
    box-shadow: var(--box-shadow);
    border: 1px solid hsl(var(--gray-five));
    padding: 16px;
    border-radius: 8px;
    max-width: 300px;
    transform: scale(0.9);
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: 0;
    top: calc(100% - 15px);
    transition: 0.2s linear;
    background-color: hsl(var(--white));
    z-index: 2;
}

.license-dropdown::before {
    position: absolute;
    content: "";
    width: 14px;
    height: 14px;
    top: -7px;
    left: 8px;
    transform: rotate(45deg);
    border: 1px solid hsl(var(--gray-five));
    background-color: hsl(var(--white));
    border-radius: 3px;
    border-bottom: 0;
    border-right: 0;
}

.license-dropdown.active {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
}

.activeSelectItem {
    background-color: hsl(var(--section-bg));
    padding: 8px;
    border-radius: 8px;
    border: 1px solid hsl(var(--border-color)) !important;
}

[data-theme=light] .activeSelectItem {
    background-color: var(--dark-black-three) !important;
}

.author-details {
    padding: 16px;
    border-radius: 8px;
    border: 1px solid hsl(var(--gray-five));
    margin-top: 24px;
}

.author-details__thumb {
    width: 72px;
    height: 72px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: hsl(var(--white));
}

@media screen and (max-width: 1199px) {
    .author-details__thumb {
        width: 60px;
        height: 60px;
    }
}
/* badge list Css Start */
.badge-list {
    margin-left: 80px;
}

@media screen and (max-width: 1199px) {
    .badge-list {
        margin-left: 68px;
    }
}

.badge-list__item {
    width: 48px;
    height: 52px;
    background-image: url(../images/shapes/polygon-shape.png);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.badge-list--sm .badge-list__item {
    width: 36px;
    height: 40px;
    background-image: url(../images/shapes/polygon-shape.png);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

/* badge list Css End */
.meta-attribute {
    margin-top: 32px;
}

@media screen and (max-width: 1199px) {
    .meta-attribute {
        margin-top: 24px;
    }
}

.meta-attribute__item {
    display: flex;
    align-items: start;
    gap: 24px;
    margin-bottom: clamp(1rem, 0.391rem + 1.268vw, 1.5rem);
}

.meta-attribute__item .name {
    font-size: 1rem;
    color: hsl(var(--heading-color));
    width: 140px;
    flex-shrink: 0;
}

.meta-attribute__item .details {
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.meta-attribute__item .details > a {
    font-size: inherit;
}

/* Product Details Sidebar Css End */
/* Product Review Css Start */
.product-review, .user-comment {
    background-color: hsl(var(--white));
    padding: 16px clamp(1rem, 0.391rem + 1.268vw, 1.5rem);
    border: 1px solid hsl(var(--border-color));
    margin-bottom: clamp(1rem, 0.391rem + 1.268vw, 1.5rem);
    border-radius: 8px;
}

.product-review:last-child, .user-comment:last-child {
    margin-bottom: 0;
}

.product-review__top {
    padding-bottom: 16px;
    margin-bottom: clamp(1rem, 0.391rem + 1.268vw, 1.5rem);
    border-bottom: 1px solid hsl(var(--border-color));
}

.product-review__rating {
    gap: 12px;
}

@media screen and (max-width: 991px) {
    .product-review__rating {
        gap: 4px;
    }
}

@media screen and (max-width: 1199px) {
    .product-review__reason, .product-review__subject, .product-review__date, .product-review__desc {
        font-size: 0.875rem;
    }
}

@media screen and (max-width: 767px) {
    .product-review__reason, .product-review__subject, .product-review__date, .product-review__desc {
        font-size: 0.875rem;
    }
}

.product-review__subject {
    color: hsl(var(--heading-color));
    font-weight: 700;
}

.product-review__user:hover {
    text-decoration: underline;
}

.author-reply, .user-comment__profile {
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid hsl(var(--border-color));
    padding-top: clamp(1rem, 0.391rem + 1.268vw, 1.5rem);
    margin-top: clamp(1rem, 0.391rem + 1.268vw, 1.5rem);
}

.author-reply__thumb, .user-comment__thumb {
    width: 56px;
    height: 56px;
}

@media screen and (max-width: 575px) {
    .author-reply__thumb, .user-comment__thumb {
        width: 40px;
        height: 40px;
    }
}

.author-reply__content, .user-comment__info {
    width: calc(100% - 56px);
    padding-left: 16px;
}

@media screen and (max-width: 575px) {
    .author-reply__content, .user-comment__info {
        width: calc(100% - 40px);
        padding-left: 8px;
    }
}

.author-reply__name, .user-comment__name {
    font-size: 1.125rem;
    margin-bottom: 0;
}

.author-reply__response, .user-comment__purchase {
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 16px;
    display: block;
}

@media screen and (max-width: 767px) {
    .author-reply__response, .user-comment__purchase {
        font-weight: 500;
    }
}

.author-reply__desc {
    margin-bottom: 12px;
}

@media screen and (max-width: 767px) {
    .author-reply__desc {
        font-size: 0.875rem;
    }
}

.author-reply__desc:last-of-type {
    margin-bottom: 0;
}

.review-reply {
    display: flex;
    flex-wrap: wrap;
    margin-top: 24px;
    padding-top: 32px;
    border-top: 1px solid hsl(var(--border-color));
}

.review-reply__thumb {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
}

.review-reply__content {
    width: calc(100% - 56px);
    padding-left: 12px;
}

.review-reply__button {
    margin-top: 12px;
}

/* Product Review Css End */
/* ======================= Product Details Section Css End ==================== */
/* ========================== Hidden Item Css Start =========================== */
.product-reject__wrapper > div {
    margin-bottom: 24px;
}

.product-reject__wrapper > div:last-child {
    margin-bottom: 0;
}

.product-reviewer__thumb {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
}

.product-reject-info {
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid hsl(var(--gray-five));
}

.product-reject-info__thumb {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    overflow: hidden;
}
/* ==================== Table Review Product Css Start ========================= */
.review-product__thumb {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    overflow: hidden;
}

/* ==================== Table Review Product Css End ========================= */
[data-theme=light] .product-category-list__item {
    background-color: var(--dark-black-three);
}

[data-theme=light] .product-item {
    background-color: var(--dark-black-three);
}

[data-theme=light] .product-item:hover {
    box-shadow: 0px 20px 30px 0px var(--black);
}

[data-theme=light] .product-item__wishlist.active {
    background-color: hsl(var(--white));
    color: hsl(var(--black));
}

[data-theme=light] .selling-product::before {
    background-color: var(--dark-black-two);
}

[data-theme=light] .author-info__thumb {
    background-color: var(--dark-black-three);
}

[data-theme=light] .product-item.box-shadow {
    box-shadow: none !important;
}
[data-theme=light] .common-tab.style-icon .nav-item .nav-link .product-category-list__item {
    box-shadow: none;
}

[data-theme=light] .common-tab.style-icon .nav-item .nav-link.active .product-category-list__item {
    background-color: var(--dark-black-two);
    box-shadow: none;
}

[data-theme=light] .product-review, [data-theme=light] .user-comment {
    background-color: var(--dark-black-two);
}

[data-theme=light] .table .product-item__wishlist {
    background-color: var(--dark-black-five);
    color: hsl(var(--static-white));
}

[data-theme=light] .table .product-item__wishlist.active {
    background-color: hsl(var(--static-white));
    color: hsl(var(--static-black));
}
.product-price{}
.flx-wrap {
    display: flex;
    flex-wrap: wrap;
}

.flx-align, .common-check {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.flx-center {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.flx-between {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.pro-details{}
.pro-details h2{
    text-transform: capitalize;
    margin-bottom: 20px;
}

.item-desc{}
.item-desc h3 {margin-top:8px}
.item-desc ul{padding:revert}
.item-desc ul li{display:revert;padding: 0px 2px 5px 0px;}
.buy-modal {}
.buy-modal input{
    border-radius: 50px;
    width: 100%;
    height: 50px;
    padding-left: 30px;
    outline: none;
    font-size: 16px;
    border: 1px solid #ced4da;
}