/* =========================================================
   JP index BS5 v3 - desktop navbar black-background trim only
   Scope: desktop >= 992px only.

   Frozen from v2:
   - desktop parent menu entire row position / geometry
   - desktop logo position / geometry
   - desktop footer
   - all mobile fixed-top / logo / hamburger / parent-child menus / footer
   - B-region DOM / img src / text / href
   - all image files
   - all JavaScript

   Request:
   - visible desktop navbar black background: 90px -> 80px
   - remove 10px from TOP only
   - keep the black-background bottom edge at the v2 position

   Implementation:
   - DO NOT change the v2 90px navbar/layout box.
   - DO NOT change logo/menu padding/top/height.
   - Only repaint the scrolled black background from y=10px to y=90px.
   ========================================================= */
@media (min-width: 992px) {
  body > nav.navbar.navbar-default.navbar-expand-lg.fixed-top.navbar-fixed-top.navbar-scroll.navbar-normal {
    background-color: transparent !important;
    background-image: linear-gradient(
      to bottom,
      transparent 0,
      transparent 10px,
      #333333 10px,
      #333333 90px
    ) !important;
    background-repeat: no-repeat !important;
    background-size: 100% 90px !important;
  }
}
