.mobile-navigation-bar.wrapper {
    position: sticky;
    bottom: 0;
    left: 0;
    z-index: 99;
    overflow: hidden;
    background: var(--bg-color);
    justify-content: center;
    align-items: center;
    transition: all 300ms ease-in;
    flex-direction: column;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
}

.mobile-navigation-bar .footer-container {
    width: 100%;
    height: 60px;
    background: white;
    border-radius: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0px 0;
    background: #ffffff;
    box-shadow: none;
}


.mobile-navigation-bar .tab {
    transition: all 200ms ease-in;
    padding: 3px 0px;
    position: relative;
    cursor: pointer;
    user-select: none;
    text-align: center;
    width: 80px;
    border-left: 1px solid #ddd;
}
.mobile-navigation-bar .tab.account-btn  {
    border-right: 1px solid #ddd;
}
  .mobile-navigation-bar .tab svg {
    width: 22px;
    height: 22px;
    display: inline-block;
    vertical-align: text-bottom;
}
  .mobile-navigation-bar .tab label {
    font-weight: 600;
    font-family: sans-serif;
    color: #28282B !important;
    padding-left: 0;
    font-size: 12px;
    display: block;
    margin-bottom: 0;
}
.mobile-navigation-bar .tab.active {
    /* background: var(--bgcolor); */
    /* border-radius: 2rem; */
  }
.mobile-navigation-bar .tab.active svg {
    fill: var(--color);
}
.mobile-navigation-bar .tab.active label {
    color: var(--color) !important;
}
.mobile-navigation-bar .tab.active label {
    /* display: inline-block; */
  }
.mobile-navigation-bar .tab span {
    border: 2px solid var(--color);
    position: absolute;
    transform: translate(-50%, -50%);
    pointer-events: none;
    border-radius: 50%;
    width: 5px;
    height: 5px;
    left: 2.25rem;
    top: 50%;
    animation: button-ripple 300ms linear;
  }
  @keyframes button-ripple {
    0% {
      width: 0;
      height: 0;
      opacity: 0.7;
    }
    100% {
      width: 5rem;
      height: 5rem;
      opacity: 0;
    }
  }
