/* Assistant + clean visuals for the consent unit with updated font and sizes - Code by LEMON SHLIF */
.custom-privacy-consent,
.custom-privacy-consent * {
  font-family: "narkiss-hadash-extended", sans-serif !important;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

.custom-privacy-consent {
  margin: 10px 0 6px;
}

/* Force label to be on a separate line - Code by LEMON SHLIF */
.custom-privacy-consent .custom-privacy-label {
  display: block;
  margin-top: 10px;
}

/* Checkbox style - Code by LEMON SHLIF */
.custom-privacy-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  display: inline-block;
  vertical-align: top;
  margin-right: 8px;
}

/* Text link style - Code by LEMON SHLIF */
.custom-privacy-consent a {
  text-decoration: underline;
}

/* Error message - Code by LEMON SHLIF */
.custom-privacy-error {
  margin-top: 6px;
  color: #020036;
  font-size: 13px;
}

/* Highlight on error (accessibility) - Code by LEMON SHLIF */
.custom-privacy-consent.has-error .custom-privacy-label {
  outline: 2px solid #020036;
  outline-offset: 4px;
  border-radius: 6px;
}

/* Mobile tweaks with font size 10px - Code by LEMON SHLIF */
@media (max-width: 768px) {
  .custom-privacy-consent,
  .custom-privacy-consent * {
    font-size: 10px;
    line-height: 16px;
  }
}
