/*<label class="container-checkbox">Marcar Todos
    <input type="checkbox" checked>
    <span></span>
</label>   */                                        
/* The container */


.container-checkbox {
  display: block;
  position: relative;
  padding-left: 0px;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width:40px !important;
  min-width: 30px !important;
  height: 28px;
}
/* Hide the browser's default checkbox */
.container-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
/* Create a custom checkbox */
.container-checkbox span {
  position: absolute;
  top: 0;
  left: 0;
  height: 28px !important;
  width:  28px !important;

  display: block;
  
  border: solid black;
  border-width: 1px 1px 1px 1px;
  content: "\274c";  
}
/* On mouse-over, add a grey background color */
.container-checkbox:hover input ~ span {
  background-color: #bbb;
}
/* When the checkbox is checked, add a blue background */
.container-checkbox input:checked ~ span {
  background-color: white;
}
/* Create the checkmark/indicator (hidden when not checked) */
.container-checkbox span:after {
  content: "";
  position: absolute;
  display: none;

}

/* Show the checkmark when checked */
.container-checkbox input:checked ~ span:after {
  display: block;
}

/* Style the checkmark/indicator */
.container-checkbox span:after {
  left: 9px;
  top: 5px;
  width: 6px;
  height: 15px;
  border: solid black;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}