



#menu_button_wrapper { display: none; }

.hidden { display: none; }

/* Responsive for smaller screens */

@media (max-width: 991px) {


#menu_button_wrapper {
  display: flex;
  justify-content: flex-end;
  padding: 15px 0;
  color: #9d9d9d;
  border-bottom:1px solid #bdbdbd;
  -webkit-box-shadow: 0 1px 0 rgba(255,255,255,.1);
  box-shadow: 0 1px 0 rgba(255,255,255,.1);
  margin-bottom: .5em;
}

#menu_button {
  box-sizing: border-box;
  padding: 9px 12px 9px 12px;
  border: 1px solid #07AB49;
  border-radius: 5px;
  color: #07AB49;
  font-weight: 500;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#menu_button:hover {
  cursor: pointer;
  border: 1px solid #414141;
  border-radius: 5px;
  color: #414141;
}
#menu_button:hover span{
  background-color: #414141;
}

#hamburger {
  float: right;
  padding-top: 4px;
}

#menu_button span {
  display: block;
  background-color: #07AB49;
  width: 20px;
  height: 2px;
  border-radius: 1px;
  margin-bottom: 5px;
}


}