/* ===============================================================
			[ * Mobile bottom nav *  ] 
      ================================================================
      */

      @media (min-width: 576px){
        .aiz-mobile-bottom-nav{
          width: 463px !important;
          height: 72px;
          border-radius: 36px;
        }

      }

      .aiz-mobile-side-nav .aiz-user-sidenav-wrap {
        display: block;
        max-width: initial;
        border: 0;
      }

      .aiz-top-menu-sidebar{
        opacity: 0;
        visibility: hidden;
      }
      .aiz-top-menu-sidebar.active{
        opacity: 1;
        visibility: visible;
      }
      .aiz-top-menu-sidebar .collapse-sidebar{
        overflow-y: auto;
        transform: translateX(-100%);
        left: 0;
        right: auto;
        transition: all 0.5s;
      }
      .aiz-top-menu-sidebar.active .collapse-sidebar{
        transform: translate(0%, 0%);
      }
      .aiz-top-menu-sidebar ul li{
        list-style-type: none;
      }

      .svg-active svg *{
        fill: var(--color-blue4) !important;
      }

      /*badges*/
      .badge {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        height: 18px;
        width: 18px;
        font-size: 0.65rem;
        font-weight: 500;
        line-height: unset;
      }
      .badge-circle {
        border-radius: 50%;
      }
      .badge-sm {
        height: 14px;
        width: 14px;
        font-size: 0.55rem;
      }
      .badge-md {
        height: 24px;
        width: 24px;
        font-size: 0.75rem;
      }
      .badge-lg {
        height: 28px;
        width: 28px;
        font-size: 0.85rem;
      }
      .badge.badge-dot {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        height: 8px;
        width: 8px;
      }
      .badge-dot.badge-md {
        height: 10px;
        width: 10px;
      }
      .badge-dot.badge-lg {
        height: 12px;
        width: 12px;
      }
      .badge-inline {
        width: auto;
      }
      .badge-status {
        position: absolute;
        top: calc(15% - 4px);
        right: calc(15% - 4px);
        font-size: 1px;
      }
      .badge-status:before {
        position: absolute;
        width: calc(100% + 6px);
        height: calc(100% + 6px);
        border: 3px solid #fff;
        top: -3px;
        left: -3px;
        content: "";
        border-radius: 50%;
      }
      .badge-md.badge-status {
        top: calc(15% - 5px);
        right: calc(15% - 5px);
      }
      .badge-lg.badge-status {
        top: calc(15% - 6px);
        right: calc(15% - 6px);
      }

      .badge-primary {
        background-color: var(--color-blue4);
      }