ul#primary-menu {
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
  font-size: 12px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  background-color: #FFF;
}

ul#primary-menu ul {
  padding: 0;
  margin: 0;
}

ul#primary-menu>li {
  display: block;
  list-style: none;
}

ul#primary-menu li a {
  display: block;
  padding: 13px 16px 11px;
  color: #2d3036;
  border-bottom: 2px solid transparent;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
}

ul#primary-menu li a:hover,
ul#primary-menu li.current-menu-item>a {
  background-color: #f0f0f0;
  border-bottom: 2px solid #2478f6;
}

/* Hide Dropdowns by Default */
ul#primary-menu ul {
  display: none;
  position: absolute;
  /* the height of the main nav */
  background-color: #2478f6;
  color: #FFF;
  list-style: none;
}

ul#primary-menu ul li a {
  color: #FFF;
  display: block;
  padding: 10px 12px;
  font-size: 12px;
  line-height: 12px;
  background-color: #2478f6;
}

ul#primary-menu ul li a:hover,
ul#primary-menu ul li.current-menu-item a {
  background-color: #0c69f5;
}

/* Display Dropdowns on Hover */
ul#primary-menu li:hover>ul {
  display: inherit;
}

/* Fisrt Tier Dropdown */
ul#primary-menu ul li {
  float: none;
  display: list-item;
  position: relative;
}

/* Second, Third and more Tiers	*/
ul#primary-menu ul ul li {
  position: relative;
  top: -60px;
  left: 170px;
}

/* Change this in order to change the Dropdown symbol */
li>a:after {
  content: ' +';
}

li>a:only-child:after {
  content: '';
}

#masthead {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}

@media screen and (min-width: 783px) {
  body.pgy-wp-body {
    padding-top: 41px;
  }

  body.pgy-wp-body.admin-bar #masthead {
    top: 32px;
  }
}

@media screen and (max-width: 782px) {
  body.pgy-wp-body {
    padding-top: 78px;
  }

  body.pgy-wp-body.admin-bar #masthead {
    top: 46px;
  }

  body.pgy-wp-body.admin-bar #masthead #primary-menu {
    top: 89px;
  }
}

@media only screen and (max-width: 991px) {
  body.pgy-wp-body .site-header .site-header-row {
    display: none;
  }

  ul#primary-menu {
    position: fixed;
    top: 42px;
    background: #FFF;
    left: 0;
    width: 100%;
    overflow: auto;
    border-bottom: 1px solid rgba(34, 34, 34, 0.25);
  }

  body.pgy-wp-body {
    padding-top: 78px;
  }

  body.pgy-wp-body.admin-bar #masthead {
    top: 46px;
  }

  body.pgy-wp-body.admin-bar #masthead #primary-menu {
    top: 88px;
  }

  #main-outlet {
    padding-top: 60px;
  }

  .sidebar,
  .navigation-topics .list-controls .container,
  .categories-list .list-controls .container,
  .tags-page .list-controls .container,
  body[class*=category-]:not(.archetype-regular):not(.archetype-banner) .list-controls .container {
    top: 103px;
  }
}