#sidebar {
  min-width: 20vw;
  background: linear-gradient(180deg, #2783AA 0%, #006472 100%);
  color: #fff;
  transition: all 0.6s cubic-bezier(0.945, 0.02, 0.27, 0.665);
  transform-origin: center left;
  /* Set the transformed position of sidebar to center left side. */
  position: relative;
  height: 100%;
}

#sidebar .sidebar-header {
  padding: 4vh 0;
  text-align: center;
  margin: auto;
}

#sidebar ul li {
  width: 100%;
  text-align: left;
  padding: 2vh 3vh;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#sidebar ul li img {
  margin: 0 2vh;
  display: inline-block;
  width: 14px;
}

#sidebar ul li a {
  color: white;
  font-size: 14px;
  vertical-align: middle;
}

#sidebar ul li.active {
  background: #00657B;
}

#sidebar .aspired-logo {
  display: block;
  position: absolute;
  bottom: 3vh;
  left: 50%;
  transform: translateX(-50%);
}

#sidebar.active {
  margin-left: -20vw;
  transform: rotateY(100deg);
  /* Rotate sidebar vertically by 100 degrees. */
}

#sidebarCollapse {
  width: 40px;
  height: 40px;
  background: #f5f5f5;
}

#sidebarCollapse span {
  width: 80%;
  height: 2px;
  margin: 0 auto;
  display: block;
  background: #0C2F37;
  transition: all 0.8s cubic-bezier(0.81, -0.33, 0.345, 1.375);
}

#sidebarCollapse span:first-of-type {
  /* rotate first one */
  transform: rotate(45deg) translate(2px, 2px);
}

#sidebarCollapse span:nth-of-type(2) {
  /* second one is not visible */
  opacity: 0;
}

#sidebarCollapse span:last-of-type {
  /* rotate third one */
  transform: rotate(-45deg) translate(1px, -1px);
}

#sidebarCollapse {
  border: none;
  margin: 0px;
  padding: 0px;
  outline: 0px;
  background-color: transparent;
  margin: 0 2vh;
}

#sidebarCollapse span {
  margin: 2% auto;
}

#sidebarCollapse:focus {
  border: none;
  padding: 0px;
}

#sidebarCollapse.active span {
  /* no rotation */
  transform: none;
  /* all bars are visible */
  opacity: 1;
  margin: 7px auto;
}

@media (max-width: 768px) {

  /* Reversing the behavior of the sidebar: 
       it'll be rotated vertically and off canvas by default, 
       collapsing in on toggle button click with removal of 
       the vertical rotation.   */
  #sidebar {
    margin-left: -100vw;
    position: absolute;
    z-index: 100;
    width: 100vw !important;
  }

  #sidebar li {
    padding: 1.5vh 3vh !important;
  }

  #sidebar li img {
    margin-right: 1vh;
  }

  #sidebar.active {
    transform: none;
    margin-left: 0vw;
  }

  .container #sidebarCollapse {
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 101;
    transform: translateY(-50%);
    margin: 0;
    margin-left: 7px;
  }

  /* Reversing the behavior of the bars: 
       Removing the rotation from the first,
       last bars and reappear the second bar on default state, 
       and giving them a vertical margin */
  #sidebarCollapse span:first-of-type,
  #sidebarCollapse span:nth-of-type(2),
  #sidebarCollapse span:last-of-type {
    transform: none;
    opacity: 1;
    margin: 5px auto;
  }

  /* Removing the vertical margin and make the first and last bars rotate again when the sidebar is open, hiding the second bar */
  #sidebarCollapse.active span {
    margin: 0 auto;
  }

  #sidebarCollapse.active span:first-of-type {
    transform: rotate(45deg) translate(2px, 2px);
  }

  #sidebarCollapse.active span:nth-of-type(2) {
    opacity: 0;
  }

  #sidebarCollapse.active span:last-of-type {
    transform: rotate(-45deg) translate(1px, -1px);
  }

  .breadcrumb {
    max-width: 48vw;
    margin-left: 16vw;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  * {
    font-size: 10px;
  }
}

@media only screen and (min-device-width: 480px) and (max-device-width: 915px) and (min-device-height: 320px) and (max-device-height: 460px) and (orientation: landscape) {

  /* Reversing the behavior of the sidebar: 
       it'll be rotated vertically and off canvas by default, 
       collapsing in on toggle button click with removal of 
       the vertical rotation.   */
  #sidebar {
    margin-left: -80vw;
    position: absolute;
    z-index: 100;
    width: 80vw !important;
  }

  #sidebar li {
    padding: 1.5vh 3vh !important;
  }

  #sidebar li img {
    margin-right: 1vh;
  }

  #sidebar.active {
    transform: none;
    margin-left: 0vw;
  }

  .container #sidebarCollapse {
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 101;
    transform: translateY(-50%);
    margin: 0;
  }

  /* Reversing the behavior of the bars: 
       Removing the rotation from the first,
       last bars and reappear the second bar on default state, 
       and giving them a vertical margin */
  #sidebarCollapse span:first-of-type,
  #sidebarCollapse span:nth-of-type(2),
  #sidebarCollapse span:last-of-type {
    transform: none;
    opacity: 1;
    margin: 5px auto;
  }

  /* Removing the vertical margin and make the first and last bars rotate again when the sidebar is open, hiding the second bar */
  #sidebarCollapse.active span {
    margin: 0 auto;
  }

  #sidebarCollapse.active span:first-of-type {
    transform: rotate(45deg) translate(2px, 2px);
  }

  #sidebarCollapse.active span:nth-of-type(2) {
    opacity: 0;
  }

  #sidebarCollapse.active span:last-of-type {
    transform: rotate(-45deg) translate(1px, -1px);
  }

  .breadcrumb {
    max-width: 50vw;
    margin-left: 12vw;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  * {
    font-size: 10px;
  }
}

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