/**
* 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.
*/
#lbx-banner-container {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .8);
    z-index: 999;
    height: 100vh;
    width: 100vw;
    justify-content: center;
    align-items: center;
}

.lbx-banner-inner {
    border-radius: 0;
    /* box-shadow: 3px 3px 10px 3px #000; */
    background-color: #F7F1EA;
    max-width: 650px;
    margin: 20px;
    display: flex;
    align-items: stretch;
}

.lbx-banner-inner .lbx-banner-title {
    color: black;

    font-family: SharpGroteskBook25;
    font-size: 24px;
    margin-bottom: 30px;
}

.lbx-banner-image {
    width:50%;
    background-size: cover;
}

.lbx-banner-content {
    width:50%;
    padding: 3rem;
    position: relative;
}

.lbx-banner-content #lbx_banner_close {
    position: absolute;
    top: 13px;
    right: 13px;
    width: 28px;
    height: 28px;
}

.lbx-banner-inner p {
    font-size: 16px;
    line-height: 30px;
    font-family: SharpGroteskBook20, sans-serif;
    color: black;
    margin-bottom: 22px;
}
#lbx_banner_accept,
#lbx_banner_close{
    border: none;
    background: transparent;
}

#lbx_banner_accept {
    border-bottom-width: medium;
    border-bottom-style: none;
    border-bottom-color: currentcolor;
    border-bottom: 1px solid black;
    margin-top: 20px;
    font-size: 14px;
    font-family: SharpGroteskMedium20;
    margin-bottom: 15px;
}

@media (min-width:575px) {
    .lbx-banner-inner {
        width: 650px;
    }
}