:root {
  --laregione-factcheck-neutral: #777777;
  --laregione-factcheck-certified: #2e7d32;
  --laregione-factcheck-verified: #1565c0;
  --laregione-factcheck-unverified: #FFECB3;
}

.factcheck-icon {
  width: 30px;
  height: 30px;
  display: inline-block;
  vertical-align: middle;
  color: var(--laregione-factcheck-neutral);
}

.factcheck-icon-xl,
.factcheck-icon-big,
.factcheck-icon-m,
.factcheck-icon-l {
  width: 96px;
  height: 96px;
}

.factcheck-icon-h1 {
  width: 50px;
  height: 50px;
}

.factcheck-icon-sm,
.factcheck-icon-small,
.factcheck-icon-xm {
  width: 15px;
  height: 15px;
}

.factcheck-icon-verified {
  color: var(--laregione-factcheck-verified);
}

.factcheck-icon-certified {
  color: var(--laregione-factcheck-certified);
}

.factcheck-icon-unverified {
  color: var(--laregione-factcheck-unverified);
}

.factcheck-trigger {
  display: inline-block;
  cursor: pointer;
  line-height: 0;
}

.factcheck-card {
  position: fixed;
  z-index: 10000000;
  min-width: 200px;
  max-width: 280px;
  padding: 10px 16px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-top: 3px solid var(--laregione-factcheck-neutral);
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.13);
}

.factcheck-card[data-badge="certified"] {
  border-top-color: var(--laregione-factcheck-certified);
}

.factcheck-card[data-badge="verified"] {
  border-top-color: var(--laregione-factcheck-verified);
}

.factcheck-card[data-badge="unverified"] {
  border-top-color: var(--laregione-factcheck-unverified);
}

.factcheck-card-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: #333;
  line-height: 1.4;
}

.factcheck-card-link {
  display: block;
  margin-top: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #242424;
  text-decoration: none;
}

.factcheck-card-link:hover {
  text-decoration: underline;
}