
/*VERTICAL MENU*/
#cat_list_wrapper{
	margin: 0;
	padding: 0;
	position:relative;
	/* min-width:200px; */
	width:100%;
	box-shadow: 0 4px 4px rgba(0,0,0, .25)
  }
  
  /* ALL UL */
  #cat_list_wrapper ul{
	margin: 0;
	padding: 0;
	list-style: none;
	
	z-index: 110;
	width:100%;
  }
  /* ALL LI */
  #cat_list_wrapper li{
	position:relative;
	
	width:100%;
  }

  #cat_list_wrapper> ul > li > a{
	font-weight: 400;
	padding:5px 15px 5px 10px;
	font-size: 14px;
  }

 
  /* ALL A */
  #cat_list_wrapper a{
	display:flex;
	align-items: center;
	width: 100%;
	color:#292929;
	text-decoration:none;
	padding:10px 15px;
	background:#f5f5f5;
	transition:0.2s;
	line-height: 1.5;
	font-family: inherit;
	font-size: 14px;
  }

  #cat_list_wrapper a:hover{
	background-color: rgba(212,212,212,1);
  }


 


  /* ALL A HOVER */
  #cat_list_wrapper li:hover > a{
	color: #FA3C5D;
  }

  #cat_list_wrapper .cat_img {
	
	margin-right: 10px;
	width: 20px;
    min-width: 20px;
    height: 20px;
    min-height: 20px
  }

  #cat_list_wrapper .sub_cat_arrow {
	  display: inline-block;
	  width: 10px;
	  /* margin-left: 10px; */
  }

  #cat_list_wrapper .sub_cat_arrow .parent_arrow_icon {
	  font-weight: 700;
	  position: absolute;
	  right: 10px;
	  top: 40%;
  }
  
  /* INNER UL HIDE */
  #cat_list_wrapper ul ul{
	position:absolute;
	left:100%;
	top:0;
	width:100%;
	visibility:hidden;
	opacity:0;
	transition: transform 0.2s;
	transform: translateX(50px);
	z-index: 10;
	box-shadow: 0 4px 4px rgba(0,0,0, .25);
  }
  /* INNER UL SHOW */
  #cat_list_wrapper li:hover > ul{
	left:100%;
	visibility:visible;
	opacity:1;
	transform: translateX(0px);
  }

  .cat_list_child_li a{
	  padding-left: 10px;
  }
  