Подскажите, почему после нажатия кнопка не меняет цвет и не подсвечивается?
<div class="form_radio_btn">
<label for="radio-1">Radio button 1
<input id="radio-1" type="radio" name="radio" value="1" checked>
</label>
</div>
.form_radio_btn {
display: inline-block;
margin-right: 10px;
}
.form_radio_btn input[type=radio] {
display: none;
}
.form_radio_btn label {
display: inline-block;
cursor: pointer;
padding: 0px 15px;
line-height: 34px;
border: 1px solid #999;
border-radius: 6px;
user-select: none;
}
/* Checked */
.form_radio_btn input[type=radio]:checked + label {
background: #ffe0a6;
}
/* Hover */
.form_radio_btn label:hover {
color: #666;
}