/*
 Theme Name:   Créatiic
 Theme URI:    https://creatiic.com/
 Description:  Theme enfant Creatiic
 Author:       Lionel RENAUD
 Author URI:   https://www.creatiic.com
 Template:     Divi
 Version:      1
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
*/

/* here is a fluent solution:
hide secondary bar on scroll */
#top-header {
overflow:hidden;
max-height:50px;
transition:max-height .3s ease;
}
#top-header.et-fixed-header {
max-height:0;
}
#main-header {
transition:top .3s ease;
}
#main-header.et-fixed-header {
top:0!important;
}
.admin-bar #main-header.et-fixed-header {
top:32px!important;
}

