/**
* 2007-2017 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-2017 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.
*/
#custommobilemenu {
    display: block;
    position: fixed;
    width: 85%;
    left: -85%;
    transition: all 0.3s;
    max-width: 400px;
    z-index: 15000;
    overflow-x: hidden;
    overflow-y: auto;
    top: 50px;
}
@media (min-width: 767px) {
    #custommobilemenu {
        display: none !important;
    }
}
#custommobilemenu.shown {
    left: 0;
}
#custommobilemenu .custommobilemenu-content {
    display: block;
    width: 100%;
    background-color: #fff;
    border: 1px solid #61848e;
    padding: 25px 10% 15px 10%;
    color: #336279;
}
#custommobilemenu .custommobilemenu-content a {
    color: #336279;
}
body::after {
    content: "";
    display: block;
    width: 100%;
    height: 150%;
    background: rgba(0, 0, 0, 0.3);
    right: -100%;
    transition: all 0.3s;
    position: fixed;
    z-index: 5005;
    top: 0;
}
body.menu-visible::after {
    right: 0;
}
.custommobilemenu-table {
    display: table;
    width: 100%;
    padding: 0 10px;
    margin-bottom: 15px;
}
.custommobilemenu-table > * {
    display: table-cell;
    vertical-align: middle;
}
.custommobilemenu-usericon {
    width: 50px;
    height: 50px;
    background-image: url('../img/usericon.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
}
.custommobilemenu-table .custommobilemenu-userdata {
    padding-left: 25px;
}
.custommobilemenu-username {
    font-size: 16px;
}
.custommobilemenu-useremail {
    opacity: 0.6;
}
.custommobilemenu-userpoints {
    font-size: 17px;
    text-align: center;
    line-height: 21px;
    margin-bottom: 3px;
    display: block;
}
.custommobilemenu-userarea {
    border-bottom: 2px solid #ecf1f3;
}
.custommobilemenu-links {
    margin-top: 11px;
    font-size: 17px;
    padding-left: 15px;
}
.custommobilemenu-links li a span {
    padding-left: 18px;
}
.custommobilemenu-links li a i {
    font-size: 19px;
}
.custommobilemenu-links li a {
    display: inline-block;
    width: 80%;
    padding: 7px 0;
    vertical-align: middle;
}
.custommenu-toggle::after {
    content: '\f054';
    font-family: FontAwesome;
}
li.selected > .custommenu-toggle::after {
    content: '\f078';
}
.custommobilemenu-links li .custommenu-toggle {
    width: 20%;
    display: inline-block;
    text-align: right;
    vertical-align: middle;
    font-size: 15px;
    padding-top: 7px;
    padding-bottom: 6px;
}
#custommobilemenu .custommobilemenu-links li:hover > a, #custommobilemenu .custommobilemenu-links li:hover > .custommenu-toggle,
#custommobilemenu .custommobilemenu-links li.selected, #custommobilemenu .custommobilemenu-links li.selected a,
#custommobilemenu .custommobilemenu-links li.selected > a, #custommobilemenu .custommobilemenu-links li.selected > .custommenu-toggle{
    color: #f67004;
    cursor: pointer;
}
.custommenu-toggle {
    float: right;
    padding-right: 10px;
}
.custommobilemenu-links > ul > li ul {
    display: none;
    padding-left: 10px;
}
.custommobilemenu-links > ul > li ul li > a::before {
    content: '\f111';
    font-family: FontAwesome;
    color: #336279;
    font-size: 8px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 7px;
}
#custommobilemenu .custommobilemenu-links > ul > li.selected li:hover,
#custommobilemenu .custommobilemenu-links > ul > li.selected li:hover > a,
#custommobilemenu .custommobilemenu-links > ul > li.selected li:hover > .custommenu-toggle {
    color: #336279;
}
.custommobilemenu-headerlinks a {
    display: inline-block;
    padding: 15px 10px;
    width: 50%;
    text-align: center;
    float: left;
}
@media (max-width: 480px) {
    #custommobilemenu .custommobilemenu-content {
        padding-left: 5px;
        padding-right: 5px;
    }
}