/* Footer */
footer#footer {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  height: auto;
  padding: 10px;
  border-top: 1px solid var(--tblr-border-color);
  color: var(--color-text-link);
  align-content: center;
  flex-wrap: wrap;
  justify-content: flex-start;
}

footer ol,
footer ul {
  list-style: none;
}

#buttonScrollTop {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  display: flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0.375rem;
  cursor: pointer;
  z-index: 90;
  background: var(--color-dark);
  color: var(--color-white);
}

#buttonScrollTop:hover {
  background: var(--color-primary);
  color: var(--color-white);
}