/**
* 2007-2023 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-2023 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.
*/


#layout-error .cookie-b {
    display: none;
}

.cookie-b {
    width: 100%;
    max-width: 300px;
    padding: 8px 0;
    position: fixed;
    z-index: 99;
    left: 0;
    bottom: 0;
    background: rgba(255, 255, 255, .9)
}

@media (max-width: 700px) {
    .cookie-b {
        padding: 15px 0
    }
}

.cookie-b__grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 12px;
    position: relative;
    flex-direction: column;
    z-index: 2;
}

.cookie-b__about {
    position: relative;
    padding: 0 0 0 0px;
    color: #000;
    font-size: 13px
}

.cookie-b__about a {
    color: var(--color-button-hover);
}

.cookie-b__button {
    font-size: 14px;
    height: 24px;
}

@media (max-width: 700px) {
    .cookie-b__about {
        line-height: 1.3;
        padding: 0 0 0 0px
    }

    .cookie-b__about img {
        -webkit-transform: none;
        transform: none;
        top: 0;
        width: 25px;
        height: auto
    }

    .cookie-b .button {
        font-size: 14px;
        height: 24px;
    }

    #module-psewmarketplace-sellerprofile .cookie-b {
        bottom: 72px;
        background: var(--color-light);
        max-width: unset;
    }
}