


/*********** Dashboard Styling ***************/
#dashboardLogo {
      display: block;
      position: absolute;
      z-index: 31;
      top: 25px;
      left: 25px;
      width: 60px;
      height: 60px;
      background: no-repeat center url("../img/svg/HOME.svg");
      background-size: contain;
    }
#dashboardLogo:hover {
    cursor: pointer;
}
#logOff {
      display: block;
      position: absolute;
      z-index: 31;
      top: 25px;
      left: 25px;
      width: 60px;
      height: 60px;
      background: no-repeat center url("../img/svg/POWER_BIG.svg");
      background-size: contain;
    }
#logOff:hover {
    cursor: pointer;
}


#dashboard {
    display: block;
    position: absolute;
    width: 400px;
    top: 0px;
    left: -400px;
    height: 100vh;
    z-index: 20;
}

#dashboard > #dbback {
    display: block;
    position: absolute;
    z-index: 21;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100vh;
    opacity: 0.9;
    background-color: #F5F5F5;
}


#dashboard > #content {
    display: block;
    position: relative;
    max-height: 100vh;
    z-index: 22;
    padding: 0px 25px;

  }


  #dashboard > #content > #logo {
    display: none;
    position: relative;
    z-index: 23;
    margin-top: 25px;
    width: 60px;
    height: 60px;
    float:right;
    background: no-repeat center url("../img/svg/HOME.svg");
    background-size: contain;
  }

 #dashboard >  #content > #logo:hover {
    opacity: 0.8;
    cursor: pointer;
  }


#dashboard > #content> #dTitle {
    width: 200px;
    font-size: 2.2rem;   /* 42px; */
    margin-top: 25px;
    float: left;
    display: inline;
    padding-bottom: 20px;
}


#dashboard > #content > #dContent {
  clear: both;
  width: 100%;

}
#dashboard > #content > #dContent > section  {
  border-top: 1px dashed #000;
  margin: 5px 0px;
}
#dashboard > #content > #dContent > section:first-child {
  border-top: 0px;

}

#dashboard > #content > #dContent > section > .title {
    font-size: 2.5rem;  /* 48px; */
    margin-top: 22px;
    display: block;
    padding-bottom:20px;
}

#dashboard > #content > #dContent > section > #dbFirmenLogo {
    width: 100%;
    margin: 25px 0px;
    display: block;
    height: 100px;
    background-position: left;
    background-size: contain;
    background-repeat: no-repeat;
}

#dashboard > #content > #dContent > section > .subtitle {
    font-size: 0.9rem;
    padding-top: 20px;
    display: block;
    font-weight: bold;
    padding-bottom:5px;
    text-transform: uppercase;
}

#dashboard > #content > #dContent > section >  .text {
    font-size: 0.9rem;
    display: block;
    padding-bottom:5px;
}
#dashboard > #content > #dContent > section >  .info {
    font-size: 0.5rem;      /* 10px; */
    display: block;
    padding-bottom:5px;
}
#dashboard > #content > #dContent > section >  .link {
    font-size: 0.9rem;
    text-align: right;
    display: block;
    padding-bottom:5px;
}
#dashboard > #content > #dContent > section >  .link:hover {
 cursor: pointer;
 text-decoration: underline;
}



#dashboard > #content > #dContent > section >  .planenItemTitle {
  font-weight: bold;
  margin-top: 10px;
 }

.planenItem {
    font-size: 0.8rem;     /* 14px; */
    display: flex;
    width: 100%;
    margin-bottom:5px;
    align-items: center;
    min-height: 35px;
}
.planenItem:hover {

}
/*
section#planenExports > .planenItem:hover {
  background-color: #5D5D5D;
  color: #FFF;
}
*/
.planenItemToBeDeleted {
  text-indent: 20px;
}

.planenItem > div.loader {
  display: none;
  width: 100%;
  height: 20px;
  background: no-repeat center url("../img/loading.gif");
  background-size: contain;

}

.planenItem > div.editIconPlaceholder {
  display: block;
  position: absolute;
  right: 0px;
  width: 25px;
  height: 25px;
}


.planenItem > div.editIconPlaceholder:hover ~ div.editIcon {
  display: block;
}


.planenItem > div.editIcon {
  display: none;
  position: absolute;
  right: 0px;
  width: 25px;
  height: 25px;


}
.planenItem > div.editIconEdit {
  background: no-repeat center url("../img/svg/PENCIL.svg");
  background-size: contain;
  transform: rotate(-135deg);
}
.planenItem > div.editIconOk {
  background: no-repeat center url("../img/svg/CHECKMARK.svg");
  transform: rotate(0deg);
  display: block;
}
.planenItem:hover  div.editIcon {
  display: block;

}
div.editIcon:hover {
  cursor: pointer;
}
.planenItem > span {
    text-align: left;
}


.planenItem > span:last-child {
    text-align: right;
  }


.planenItem > span.userInfo {
    flex: 3;
    text-align: left;
    font-weight: bold;
}
.planenItem > span.info {
    text-align: left;
       /* 10px; */
}

.planenItem > .hiddenForm  {
  display: none;
  width:100%;
  margin-top: 5px;
}

.planenNewItem > span {
  animation: shake 150ms infinite;
  animation-timing-function: linear;
}

@keyframes shake {
  0% { transform: rotate(5deg); }
  25% { transform: rotate(+1.5deg); }
  50% { transform: rotate(-5deg); }
  100% { transform: rotate(5deg); }
}


.planenNewItem::before  {
  pointer-events: none;
  position: absolute;
  left: 0px;
  width: 18px;
  height: 18px;
  margin: 3px 5px;
  content: "";
  opacity: 0.75;
  color: inherit;
  background: no-repeat center url("../img/svg/BLANK.svg");
  background-size: contain;
}

.planenItem > span > .planenItemFile {
  width: 24px;
  height: 24px;
  margin-left: 3px;
  float:right;
  opacity: 0.8;
  background: no-repeat center url("../img/svg/DOWNLOAD.svg");
  background-size: contain;
}
.planenItem > span > .planenItemFile:hover {
cursor: pointer;
opacity: 1;
}

.planenItem > .planenItemHiddenField  {
  display: none;
  width: 100%;
}
#dashboard > #content > #dContent > section#planenCount {
  cursor: default;
}


#dashboard > #content > #dContent > section >   .tbl {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    position: relative;
    min-height: 150px;
}
#dashboard > #content > #dContent > section >   .tblHidden {
    display: none;

}

#dashboard > #content > #dContent > section >  .tbl > .tblItem {
    font-size: 0.9rem;
    display:block;
    flex-grow: 1;
    padding-bottom:5px;
    text-align: center;
}

.tblItem > .number {
    font-size: 3rem;
    line-height: 3.6rem;
    display: block;
    width: 100%;
    padding-top: 10px;
}
.tblItem > .text {
    font-size: 0.8rem;
    display: block;
    width: 100%;
    padding-bottom: 8px;
    line-height: 1.0rem;
}
.planenItem > .pwButton {
  margin: 0px;
}
