﻿#ShopMenuNav {
  display: block;
  text-align: center;
  width: 100%;
  background-color: white;
  height: 47px; }
  #ShopMenuNav ul.nav {
    vertical-align: top;
    background-color: unset;
    display: flex;
    justify-content: space-between; }
    #ShopMenuNav ul.nav a {
      display: block;
      color: #fff;
      text-decoration: none;
      font-size: 20px;
      position: relative;
      box-sizing: border-box;
      border: 1px solid white; }
    #ShopMenuNav ul.nav > li {
      flex-grow: 1; }
      #ShopMenuNav ul.nav > li a {
        height: 45px;
        line-height: 45px;
        background-color: black; }
        #ShopMenuNav ul.nav > li a.Selected {
          background-color: #0864A1; }
      #ShopMenuNav ul.nav > li.AddTopMenuItem {
        background-repeat: no-repeat;
        background-size: contain;
        background-color: black;
        height: 45px;
        line-height: 45px;
        border: 1px solid white;
        width: 230px; }
    #ShopMenuNav ul.nav li {
      position: relative;
      z-index: 200;
      width: 100%; }
      #ShopMenuNav ul.nav li:hover > a {
        color: white;
        background-color: #0864A1; }
    #ShopMenuNav ul.nav > li {
      letter-spacing: 1px;
      box-sizing: border-box;
      border-bottom: none; }
      #ShopMenuNav ul.nav > li:last-child {
        margin-right: 0; }
    #ShopMenuNav ul.nav ul {
      margin: 0;
      padding: 0;
      list-style: none;
      background-color: unset;
      position: absolute;
      white-space: nowrap;
      z-index: 1;
      left: -99999em;
      width: 100%; }
    #ShopMenuNav ul.nav > li:hover > ul {
      left: auto;
      min-width: 100%;
      display: block;
      position: relative;
      margin: 2px 0;
      border-radius: 5px; }
      #ShopMenuNav ul.nav > li:hover > ul a {
        height: 30px;
        line-height: 33px;
        border-top: none; }
    #ShopMenuNav ul.nav > li li:hover > ul {
      left: 100%;
      margin-left: 1px;
      top: -1px;
      display: none; }
    #ShopMenuNav ul.nav > li > a:first-child:nth-last-child(2):before {
      border-top-color: #aaa; }
    #ShopMenuNav ul.nav > li:hover > a:first-child:nth-last-child(2):before {
      border: 5px solid transparent;
      border-bottom-color: #E6BF02;
      margin-top: -5px; }
    #ShopMenuNav ul.nav li li > a:first-child:nth-last-child(2):before {
      border-left-color: #aaa;
      margin-top: -5px; }
    #ShopMenuNav ul.nav li li:hover > a:first-child:nth-last-child(2):before {
      border: 5px solid transparent;
      border-right-color: #E6BF02;
      right: 10px; }
