/**
 * PrestaShop module created by VEKIA, a guy from official PrestaShop community ;-)
 *
 * @author    VEKIA https://www.prestashop.com/forums/user/132608-vekia/
 * @copyright 2010-2016 VEKIA
 * @license   This program is not free software and you can't resell and redistribute it
 *
 * CONTACT WITH DEVELOPER http://mypresta.eu
 * support@mypresta.eu
 */
 

/*VERTICAL MENU*/
#categories_block_left {
  position:relative;
  z-index:2;
  padding:0; 
}

/* ALL UL */
#categories_block_left .vertical ul{
  list-style: none;
  margin: 0;
}
/* ALL LI */
#categories_block_left .vertical li{
  position:relative;
}
#categories_block_left .vertical li.vertical-sub-menu > a{
  background: url(img/category-arrow.png) no-repeat scroll 95% 22px;
}
#categories_block_left .vertical li.vertical-sub-menu:hover > a{
  background-position: 95% -18px;
}
/* ALL A */
#categories_block_left .vertical  ul  li  a{
   width: 100%;
   display: inline-block;
   margin: 0;
   padding: 15px 20px;
   background: #ffffff;
}
#categories_block_left .vertical  ul  li + :nth-child(2n) > a{
  background-color: #eeeeee;
}
/*#left-column .vertical-menu .top-vertical-menu li + :nth-child(2n) a[data-depth="0"]*/
/* ALL A HOVER */

/* INNER UL HIDE */
#categories_block_left .vertical ul ul{
  position:absolute;
  left:0%;
  top:0;
  width:100%;
  visibility:hidden;
  opacity:0;
  transition: transform 0.2s;
  transform: translateX(50px);
  background: #ffffff;
}
/* INNER UL SHOW */
#categories_block_left .vertical li:hover > ul{
  left:100%;
  visibility:visible;
  opacity:1;
  transform: translateX(0px);
  -moz-box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 13px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 13px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 13px; 
}