/**
 * Copyright since 2026 Ecom Experts
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Academic Free License version 3.0
 * that is bundled with this package in the file LICENSE.md.
 * It is also available through the world-wide-web at this URL:
 * https://opensource.org/licenses/AFL-3.0
 * 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.
 *
 * @author    Ecom Experts <ecomyseo@gmail.com>
 * @copyright Since 2026 Ecom Experts
 * @license   https://opensource.org/licenses/AFL-3.0 Academic Free License version 3.0
 */

.content-input input,
.content-select select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.content-input input {
    visibility: hidden;
    position: absolute;
    right: 0;
}

.content-input {
    position: relative;
    margin-bottom: 30px;
    padding: 5px 0 5px 60px;
    display: block;
}

.content-input input+i {
    background: #ff0000;
    border: 2px solid rgba(0, 0, 0, 0.2);
    position: absolute;
    left: 0;
    top: 0;
}

.content-input input[type="checkbox"]+i {
    width: 52px;
    height: 30px;
    border-radius: 15px;
}

.content-input input[type="checkbox"]+i:before {
    content: "";
    width: 26px;
    height: 26px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    z-index: 1;
    left: 0px;
    top: 0px;
    -webkit-box-shadow: 3px 0 3px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 3px 0 3px 0 rgba(0, 0, 0, 0.2);
}

.content-input input[type="checkbox"]:checked+i:before {
    left: 22px;
    -webkit-box-shadow: -3px 0 3px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 3px 0 -3px 0 rgba(0, 0, 0, 0.2);
}

.content-input input[type="checkbox"]:checked+i {
    background: #2ac176;
}

.content-input input[type="checkbox"]+i:after {
    position: absolute;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
    top: 8px;
    left: 4px;
    opacity: 0;
    transition: all 0.25s ease 0.25s;
}

.content-input input[type="checkbox"]:checked+i:after {
    opacity: 1;
}

.modal-content {
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 795px) {
    .cookieDataLayer {
        font-size: 9px;
    }

    .modal-content {
        align-items: center;
        justify-content: center;
        margin-right: 1px;
        margin-left: 1px;
    }
}

@media (max-width: 980px) {
    .buttons.d-flex.flex-lg-row {
        flex-direction: column;
        align-items: stretch;
    }
}

a#politicaread {
    padding: 5px;
    background: white;
    color: black;
}