.application-navbar{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 55px;
  background: #f7f7f7;
  backdrop-filter: blur(2px);
  border-bottom: 1px solid #ddd;
  align-items: center;
  z-index: 999;
  display: flex;

  .navbar-title{
    font-size: 14px;
    font-weight: 500;
    color: #444;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-left: 16px;
    flex: 1;
    transition: 0.2s;
    text-align: center;
  }

  .navbar-buttons{
    .btn{
      width: 45px;
      height: 55px;
      color: #444;
      font-size: 18px;
    }

    & + .navbar-title{
      text-align: right;
    }
  }


  & ~ .application-loader{
    top: 55px;
  }
}

body.app-loading{
  .application-navbar{
    .navbar-title{
      color: transparent;
      background: #eee;
      border-radius: 10px;
      max-width: 50%;
    }
  }
}