/*FILTRO - al elegir la opcion */
.custom-checkbox input[type="checkbox"]+span {
    border: 0.5px solid #ccc !important;
    transition: all 0.3s ease;
    transform: scale(1);
    border: 0px solid transparent;
    color: inherit;
    box-shadow: none;
  }
  .custom-checkbox input[type="checkbox"]:checked+span {
    border: 0px solid #FFF !important;
    color: #ffffff !important;
    box-shadow: 0px 0px 10px #000 !important;
    transform: scale(1.2);
  }