/*
Theme Name: OceanWP-JPP-Child
Theme URI: https://oceanwp.org/
Description: OceanWP WordPress theme example child theme.
Author: Nick
Author URI: https://oceanwp.org/
Template: oceanwp
Version: 1.0
*/

/* Parent stylesheet should be loaded from functions.php not using @import */

/* Largeur des Menus-Items */
.dropdown-menu .sub-menu {min-width: 250px;}

/* Rendre la barre de menu fixe en haut écran */
@media only screen and (min-width: 960px) {
header#site-header {
   position: fixed;
   left: 0;
   right: 0;
   top: 0;
   width: 100%;
   z-index: 9999;
   -webkit-transition: all .5s;
   transition: all .5s;
   height: 50px;
}
.page-header {
   margin-top:50px;
}
header#site-header.sticky {
   height: 50px;
}
header#site-header.sticky #site-navigation-wrap .dropdown-menu>li>a {
   line-height: 50px;
}
.admin-bar header#site-header {
   top: 32px;
}
#site-logo #site-logo-inner {
   height:0 !important;
}
}