div#footer {
  width: 100%;
  background: none;
  margin: 0;
  margin-top: auto;
}

div#footer .footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--brand-primary);
  padding: 25px 0;
}

div#footer .footer-bottom p {
  color: var(--white);
  margin-bottom: 0;
}

div#footer .footer-bottom a,
div#footer .footer-bottom li {
  color: var(--white);
  transition: color .2s;
  text-decoration: none;
}

div#footer .footer-bottom a:hover {
  color: var(--blue);
}

div#footer .current-user {
  display: flex;
  padding: 10px 0;
  justify-content: center;
  align-items: center;
  background-color: var(--brand-secondary);
  color: var(--white);
}

div#footer .current-user p {
  margin-bottom: 0;
  font-size: 12px;
  vertical-align: middle;
}

div#footer .current-user p::before {
  content: url("/assets/icon-pack/info-circle-9593b98f.svg");
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 10px;
}
