/*
Theme Name: Avada Child
Description: Child theme for Avada theme
Author: ThemeFusion
Author URI: https://theme-fusion.com
Template: Avada
Version: 1.0.0
Text Domain:  Avada
*/


/* Sets the styles for the book title  */
.mobile-title {
    text-align: center;
    font-size: 3em;
    visibility: hidden;
    font-family: "Roboto Slab", Arial, Helvetica, sans-serif !important;
}

/* Center aligns the book image */
.woocommerce-product-gallery .flex-viewport {
    text-align: center;
}



/*******   MEDIA QUERIES    *******/

/* Styles for widths 1000px or less */
@media screen and (max-width: 1000px)
{
    /* Make the title above the image visible */
    .mobile-title {
        visibility: visible;
    }
    
    /* Make the book title below the image invisible */
    .summary-container .product_title {
        display: none;
    }
    
}