*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    font-family: source-han-sans-simplified-c, sans-serif;
}
:-moz-placeholder,
:-ms-input-placeholder,
::placeholder,
input::placeholder{
    color: #4D4D4D;
}
/*
html{
    --top-spacing: 95px;
  scroll-padding-top: var(--top-spacing);
}
*/

html{
    --top-spacing: 0px;
  scroll-padding-top: var(--top-spacing);
}

@media (max-width:390px){
    html{
        --top-spacing: 0px;
      scroll-padding-top: var(--top-spacing);
    }
}


body{
    background-color: #ffffff;
    font-family: source-han-sans-simplified-c, sans-serif;
    color:#707070;
    font-size: 16px;
    line-height: 1.5;
    margin: var(--top-spacing) auto 0;
    font-weight: normal;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

.admin-bar {
	--global--admin-bar--height: 46px;
}


h1, h2, h3, h4{
    font-weight: 500;
    margin-bottom: 20px;
    color: #000000;
}
h1, h2{
    font-size: 28px;
}
h3{
    font-size: 20px;
}
h4{
    font-size: 18px;
}
h5{
    font-size: 16px;
}
p{
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 300;
}
li{
    list-style: none;
}
a{
    color:#707070;
    text-decoration: none;
}
a:hover, a:focus, a:active{
    color: #C42E32;
}
img, figure{
    max-width: 100%;
    height: auto;
}
.active{
    color: #C42E32;
}

.container{
    max-width: 100%;
    margin:0 15px;
}
.mx-auto, figure.aligncenter, .wp-caption-text{
    margin-left:auto !important;
    margin-right:auto !important;
}
#header{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    background: #fff;
    -webkit-box-shadow: 0px 0px 7px -3px rgba(41,41,41,.25);
    -moz-box-shadow: 0px 0px 7px -3px rgba(41,41,41,.25);
    box-shadow: 0px 0px 7px -3px rgba(41,41,41,.25);
    padding:10px 0 10px;
    z-index: 100;
}
.admin-bar #header{
	top:32px;
}
#wpadminbar{
	position:fixed;
}
#innerheader{
    display: flex;
}

.center, .aligncenter{
    text-align: center;
}
img.aligncenter{
	display:block;
    margin-left:auto;
    margin-right:auto;
}
.left, .alignleft{
    text-align: left;
}
.right{
    text-align: right;
}

input, select{
    border:1px solid rgba(196,196,196,.42);
    height:35px;
    padding:5px;
    font-size: 16px;
    width: 300px;
    transition: 0.3s;
    background-color: #ffffff;
}

.cta a{
    display: inline-block;
    /*border:1px solid #707070;*/
    padding:10px 55px 10px 15px;
    position: relative;
    font-size: 18px;
    line-height: 1.3em;
    background-color: #C42E32;
    color:#ffffff;
}
.cta a::after{
    content:"";
    background: url(../imgs/icon-arrowr-white.png) 0 0;
    width: 26px;
    height: 26px;
    position: absolute;
    right: 15px;
}
.cta a:hover::after{
    background: url(../imgs/icon-arrowr.png) 0 0;
}

/** main nav **/

.nav-menu {
    position: fixed;
    left: -100%;
    top: 13rem;
    flex-direction: column;
    background-color: #fff;
    width: 100%;
    border-radius: 10px;
    text-align: left;
    padding: 75px 15px 15px;
    transition: 0.3s;
    box-shadow:
        0 10px 27px rgba(0, 0, 0, 0.05);
}
.nav-menu a,
.nav-menu a:focus,
.nav-menu a:visited,
.nav-menu a:focus span,
.nav-menu a:visited span{
    font-size: 16px;
    font-weight: normal;
    color:#707070;
}
.nav-menu a:lang(en){
    font-size:13px;
}
.nav-menu.active {
    left: 0;
    z-index: 100;
}

.nav-menu a:hover,
.nav-menu a:hover span,
.nav-menu .current-menu-item > a,
.nav-menu .current-menu-parent > a,
.nav-menu .current-menu-ancestor > a,
.nav-menu .current-menu-item > a:visited,
.nav-menu .current-menu-parent > a:visited,
.nav-menu .current-menu-ancestor > a:visited{
    color:#C42E32;
}
.nav-menu li{
    margin: 1rem 0;
}
.nav-menu .sub-menu  li{
    margin: .5rem 0;
}

.dropdown a{
    position: relative;
}
.dropdown > a::after{
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}

.sub-menu{
    display: none;
}
.dropdown:hover > .sub-menu,
.submenu-active > .sub-menu,
.submenu-active > .sub-menu ul{
    display: block;
}


.sub-menu{
    border-left:1px solid rgba(196,196,196,.42);
    margin:10px 0 0 10px;
    padding-left:10px;
}
.dropdown .sub-menu .sub-menu a{
	display:inline-block;
}
.dropdown a span{
    font-size: 14px;
    font-weight: 300;
    color: #909090;
}
.hamburger {
    display: block;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 30px;
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #101010;
}




.searchform{
    display: none;
}

.searchform.active {
    display:block;
    position: fixed;
    /*top: calc(18rem - 15vh); if with top header*/
    top: calc(12.5rem - 10vh); 
    left: 0;
    padding: 0 15px;
    width: 300px;
    transition: 0.3s;
    z-index: 100;
}
.searchform input{
    border:1px solid rgba(196,196,196,.42);
    height:35px;
    padding:5px;
    font-size: 16px;
    width: 300px;
    transition: 0.3s;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}
.search-icon{
    position: absolute;
    right:-5px;
    top:6px;
}
.lang{
    position: absolute;
    right: 60px;
    font-size: 14px;
    top: 35px;
}
.lang .eng{
    color:#5782B4;
}
.lang .cn{
    color:#C42E32;
}

.btn a{
    display: inline-block;
    padding:10px 55px 10px 15px;
    position: relative;
    font-size: 18px;
    line-height: 1.3em;
    background-color: #C42E32;
    color:#ffffff;
}
.btn .elementor-widget-container a{
	color:#ffffff;
}
.btn a.elementor-button{
    padding:10px 55px 15px 15px;
}
.btn a::after{
    content:"";
    background: url(../imgs/icon-arrowr-white.png) 0 0;
    width: 26px;
    height: 26px;
    position: absolute;
    right: 15px;
}
.btn a.elementor-button::after {
    top:12px;
}
.btn a:hover::after{
    background: url(../imgs/icon-arrowr.png) 0 0;
}


/** elementor override **/

.elementor-widget:not(:last-child) {
    margin-bottom: 0 !important;
}


/*** home banner **/
#bannerhome{
    background:rgba(251, 251, 251, 0.90);
    padding:40px 0;
}
#about, #featuredhome, #testingservices, #blogposts{
    padding:30px 0;
    border-bottom: 1px solid rgba(215, 215, 215, .50);
}
#blogs{
	padding:30px 0;
}
#bannerhome h2{
    margin-bottom: 15px;
}
#bannerhome p{
    font-size: 16px;
    font-weight: 300;
}
#bannerhome .cta{
    margin:40px 0 0;
}
#bannerhome .cta.elementor-widget-button{
    margin:0;
}
#bannerhome .cta a{
    display: inline-block;
    /*border:1px solid #707070;*/
    padding:10px 55px 10px 15px;
    position: relative;
    font-size: 18px;
    line-height: 1.3em;
    background-color: #C42E32;
    color:#ffffff;
}
#bannerhome .cta a.elementor-button{
    padding:10px 55px 15px 15px;
}
#bannerhome .cta a::after{
    content:"";
    background: url(../imgs/icon-arrowr-white.png) 0 0;
    width: 26px;
    height: 26px;
    position: absolute;
    right: 15px;
}
#bannerhome .cta a.elementor-button::after {
    top:12px;
}
#bannerhome .cta a:hover::after{
    background: url(../imgs/icon-arrowr.png) 0 0;
}
#bannerhome .bannerL,
#bannerhome .bannerR{
    padding-bottom: 30px;
}
#bannerhome .bannerL{
    border-bottom: 1px solid rgba(215, 214, 214, .50);
}
#bannerhome .bannerR{
    padding: 30px 0 20px;
}
.ctabtn a{
    padding: 6% 0 20% !important;
}
.ctabtn .elementor-button-text{
    text-align: left;
    padding-left: 6%;
}
.ctabtn:first-of-type{
    margin-bottom: 15px !important;
}

.about-content{
    text-align: center;
    font-weight: 300;
}
.about-content h1{
    font-size: 28px;
    font-weight: 300;
}
.about-content h1.elementor-heading-title{
    line-height: 1.5;
    margin-bottom: 20px;
}
.about-content span{
    display: block;
}

.featureproducts .prod h3, #featuredhome h3.elementor-heading-title{
    margin-bottom: 15px;
    margin-top: 15px;
}
.featureproducts .prod p{
    font-size: 14px;
}
.prod{
    padding-bottom: 20px;
}
.allproductsbtn{
    text-align: center;
    padding:20px 0;
}

/** inner **/
#single-content{
    padding:40px 0;
}

.single-left{
    margin-bottom: 30px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
}
.single-left h1{
    margin-bottom:0;
}
.single-left h2{
    font-size:28px;
}
.single-left .post-date{
    margin-bottom:20px;
}
.single-right{
    padding: 20px;
    background: #fbfbfb;
	border-radius:10px;
}
.single-right h2{
    border-bottom:1px solid #eee;
	font-size:30px;
}
.blog-post-meta {
    display: flex;
    justify-content: left;
    padding: 15px 0;
    border-bottom:1px solid #eee;
}
.blog-post-meta:first-child{
    padding-top:0;
}
.blog-post-meta:last-of-type{
    border-bottom:0;
}
.blog-post-meta img{
    height:100%;
}
.blog-post-meta-detail {
    padding: 0px 10px 5px;
}
.blog-post-meta-detail h5{
    margin-bottom: 0;
    line-height: 1.3em;
}
.blog-post-meta-detail h5 a{
    color:#000;
}
.post-date, .wp-caption-text {
    font-size: 12px;
    color: #717171;
}

#post-area .list-item{
    display:flex;
}
#post-area{
    padding-bottom:40px;
}
#bannerproduct{
    background-color: #F4F4F4;
}
#page-header-search{
    padding:40px 0 30px;
}
.search-results #post-area li a{
    color:#C42E32;
}
.prod-intro{
    width: 100%;
    padding:65px 40px;
    text-align: center;
}

.prod-intro h1, .prod-intro .subheading, .prod-intro .subheading h2, .subdesc, .subdesc p{
    font-weight: normal;
    color: #ffffff;
}
.prod-filter{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding:30px 0 15px;
}
.prod-filter div{
    width: 48%;
    padding-bottom:15px;
}
.prod-filter option,
.prod-filter select,
.prod-filter input{
    width: 100%;
}
.filtersearch form{
    position: relative;
}
.filtersearch .search-icon{
    right: 5px;
}
.prodlist-item{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: center;
    border:1px solid rgba(196,196,196,.42);
    padding:20px;
    margin-bottom: 20px;
}
.prodimg{
    width: 100%;
    height: 100%;
    border:1px solid #707070;
}

.tpsmodulesright li{
	border-bottom: 1px solid #e2e2e2;
    padding: 15px 0;
}
.tpsmodulesright li a{
	color: #707070;
}
.tpsmodulesright li.current_page_item > a{
	color:#C42E32;
}
.tpsmodulesright .sub-menu {
    border-top: 1px solid rgba(0,0,0,.1);
    margin: 15px 0px -16px;
	position: inherit;
	display: block;
	background: none;
	box-shadow: none;
	padding-top: 0;
	padding-left: 10px;
	border-left:0;
}
.tpsmodulesright .sub-menu li:before {
    content: "→ ";
}
.wp-caption .wp-caption-text{
	font-size:14px;
}


/** products **/
#bannerproduct{
    background: #ffffff;
    padding:10px 0;
}

.productinfoleft{
    padding:30px 20px 60px 0;
    color:#707070;
    font-size: 20px;
    font-weight: normal;
}
.productinfoleft h1{
    font-size: 50px;
    font-weight: 400;
}
.productinfoleft h1.elementor-heading-title{
    margin-bottom: 30px;
    line-height: 1.2;
}
.productinfoleft h1 span{
    font-size: 30px;
    color:#707070;
    display: block;
}
.productinfoleft p{
    color:#707070;
    font-size: 20px;
    font-weight: 300;
}

.productinfoleft .prodcta,
.productinfoleft .elementor-element.prodcta{
    width:auto;
    margin-right:10px;
    margin-top: 30px;
}
.productinfoleft .elementor-element.prodcta .elementor-button{
    font-size:22px;
    font-weight: 400;
}
.elementor-element.download .elementor-button{
    background: none;
    font-size: 22px;
    padding: 10px 15px;
    font-weight: 400;
}
#webinars .eael-entry-thumbnail img, #aplicacion .eael-entry-thumbnail img, #blogs .eael-entry-thumbnail img {
    border: 1px solid #eee;
  }

.eael-data-table tbody tr td,
.eael-data-table thead tr th{
    font-family: source-han-sans-simplified-c, sans-serif
}

.about-product{
    border-bottom: 1px solid rgba(215, 215, 215, .50);
    border-top: 1px solid rgba(215, 215, 215, .50);
}
#productlists{
    margin-top:30px;
}
.proddetails{
    padding:60px 0;
}
.greybg{
    background-color: #F4F4F4;
}
.proddetails h2.elementor-heading-title{
    display: inline-block;
    padding-bottom: 10px;
    border-bottom: 3px solid #CCC;
    margin-bottom: 20px;
}

.proddetails .elementor-widget .elementor-icon-list-item, .elementor-widget .elementor-icon-list-item{
    align-items: start;
}
.proddetails .elementor-widget .elementor-icon-list-item, .elementor-widget .elementor-icon-list-item .elementor-icon-list-icon{
    margin-top:7px;
}

.legendsmall {
    font-size:13px;
    padding: 10px 0;

}
.prodinfo{
    padding:20px 0;
}
#pricing{
    background-color: rgba(251,251,251,0.9);
}

.policy ul{
	margin-bottom:20px;
}
.policy ul li{
	padding-bottom:10px;
	font-family: source-han-sans-simplified-c, sans-serif;
	font-weight:300;
}
.policy ul ul{
	padding-left:25px;
}
/** form **/
.formwrapper{
    padding: 40px 15px 0px;
    background: #fff;
    -webkit-border-radius:  10px 10px 0 0;
    border-radius: 10px 10px 0 0;
}
.wpcf7 form > div{
    margin-bottom:0;
}
.form-row{
    display:flex;
    justify-content:space-between;
    padding:5px 0;
}
.col-half{
    width:49.2%;
}
.col-full{
    width:100%;
}

.textfield, .textfieldarea{
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #EEEEEE;
    padding:10px;
    color:#4d4d4d;
    font-size:16px;
}
.sendform{
    padding:0;
    text-align:center;
    margin-top:20px;
}
input.inputbtn[type="submit"]{
    padding:10px 35px 10px 35px;
    font-size: 18px;
    background-color: #C42E32;
    color:#ffffff;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    width:100%;
	cursor:pointer;
}
.formwrapper .wpcf7-not-valid-tip,
.formwrapper .wpcf7-response-output{
    font-size: 0.8em;
}
.formwrapper .wpcf7 form .wpcf7-response-output{
    margin-top:0;
}

/* blog */
#postgrid{
    display:flex;
    flex-wrap:wrap;
    margin-left: -10px;
    margin-right: -10px;
}
.bloggrid{
    width:100%;
    margin:10px;
    border:1px solid #EEEEEE;
}

.bloggrid .post-details{
    padding:15px;
}
.bloggrid .post-details h3{
    font-size: 1.2em;
}
.bloggrid .post-details h3 a{
    color:#000;
}
.bloggrid .post-details p{
    font-size:14px;
}
.bloggrid .post-details .more{
    color:#C42E32;
    font-size: 12px;;
}
.bloggrid .post-details .more:hover{
    color: #5782B4;
}
/** pagination **/

.pagi{
    display: flex;
    justify-content: center;
    margin-top:50px;
}

.pagination{
    margin-bottom: 0;
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: .25rem;
}
.page-link, .prev.page-item a, .next.page-item a{
    font-family: source-han-sans-simplified-c, sans-serif;
    font-weight: normal;
    color:#5D5D5D;
    font-size:16px;
    padding:.5rem .5rem;
    margin: 0 3px;
}

.page-item.active .page-link {
    z-index: 3;
    color: #C42E32;
}

/** end of pagination **/


.distributor-grid .elementor-widget-wrap{
    display:flex !important;
    flex-wrap:wrap;
    justify-content:space-between;
}

.distributor-grid .elementor-section {
    text-align: center;
    box-shadow:0px 1px 5px -2px rgba(0,0,0,0.5);
    border-radius: 5px 5px 5px 5px;
    margin-bottom: 25px;
}

.distributor-grid h2{
    font-size:28px;
    padding:15px 0;
    background:#f2f2f2;
}
.distributor-grid h4{
    margin-bottom:0;
    line-height:1.2;
}

.distributor-grid .elementor-widget-wrap > .elementor-section .elementor-widget-text-editor{
    padding-left:15px;
    padding-right:15px;
}

.thermred {
  color: #C42E32;
}

/** footer section **/
#footer{
    padding:35px 0 0;
    background-color: #F4F4F4;
    font-size: 14px;
}

.footer-row:last-of-type{
    border-bottom: 1px solid rgba(215, 214, 214, .50);
    background-color: #000000;
    color: #ffffff;
    font-weight: 300;
    padding-block: 20px;
}
.footer-nav-bottom, .copywrite{
    margin:auto;
    text-align: center;
}
.footer-row:last-of-type a{
    color:#ffffff;
}
.footer-col{
    display:flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.footer-col h2{
    font-size:20px;
}
.footer-nav, .footer-contact{
    padding-bottom: 35px;
}
.footer-nav{
    flex-basis: 50%;
}
.footer-contact{
    flex-basis: 100%;
}
.footer-contact li{
    padding-left: 25px;
    padding-bottom: 5px;
}
#block-9 li{
    padding-left:0;
}
.footer-contact .address{
    background: url(../imgs/icon-map.png) no-repeat 0 5px;
}
.footer-contact .phone{
    background: url(../imgs/icon-phone.png) no-repeat 0 5px;
}
.footer-contact .email{
    background: url(../imgs/icon-email.png) no-repeat 0 5px;
}
.footer-contact .web{
   background: url(../imgs/icon-web.png) no-repeat 0 3px;
}
.footer-nav-bottom{
    padding-bottom: 10px;
}
.footer-nav-bottom li{
    display: inline-block;
    padding-inline:10px;
}
.footer-col-4 li{
    margin: 0;
    padding-right: 5px;
}

.social-icons li{
    display:inline-block;
}

#footer > ul{line-height: 2em;}
#footer .footer-top-row li{
	line-height:1.8em;
}
#footer .footer-top-row li a{
	font-size:16px;
	display:block;
	line-height:2.5em;
}
#footer .wp-block-social-links.is-style-logos-only .wp-social-link{
    padding:0;
    margin-left:0;
}
#footer .wp-block-social-links .wp-social-link a{
    padding:0;
}

.copywrite{
    margin-bottom:0;
    font-size: 14px;
}
/** desktop view **/
@media screen and (max-width:1198px) and (min-width:800px) {
    .distributor-grid .elementor-widget-wrap{
        justify-content:space-evenly;
    }
}
@media (min-width:800px){
    .distributor-grid .elementor-widget-wrap >.elementor-section {
        width: 45%;
    }
}


@media (min-width:767px){
    .bloggrid{
        width:47.33%;
    }
	#footer .footer-top-row li a{
		font-size:14px;
	}
	#footer .footer-top-row li a{
		line-height:1.5em;
	}
}
@media (min-width:1199px){
    .admin-bar {
        --global--admin-bar--height: 40px;
    }
    .container{
        max-width: 1200px;
        margin:0 auto;
    }

    #innerheader{
        justify-content: space-between;
		z-index:1;
    }
    .innerheaderright{
        display: flex;
        justify-content: space-between;
    }
    .hamburger{
        display:none;
    }
    .navbar{
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.9rem 1.5rem 1rem;
    }
    .nav-menu{
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: row;
        position: inherit;
        padding:0;
        box-shadow: none;
    }
    .nav-menu li{
        margin:0;
    }
    .nav-menu li a{
        padding:5px 15px;
    }
    .nav-menu li.ctamenu a{
        background-color: #C42E32;
        color: #ffffff;
        -webkit-border-radius: 3px;
        border-radius: 3px;
    }
    .nav-menu li.ctamenu a:hover,
    .nav-menu li.ctamenu.current-menu-item a{
        background-color: #5782B4;
        color:#fff;
    }

 .dropdown .sub-menu .dropdown > a::after{
    	border-top: 0.3em solid transparent;
		border-right: 0;
		border-bottom: 0.3em solid transparent;
		border-left: .3em solid;
    }

    .sub-menu{
        position: absolute;
        margin:0;
        padding:10px 0 15px 0;
        border:0;
        border-radius: 0 0 5px 5px;
        background: #ffffff;
        -webkit-box-shadow: 0px 9px 11px -7px rgba(41,41,41,.25);
        -moz-box-shadow: 0px 9px 11px -7px rgba(41,41,41,.25);
        box-shadow: 0px 9px 11px -7px rgba(41,41,41,.25);
    }

    .sub-menu {
        position: absolute;
        top:70px;
    }
    .sub-menu .sub-menu{
        position: absolute;
    	top:0px;
        left:100%;
        min-width:245px;
    }
    .searchform{
        display: block;
    }
    .searchform form{
        position: relative;
    }
    .searchform .search-icon{
        right:5px;
    }
    .searchform input{
    	width:190px;
    }
    .lang{
        position: unset;
        text-align: right;
        padding-bottom: 5px;
    }
    #bannerhome .container{
        display: flex;
        justify-content: space-between;
    }
    #bannerhome .bannerL{
        border:0;
        width: 60%;
        padding:50px 0;
    }
    #bannerhome .bannerR{
        width: 38%;
        padding-top:10px;
    }
    #about, #featuredhome, #testingservices, #productbanner, #productlistings{
        padding-block:50px;
    }
    .about-content{
        padding-inline: 100px;
    }
    #featuredhome h2, #featuredhome h2.elementor-heading-title{
        margin-bottom: 40px;
    }
    .featureproducts{
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .featureproducts .prod{
        max-width:390px;
    }
    .featureproducts .prod p{
        font-size: 16px;
    }


    /* inner desktop */
    #bannerproduct{
        background:none;
    }

    .prod-filter .filter{
        width: 20%;
    }
    .prod-filter .filtersearch{
        width: 30%;
    }
    .prodlist-item{
        align-items: center;
        gap: 30px;
    }
    .prodimg{
        width: 248px;
        text-align:center;
    }

    /*.prodimg{
         max-height: 144px;
    }*/
    .prodinfo{
        width: 660px;
        padding:0;
    }
    .prodbtn{
        width: 190px;
        text-align: center;
    }

    .productinfoleft{
        padding-top:60px;
    }
    .productinfoleft h1 span{
        display:inline-block;
    }
    .formwrapper{
        padding: 40px 40px 25px;
        -webkit-border-radius:  20px 20px 0 0;
        border-radius: 20px 20px 0 0;
    }
    .pricingbg{
        padding:85px 0 0;
    }
    input.inputbtn[type="submit"]{
        margin-left:40px;
        width:auto;
    }
	.tpsmodulesright .sub-menu {
   	 	margin: 15px 0px -31px;
	}

    /* blog */
    .bloggrid{
        width:23.33%;
    }

     .distributor-grid .elementor-widget-wrap >.elementor-section {
            width: 32%;
     }

    /* footer desktop */
    .footer-nav, .footer-contact{
        flex-basis: 25%;
    }


    .footer-contact .address{
        max-width: 390px;
    }

}


/*** calculator **/
.calculator_divs {
    border:1px solid #d1d1d1;
    padding:5px;
   }
   .calculator_divs table {
    font-size:12px;
    font-family:source-han-sans-traditional, sans-serif;
    font-weight:400
   }
   .calculator_divs input {
    width:100px;
    padding:10px;
    text-align:center
   }

   @media only screen and (min-width:800px){
   .calculator_divs {
       padding:20px;
    }
    .calculator_divs table {
        font-size:15px;
    }
   }
   @media only screen and (max-width:500px){
   .gray-butt{
       padding-left:10px !important;
       padding-right:10px !important;
   }
   .calculator_divs input{
       width:80px;
   }
   }

   .calculator_divs tr,
   .calculator_divs td {
    padding:2px;
    vertical-align:middle
   }
   .calculator_divs table td {
    padding:.5em
   }
   #redBar {
    width:189px;
    height:0;
    margin-left:-194px
   }
   #greyBar {
    width:193px;
    height:auto
   }
   .gray-butt {
     padding: 8px 22px;
     background: #C42E32;
     border-collapse: collapse;
     border: 0;
     color: #fff;
     min-width: 100px;
   }

   .css-arrow__leg--last::before, .css-arrow__leg--last::after {
     content: '';
     position: absolute;
     right: 0;
     background: #a00;
     width: .7em;
     height: .2em;
     border-radius: 1em;
   }

   #hidden-section .css-arrow__leg {
       width: 60px;
       height: .2em;
       background: #a00;
       transform: rotate(90deg) translateX(-110px);
       animation-name: stylie-keyframes;
       animation-duration: 2500ms;
       animation-delay: 0ms;
       animation-fill-mode: forwards;
       animation-timing-function: ease-in-out;
       -webkit-animation-timing-function: ease-in-out;
       animation-iteration-count: infinite;
       transform-origin: 0 0;
   }

   .css-arrow__leg, .css-arrow__stop {
   box-sizing: border-box;
   position: relative;
   display: block;
   border-radius: 1em;
   opacity: .4;
   margin: auto;
   }

   .calculator_divs tr#Results:not(.unhidden) {
     height: 0 !important;
     display: none;
   }
   @media only screen and (max-width:769px){
    .calculator_divs,
    .et-db #et-boc .et-l .calculator_divs{
      padding:5px;
    }
    #calculator-container.calculator_divs .gray-butt,
      .calculator_divs .gray-butt{
        width:35px;
        font-size:0 !important;
        height:41px;
      }
      .calculator_divs .gray-butt::after{
        margin-left: 0.2em !important;
        opacity: 1 !important;
        left: 2px;
        padding: 0 .3em;
      }
      #calculator-container.calculator_divs td input,
      .calculator_divs td input{
        width:65% !important;
      }
      #calculator-container.conductioncalc td input{
        width:100% !important;
      }
      .calculator_divs #toolsdivcontent td input{
        width:100% !important;
      }
  }
  @media only screen and (max-width: 559px) {
      .calculator_divs{
        padding:5px;
      }
      .calculator_divs table, .calculator_divs thead, .calculator_divs tbody, .calculator_divs th, .calculator_divs td, .calculator_divs tr {
        display: block;
      }

      .calculator_divs thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
      }

      .calculator_divs tr{
        display: flex;
        flex: 0 0 100% !important;
        max-width: 100% !important;
        height: auto !important;
      }
      .calculator_divs tr.hidden-section:not(.show){
        display: none;
      }
      .calculator_divs tr.hidden-section.show{
        display: flex;
      }
      .calculator_divs td {
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
       /* padding-left: 200px;
        margin-left: 150px;*/
        width:auto !important;
      }
      .calculator_divs tr:not(:first-of-type) td, .calculator_divs #toolsdivcontent td{
        width:50% !important;
      }
      .calculator_divs tr:last-of-type td, .calculator_divs #toolsdivcontent tr:last-of-type td{
        width: 100% !important;
        border-bottom: 0;
      }
      .calculator_divs tr:first-of-type td:last-of-type{
        width:15% !important;
      }
      #calculator-container.calculator_divs td input,
      .calculator_divs td input{
        width:100%;
      }
      .calculator_divs .form-control{
        width:100% !important;
      }
      .calculator_divs td:before {
        position: absolute;
        top: 12px;
        left: 6px;
        width: 200px;
        padding-right: 40px;
        white-space: nowrap;
        margin-left: -150px;
      }

      .calculator_divs td:nth-of-type(3){
        display: none;
      }
      #calculator-container.calculator_divs .gray-butt,
      .calculator_divs .gray-butt{
        width:35px;
        font-size:10px !important;
        height:41px;
      }
      .calculator_divs .gray-butt::after{
        margin-left: 0.2em !important;
        opacity: 1 !important;
        left: 2px;
        padding: 0 .3em;
      }
      .calculator_divs tr#Results{
        flex-direction: column;
        margin: auto !important;
      }
      #calculator-container #secBtn{
       margin-top:10px;
      }


  }
   /* Calculator styling */
   .hidden {
      height: 0px;
      padding: 0px;
      margin: 0px;
      display: none !important;
   }
   #calculatorWrap div,
   .single #calculatorWrap div{
     -webkit-transition: 1s ease-in-out;
     -moz-transition: 1s ease-in-out;
     -o-transition: 1s ease-in-out;
     transition: 1s ease-in-out;
   }

   #calculatorWrap h1, .single #calculatorWrap h1
   #calculatorWrap h2,.single #calculatorWrap h2
   #calculatorWrap h3,.single #calculatorWrap h3
   #calculatorWrap h4,.single #calculatorWrap h4, .single materialsResultsWrap h4,
   #calculatorWrap h5,.single #calculatorWrap h5
   #calculatorWrap h6, .single #calculatorWrap h6{
     padding-bottom: 0px;
     text-align: center;
   }

   #calculatorWrap #Results p,
   .single  #calculatorWrap #Results p,
   #calculatorWrap #Results input,
   .single #calculatorWrap #Results input{
     margin: 0px 0 0;
     -webkit-box-shadow: inset 0px 0px 2px 0px rgba(0, 0, 0, 0.75);
     -moz-box-shadow: inset 0px 0px 2px 0px rgba(0, 0, 0, 0.75);
     box-shadow: inset 0px 0px 2px 0px rgba(0, 0, 0, 0.75);
     color: #444;
     background-color: rgb(242, 242, 242);
     font-weight: 600;
     letter-spacing: 1.2px;
     text-transform: uppercase;
     padding: 5px 10px;
     text-align: center;
     font-size: 22px;
     border-radius: 4px;
     display: inline;
   }

   #calculatorWrap .material,
   .single #calculatorWrap .material{
     background-color: #eee;
   }

   #calculatorWrap .material .lowerCase,
   .single #calculatorWrap .material .lowerCase{
     text-transform: initial;
   }


   #calculatorWrap .material div,
   .single #calculatorWrap .material div{
     padding: 20px;
     font-weight: 600;
   }

   #calculatorWrap .material div.color0,
   #calculatorWrap .material div.color1,
   #calculatorWrap .material div.color2,
   #calculatorWrap .material div.color3 {
     color: rgba(255, 255, 255, 0.8);
   }
   #calculatorWrap .material input{
       background:0;
   }
   #calculatorWrap .material div.color0 input[type="text"],
   #calculatorWrap .material div.color1 input[type="text"],
   #calculatorWrap .material div.color2 input[type="text"],
   #calculatorWrap .material div.color3 input[type="text"],
   #calculatorWrap .material div.color0 input[type="number"],
   #calculatorWrap .material div.color1 input[type="number"],
   #calculatorWrap .material div.color2 input[type="number"],
   #calculatorWrap .material div.color3 input[type="number"] {
     color: rgba(255, 255, 255, 0.8) !important;
   }

   #calculatorWrap .material div span {
     display: block;
     text-align: center;
     color:rgba(0,0,0,.5);
     font-size:14px;
   }

   #calculatorWrap .et_pb_button:hover:after,
   #calculatorWrap .gray-butt:hover:after {
     opacity: 1;
     margin-left: 0.4em;
   }

   #calculatorWrap .gray-butt:hover {
     padding: 10px 2.5em 10px 12px;
   }

   #calculatorWrap .gray-butt {
     transition: all 0.2s;
   }

   #calculatorWrap input[type="number"],
   #calculatorWrap input[type="text"],
   #calculatorWrap select,
   #calculatorWrap button {
     width: 100%;
     text-align: center;
     text-align-last: center;
   }

   #calculatorWrap button{
     width: 100%;
     color: #ffffff !important;
     background: #bd242a;
     border-width: 0px !important;
     border-color: #bd242a;
     letter-spacing: 0px;
     font-size: 18px;
     padding:10px;
   }

   #calculatorWrap button.gray-butt{
     width: 100%;
     color: #ffffff !important;
     background: rgba(0, 0, 0, 0.21);
     border-width: 0px !important;
     border-color: rgba(0, 0, 0, 0.21);
     letter-spacing: 0px;
     font-size: 18px;
     margin-top: 10px;
   }

   #calculatorWrap .color0{
     background-color: #de8787;
   }

   #calculatorWrap .color1{
     background-color: #87aade;
   }

   #calculatorWrap .color2{
     background-color: #ddc28c;
   }

   #calculatorWrap .color3{
     background-color: #90de87;
   }

   #calculatorWrap .circle,
   .et-db #et-boc #calculatorWrap .circle{
     border-radius: 50%;
     width: 20px;
     height: 20px;
     margin: 0px auto 10px auto;
   }

   #calculatorWrap #resultsWrap{
     /*display: flex;
     flex-flow: row wrap;*/
     align-items: center;
     justify-content: center;
     font-size: 2.5em;
   }

   #calculatorWrap #resultsWrap .et_pb_column_1_2{
     display: flex;
     flex: 1 auto;
   }

   #calculatorWrap #Results .results{
     display: block;
     line-height: 2em;
     height: 2.5em;
     width: 100%;
     text-align: center;
     padding: 10px;
     background-color: #eee;
   }

   #detailedResults .results{
     display: block;
     line-height: 1.5em;
     font-size: 2em;
     width: 100%;
     text-align: center;
     padding: 10px;
     background-color: #eee;
   }

   #calculatorWrap h3{
     display: block;
     text-align: center;
   }

   #calculatorWrap .error {
     color: #bd242a;
     font-size: 24pt;
     font-weight: 900;
     text-align: center;
   }

   #calculatorWrap #detailsWrap .material {
     padding: 20px;
   }
   #calculatorWrap #detailsWrap .material h4{
     font-size: 14px;
   }
   #calculatorWrap #materialsResultsWrap .material div {
     padding: 0px;
   }

   #calculatorWrap #materialsResultsWrap .material {
     padding: 20px;
   }

   #calculatorWrap #materialsResultsWrap .material div span b {
     font-weight: 700;
     font-size: 14px;
   }

   #calculatorWrap .twocol button {
     width: 48.5%;
   }

   #calculatorWrap .twocol button:nth-child(1) {
     margin-right: 3% !important;
   }

   /** added 8-16-2023 **/

@media (max-width:900px){
	.elementor-widget-wrap > .elementor-element.elementor-widget-eael-contact-form-7{
	width:95%;
	}
	.ea-advanced-data-table-wrap .ea-advanced-data-table-wrap-inner{
		max-width:95%;
	}
    .nav-menu{
    	/*top:8rem;  if with top header */
        top:5.5rem;
    }
}
@media (min-width:1025px){
	#header{
    	top:-10px;
    }
}
.eael-contact-form-7 .wpcf7-form p:nth-last-of-type(1){
	display:inherit;
}
.eael-contact-form-7 .wpcf7-form .wpcf7-textarea{
	width:100%;
}

#headertop{
    background-image: linear-gradient(180deg,rgba(213,213,213,0.5) 0%,rgba(255,255,255,0.41) 38%,rgba(246,246,246,0.47) 65%,rgba(213,213,213,0.61) 100%) !important;
    text-align:center;
    cursor:pointer;
    color:#000;
    padding:10px 25px;
}

.admin-bar #headertop{
	margin-top:0;
}

@media (max-width:800px){
    #headertop{
    margin-top:-10px;
    }
}
#headertop p{
    padding:0;margin:0;
    font-family: source-han-sans-simplified-c, sans-serif;
    font-weight: 300;
    font-size: 16px;
    letter-spacing: 0.2px;
    line-height: 1.2;
    color: #000000;
}
#headertop p:hover{
   opacity:0.7;
}
#headertop img{
  position: relative;
  top: 3px;
  left: 10px;
}
#headertop .redx {
  color: #BF1D1D;
  font-family: source-han-sans-simplified-c, sans-serif;
  font-weight: 600;
}
#innerheader{
  padding-top:10px;
  position:relative;
}
.home #innerheader{
	padding-bottom:10px;
}