.folding-content,
.unfolded-content {
  display: none;
}

.unfolded-content {
  width: 100%;
}

.unfolded-content .folding-content {
  display: block;
}

.menu-item:hover,
.close-unfolded-content:hover {
  cursor: pointer;
}


#menu-container {
  width: 100%;
  min-height: 100%;
}

.unfolded-content {
  background: #565656;
  box-sizing: border-box;
  position: relative;
  margin-bottom:30px;
  padding: 30px 0px;
}

.active-item {
  position: relative;
}

.active-item:after {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  left: calc( 50% - 40px );
  bottom: -10px;
  border-top: 10px solid #fff;   
  border-right: 10px solid transparent;
  border-bottom: 00px solid transparent;
  border-left: 10px solid transparent;
  z-index: 10;
  transition: border-top-color 0.3s;
}

.active-item:hover:after {
  border-top: 10px solid #fff;
}

.close-unfolded-content {
  position: absolute;
  top: 5px;
  right: 15px;
  height: 20px;
  width: 20px;
  text-align: center;
  background: #fff;
  line-height: 18px;
  transition: color 0.3s, background 0.3s;
}

.close-unfolded-content:hover {
  color: #fff;
  background: #444;
}

.folding-menu li{list-style-type: none;}
.folding-content .category-box{margin-bottom: 30px;cursor: pointer;text-align: center;}
.folding-content .category-box a{color: #e7b332;font-size: 10px;margin-top: 12px;display: block;text-transform: uppercase;}
.folding-content .category-box a:hover{color: #fff;}
.folding-content .category-box .product-heading{position: relative;}
.folding-content .category-box .product-heading h5{position: absolute;left:0;bottom:0;width: 100%;background: rgba(0, 0, 0, 0.5);
    color: #fff;text-align: center;font-size: 16px;padding: 2px 0px;
  -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
.folding-content .category-box:hover>.product-heading h5{padding: 10px 0px;}
