.app-container {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  margin: 0;
}

.app-theme-white.app-container {
  background: var(--lite_gray);
}

.app-main {
  flex: 1;
  display: flex;
  z-index: 8;
  position: relative;
}

.fixed-header .app-main {
  padding-top: 65px;
}

.app-sidebar {
  width: 280px;
  display: flex;
  z-index: 11;
  overflow: hidden;
  min-width: 280px;
  position: relative;
  flex: 0 0 280px;
  margin-top: -60px;
  padding-top: 60px;
  transition: all 0.2s;
}

.app-sidebar.sidebar-shadow {
  box-shadow: 7px 0 60px rgb(0 0 0 / 5%);
}

.fixed-sidebar .app-sidebar {
  position: fixed;
  height: 100vh;
}

.closed-sidebar .app-sidebar {
  transition: all 0.3s ease;
  width: 65px;
  min-width: 65px;
  flex: 0 0 65px;
  z-index: 13;
}

.app-theme-white .app-sidebar {
  background: var(--side_blue);
}

.app-main .app-main-outer {
  flex: 1;
  flex-direction: column;
  display: flex;
  z-index: 12;
}

.fixed-sidebar .app-main .app-main-outer {
  z-index: 9;
  padding-left: 280px;
}

.closed-sidebar.fixed-sidebar .app-main-outer {
  padding-left: 65px;
}

.app-menu a {
  display: flex;
  padding: 1.4rem;
  border-bottom: 1px solid #8fbcf9;
}

.logout-icon {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #71a9f6;
}

.app-title {
  font-size: 24px;
  font-weight: 600;
}

.app-title.fw500 {
  font-weight: 500;
}

.notification-white {
  border: 2px solid #fff;
  font-size: 11px;
  top: -12px;
  right: -10px;
  display: flex;
  justify-content: center;
  line-height: initial;
  align-items: center;
  width: 22px;
  height: 22px;
}

.bg-lgrey-2 {
  background-color: #f1f4f5!important;
  color: #FFFFFF!important;
}

.br-btm-2{
  border-bottom: 2px dashed grey;
}