.inkble-checkbox {
  display: inline-flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  user-select: none;
}
.inkble-checkbox .hidden {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.inkble-checkmark {
  width: 20px;
  height: 20px;
  border: 1px solid;
  position: relative;
  transition: all 0.2s;
}
.inkble-checkmark::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid var(--tick-color);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.2s;
}
.inkble-checkbox input:checked + .inkble-checkmark::after {
  opacity: 1;
}
.inkble-checkbox:hover .inkble-checkmark {
  border-color: var(--active-border, #ffffff);
}
.inkble-checkbox input:disabled + .inkble-checkmark {
  background-color: #f0f0f0;
  border-color: #ccc;
  cursor: not-allowed;
}
.checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px;
  border-radius: 12px;
  margin: 6px 0px;
}

.inkble-checkbox p {
  margin: 0;
}
.inkble-div-heading strong,
.inkble-div-heading p,
.inkble-div-heading span {
  background-color: inherit !important;
  font-family: inherit !important;
  font-size: inherit !important;
  color: inherit !important;
}
.inkble-div-heading strong {
  background-color: inherit !important;
  font-family: inherit !important;
  font-size: inherit !important;
  color: inherit !important;
  font-weight: inherit !important;
}
