/**
 * 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 {
  float: left;
  width: 21.5%;
  position:relative; 
}
#blockcategories {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
	background: #fff;
	z-index: 9;
}
#categories_block_left .side-title {
    color: #fff;
    background: #067882;
    padding: 10px 20px;
    font-size: 16px;
    text-transform: capitalize;
    margin: 0;
    cursor: pointer;	
	transition: all 0.45s ease 0s;
	-webkit-transition: all 0.45s ease 0s;
	-moz-transition: all 0.45s ease 0s;
	-o-transition: all 0.45s ease 0s;
}
#categories_block_left .side-title:hover {
	background:#000;
	transition: all 0.45s ease 0s;
	-webkit-transition: all 0.45s ease 0s;
	-moz-transition: all 0.45s ease 0s;
	-o-transition: all 0.45s ease 0s;
}
#categories_block_left .side-title .material-icons.d-inline {
    float: right;
}
/* ALL UL */
#categories_block_left .vertical ul{
  list-style: none;
  margin: 0;
}
/* ALL LI */
#categories_block_left .vertical li{
  position:relative;
  z-index: 99;
}
#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;
   border-bottom: 1px solid #e6e6e6;
   text-transform: capitalize;
}
#categories_block_left .vertical  ul  li:last-child a{}
#categories_block_left .vertical  ul  li + :nth-child(2n) > a{
  
}
/*#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; 
}
@media (max-width:767px) {
  #categories_block_left{display: none;}
}