/*
Theme Name:   Hello Elementor Child
Template:     hello-elementor  
Version:      1.0.0
*/

/* header#masthead {
    margin-bottom: 83px;
} */

header#masthead {
    height: 83px;
}

.custom-breadcrumbs .breadcrumb-background {
    background-blend-mode: overlay;
    color: #ffffff;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.custom-breadcrumbs h1.breadcrumb-title {
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Sticky tabs container */
/* Sticky tabs container */
.my-tab{
      user-select: none;
    z-index: 10;
    background: white;
    width: 100%;
    text-align: center;
}
  

.my-tab.sticky {
       position: fixed;
       z-index: 9;
       top: 80px;
}


ol.flex-control-nav.flex-control-thumbs {
    max-width: 350px;
    margin: 0 auto !important;
    justify-content: left;
    padding-top: 20px !important;
}


.sticky .e-n-tab-title-text {
    font-size: 14px;
}

.scrollable-div {
    min-height: 100vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

/* Style for category tabs */
.product-category-tabs {
    margin-bottom: 0px;
    position: sticky;
    top: 100px;
    z-index: 9; /* Ensure tabs stay on top of other content */
    background-color: white; /* Optional: set a background color */
    padding: 0; /* Optional: add padding for spacing */
    /*box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
    text-transform: uppercase;
    font-weight: 600;
    
}

.e-n-tabs-heading .product-category-tabs ul.my-tab span.accordion-item-title {
    font-size: 14px;
    text-align: center;
    text-transform: uppercase;
}

.e-n-tabs-heading .product-category-tabs ul.my-tab span.accordion-item-title img.accordion-item-img {
    margin-bottom: 5px;
}

.product-category-tabs ul {
    gap: 20px;
}
.product-category-tabs li {
    text-transform: none;
    font-weight: normal;
}
/* .product-category-tabs li {
  padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
} */

/* .product-category-tabs li:hover {
    color: #4472c4;
} */
.product-category-tabs li.active {
    color: #4472c4;
    border-bottom:2px red solid;
}

img.accordion-item-img.hidden {
       display: none !important;
}

/* Style for subcategory container */
.subcategory-container {
    margin-bottom: 30px;
    margin: 0 auto;
    padding: 20px;
    width: 90%; /* Set the container width to 90% of the page's width */
    max-width: 1200px; /* Max width to keep the content from becoming too wide on larger screens */
    box-sizing: border-box; /* Ensure padding is included in the width */
    display: flex;
    flex-direction: column; /* Stack content vertically */
    gap: 20px; /* Space between the subcategory name and product list */
}

.subcategory-container h2 {
    font-size: 1.5em;
    margin-bottom: 15px;
    text-align: center;
    text-transform: uppercase;
}

/* Style for the subcategory tabs (nested under each parent tab) */
.subcategory-tabs {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.subcategory-tabs li {
    padding: 8px 16px;
    background-color: #f0f0f0;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.subcategory-tabs li:hover,
.subcategory-tabs li.active {
    color: #4472c4;
    border-bottom:2px red solid;
}

/* Style for product list */
.product-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.product-item {
     flex: 1 1 calc(25% - 20px); /* 4 items per row, with gap */
    box-sizing: border-box;
    text-align: center;
    padding: 10px;
    transition: transform 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
}

.product-item img {
    margin-bottom: 10px;
    display: block;
    margin: 0 auto; 
    max-width: 100%;
    height: auto; 
}

.product-item h3 a {
    font-size: 18px;
    margin: 0;
    color:black;
    font-weight:500;
}
.product-item h3 a:hover {
    font-size: 18px;
    margin: 0;
    font-weight:500;
}
.product-tab ul.my-tab li a {
    text-transform: uppercase;
    color: #000;
    font-weight: normal;
}

.product-tab ul.my-tab li.active {
    border-bottom: 2px solid #E41C1C;
}
/* Make it responsive on smaller screens */



li.menu-item.menu-item-type-custom.menu-item-object-custom.menu-item-has-children.menu-item-4414 a {
    pointer-events: none;
    cursor: default;
}


li.menu-item.menu-item-type-custom.menu-item-object-custom.menu-item-has-children.menu-item-4414 ul.sub-menu.wpr-sub-menu li a {
    pointer-events: inherit !important;
    cursor: pointer !important;
}

ol.flex-control-nav.flex-control-thumbs {
    display: flex;
}

ol.flex-control-nav.flex-control-thumbs li {
    width: 23% !important;
    flex: inherit;
    max-width: 100%;
}

.woocommerce div.product div.images img {
    width: auto !important;
    height: auto !important;
    object-fit: cover !important;
    display: block;
    margin: 0 auto;
}


@media screen and (max-width: 1199px) {

header#masthead {
    height: 77px;
}
}

@media screen and (max-width: 1024px) {
    .product-category-tabs ul {
        flex-wrap: wrap;
        justify-content: center;
    }
li.menu-item.menu-item-type-custom.menu-item-object-custom.menu-item-has-children.menu-item-4414 a {
    pointer-events: inherit;
    cursor: pointer;
}
/*     .product-category-tabs li {
        padding: 8px 5px;
    } */

    .product-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .product-item {
        flex: 1 1 calc(50% - 20px); /* 2 items per row */
    }
	
	li.enquiry.menu-item.menu-item-type-custom.menu-item-object-custom.menu-item-1281 {
    padding-bottom: 20px;
    padding-top: 15px;
}

li.enquiry.menu-item.menu-item-type-custom.menu-item-object-custom.menu-item-1281 a.wpr-mobile-menu-item {
    margin: 0 !important;
    margin-left: 16px !important;
   
}

}
@media screen and (max-width: 991px) {
header#masthead {
    height: 65px;
}
}
@media screen and (max-width: 768px) {
    .product-category-tabs ul {
        flex-wrap: wrap;
        justify-content: center;
    }

/*     .product-category-tabs li {
        padding: 8px 5px;
    } */

    .product-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .product-item {
        flex: 1 1 calc(50% - 20px); /* 2 items per row */
    }

    .subcategory-tabs {
        flex-wrap: wrap;
        justify-content: center;
    }

    .subcategory-tabs li {
        padding: 6px 12px;
    }
	
img.attachment-full.size-full.wp-image-2052 {
    width: 62px !important;
}
}

@media screen and (max-width: 480px) {
    .product-category-tabs ul {
        flex-wrap: wrap;
        justify-content: center;
        gap:30px;
    }

    .product-category-tabs li {
        /*padding: 6px 12px;*/
    }

    .product-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .product-item {
        flex: 1 1 100%; /* 1 item per row */
    }

    .subcategory-tabs li {
        padding: 6px 12px;
    }

    .subcategory-container h2 {
        font-size: 1.2em;
    }
}




.woocommerce div.product {
    margin-top:30px;
}




/*table css*/
.product-table h3 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.custom-product-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.custom-product-table td {
    border: 1px solid #ddd;
    padding: 8px;
}

.custom-product-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.custom-product-table tr:hover {
    background-color: #f1f1f1;
}

.custom-product-table td {
    text-align: left;
}

.posted_in {
    display:none;
}



.product-dynamic-tables {
    display: inline-flex;
    width:100%;
    flex-wrap: wrap;
    gap: 20px; /* Space between tables */
}

.dynamic-table-container {
    flex: 1 1 100%; /* Adjust the width of each table container */
    margin-bottom: 30px; /* Space between rows of tables */
    border: 1px solid #ccc; /* Optional: Add border around each table */
    padding: 10px; /* Optional: Add padding inside each table container */
    background-color: #f9f9f9; /* Optional: Set a background color */
    overflow:auto;
}

.table-name-container h3 {
    margin-bottom: 15px; /* Space between table name and the table */
    font-weight: bold;
    font-size: 20px;
}

.related  h2 {
	font-size:20px !important;
}

.product_title {
    font-size:30px !important;
}

.woocommerce ul.products li.product img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.woocommerce-page .product-image img {
    /*height: 300px !important;*/
    /*width: 300px !important;*/
    /*object-fit: cover;*/
}

.woocommerce ul.products li.product a img {
    width: auto;
    /*height: 300px;*/
    display: block;
    margin: 0 0 1em;
    box-shadow: none;
}

.woocommerce ul.products li.product .button:hover {

    font-size: 100%;
    margin: 0;
    line-height: 1;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    overflow: visible;
    padding: .618em 1em;
    font-weight: 700;
    border-radius: 3px;
    left: auto;
    color: #515151;
    background-color: #e9e6ed;
    border: 0;
    display: inline-block;
    background-image: none;
    box-shadow: none;
    text-shadow: none;
    margin-top: 1em;
}
    
.woocommerce div.product div.images .woocommerce-product-gallery__trigger {
    z-index:9;
}


/* Make the tabs container responsive */
.e-n-tabs-container {
    max-width: 100%; /* Ensure it doesn't exceed the page width */
    margin: 0 auto; /* Center align within the page */
    box-sizing: border-box;
    padding:0!important;
}

/* Responsive grid for tab headings */
/*.e-n-tabs-heading .product-category-tabs ul {*/
/*    display: flex;*/
/*    flex-wrap: wrap; */
/*    justify-content: center;*/
/*    list-style: none;*/
/*    padding: 0;*/
/*    margin: 0;*/
/*}*/

/*.e-n-tabs-heading .product-category-tabs ul li {*/
/*    flex: 1 1 auto;*/
/*    max-width: 165px;*/
/*    margin: 5px;*/
/*    text-align: center;*/
/*    cursor: pointer;*/
/*}*/

.e-n-tabs-heading .product-category-tabs ul li img {
    /*max-width: 50%;*/
    /*height: 100px;*/
    display: block;
    margin: 0 auto;
}

/*.accordion-item-title:active {*/
/*    border-bottom:2px red solid;*/
/*}*/

.e-n-tabs-heading .product-category-tabs ul li span {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    font-weight: bold;
    color: #333;
    
}

.e-n-tabs-heading .product-category-tabs ul.my-tab li {
    flex: 1 1 auto;
    max-width: 165px;
    margin: 5px;
    text-align: center;
    cursor: pointer;
}


/* Tab content styling */
.e-n-tabs-content {
    margin-top: 0px;
    padding: 0px;
    /*background: #f9f9f9;*/
 
}

.e-n-tabs-content .tab-content {
    display: none; /* Hide all tabs by default */
}

.e-n-tabs-content .tab-content.active {
    display: block; /* Show active tab */
}



/* Responsive Design: Tablet Devices */
@media screen and (max-width: 1075px) {
	.my-tab.sticky {
    top: 76px;
}
}


@media screen and (min-width: 768px) and (max-width: 1024px) {

    .e-n-tabs-content {
        padding: 10px;
    }
    
    .e-n-tabs-heading.sticky {
       top: 133px;
}
	
	.e-n-tabs-heading .product-category-tabs ul.my-tab li {
    flex: 1 1 auto;
    max-width: 138px;
    margin: 5px;
    text-align: center;
    cursor: pointer;
}
	
	.product-category-tabs ul {
    gap: 4px;
}
	
.my-tab.sticky {
    top: 65px;
}
}



@media screen and (max-width: 767px) {
.e-n-tabs-heading .product-category-tabs ul.my-tab li {
    max-width: 106px !important;
    margin: 5px;
    padding: 0;
}
	
	.e-n-tabs-heading .product-category-tabs ul.my-tab-innner li {
    max-width: 106px !important;
    margin: 5px;
    padding: 0;
}
		.e-n-tabs-heading .product-category-tabs ul.my-tab-innner span.accordion-item-title {
    margin-top: 0;
    font-size: 12px;
    padding: 0;
}
	 .e-n-tabs-heading .product-category-tabs ul.my-tab-innner {
    gap: 4px;
}
	
	.e-n-tabs-heading .product-category-tabs ul.my-tab span.accordion-item-title {
    margin-top: 0;
    font-size: 12px;
    padding: 0;
}
    
 .e-n-tabs-heading .product-category-tabs ul.my-tab {
    gap: 4px;
}
.my-tab.sticky {
    top: 95px;
}

    .e-n-tabs-content {
        padding: 5px;
    }
}

.woocommerce div.product div.images img {
    width: 300px; 
    height: 300px;
    object-fit: contain; 
    display: block; 
    margin: 0 auto; 
}


section {
    clear: both;
}

section.related.products {
    padding-top: 80px;
}

.flex-control-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px; /* Space between images */
    padding: 10px;
    list-style: none;
}

.flex-control-nav li {
    flex: 0 1 80px; /* Adjust the width of each thumbnail */
    max-width: 100px; /* Maximum width for larger screens */
    margin: 5px;
}

.flex-control-nav li img {
    width: 100%;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: transform 0.3s;
}

.flex-control-nav li img:hover {
    transform: scale(1.1); /* Zoom effect on hover */
}

@media (max-width: 768px) {
    .flex-control-nav li {
        flex: 0 1 60px; /* Adjust thumbnail size for tablets */
    }
	.e-n-tabs-heading.sticky {
    top: 95px;
}
}

@media screen and (max-width: 539px) {
	.my-tab.sticky {
    top: 79px;
}
}

@media (max-width: 480px) {
    .flex-control-nav li {
        flex: 0 1 50px; /* Adjust thumbnail size for smaller screens */
    }
}

.flex-direction-nav {
    display:none;
}

.product-item h3 {
    line-height: 0 !important;
}

.wpr-td-content-wrapper ul {
    list-style-position: inside;
}

.copyright-text p {
    margin: 0;
}

section.related.products {
    max-width: 850px;
    margin: 0 auto;
    padding: 0px 12px;
}

section.related.products h2.woocommerce-loop-product__title {
    text-align: center;
    font-size: 18px !important;!i;!;!i;!;
    line-height: normal;
}

section.related.products a.button.product_type_simple {
    display: none;
}

a.woocommerce-product-gallery__trigger {
    display: none;
}

.dynamic-table-container {
    max-width: 950px;
    margin: 0 auto;
}


.woocommerce-product-gallery__image {
    width: 440px;
    margin-left: auto;
}

@media screen and (min-width: 768px) and (max-width: 1024px){
.e-n-tabs-heading.sticky {
    top: 100px;
}
}
@media(max-width:991px){
.woocommerce-product-gallery__image {
    width: auto;
}
	}

th.mt-text {
    text-align: center;
    font-size: 22px;
    color: #000;
    text-decoration: underline;
}
.table-container {
    width: 100%;
    overflow-x: auto;
    max-width: 950px;
    margin: 0 auto;
}

.table-container ul {
    padding: 0;
    padding-left: 12px;
}

.table-container.product-table {
    max-width: 850px;
}

.table-container.analysis {
    max-width: 520px;
}

/* .woocommerce div.product a {
    pointer-events: none;
    cursor: default;
} */
ul#menu-main-menu li#menu-item-2303 a {
    pointer-events: none !important;
    cursor: default !important;
}

ul#menu-main-menu li#menu-item-2303 ul.sub-menu li a {
    pointer-events: inherit !important;
    cursor: pointer !important;
}

ul#menu-main-menu li#menu-item-1928 a{
	pointer-events: none !important;
    cursor: default !important;
}
ul#menu-main-menu li#menu-item-1928 ul.sub-menu li a{
	pointer-events: inherit !important;
    cursor: pointer !important;
}

li.menu-item.menu-item-type-custom.menu-item-object-custom.menu-item-has-children.menu-item-4332 a {
    pointer-events: none;
    cursor: default;
}

li.menu-item.menu-item-type-custom.menu-item-object-custom.menu-item-has-children.menu-item-4332 ul.sub-menu.wpr-sub-menu li a {
    pointer-events: inherit !important;
    cursor: pointer !important;
}

.product-category-tabs li.active {
    color: #4472c4;
    border-bottom: none;
}

.e-n-tabs-heading .product-category-tabs ul li span {
  
    margin-top: 0;
    font-size: 13px;
    padding-bottom: 5px;
    line-height: normal;
}

/*.e-n-tabs-heading .product-category-tabs ul li {*/
/*    max-width: 130px;*/
/*}*/
.test-table td {
    border: none;
}

.test-table th {
    border: none;
}
div#tab-description h2 {
    font-size: 30px;
    line-height: normal;
    display: none;
}
ul.tabs.wc-tabs {
    margin: 30px 0px !important;
}


.my-tab-innner.fixed {
    position: fixed;
    z-index: 9;
    top: 80px;
    left: 0;
    right: 0;
    background: #fff;
}


@media(max-width:1024px){
	ul#menu-main-menu li#menu-item-2303 a {
    pointer-events: inherit !important;
    cursor: inherit !important;
}
	ul#menu-main-menu li#menu-item-1928 a {
    pointer-events: inherit !important;
    cursor: inherit !important;
}
	
	.my-tab-innner.fixed {
   
    top: 76px;
   
}
	.e-n-tabs-heading .product-category-tabs ul li span {
    margin-top: 0;
 
}
	li.menu-item.menu-item-type-custom.menu-item-object-custom.menu-item-has-children.menu-item-4332 a {
    pointer-events: inherit;
    cursor: pointer;
}
	
}

@media(max-width:991px){
.my-tab-innner.fixed {
    top: 60px;
}
	
}

@media (max-width: 768px) {
.my-tab-innner.fixed {
    top: 62px;
}
	.e-n-tabs-heading.sticky {
    top: 95px;
}
	th.mt-text {
   
    font-size: 16px;
   
}
.e-n-tabs-heading .product-category-tabs ul.my-tab li {
    max-width: 118px;
    padding: 5px 5px;
}

	
}



@media (max-width: 767px) {
.my-tab.sticky {
    top: 64px;
}
	}
	
	@media (max-width: 690px) {
.my-tab.sticky {
    top: 64px;
}
	
}

@media(max-width:576px){
.my-tab.sticky {
    top: 62px;
}
	
	.e-n-tabs-heading .product-category-tabs ul li img {
    max-width: 50%;
}
	
.my-tab-innner.fixed {
    top: 62px;
}
}




.e-n-tabs-heading .product-category-tabs ul.my-tab {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.e-n-tabs-heading .product-category-tabs ul.my-tab-innner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.e-n-tabs-heading .product-category-tabs ul.my-tab-innner li {
    flex: 1 1 auto;
    max-width: 165px;
    margin: 2px;
    text-align: center;
    cursor: pointer;
}

.product-category-tabs ul.my-tab-innner li {
    padding: 10px 20px;
    /* cursor: pointer; */
    transition: background-color 0.3s ease;
}


.product-tab ul.my-tab-innner li a {
    text-transform: uppercase;
    color: #000;
    font-weight: normal;
}

.woocommerce-tabs.wc-tabs-wrapper {
    max-width: 950px;
    margin: 0 auto;
}
li#tab-title-description {
    border-radius: 0px;
    border: 1px solid #cfc8d8;
}
div#tab-description p {
    font-size: 16px;
    line-height: 28px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
    padding: 0 0 0 6px;
  
}

.product-tab ul.my-tab-innner li.active {
    border-bottom: 2px solid #E41C1C;
}

.product-category-tabs ul.my-tab li {
    padding: 10px 20px;
    /* cursor: pointer; */
    transition: background-color 0.3s ease;
}

/* .woocommerce div.product a {
    pointer-events: auto;
    cursor: pointer;
} */

  .swiper.my-animeslide {
            width: 100%;
            height: 550px;
        }

        .my-animeslide .swiper-slide {
            position: relative;
        }

        .my-animeslide .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 0;
        }

        .my-animeslide .swiper-slide .container {
            position: relative;
            z-index: 2;
            max-width: 1140px;
            margin: 0 auto;
            height: 100%;
            display: flex;
            text-align: left;
            flex-direction: column;
        }

        .my-animeslide .slide-heading {
            font-size: 40px;
            color: #fff;
            margin-top: 30px;
            line-height: normal;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.8s ease;
            font-weight: bold;
        }

        .my-animeslide .swiper-slide-active .slide-heading {
            opacity: 1;
            transform: translateY(0);
        }

        .my-animeslide .swiper-button-prev, .swiper-button-next {
            color: #fff;
        }
        .swiper-button-next, .swiper-rtl .swiper-button-prev {
            color: #fff !important;
        }
        @media (max-width: 768px) {
            .my-animeslide .swiper.my-animeslide {
                height: 350px;
            }

            .my-animeslide .slide-heading {
                font-size: 24px;
                margin-top: 20px;
            }
        }

