.menu--catalog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc(1230px + 2em);
  padding: .4em 0;
  background-color: rgb(255, 255, 255);
  border-top: solid 1px rgb(80, 90, 90);
  border-bottom: solid 1px rgb(80, 90, 90);
}

.menu--catalog > .menu__divider {
  margin-top: 1.2px;
}

.menu--catalog > .menu__divider .icon {
  display: block;
  width: 4px;
}

.menu--catalog > .menu__item {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}

.menu--catalog > .menu__item > .menu__wrapper {
  z-index: 9000;
  top: auto;
  left: auto;
  padding-top: 4px;
}

.menu--catalog > .menu__item > .menu__link {
  padding: .2em 1em;
  color: rgb(80, 90, 90);
  background-color: rgb(255, 255, 255);
  text-decoration-color: transparent;
  text-transform: uppercase;
  font-size: .9375em;
  font-weight: 600;
}

.menu--catalog > .menu__item > .menu__link:hover {
  text-decoration-color: transparent;
}

.menu--catalog > .menu__item > .menu__link--highlight {
  color: rgb(255, 21, 0);
}

.menu--catalog > .menu__item--focused > .menu__link {
  color: rgb(167, 172, 172);
}

.menu--catalog > .menu__item--focused > .menu__link--highlight {
  color: rgba(255, 21, 0, .7);
}

.menu--catalog .menu--l2 {
  position: relative;
  border: solid 1px rgb(167, 172, 172);
  border-width: 4px 1px 1px;
  font-size: .9rem;
}

.menu--catalog .menu--l2 > .menu__item {
  position: static;
}

.menu--catalog .menu--l2 > .menu__item--header {
  display: none;
}

.menu--catalog .menu--l2 > .menu__item > .menu__wrapper {
  top: -4px;
  height: 100%;
}

.menu--catalog .menu--l2 > .menu__item > .menu__link {
  position: relative;
  padding: .1em .6em .3em .6em;
}

.menu--catalog .menu--l3 {
  min-height: 100%;
  border: solid 1px rgb(167, 172, 172);
  border-width: 4px 1px 1px 0;
  font-size: .9rem;
}

.menu--catalog .menu--l3 > .menu__item > .menu__link {
  background-color: transparent;
}

.menu--catalog .menu--l3 > .menu__item--header > .menu__link {
  color: rgb(167, 172, 172);
  text-decoration-color: rgb(167, 172, 172);
}

.menu--catalog .menu--l3 > .menu__item--header.menu__item--focused > .menu__link {
  text-decoration-color: rgb(255, 21, 0);
}

/* MENU CATALOG THEME ARROWS */

.menu--catalog > .menu__item--parent > .menu__link::after {
  display: none;
  position: absolute;
  z-index: 2;
  width: 0;
  height: 0;
  content: '';
  bottom: -5px;
  left: 50%;
  margin-left: -6px;
  border-right: 6px solid transparent;
  border-bottom: 6px solid rgb(167, 172, 172);
  border-left: 6px solid transparent;
}

.menu--catalog .menu--l2 > .menu__item--parent > .menu__link::after {
  display: none;
  position: absolute;
  z-index: 2;
  width: 0;
  height: 0;
  content: '';
  right: 0;
  top: 50%;
  margin-top: -5px;
  border-top: 6px solid transparent;
  border-right: 6px solid rgb(255, 255, 255);
  border-bottom: 6px solid transparent;
}

.menu--catalog > .menu__item--focused > .menu__link::after,
.menu--catalog .menu--l2 > .menu__item--focused > .menu__link::after {
  display: block;
}

/* MENU CATALOG THEME FINE TUNING */

.menu--catalog > .menu__item:nth-child(11) > .menu__wrapper,
.menu--catalog > .menu__item:nth-child(13) > .menu__wrapper/*,
.menu--catalog > .menu__item:nth-child(15) > .menu__wrapper */
{
  left: auto;
  right: 0;
}

.menu--catalog > .menu__item:nth-child(11) .menu--l2 > .menu__item > .menu__wrapper,
.menu--catalog > .menu__item:nth-child(13) .menu--l2 > .menu__item > .menu__wrapper/*,
.menu--catalog > .menu__item:nth-child(15) .menu--l2 > .menu__item > .menu__wrapper */
{
  left: auto;
  right: 100%;
}

.menu--catalog > .menu__item:nth-child(11) .menu--l2 > .menu__item--parent > .menu__link::after,
.menu--catalog > .menu__item:nth-child(13) .menu--l2 > .menu__item--parent > .menu__link::after/*,
.menu--catalog > .menu__item:nth-child(15) .menu--l2 > .menu__item--parent > .menu__link::after */
{
  left: 0;
  border-right-color: transparent;
  border-left: 6px solid rgb(255, 255, 255);
}

.menu--catalog > .menu__item:nth-child(11) .menu--l3,
.menu--catalog > .menu__item:nth-child(13) .menu--l3/*,
.menu--catalog > .menu__item:nth-child(15) .menu--l3 */
{
  border-width: 4px 0px 1px 1px;
}

/* MENU PLAIN THEME */

.menu--plain {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.menu--plain > .menu__item {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}

.menu--plain > .menu__item > .menu__wrapper {
  z-index: 9000;
  top: auto;
  right: 0;
  left: auto;
  padding-top: 6px;
}

.menu--plain > .menu__item > .menu__link {
  padding: .1em 0;
  color: rgb(80, 90, 90);
  background-color: transparent;
  text-decoration-color: transparent;
}

.menu--plain > .menu__item > .menu__link:hover {
  text-decoration-color: transparent;
}

.menu--plain > .menu__item > .menu__link--highlight {
  color: rgb(255, 21, 0);
  font-weight: 600;
}

.menu--plain > .menu__item--focused > .menu__link {
  color: rgb(167, 172, 172);
}

.menu--plain > .menu__item--focused > .menu__link--highlight {
  color: rgba(255, 21, 0, .7);
}

.menu--plain .menu--l2 {
  position: relative;
  border: solid 1px rgb(167, 172, 172);
  border-width: 4px 1px 1px;
  font-size: .9rem;
}

.menu--plain .menu--l2 > .menu__item {
  position: static;
}

.menu--plain .menu--l2 > .menu__item--header {
  display: none;
}

.menu--plain .menu--l2 > .menu__item > .menu__link {
  padding: .1em .6em .3em .6em;
}

.menu--plain .menu--l2 > .menu__item > .menu__wrapper {
  display: none !important;
}

/* MENU PLAIN THEME ARROWS */

.menu--plain > .menu__item--parent > .menu__link::after {
  display: none;
  position: absolute;
  z-index: 2;
  width: 0;
  height: 0;
  content: '';
  bottom: -6px;
  left: 50%;
  margin-left: -6px;
  border-right: 6px solid transparent;
  border-bottom: 6px solid rgb(167, 172, 172);
  border-left: 6px solid transparent;
}

.menu--plain > .menu__item--focused > .menu__link::after {
  display: block;
}
