:root {
  --vh: 100vh;
}

@media (max-width: 768px) {
  :root {
    --vh: 100vh;
  }
}

.mobile-bottom-navbr {
  display: none;
}

.mobile-bottom-navbr nav {
  display: flex;
  justify-content: space-around;
  background-color: #fff;
  padding: 12px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw !important;
  z-index: 9 !important;
  border-top: 1px solid #8D8D8D !important;
}

.mobile-bottom-navbr .nav-item {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--primary-clr);
  padding: 12px 16px;
  border-radius: 50px;
  background-color: rgba(255, 255, 255, 0);
}

.mobile-bottom-navbr .nav-item span {
  width: 0;
  overflow: hidden;
}

.mobile-bottom-navbr .nav-item:focus,
.mobile-bottom-navbr .nav-item.active {
  text-decoration: none;
  color: #fff;
  background-color: var(--primary-clr-hover);
  transition: .2s;
}

.mobile-bottom-navbr .nav-item:focus span,
.mobile-bottom-navbr .nav-item.active span {
  width: 100%;
  margin-left: 8px;
  transition: .2s;
}

/* Focus outline styles */
*:focus {
  outline: none;
  border: none;
}
