/**
 * Ceneo Trusted Reviews Integration
 *
 * Stylesheet for styling the consent checkbox on the checkout page.
 *
 * @author    Michał Grzesik <mgrzesik@refix.pl>
 * @copyright REFIX 2025 - https://refix.pl
 * @license   Commercial
 */

.refix-ctr-checkbox-wrapper {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
}

.refix-ctr-checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    font-size: 12px;
    line-height: 1.4;
}

.refix-ctr-checkbox-input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.refix-ctr-checkbox-custom {
    height: 15px;
    width: 15px;
    background-color: #fff;
    border: 2px solid #222;;
    margin-right: 10px;
    display: inline-block;
    position: relative;
    border-radius: 3px;
    flex-shrink: 0;
}
.refix-ctr-checkbox-label input:checked + .refix-ctr-checkbox-custom::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 0;
    width: 4px;
    height: 9px;
    border: solid #000;
    border-width: 0 1px 1px 0;
    transform: rotate(45deg);
}
