/**
* 2007-2025 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-2025 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.
*/
#cookie-consent-banner {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}
#cookie-consent-banner.tv-force-display {
    display: flex !important;
}
#cookie-consent-banner .container {
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    width: 85%;
    max-width: 800px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
#cookie-consent-banner.cookie-consent-banner--1 .container{
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translate(-50%, 0);
}
#cookie-consent-banner.cookie-consent-banner--3 .container { /* Assuming '3' is for floating/middle-aligned */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*width: auto;*/
}
#cookie-consent-banner.cookie-consent-banner--2 .container { /* Assuming '2' is for floating/middle-aligned */
    position: absolute;
    top: auto;
    bottom: 30px;
    left: 50%;
    transform: translate(-50%, 0);
}
#cookie-consent-banner .cookie-consent-banner__actions button {
    padding: 7px 15px;
    border: none;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 15px;
    text-transform: capitalize;
    font-weight: 500;
}
#cookie-consent-banner .cookie-consent-banner__actions button i {
    margin-right: 5px;
}
#cookie-consent-banner .cookie-consent-banner__links {
    margin-top: 15px;
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}
#cookie-consent-banner .cookie-consent-banner__actions {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.cookie-consent-banner__message {
    display: block;
    color: #fff;
    margin-right: 0;
    float: none;
    font-size: 13px;
}
.cookie-consent-banner__message p {
    color: #FFF;
    margin-bottom: 0;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: .4px;
    padding-bottom: 0;
    text-align: center;
    margin-top: 0;
    font-weight: 500;
}
.cookie-consent-banner__links a {
    border-bottom: 1px solid #FFFFFF;
    text-decoration: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    margin-inline: 5px;
}
/* Popup Styles */
#cookie-consent-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    color: #444;
    padding: 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 10001;
    max-width: 800px;
    width: 80%;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
    display: none;
}
.cookie-consent-fixed-btn {
    position: fixed;
    z-index: 5000;
    padding: 7px;
    /*transition: transform 0.2s ease 0s !important;*/
    height: 50px;
    width: 50px;
    bottom: 10px;
    cursor: pointer;
    background-color: #444;
    border-radius: 50%;
    display: none;
    justify-content: center;
    align-items: center;
    transition: all .4s ease !important;
    -webkit-transition: all .4s ease !important;
    -moz-transition: all .4s ease !important;
    -ms-transition: all .4s ease !important;
    -o-transition: all .4s ease !important;
}
.cookie-consent-fixed-btn:hover {
    transform: translate(0px, 0px) scale(1.1) !important;
}
.cookie-consent-fixed-btn.cookie-consent-fixed-btn--left {
    left: 10px;
}
.cookie-consent-fixed-btn.cookie-consent-fixed-btn--right {
    right: 10px;
}
.cookie-consent-modal__title svg {
    width: 22px;
    height: 22px;
}
.cookie-consent-modal__title svg path {
    fill: #c57d1e;
}
.cookie-consent-modal__header {
    padding: 10px 16px;
    position: relative;
    overflow: auto;
    border-top: 4px solid #009d32;
    border-bottom: 1px solid #e4e4e4;
    box-shadow: 0 4px 2px -3px rgba(0, 0, 0, .1);
    z-index: 1070;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
/*switch start*/
.tvcookieslaw-switch {
    position: relative;
    width: 60px;
    height: 30px;
    display: inline-block;
}
.tvcookieslaw-switch.switch--disabled{
    opacity: .5;
    pointer-events: none;
}
.tvcookieslaw-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.tvcookieslaw-slider-ball {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 26px;
    height: 26px;
    background-color: white;
    border-radius: 50%;
    transition: transform 0.3s;
    z-index: 1;
}
.tvcookieslaw-label {
    font-size: 12px;
    color: white;
    z-index: 2;
    font-weight: 500;
    width: 30%;
    text-align: center;
    pointer-events: none;
}
.tvcookieslaw-button-container {
    clear: both;
}
.tvcookieslaw-label-no {
    margin-right: auto;
}
.tvcookieslaw-label-yes {
    margin-left: auto;
}
.tvcookieslaw-switch input:checked+.tvcookieslaw-slider {
    background-color: #4caf50 !important;
}
.tvcookieslaw-switch input:checked+.tvcookieslaw-slider .tvcookieslaw-slider-ball {
    transform: translateX(50px);
}
.tvcookieslaw-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #CCC;
    box-shadow: 0 0 1px #CCC;
    -webkit-transition: .4s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 30px;
    padding: 0 10px;
    height: 100%;
    cursor: pointer;
    transition: background-color 0.3s;
}
.tvcookieslaw-slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 4px;
    bottom: 3px;
    border-radius: 50%;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}
.tvcookieslaw-switch.tvcookieslaw-switch-disabled .tvcookieslaw-slider {
    cursor: not-allowed;
}
.tvcookieslaw-slider.tvcookieslaw-slider-checked {
    background-color: #8BC954;
    box-shadow: 0 0 1px #8BC954;
}
.tvcookieslaw-switch .tvcookieslaw-slider {
    background-color: #e4e4e4 !important;
    box-shadow: 0 0 1px #e4e4e4 !important;
}
#tvcookieslaw_modal .tvcookieslaw-slider.tvcookieslaw-slider-checked {
    background-color: #009d32;
}
.tvcookieslaw-switch.tvcookieslaw-switch-disabled .tvcookieslaw-slider {
    opacity: 0.5;
}
.tvcookieslaw-switch input:checked+ .tvcookieslaw-slider:before {
    -webkit-transform: translateX(28px);
    -ms-transform: translateX(28px);
    transform: translateX(28px);
}
/*switch end*/
/* modal design */
.collapsed .cookie-consent-modal__purpose-toggle-icon i.remove-icon {
    display: none;
}
.cookie-consent-modal__purpose-toggle-icon i.add-icon {
    display: none;
}
.collapsed .cookie-consent-modal__purpose-toggle-icon i.add-icon {
    display: block;
}
#cookie-consent-modal a.cookie-consent-modal__purpose-toggle {
    background: #F5F5F5;
    border-bottom: none;
    padding: 10px 15px;
    border-radius: 5px !important;
    background-color: #F5F5F5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #444;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    text-decoration: none;
}
.cookie-consent-modal__purpose {
    gap: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border: 1px solid #e4e4e4;
    margin-bottom: 16px;
    border-radius: 4px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}
.cookie-consent-modal__purpose-header {
     max-width: calc(75% - 5px); 
}
.cookie-consent-modal__purpose-switch {
     max-width: calc(25% - 5px); 
}
.cookie-consent-modal__purpose-details {
    width: 100%;
}
.cookie-consent-modal__purpose-name:has(+ .cookie-consent-modal__badge){
    margin-right: 3px;
}
.cookie-consent-modal__badge.cookie-consent-modal__badge--mandatory{
    position: relative;
    top: -1px;
    display: inline-block;
    min-width: 10px;
    padding: 3px 7px;
    font-size: 11px;
    font-weight: 500;
    line-height: 12px;
    vertical-align: baseline;
    white-space: nowrap;
    border-radius: 2px;
    color: #FFFFFF !important;
    background: #009d32 !important;
    border-color: #009d32 !important;
}
.cookie-consent-modal__title{
    margin: 0;
    text-transform: capitalize;
    line-height: 22px;
    font-size: 18px;
    color: #444;
    flex-wrap: wrap;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}
.cookie-consent-modal__body {
    padding: 15px;
    overflow: auto;
    max-height: 45vh;
}
.cookie-consent-modal__purpose-name {
    font-weight: 500;
    font-size: 17px;
    padding: 5px 0;
    line-height: 20px;
}
.cookie-consent-modal__purpose-toggle-text {
    margin: 0;
    font-size: 15px;
    line-height: 20px;
    font-weight: 500;
}
.cookie-consent-modal__user-info {
    text-align: end;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.cookie-consent-modal__badge.cookie-consent-modal__badge--date,
.cookie-consent-modal__badge.cookie-consent-modal__badge--download {
    padding: 7px 10px;
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 0;
    text-decoration: none !important;
    outline: 0 !important;
    font-size: 13px;
    line-height: 19px;
    font-weight: 500;
    color: #FFFFFF !important;
    background: #009d32 !important;
    border-color: #009d32 !important;
    border-radius: 4px;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
}
.cookie-consent-modal__badge.cookie-consent-modal__badge--date {
    background: #eee !important;
    color: #444 !important;
}
.cookie-consent-modal__badge.cookie-consent-modal__badge--download i{
    font-size: 20px;
}
.cookie-consent-modal__badge.cookie-consent-modal__badge--date i{
    font-size: 21px;
}
.cookie-consent-modal__footer-right {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.cookie-consent-modal__purpose-description {
    padding: 8px 16px;
    font-size: 14px;
    line-height: 20px;
    background-color: #f5f5f57d;
    margin-top: 4px;
    font-weight: 500;
}
table.table.cookie-consent-modal__cookies-table {
    width: 100%;
    margin-top: 10px;
    max-width: 100%;
    background-color: transparent;
    border-collapse: collapse;
    border-spacing: 0;
}
.cookie-consent-modal__footer {
    display: flex;
    border: 0px;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -4px 2px -3px rgba(0, 0, 0, .1);
    border-top: 1px solid #E4E3E3;
    padding: 16px;
    gap: 5px;
}
button.cookie-consent-modal__btn {
    border-radius: 4px;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    text-transform: none;
    color: #FFF;
    font-size: 15px;
    display: inline-block;
    padding: 7px 15px;
    margin-bottom: 0;
    font-weight: 500;
    line-height: 20px;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid transparent;
    white-space: nowrap;
    user-select: none;
    outline: 0;
    -webkit-box-shadow: inset 0 3px 5px rgb(0 0 0 / 13%);
    box-shadow: inset 0 3px 5px rgb(0 0 0 / 13%);
}
.cookie-consent-modal__badge.cookie-consent-modal__badge--download:hover,
#cookie-consent-modal .btn:hover{
    opacity: .8;
}
button.btn.btn-primary.cookie-consent-modal__btn {
    background-color: #009d32;
}
button.btn.btn-secondary.cookie-consent-modal__btn.cookie-consent-modal__btn--reject-all {
    color: #FFFFFF !important;
    background: #ff2f17 !important;
    border-color: #ff2f17 !important;
}
button#cookie-consent-cancel {
    background: #a3a2a2ed;
    color: #fff;
    border-radius: 3px;
}
/* end modal design*/
/* modal table design */
.table.cookie-consent-modal__cookies-table>thead>tr>th {
    vertical-align: middle;
    border-bottom: 1px solid #D6D4D4;
    font-weight: 500;
    background: #F5F5F5;
    border-bottom-width: 2px;
}
.table.cookie-consent-modal__cookies-table thead>tr>th, 
.table.cookie-consent-modal__cookies-table thead>tr>td, 
.table.cookie-consent-modal__cookies-table tbody>tr>th, 
.table.cookie-consent-modal__cookies-table tbody>tr>td, 
.table.cookie-consent-modal__cookies-table tfoot>tr>th, 
.table.cookie-consent-modal__cookies-table tfoot>tr>td{
    vertical-align: middle;
    border-bottom: 1px solid #D6D4D4;
}
.table.cookie-consent-modal__cookies-table thead>tr>th,
.table.cookie-consent-modal__cookies-table thead>tr>td,
.table.cookie-consent-modal__cookies-table tbody>tr>th,
.table.cookie-consent-modal__cookies-table tbody>tr>td,
.table.cookie-consent-modal__cookies-table tfoot>tr>th,
.table.cookie-consent-modal__cookies-table tfoot>tr>td {
    vertical-align: middle;
    border-top: 1px solid #D6D4D4;
    padding: 8px 16px;
    font-size: 13px;
    line-height: 20px;
    font-weight: 500;
    text-align: start;
}
.table.cookie-consent-modal__cookies-table thead:first-child tr:first-child th,
.table.cookie-consent-modal__cookies-table thead:first-child tr:first-child td {
    border-top: 0;
}
.table.cookie-consent-modal__cookies-table tbody>tr>td a{
    text-decoration: underline !important;
    color:#4c4ca4 !important;
}
/* end modal table design */
.cookie-consent-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6); /* semi-transparent black */
    z-index: 9999; /* make sure it’s on top */
}
button.cookie-consent-banner__close-btn {
    position: absolute;
    left: auto;
    right: -15px;
    top: -20px;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    cursor: pointer;
    border: 2px solid #000000e6;
}
/*account page cookies box dsign */
.page-my-account #content .links a img{
    display: block;
    width: auto;
    margin: auto;
    padding-top: 0.4rem;
    padding-bottom: 1rem;
}
@media (max-width: 767px){
    .cookie-consent-modal__purpose-description{
        font-size: 13px;
    }
    #cookie-consent-banner .cookie-consent-banner__actions{
        margin-top: 25px;
    }
    #cookie-consent-banner .cookie-consent-banner__actions button{
        padding: 5px 10px;
        font-size: 13px;
    }
    .cookie-consent-banner__links a{
        font-size: 13px;
    }
    .cookie-consent-banner__message p{
        font-size: 13px;
        font-weight: 400;
    }
    button.cookie-consent-modal__btn{
        font-size: 13px;
        padding: 5px 13px;
    }
    .cookie-consent-modal__badge.cookie-consent-modal__badge--date, .cookie-consent-modal__badge.cookie-consent-modal__badge--download{
        font-size: 12px;
    }
    .cookie-consent-modal__badge.cookie-consent-modal__badge--date i{
        font-size: 17px;
    }
    .cookie-consent-modal__badge.cookie-consent-modal__badge--download i{
        font-size: 18px;
    }
}
@media (max-width: 575px){
    .cookie-consent-modal__footer{
        flex-wrap: wrap;
        justify-content: center;
    }
    button.cookie-consent-modal__btn{
        width: 100%;
    }
    .cookie-consent-modal__title {
        font-size: 16px;
    }
    .cookie-consent-modal__title svg {
        width: 20px;
        height: 20px;
        margin-top: -2px;
    }
    .cookie-consent-modal__purpose-name {
        font-size: 14px;
        padding-top: 0;
    }
    .cookie-consent-modal__purpose-toggle-text {
        font-size: 13px;
    }
    .tvcookieslaw-switch {
        width: 48px;
        height: 24px;
    }
    .tvcookieslaw-slider:before{
        height: 18px;
        width: 18px;
    }
    .tvcookieslaw-switch input:checked+ .tvcookieslaw-slider:before{
        -webkit-transform: translateX(22px); 
        -ms-transform: translateX(22px);
        transform: translateX(22px);
    }
    #cookie-consent-modal{
        width: calc(100% - 30px);
    }
    .cookie-consent-modal__footer-left:has(.cookie-consent-modal__btn--accept-all){
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
    }
    .cookie-consent-modal__footer-right,
    .cookie-consent-modal__footer-left:has(.cookie-consent-modal__btn--accept-all){
        flex-direction: column;
    }
}