.custom-checkbox-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
}
.custom-checkbox-wrap .summary__col-ccb.desc {
    font-size: 20px;    line-height: 26px;
}
.custom-checkbox-wrap .summary__col-ccb.title {
    color: #232323;
    font-size: 20px;
    line-height: 18px;
    text-transform: uppercase;
}
.custom-checkbox-wrap label {
    cursor: pointer;
}
/* Лучше не display:none — так чекбокс остаётся фокусируемым с клавиатуры */
.custom-checkbox-wrap .custom-checkbox input {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.custom-checkbox-wrap input {
    font-size: 16px;
    font-family: Arial, sans-serif;
}
.custom-checkbox-wrap .custom-checkbox i {
    display: inline-block;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    border: 1px solid #232323;
    border-radius: 2px;
}
.custom-checkbox-wrap .custom-checkbox input:checked + i {
    background-image: url(/local/components/oodji/consent/templates/giftcard/images/check.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px 12px; /* важный момент */
}
.custom-checkbox-wrap .custom-checkbox i.error {
    border-color: #E43218;
}
.custom-checkbox-wrap a {
    text-decoration: underline;
}
