/* Shared footer styles moved out of templates/_footer.html */
.__common-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: white;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: space-around;
  padding: 12px 0;
  z-index: 100
}

.__common-footer .nav-item {
  text-align: center;
  color: #999;
  font-size: 11px;
  flex: 1;
  cursor: pointer
}

.__common-footer .nav-item.active {
  color: #5188b4;
  font-weight: 600
}

.__common-footer .nav-item i {
  font-size: 22px;
  margin-bottom: 3px;
  display: block
}

/* Small responsive tweak */
@media (max-width: 600px) {
  .__common-footer {
    padding: 10px 0
  }

  .__common-footer .nav-item i {
    font-size: 20px
  }
}