/**
* 2007-2025 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-2025 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_horizontal_menu {
    position: relative;
}

.mobile_horizontal_menu ul {
    position: relative;
    display: flex;
    list-style: none;
    overflow-x: auto;
    scrollbar-width: none;
    margin: 5px 20px 5px 20px;
    padding-inline-start: 0px;
}


.mobile_horizontal_menu ul li {
    border-right: 1px solid #ccc;
    padding: 0px 5px;
    flex: 0 0 auto;
}

.mobile_horizontal_menu ul li a {
    color: #000 !important;
    font-size: 10px;
}

.mobile_horizontal_menu ul li:last-of-type {
    border-right: none;
}

.floutage {
    position: absolute;
    top: 6px;
    right: 20px;
    width: 40px;
    height: 12px;
}

.floutage {
    font-size: 2rem;
    font-weight: bold;
    color: white;

    z-index: 2;

    backdrop-filter: blur(0.7px);
    -webkit-backdrop-filter: blur(0.7px);

    mask-image: linear-gradient(to left, #5e5e5e 60%, transparent 100%);
    -webkit-mask-image: linear-gradient(to left, #5e5e5e 10%, transparent 100%);

}

.mobile_horizontal_menu ul {
    width: calc(100vw - 40px);
}
.fixed-sub-menu .floutage{
        top: 10px;
}
@media (min-width: 990px) {
    .mobile_horizontal_menu {
        display: none;
    }
}