/*
* 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    FMM Modules
* @copyright FMM Modules
* @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
* @package   hidepriceandcart
*/
#cookie-banner-head {
    display: flex;
    justify-content: space-between; /* Push children to opposite ends */
    align-items: center;            
}

#cookie-consent-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    max-width: 600px;
    margin: auto;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    padding: 20px 25px;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    z-index: 9999;
    display: none;
    animation: fadeInUp 0.4s ease-in-out;
    pointer-events: auto;
}

#cookie-consent-banner.bottom {
    bottom: 20px;
}

#cookie-consent-banner.top {
    top: 20px;
}

#cookie-consent-banner.center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    right: auto;
    bottom: auto;
}




#cookie-consent-banner p {
    margin: 0 0 10px;
    color: #333;
}

#cookie-consent-banner button {
    background-color: #007bff;
    border: none;
    color: white;
    padding: 10px 18px;
    margin-right: 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 14px;
}

#cookie-consent-banner button#cookie-accept-partial {
    background-color: #148b6d;
}

#cookie-consent-banner button#cookie-reject {
    background-color: #6c757d;
}

#cookie-consent-banner button:hover {
    opacity: 0.9;
}

@keyframes fadeInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

#cookies-solution-link-container {
    text-align: right;
    margin-top: 20px;
}

.locked{
    overflow: hidden; 
    pointer-events: none;
}

#overlay-backdrop {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.6); /* black shade */
    z-index: 9998; /* below the banner (which is 9999) */
    /* display: none; */
}

#cookie-concent-icon {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    cursor: pointer;
    background: #fff;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
#cookie-popup {
    position: fixed;
    bottom: 80px;
    left: 20px;
    background: #fff;
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 8px;
    display: none;
    z-index: 10000;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
#cookie-popup button {
    background-color: #dc3545;
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
}