/* Pour centrer le logo */
.site-branding img.custom-logo {
margin: 0 auto;
}
.site-branding {
width: 100% !important;
}

/* Logo size for mobile site */
@media screen and (max-width: 768px) {
.site-header .site-branding img {
max-height: none !important;
max-width: none !important;
width: 172px !important;
}
}

/* Logo size for desktop site */
@media screen and (min-width: 768px) {
.site-header .site-branding img, .site-header .site-logo-anchor img, .site-header .site-logo-link img {
height: auto;
max-height: none;
max-width: none;
width: 400px !important;
}
}

/* Pour réduire la taille du handheld menu mobile */
.storefront-handheld-footer-bar ul li>a {
    height: 3em; //4.235801032em
}

.storefront-handheld-footer-bar ul li > a::before {
    line-height: 2; //2.618046972
    font-size: 1.4em; //1.618em
}
/* masque les petites icones devant le menu d'aide en footer */
.widget_nav_menu ul li::before { display: none; }

/* Hide the original Read More label. */
.outofstock .button.product_type_simple {

    visibility: hidden;

}

/* Remplacer "read more" par "épuisé". */
.outofstock .button.product_type_simple::before {

    content: "Epuisé"; /* New custom text. */
    visibility: visible !important; /* Make this new label visible. */
    background-color: rgba(255,255,255,0,5); /* Semi transparent white background. */
    padding: 5%; /* Create space around the new text label. */
    position: absolute; /* For center alignment. */
    left: 0; /* For center alignment. */
    right: 0; /* For center alignment. */

}
/*Supprimer les liens soulignés*/
a {
    text-decoration: none !important;
}

/*Supprimer nom catégories et "Acheter par catégorie"*/
.woocommerce-loop-category__title
{
    visibility: hidden;
}
.section-title
{
    visibility: hidden;
}

.recent_products per_page="12"
colums="4"

/*Augmenter l'espace entre image produit et titre produit*/

.woocommerce ul.products li.product .woocommerce-LoopProduct-link>:not(:first-child) {
    margin-top: 40px;
}

/*Masquer mentions légales woocommerce et storefront*/
.site-info {
	visibility:hidden;
}

/*Masquer barre woocommerce menu mobile*/
.storefront-handheld-footer-bar {

    visibility: hidden;

}

/*Afficher les produits en deux colonnes sur le mobile*/
@media only screen and (max-width: 736px) {
.avia_textblock pre, .responsive #top #main .products .product {
width: 45.6% !important;
margin: 0 4% 1% 0;
}}