.greedy-nav {
  position: relative;
  min-width: 250px;
}
.greedy-nav a {
  display: block;
  padding: 10px 10px;
  font-size: 13px;
  color: #1B1B1B;
  text-decoration: none;
  font-weight:600
}

.menuDown a:hover {
  color: #fff;
  background: #000;
}

.greedy-nav button {
  position: absolute;
  height: 100%;
  right: 0;
  padding: 0 15px;
  border: 0;
  outline: none;
  background-color: #E3000F;
  color: #fff;
  cursor: pointer;
}
.greedy-nav button:hover {
  background-color: #E3000F;
}
.greedy-nav button::after {
  content: attr(count);
  position: absolute;
  width: 30px;
  height: 30px;
  left: -16px;
  top: 12px;
  text-align: center;
  background-color: #E3000F;
  color: #fff;
  font-size: 14px;
  line-height: 28px;
  border-radius: 50%;
  border: 3px solid #fff;
  font-weight: bold;
}
.greedy-nav button:hover::after {
  transform: scale(1.075);
}
.greedy-nav .hamburger {
  position: relative;
  width: 32px;
  height: 4px;
  background: #fff;
  margin: auto;
}
.greedy-nav .hamburger:before,
.greedy-nav .hamburger:after {
  content: '';
  position: absolute;
  left: 0;
  width: 32px;
  height: 4px;
  background: #fff;
}
.greedy-nav .hamburger:before {
  top: -8px;
}
.greedy-nav .hamburger:after {
  bottom: -8px;
}
.greedy-nav .visible-links {
  display: inline-table;
  margin-bottom:0px;
  position:relative
}
.greedy-nav .visible-links li {
  display: table-cell;
  position:relative
}
.hidden-links li a p{
	color:#fff!important
}
.hidden-links li a {
	color:#fff!important
}
.greedy-nav .hidden-links {
  position: absolute;
  right: 0px;
  top: 110%;
  background:#454545;
  z-index:2
}
.greedy-nav .hidden-links li {
  display: block;
  border-top: 1px solid #E94E1B;
}
.greedy-nav .hidden {
  visibility: hidden;
}
