.factsheet-page .factsheet-link {
  color: var(--theme-link-color);
  text-decoration: underline;
}
.factsheet-page .factsheet-link:hover {
  color: var(--theme-link-color);
  text-decoration: none;
}
.factsheet-body {
  margin-top: 2rem;
}
.factsheet-sidebar {
  margin-top: 60px;
}
.factsheet-sidebar a:not(.btn) {
  color: var(--theme-link-color);
  text-decoration: underline;
}
.factsheet-sidebar a:not(.btn):hover {
  color: var(--theme-link-color);
  text-decoration: none;
}
.factsheet-sidebar .card .card-header a {
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.factsheet-sidebar h3 {
  color: var(--theme-body-font-color);
  font-weight: 700;
}
#factsheet-mobile-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1100;
  background: var(--theme-primary-color);
  border-top: 1px solid #e6e6e6;
  box-shadow: 0 -6px 18px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
  color: #fff;
  transition: transform 0.3s ease-in-out;
}
#factsheet-mobile-footer.hidden {
  transform: translateY(100%);
}
#factsheet-mobile-footer button#fact-sheet-close-btn {
  position: absolute;
  right: 0;
  width: 30px;
  height: 30px;
  color: inherit;
  border: 1px solid #fff;
  border-radius: 50%;
  text-align: center;
  padding: 2px 0 0;
  background: transparent;
}
#factsheet-mobile-footer button#fact-sheet-close-btn i {
  font-weight: 900;
}
#factsheet-mobile-footer button#fact-sheet-close-btn:hover {
  background-color: transparent;
}
#factsheet-mobile-footer h5 {
  margin-top: 0.75rem;
  font-size: 12px;
  font-weight: 300;
  color: inherit;
}
#factsheet-mobile-footer .btn {
  display: block;
  width: 100%;
  margin-top: 0.75rem;
  font-size: 12px;
  color: inherit;
  border-color: #fff;
}
#factsheet-mobile-footer .btn:hover {
  color: var(--theme-primary-color);
}
#factsheet-mobile-footer img {
  max-width: 100%;
  height: auto;
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  #factsheet-mobile-footer {
    display: none !important;
  }
}
