Есть такой код:
<input type="checkbox" class="real-checkbox" id="personal">
<span class="visible-checkbox"></span>
<label for="personal" class="label">I agree to the processing of personal data</label>
.label {
font-family: 'Nunito Sans';
font-style: normal;
font-weight: 400;
font-size: 14px;
line-height: 163.68%;
/* or 23px */
color: #181818;
}
.real-checkbox {
display: none;
}
.visible-checkbox {
display: inline-block;
position: relative;
margin-right: 9px;
width: 18px;
height: 18px;
background: #E3B873;
border-radius: 1px;
}
.visible-checkbox::before {
content: '';
width: 10px;
height: 10px;
background-image: url(../images/icons/check.svg);
background-size: contain;
background-repeat: no-repeat;
position: absolute;
left: 51%;
top: 55%;
transform: translate(-50%, -50%);
opacity: 0;
}
.real-checkbox:checked+.visible-checkbox::before {
opacity: 1;
}
Вопрос в задан в заголовке, opacity меняется только при клике на текст, как добиться "выбора" чекбокса при клике на span visible-checkbox?