#menu-panel-wrap {
  position: fixed;
  top: 0;
  width: 100%;
  height: 300px;
  background-color: #f4f4f4;
  padding-top: 160px;
  z-index: 1020; }
  #menu-panel-wrap .menu-contents div {
    display: none; }
    #menu-panel-wrap .menu-contents div.show {
      display: block; }
  #menu-panel-wrap .menu-contents ul.ulsub {
    width: 100%;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap; }
    #menu-panel-wrap .menu-contents ul.ulsub li {
      display: inline-block;
      width: 50%;
      /*as flex item try to get 50% width if not, adjust the width depending on no of items */
      border-left: 1px solid #ccc;
      padding: 0 1rem; }
      #menu-panel-wrap .menu-contents ul.ulsub li:first-child {
        border-left: none; }
      #menu-panel-wrap .menu-contents ul.ulsub li ul {
        list-style: none; }
        #menu-panel-wrap .menu-contents ul.ulsub li ul li.heading {
          font-size: 1.2rem;
          font-weight: 700;
          color: "#666"; }
        #menu-panel-wrap .menu-contents ul.ulsub li ul li a {
          font-size: 1.0rem;
          color: "#666"; }
  #menu-panel-wrap.closed {
    display: none; }
  #menu-panel-wrap #close-nav {
    position: absolute;
    right: 5rem;
    width: 2rem;
    height: 2rem;
    margin-top: -6.5rem; }
    #menu-panel-wrap #close-nav img {
      width: 100%; }
