/**
* 2007-2024 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-2024 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.
*/
:root {
    --cms-category-nav-color: #aa7c49;
    --cms-category-border-radius: 1rem;
}

.cms-category-nav__list {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: start;
    padding: 0;
    margin-right: 1rem;
    position: relative;
    border: 1px solid var(--cms-category-nav-color);
}
.cms-category-nav__item {
    flex: 1;
    min-width: 100%;
}
.cms-category-nav__item a {
    display: block;
    position: relative;
    padding: 7.5px 8px 7.5px;
    transition: color 50ms ease-in-out;
}
.cms-category-nav__item a:not(.active) {
    color: var(--cms-category-nav-color) !important;
}
.cms-category-nav__item a:hover, .cms-category-nav__item a.active {
    background-color: var(--cms-category-nav-color);
    color: white !important;
}
@media screen and (min-width: 1300px) {
    .cms-category-nav__item a:hover:after, .cms-category-nav__item a.active:after {
        content: "";
        position: absolute;
        right: -19px;
        height: 0px;
        width: 0px;
        /* border-right: 1rem solid red; */
        border-top: 18px solid transparent;
        border-left: 18px solid var(--cms-category-nav-color);
        border-bottom: 18px solid transparent;
        top: calc(50% - 0.5px);
        transform: translateY(-50%);
    }
}