/* Left Navigation */
.dcsLeftNav {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height:100vh;
  width: 90px;
  padding: 10px 0px;
  border-right: 1px solid #ececec;
  position: absolute;
  background: white;
}

#dcsNavControl {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  color:#294695;
  height: 60px;
  padding: 0px 25px;
}

.dcsNavControlIcon {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 30px;
  width: 30px;
}
.dcsNavControlIcon img{
  height: 20px;
  width: 20px;
}

.dcsNavControlIcon:hover {
  background-color: #F2F3F6;
  border-radius: 50%;
}
.dcsLeftNav hr {
  height: 1px;
  color: #F2F3F6;
  margin: 10px 20px;
}
nav {
  margin-top: 20px ;
}
.dcsNavHeader {
  display: flex;
  flex-direction: column;
}
.dcsNavHeaderItem {
  line-height: 25px;
}
.dcsNavHeader h1 {
  padding: 0px 0px 0px 40px;
  margin: 0px;
  font-size: 16px;
}
.dcsNavLogo {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.dcsNavLogo > img {
  width: 80px;
  height: 80px;
  
}
.dcsNavUser {
  padding: 0px 0px 25px 40px;
  margin: 0px;
}
.dcsNavItem {
  display: flex;
  flex-direction: row;
  padding: 10px 0px 10px 40px;
  justify-content: space-between;
  color: black;
  text-decoration: none;
}
.dcsNavItem:hover {
  display: flex;
  flex-direction: row;
  padding: 10px 0px 10px 40px;
  background: #d4daea;
  color:#294695;
}
.dcsNavItem.active{
  display: flex;
  flex-direction: row;
  padding: 10px 0px 10px 35px;
  border-left: 5px solid #294695;
  background: #d4daea;
}

.dcsNavItem.active img{
  filter: invert(24%) sepia(27%) saturate(5165%) hue-rotate(214deg) brightness(85%) contrast(84%);
}

.dcsNavItem:hover img{
  filter: invert(24%) sepia(27%) saturate(5165%) hue-rotate(214deg) brightness(85%) contrast(84%);
}

.dcsNavIcon {
  display: flex;
  align-items: center;
}
.dcsNavIcon > img {
  height:25px;
  width: 25px;
}
.dcsNavLabel {
  align-items: center;
}

.dcsNavFooter {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height:120px;
}

.dcsNavFooter form {
  padding: 0px;
  margin: 0px;
}

.dcsNavBtn {
  display: flex;
  flex-direction: row;
  padding: 10px 0px 10px 40px;
  justify-content: space-between;
  color: black;
  text-decoration: none;
  border: none;
  align-items: center;
  font-size: 16px;
  margin: 0px;
  background-color: white;
  width: 100%;
}

.dcsNavBtn .dcsNavLabel {
  padding-left: 20px;
}

.dcsNavControlIcon.collapsed img {
  transform: rotate(180deg);
  filter: invert(65%) sepia(4%) saturate(14%) hue-rotate(314deg) brightness(97%) contrast(87%);
} 

.dcsNavControlIcon.expanded img {
  transform: rotate(0deg);
} 

.dcsLeftNav.expanded {
  width: 290px;
}

.dcsLeftNav.collapsed {
  width: 90px;
}

.dcsLeftNav.expanded hr {
  width: 250px;
}

.dcsLeftNav.collapsed hr {
  width: 50px;
}

.dcsNavHeaderItem.expanded {
  width: 100%;
}

.dcsNavHeaderItem.collapsed {
  width: 0%;
  overflow: hidden;
  height: 25px;
}

.dcsNavLabel.expanded {
  width: 200px;
  display: flex;
}

.dcsNavLabel.collapsed {
  width: 0px;
  display: none;
}

.dcsMainContent.expanded {
  margin-left: 300px;
}

.dcsMainContent.collapsed {
  margin-left: 80px;
}
