.mobile-bottom-menu{
  display:none !important;
}

@media (max-width:1024px) and (orientation:portrait){
  body{
    padding-bottom:72px !important;
  }

  .mobile-bottom-menu{
    position:fixed !important;
    left:0 !important;
    right:0 !important;
    bottom:0 !important;
    z-index:2147483647 !important;

    height:68px !important;
    display:grid !important;
    grid-template-columns:repeat(5,1fr) !important;

    background:rgba(5,17,35,.96) !important;
    border-top:1px solid rgba(77,243,255,.22) !important;
    box-shadow:0 -12px 35px rgba(0,0,0,.45) !important;
    backdrop-filter:blur(18px) !important;
  }

  .mobile-bottom-menu a{
    position:relative;
    height:68px !important;

    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    justify-content:center !important;
    gap:5px !important;

    color:#9fb0c7 !important;
    text-decoration:none !important;

    font-size:.56rem !important;
    font-weight:900 !important;
    line-height:1 !important;
    letter-spacing:.02em !important;
    text-transform:uppercase !important;
  }

  .mobile-bottom-menu a i{
    font-size:1.18rem !important;
    color:#9fb0c7 !important;
    line-height:1 !important;
  }

  .mobile-bottom-menu a span{
    display:block !important;
    font-size:.56rem !important;
    line-height:1 !important;
  }

  .mobile-bottom-menu a.active,
  .mobile-bottom-menu a.active i,
  .mobile-bottom-menu a:hover,
  .mobile-bottom-menu a:hover i{
    color:#4df3ff !important;
  }

  .mobile-bottom-menu a.active::before{
    content:"";
    position:absolute;
    top:0;
    left:50%;
    transform:translateX(-50%);

    width:34px;
    height:3px;
    border-radius:0 0 999px 999px;
    background:linear-gradient(90deg,#4df3ff,#22a6ff);
    box-shadow:0 0 14px rgba(77,243,255,.75);
  }
}