/**
 * 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%;
  position:relative; 
  margin-right: 10px;
}
.header-nav-fullwidth #blockcategories {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #ffffff;
    z-index: 9;
    margin: 10px 0;
    border-radius: 10px;
}
#categories_block_left .side-title {
    color: #fff;
    background: #f02640;
    padding: 15px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    cursor: pointer;
    border-radius: 10px;
}
#categories_block_left .side-title .material-icons.d-inline {
  float: left;
  margin-right: 10px;
}
/* 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/arrow_right_2.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: uppercase;
}
#categories_block_left .vertical  ul  li:last-child > a{border:none;}
#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%;
  border-radius: 10px;
  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:991px) {
  #categories_block_left{display: none;}
}
.layout-left-column #left-column #categories_block_left .side-title{display: none;}
.layout-left-column .header-nav-fullwidth #blockcategories{display: none !important;}
.layout-left-column #left-column #blockcategories{ background: #f6f6f6; border-radius: 10px;}
.layout-left-column #left-column #categories_block_left{width: 100%;  margin-bottom: 20px;}