/*---dropdown button manage orders-----*/
header {
  background-color: #00008b;
  text-align: center;
  color: #ffffff;
}

.dropdown-menu {
  background: #353A40;
  position: absolute;
}

.dropdown-menu a {
  color: #999999;
}

.dropdown:hover > .dropdown-menu {
  display: inline-block;
}

.dropdown-menu a:hover {
  background: #42474c;
  color: #f4f4f4;
}

.dropdown:hover > .dropdown-toggle:after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.dropdown-menu li {
  position: relative;
}

.dropdown-menu .dropdown-submenu {
  display: none;
  position: absolute;
  left: 100%;
  top: -7px;
}

.dropdown-menu .dropdown-submenu-left {
  right: 100%;
  left: auto;
}

.dropdown-menu > li:hover > .dropdown-submenu {
  display: block;
}

/*---end of dropdown css-------*/
/*# sourceMappingURL=main.css.map */