.navbarParent {
  box-sizing: border-box;
}
.navbar {
  background-color: #0a5b99;
  justify-content: space-between;
  display: flex;
  width: 100%;
}
.logo {
  width: 68px;
  height: 30px;
  object-fit: fill;
}
.appsIcon {
  height: 30px;
  padding-right: 16px;
  color: #ffffff;
}
.navMenuBtn {
  padding-left: 32px;
}
.icon {
  color: #ffffff;
  font-size: 36px;
  cursor: pointer;
  padding-right: 16px;
}
.avatar {
  height: 30px;
  width: 30px;
  background-color: #d7d7d7;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
  font-weight: 500;
  color: #333333;
  text-align: center;
  border-radius: 50px;
  cursor: pointer;
  align-items: center;
  display: flex;
  justify-content: center;
  font-size: 16px;
  text-transform: capitalize;
}
.profile {
  object-fit: cover;
  height: inherit;
}
.TabButton {
  width: 125px;
  height: 48px;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  text-align: center;
  line-height: normal;
  text-transform: capitalize;
  font-size: 16px;
  cursor: pointer;
  border: none;
}
.tabActiveEffects {
  background-color: #0a5b99;
}
.tabActiveEffects:hover {
  background-color:  #084778  ;
}
.tabActiveEffects:disabled:hover {
  pointer-events: none;
}
.tabEffects {
  background-color: #ffffff;
}
.tabEffects:hover {
  background-color: rgba(10, 91, 153, 0.08);
}
.tabIcon {
  font-size: 16px;
}
.tabItem {
  display: flex;
  justify-content: center;
  align-items: center;
}
.tabContainer {
  display: flex;
  align-items: center;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  width: fit-content;
  overflow: hidden;
}
.tabIndicator {
  background-color: #0a5b99;
  height: 2px;
}
.drawer {
    position: fixed;
    z-index: 100;
    background-color: #ffffff;
    overflow-x: hidden;
}
.drawerPaper{
    width: 100%;
    z-index: 6;
    min-height: 100%;
    position: fixed;
    background-color:black;
    opacity: 0.57451;
    top: 0;
}
.menuChildContainer{
    min-width: 150px;
    border-radius: 5px;
    border: 1px solid #f2f2f2;
    background-color: #ffffff;
    box-sizing: border-box;
    box-shadow: 2px 2px 8px 0px rgba(0, 0, 0, 0.19);
    z-index: 10;
    position: fixed;
}
.menuModalContainer{
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color:white;
    opacity: 0.07;
    position: fixed;
    top: 0;
    left: 0;
}
.menuParentContainer{
    width: 0px;
    box-sizing: border-box;
}
.menuContainerNoEffect{
    display: none;
    box-sizing: border-box;
}
.menuItem{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    padding: 5px;
    height: 40px;
    font-size: 14px;
}
.menuItem:hover{
    background-color: rgba(10, 91, 153, 0.08);
}
.menuIcon{
    display: flex;
    justify-content: center;
    align-items: center;
}
.menuItemChild{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-family: "Roboto", sans-serif;
}
body{
    margin: 0;
}
