
/* Align images to the center | 23134958-hc (LS) */
.vbox-content.animated img {
    margin: 0 auto;
}	
	

/* Hide posted on date and author | HC-23833760-ra */
span.posted-on, span.post-author, span.post-comments {    display: none;
}

/* Hide envelope icon | 28172836-HC NJ */

.widget_product_categories ul li:before{
display:none;
}


/* Reduces whitespace above pages | 28296343-hc LS */
.page-template-template-homepage:not(.has-post-thumbnail) .site-main, .page-template-template-homepage .type-page {
    padding-top: 0px;
}
/* Reduces whitespace above and below the Storefront breadcrumb | 28296343-hc LS */
@media (min-width: 768px) {
.storefront-breadcrumb {
    margin-bottom: 15px;
    padding-top: 5px;
}
}
/* Reduces whitespace below the Jetpack social media icons | 28296343-hc LS */
ul.jetpack-social-widget-list.size-small {
    margin-bottom: 5px;
}



/* WooCommerce Default Products: bottom-align buttons | 34052752-hc */
 @media screen and (min-width: 768px) {  
  ul.products {
    display: flex;
    flex-wrap: wrap;
  }
   
  ul.products li.product {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
   
  ul.products li.product .button {
    align-self: center;
  }
}

/* Center products on archive pages | 34052752-hc SM */
@media (min-width: 768px) {
	.archive .col-full {
		max-width: 60em;
	}	
	.archive .content-area {
		width: 100%;
		margin: 0 auto;
	}
}ul.products li.product {
	width: 46.411765%;
	float: left;
	margin-right: 5.8823529412%;
}

ul.products li.product:nth-of-type( 2n ) {
	margin-right: 0;
}

@media ( min-width: 768px ) {
	ul.products li.product:nth-of-type( 2n ) {
		margin-right: 5.8823529412%;
	}
}
/* Hide title from specific item page || 6655607# HC VG */
.term-26404 h1.woocommerce-products-header__title.page-title {
display: none;
}

/* Change Add to Cart text on shop page */
function custom_cart_button_Shop_Page( $text, $product ) {
    if( $product->is_type( 'variable' ) ){
        $text = __('Mytext', 'woocommerce');
    }
    return $text;
}
add_filter( 'woocommerce_product_add_to_cart_text', 'custom_cart_button_Shop_Page', 9, 2 );

});


