/* stylelint-disable-next-line selector-max-universal -- отключаем иконку */
.input ~ * {
  display: none;
}

/* stylelint-disable-next-line selector-max-universal -- включаем иконку если checked */
.input:checked ~ * {
  display: block;
}
