:host {
  display: block;
  height: 40px;
  left: 0 !important;
  right: 0 !important;
  position: static !important;
  top: 0 !important;
}
.ctrl-hdr {
  color: rgba(128, 128, 128, 0.9);
  font-family: "Roboto-regular";
  font-size: 12px;
  padding: 1px 0px;
  width: 175px;
}
.ctrl-cnt {
  align-items: center;
  color: #63666A;
  display: flex;
  font-size: 9px;
  position: relative;
  top: -1px;
  width: 175px;
}

input[type=checkbox] {
  cursor: pointer;
  visibility: hidden;
}

input[type=checkbox]:after {
  content: " ";
  background-color: #fff;
  display: inline-block;
  padding-bottom: 5px;
  color:  rgba(128, 128, 128, 0.9);
  width: 10px;
  height: 8px;
  visibility: visible;
  border: 1px solid  rgba(128, 128, 128, 0.9);
  padding-left: 3px;
  border-radius: 4px;
}

input[type=checkbox]:checked:after {
  content: "\2714";
  font-size: 9px;
  font-weight: bold;
}

.disabled * {
  color: rgba(128, 128, 128, 0.9) !important;
}

.disabled input {
  cursor: not-allowed !important;
}