/*
Theme Name: the7dtchild
Author: Dream-Theme
Author URI: http://dream-theme.com/
Description: The7 is perfectly scalable, performance and SEO optimized, responsive, retina ready multipurpose WordPress theme. It will fit every site – big or small. From huge corporate portals to studio or personal sites – The7 will become a great foundation for your next project!
Version: 1.0.0
License: This WordPress theme is comprised of two parts: (1) The PHP code and integrated HTML are licensed under the GPL license as is WordPress itself.  You will find a copy of the license text in the same directory as this text file. Or you can read it here: http://wordpress.org/about/gpl/ (2) All other parts of the theme including, but not limited to the CSS code, images, and design are licensed according to the license purchased. Read about licensing details here: http://themeforest.net/licenses/regular_extended
Template: dt-the7
*/

/* Mobile menu shortcode — fuerza visibilidad porque el tema la oculta hasta que JS la inicializa */
.dh-mobile-nav {
    visibility: visible !important;
}

.dh-menu-mobile li{
    padding-bottom: 25px;
}
.dh-menu-mobile li a, .dh-menu-mobile li span {
    font-size: 21px;
    font-weight: 400;
    line-height: 1.3;
}

.dh-menu-mobile .the7-e-sub-nav span.menu-text{
    font-size: 17px;
    font-weight: 400;
    line-height: 1.3;
}

.dh-menu-mobile .menu-item-has-children li{
    padding-bottom: 16px;
}

.dh-menu-mobile .menu-item-has-children ul{
    padding-top: 24px;
}

.dh-menu-mobile .the7-e-sub-nav .item-content{
    padding-left: 16px;
}

/* Submenú: oculto por defecto, animación suave al abrir/cerrar */
.dh-mobile-nav .the7-e-sub-nav {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease;
}

.dh-mobile-nav li.open-sub > .the7-e-sub-nav {
    max-height: 600px;
    opacity: 1;
}

.dh-menu-mobile .open-sub .the7-e-sub-nav{
    display: block !important;
}