.sidebar {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-flow: column;
  height: 100%;
  width: 25vw;
  box-shadow: 1px 0 5px rgba(10, 10, 10, 0.26);
  overflow-y: scroll;
  overflow-x: hidden; }
  .sidebar-header {
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 6vh;
    width: 25vw;
    padding: 0.5em;
    font-size: 1.25em;
    z-index: 10; }
  .sidebar ul {
    position: relative;
    top: 7vh;
    width: 100%;
    max-height: calc(100% - $header-height);
    margin: 0;
    padding: 0;
    transition: all ease 250ms; }
  .sidebar .card {
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    position: relative;
    width: 100%;
    padding: 0.75em;
    font-size: 1em;
    list-style: none;
    background-color: #fff;
    cursor: pointer;
    z-index: 4;
    transition: all ease 250ms; }
    .sidebar .card:hover {
      background-color: #EEEEEE; }
    .sidebar .card-avatar {
      border-radius: 50%;
      width: 5vh;
      height: 5vh;
      overflow: hidden;
      margin: 0;
      padding: 0;
      border: 1px solid rgba(200, 200, 200, 0.5); }
      .sidebar .card-avatar img {
        width: 100%;
        height: auto; }
    .sidebar .card-infos {
      display: flex;
      flex-flow: column;
      justify-content: center;
      width: calc(100% - 6vh); }
      .sidebar .card-infos .info-state {
        color: #9E9E9E;
        font-size: 0.9em;
        padding-left: 0.25em; }
        .sidebar .card-infos .info-state::before {
          position: relative;
          width: 100%;
          top: -1.25px;
          padding: 0 0.5em 0 0.25em;
          font-size: 0.55em;
          font-family: "FontAwesome";
          content: "\f111";
          color: green; }
  .sidebar .user {
    height: auto; }
  .sidebar .has-sub {
    box-shadow: 0 1px 1px rgba(10, 10, 10, 0.26); }
  .sidebar .sub-card {
    display: none;
    position: relative;
    padding: 0.75em;
    width: 100%;
    font-size: 0.9em;
    color: #616161;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
    z-index: 3;
    overflow: hidden;
    background-color: #F5F5F5;
    box-shadow: inset 0 -2px 4px -2px rgba(10, 10, 10, 0.26);
    transition: all ease 250ms; }
  .sidebar .sub-label {
    font-weight: 500; }

/*# sourceMappingURL=sidebar.css.map */
