/**
* 2007-2020 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
*  @author    PrestaShop SA <contact@prestashop.com>
*  @copyright 2007-2020 PrestaShop SA
*  @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*
* Don't forget to prefix your containers with your own identifier
* to avoid any conflicts with others containers.
*/

#mobile-sidebar-menu{
    position: fixed;
    width: 85%;
    height: 100%;
    max-width: 340px;
    background: #fff;
    top: 0;
    bottom: 0;
    overflow-y: auto;
    padding-top: 40px;
    z-index: 3500;
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    transition: all 0.350s ease;
}

body.open-mobile-sidebar-menu #mobile-sidebar-menu{
    transform: translateX(0);
    -webkit-transform: translateX(0);
}

#btn-mobile-menu a{
	color: #000000;
	font-size: 2rem;
}

#btn-mobile-menu{
    margin-right: 10px;
    padding: .375rem .625rem;
}

#mobile-sidebar-cross{
	font-size: 2rem;
    position: absolute;
    right: 0;
    top: 35px;
    padding: 10px 15px;
    color: #000000;
}

#mobile-sidebar-overlay{
	position: fixed;
    background: #000 none repeat scroll 0% 0%;
    opacity: 0.4;
    display: none;
    top: 0;
    z-index: 1499;
    width: 100%;
    left: 0;
    bottom: 0;
    right: 0;
    transition: opacity 150ms ease;
    
}

body.open-mobile-sidebar-menu #mobile-sidebar-overlay{
	display: block;
}

#mobile-sidebar-user{
	padding-bottom: 25px;
}

#mobile-sidebar-user a{
	color: #ffffff;
    background-color: #000000;
    font-size: 1.2rem;
    padding-left: 20px;
    min-width: 200px;
    display: inline-block;
    padding-top: 10px;
    padding-bottom: 10px;
}

#mobile-sidebar-search{
	padding-bottom: 20px;
    padding-left: 15px;
    padding-right: 20px;
}

#mobile-sidebar-search .form-control {
    border-top: none;
    border-left: none;
    border-right: none;
    border-color: #757a84;
    color: #000000;
    font-size: 1.1rem;
}

#mobile-sidebar-search .search-widget .search-btn{
	font-size: 1.3rem;
}