


/*********** Admin Styling ***************/
#mainAdminMenu  {
  width: 100%;
  min-height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
}

#adminHeader {
  width: 100%;
  margin-bottom: 10px;
  display: flex;

}

#adminHeader > div {
  flex: 1;
  font-size: 1.2rem;
  line-height: 3rem;
  margin: 20px;
}

#adminHeader > div:first-child {
  text-align: left;
  flex: 1;
}

#adminHeader > div:last-child {
  text-align: right;

  flex: 3;
}
#adminHeader > div:last-child > a {
  flex:1;
  margin: 0 20px;
  font-size: 0.9rem;
  line-height: 1.8rem;
}
#adminHeader > div:last-child > a:hover {
  flex:1;
  margin: 0 20px;
  font-size: 0.9rem;
  line-height: 1.8rem;
  text-decoration: underline;
  cursor: pointer;
}

.adminContent  {
  display: block;
  margin: 10px 20px;
}


.adminContent > div  {
  display: flex;
}
.adminContent > div > div {
  flex: 1;
}
.adminContent > div > div:last-child  {
  text-align: right;
}
.adminContent > div > div:last-child > button  {
  margin: 0px 0px 0px 25px;
  width: 300px;

}
.adminContent  section {
  margin-bottom: 50px;
}



.adminContentTitle  {
  display: block;
  margin-bottom: 20px;
  font-size: 1.2rem;
  line-height: 2rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.contentTable {

}

.contentTable > div  {
  display: flex;
  align-items: center;
  line-height: 0.9rem;
  font-size: 0.7rem;
  padding: 2px;
  margin: 5px 0px;
  min-height:25px;
}
.contentTable > div:nth-child(odd)  {
  background-color: #EEE;
}
.contentTable > div.deletedButVisible  {
    text-decoration: line-through;
}
.contentTable > div.contentTableTitle  {
font-weight: bold;

}
.dateTitle  {
  font-size: 1.2rem;
  line-height: 1.8rem;
  text-indent: 5px;
}
.contentTable > div.contentTableNew  {
  display: none;
  background-color: #ed614d;
}

.contentTable > div.contentTableNew > div > input {
  background-color: #F28070;
  color: #FFF;

}

.contentTableTitleIcon {
  width: 24px;
  height: 24px;

  float:right;
  opacity: 0.8;
  transform: rotate(0deg);
  background-size: contain;
}

.contentTableTitleIcon:hover {
  cursor: pointer;
  opacity: 1;
}


.conTabIconEdit {
  background: no-repeat center url("../img/svg/PENCIL.svg");
  transform: rotate(-135deg);
}

.conTabIconDelete {
  background: no-repeat center url("../img/svg/TRASHBIN.svg");

}
.conTabIconDownload {
    background: no-repeat center url("../img/svg/DOWNLOAD.svg");
}
.conTabIconOk {
    background: no-repeat center url("../img/svg/CHECKMARK.svg");
    transform: rotate(0deg);
}
.conTabIconCancel {
    background: no-repeat center url("../img/svg/CLOSE.svg");

}

.pwTblInput {
 width: 90%;
  color: #000;
  padding: 2px 2px;
  outline: none;
  border: 0px;
  border-radius: 2px;
  background-color: #DCDCDC;
  transition: all 0.5s ease-in-out;
  font-family: inherit;
}

.contentTable > div > div {


}


.contentTable > div > div:last-child {

  text-align: right;
}

.adminSelectWrapper {
  position: relative;
  display: inline;
}


.adminSelectWrapper::before {
  color: #fff;
  font-size: 0.9rem;    /* 16px; */
  pointer-events: none;
  position: absolute;
  right: 10px;
  top: 0px;
  display: block;
  width: 20px;
  height: 25px;
  content: "";
  background: no-repeat center url("../img/svg/ARROW.svg");
  transform: rotate(90deg);
  background-size: contain;

}


.adminSelectWrapper > select{
  background-color: #333;
}

.adminSelectWrapper > select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #DCDCDC;
  border: none;
  border-radius: 2px;
  /* box-shadow: 2px 2px 5px 1px rgba(0,0,0,.3); */
  color: inherit;
  cursor: pointer;
  line-height: 1.5rem;
  padding: 4px 0px;
  outline: none;
  text-indent: 10px;
  width: 120px;
}

.adminSelectWrapper > select option {
  color: inherit;
}

.adminSelectWrapper > select::-ms-expand {
  display: none;
}

.adminSelectWrapper > select:focus::-ms-value {
  background-color: transparent;
}
