@charset "UTF-8";
/* Original file: layouts/rx-flextagram/components/footer/footer.scss */
.app-footer {
  padding-top: 3rem;
  padding-bottom: 5rem;
  box-sizing: border-box;
  border-top: 1px solid #e9ecef;
  border-top: 1px solid var(--color-gray-200);
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.color_scheme_dark .app-footer {
  border-top: 1px solid #f1f3f5;
  border-top: 1px solid var(--color-gray-100);
}
@media (max-width: 1024px) {
  .app-footer {
    padding-top: 1.25rem;
    padding-bottom: 5rem;
    padding-bottom: calc(5rem + env(safe-area-inset-bottom));
  }
}
.app-footer .app-footer-nav {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.app-footer .app-footer-nav > li {
  display: inline-block;
  margin-right: 0.25rem;
  margin-bottom: 0.25rem;
}
.app-footer .app-footer-nav > li::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 8px;
  margin: 0 0.25rem;
  border-right: 1px solid #ced4da;
  border-right: 1px solid var(--color-gray-400);
}
.app-footer .app-footer-nav > li:last-child::after {
  content: none;
}
.app-footer .app-footer-nav > li > a {
  color: #868e96;
  color: var(--color-gray-600);
  font-size: 0.75rem;
  text-decoration: none;
}
.app-footer .app-footer-copyright {
  color: #adb5bd;
  color: var(--color-gray-500);
  font-size: 0.75rem;
}

