/**
 * @author Magebit <info@magebit.com>
 * @copyright Copyright (c) Magebit, Ltd. (https://magebit.com)
 * @license https://magebit.com/code-license
 *
 * Loaded after mega-menu-fix.css.
 * mega-menu-fix.css adds `ul.gm-links { padding-top: 12px }` on desktop, which (on top of
 * the links' own 15px padding) leaves a visible gap above the first row of mega-menu items
 * and makes the content columns float below the left tab column. Remove that added gap so
 * all columns align to the top of the dropdown.
 */
@media screen and (min-width: 769px) {
  body.gm-menu-installed .gm-menu:not(.gm-menu-mobile) ul.gm-links {
    padding-top: 0 !important;
  }
}
