/* ===================== */
/* Footer                */
/* ===================== */

.page-container {
  position: relative;
  min-height: 100vh;
}

.smart-footer {
  position: fixed;
  bottom: -70px;
  left: 0;
  width: 100%;
  background-color: rgb(24, 31, 65);
  color: #ffffff;
  text-align: center;
  padding: 12px;
  font-size: 13px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 999;

  transform: translateY(100%);
  opacity: 0;
}

/* Visible */
.smart-footer.show {
  transform: translateY(0);
  opacity: 1;
}

.smart-footer.stop {
  transform: translateY(-80px);
}#footerStop {
  height: 60px;
}

.smart-footer a {
  color: #eeeeee;
  text-decoration: none;
}

.smart-footer.show {
  bottom: 0;
}