/*
Theme Name: Betheme Child
Theme URI: https://themes.muffingroup.com/betheme
Author: Muffin group
Author URI: https://muffingroup.com
Description: Child Theme for Betheme
Template: betheme
Version: 1.6.2
*/

/*
 * 2025-03-24
 * POPUP - AJUSTAR ANCHO PARA QUE SE VISUALIZE EL BANNER COMPLETO, TANTO EN MOBILE COMO EN DESKTOP
 */ 

#popup-banner {
	max-width: 66% !important;
}

@media (min-width: 1024px) {
    #popup-banner {
        max-width: 27% !important;
    }
}

/*
 * 2025-03-24
 * aplicar padding top al content - necesario para coexistir con el fixed header
 * requiere de un script alojado en child/functions.php para determinar el valso de la variabel dinámicamente
 */ 
/* .no-content-padding  #Content {
    padding-top: var(--header-height) !important;
}*/



/*
 * 2025-03-24
 * centrar el contenido del header
 */ 

.top_bar_left { 
	display: flex;
    justify-content: center;
}

.top_bar_left .logo { 
	margin-right: auto !important;
}

@media (min-width: 1240px) {
    .top_bar_left .logo {
        margin-right: unset !important;
    }
}


