/**
* 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
*/
.badcookiestext-block-content {
    background-color: #fff;
    padding: 10px 15px;
    position: fixed;
    bottom: 0;
    max-width: 270px;
    left: auto;
    right: 15px;
    top: auto;
    bottom: 15px;
    z-index: 160;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    border-radius: 5px;
    box-shadow: 0 5px 10px 0 rgb(23 84 116 / 18%);
}
.badcookiestext-block{
	color: #000;
    font-size: 13px;
    font-weight: 400;
    line-height: 24px;
    padding: 9px 0;
}
.badcookiestext-block a{
	color: #000;
	text-decoration: underline;
    display: inline-block;
}
.badcookiestext-inner{
	font-size: 14px;
    color: #ffffff;
    font-weight: 400;
    letter-spacing: 1px;
}
.badcookiestext-inner a{
	font-size: 14px;
	padding-left: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    letter-spacing: 2px;
    text-decoration: underline;
}
.badcookiestext-close i {
    background-color: var(--theme-custom-color);
    border: 1px solid var(--theme-custom-color);
    font-size: 19px;
    color: #ffffff;
    font-weight: 400;
    text-transform: capitalize;
    border-radius: 30px;
    letter-spacing: 1px;
    display: inline-block;
    vertical-align: middle;
    height: 26px;
    width: 26px;
    line-height: 26px;
    text-align: center;
}
.badcookiestext-close {
    margin-left: 10px;
    border-radius: 25px;
    position: absolute;
    right: -9px;
    top: -15px;
    bottom: auto;
    left: auto;
}
.badcookiestext-close i:hover{
	background-color: #fff;
	color: var(--theme-custom-color);
}