.footer {
  position: fixed;
  bottom: 0;
  left: 260px;
  right: 0;
  background: #ffffff;
  z-index: 1020;
  text-align: center;
  font-size: 0.9rem;
  font-family: var(--font-family-heading);
  transition: left 0.3s ease;
}

body.sidebar-closed .footer {
  left: 50px;
}

@media (max-width: 992px) {
  .footer {
    left: 0 !important;
  }
}