.footer-area {
  position: fixed;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 250px);
  min-height: 30px;
  padding: 0 20px;
  background: $color-sidebar;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 9999;
  transition: 0.3s ease-in-out;
}

.footer-left,
.footer-right {
  display: flex;
  align-items: center;
  gap: 32px;
}
.sidebar-collapsed {
  .footer-area {
    width: calc(100% - 60px);
  }
}
