body {
  min-width: 320px;
  padding: 30px;
  background: #ff9800;
  font-family: Helvetica, sans-serif;
}
h1 {
  color: #fff;
  font-weight: bold;
  margin-top: 2rem;
  font-size: 24px;
}
p {
  color: #fff;
  margin-top: 10px;
  font-size: 14px;
  line-height: 18px;
  max-width: 50ex;
}
p.large {
  font-size: 1.2rem;
  margin-top: 2rem;
}
a {
  color: #fff;
}
.greedy-nav {
  position: relative;
  min-width: 250px;
  background: #fff;
}
.greedy-nav a {
  display: block;
  padding: 20px 30px; 
  background: #fff;
  /* font-size: 18px;*/
  color: #91928f;
  text-decoration: none; 
}
.greedy-nav a:hover {
  /* color: #ef6c00; */ 
}
.greedy-nav button {
  position: absolute;
  height: 100%;
  right: 0;
  padding: 0 15px;
  border: 0;
  outline: none;
  background-color: #dddddd !important;
  color: #fff;
  cursor: pointer;
}
.greedy-nav button:hover {
  /* background-color: #ef6c00;  */
}
.greedy-nav button::after {
    content: attr(count);
    position: absolute;
    width: 42px;
    height: 40px;
    left: -16px;
    top: 12px;
    text-align: center;
    background-color: #dddddd;
    color: #fff;
    font-size: 16px;
    line-height: 32px;
    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;
}
.greedy-nav .visible-links li {
  display: table-cell;
  /* border-left: 1px solid #ff9800; */
}
.greedy-nav .hidden-links {
  position: absolute;
  right: 0px;
  top: 100%;
}
.greedy-nav .hidden-links li {
  display: block;
  /* border-top: 1px solid #f57c00; */
}
.greedy-nav .visible-links li:first-child {
  font-weight: bold;
}

.greedy-nav .hidden {
  visibility: hidden;
}

.hidden-links {
	z-index: 2000;
	background-color: white;
	width: 100%;
    -webkit-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 5px 5px 0 rgba(0,0,0,0.2);
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 5px 5px 0 rgba(0,0,0,0.2);
}
