/* Custom font and text styling for consent unit - Code by LEMON SHLIF */
.custom-privacy-consent,
.custom-privacy-consent * {
  font-family: "narkiss-hadash", sans-serif !important;
  font-weight: 400 !important;
  font-size: 19px !important;
  line-height: 22px !important;
  color: rgb(34, 19, 72) !important;
}

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

.custom-privacy-consent .custom-privacy-label {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.custom-privacy-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

/* Link color and hover state - Code by LEMON SHLIF */
.custom-privacy-consent a {
  text-decoration: underline;
  color: #8c69ff;
}
.custom-privacy-consent a:hover {
  color: #ffffff;
}

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

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

/* Mobile tweaks - Code by LEMON SHLIF */
@media (max-width: 768px) {
  .custom-privacy-consent .custom-privacy-label {
    font-size: 13px;
  }
}
