:root {
  --charcoal: #393737;
  --orange: #D55334;
  --darkOrange: #C44E32;
  --lightOrange: #F8DDD7;
  --black: #000000;
  --lightGrey: #EDEBEB;
  --white: #ffffff;
  --darkGrey: #A29E9E;
  --grey: grey;
  --goldYellow: #EBA63F;
  --lightBlue: lightblue;
  --green: #438945;
  --lightGreen: #55AD58;
  --lightRed : pink;
  --red: #E40C2B;
  --blue: blue;
}

* {
  padding: 0;
  border: 0;
  margin: 0;
}

html {
  width: 100%;
  height: 100%;
}

body {
  font-size: 1vw;
  font-family: sans-serif;
  width: 100%;
  height: 100%;
  overflow: scroll;
  background-color: var(--lightGrey);
  overscroll-behavior: contain;
}

table, th, td {
  border: 1px solid var(--grey);
  border-collapse: collapse;
}

input{
  -webkit-appearance: none;
  -ms-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-sizing: border-box;
}
input:focus{
  outline: none;
}
select{
  -webkit-appearance: none;
  -ms-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-sizing: border-box;
}
select:focus{
  outline: none;
}
/*GLOBAL CLASSES*/
.gFloatView{
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 2;
    display: none;
    position: absolute;
    margin: 0
    padding: 0;
    top: 0;
    left: 0;
}
.gFloatScreen{
    width: 50vw;
    position: absolute;
    top: 4.4vw;
    left: 2vw;
    z-index: 3;
    max-height: 83vh;
}

.gMask{
    width: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 3;
    display: none;
    position: absolute;
    margin: 0;
    padding: 0;
    top: 0;
    left: 0;
    text-align: center;
}
.gLoader{
    position: fixed;
    border: 8px solid var(--darkOrange);
    border-radius: 50%;
    border-top: 8px solid var(--lightOrange);
    border-bottom: 8px solid var(--lightOrange);
    width: 60px;
    height: 60px;
    top: calc(50% - 30px);
    left: calc(50% - 10px);
    margin-left: -30px;
    margin-top: -30px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


.gFrm{
  display: none;
}/*gFrm moet altyd verander na Flex - Om te display*/
.mFrm{
  display: flex;
}
.gFrmTitleCon{
  display: flex;
  position: relative;
  flex-flow: column nowrap;
  align-items: center;
  width: 100%;
  height: 29px;
  padding-top: 50px;
  padding-bottom: 10px;
  border-bottom: 1px var(--grey) solid;
  background: linear-gradient(#fff,var(--lightGrey));
}
.gFrmTitle{
  width: 930px;
  font-size: 24px;
  color: var(--charcoal);
  font-weight: bold;
}
.gFrmCon{
  width: 930px;
  background-color: var(--white);
  border: 1px var(--grey) solid;
  border-radius: 3px;
  margin-top: 40px;
  padding-bottom: 150px;
}
.gFrmSubTitleCon{
  margin: 30px 20px 10px 20px;
}
.gFrmSubTitle{
  color: var(--orange);
  font-size: 18px;
}

.gFrmField{
  display: flex;
  position: relative;
  background-color: pienk;
  margin: 0 180px 9px 30px;
  align-items: center;
}
.gFrmField span{
  width: 210px;
  text-align: right;
  padding-right: 10px;
}
.gFrmField p{
  display: flex;
  align-items: center;
  font-size: 8px;
  padding-left: 5px;
  color: var(--grey);

}
.gFrmField .gFrmSingleInp{
  width: 500px;
  height: 30px;
  border: var(--grey) solid 1px;
  border-radius: 3px;
  padding-left: 7.5px;
}
.gFrmField .gFrmDoubleInp1{
  width: 250px;
  height: 30px;
  border: var(--grey) solid 1px;
  border-radius: 3px 0 0 3px;
  border-right: 0;
  padding: 0 7.5px;
}
.gFrmField .gFrmDoubleInp2{
  width: 250px;
  height: 30px;
  border: var(--grey) solid 1px;
  border-radius: 0 3px 3px 0;
  padding-left: 7.5px;
}
.gFrmField .gFrmPhoneZipInp{
  width: 47px;
  height: 30px;
  border: var(--grey) solid 1px;
  border-radius: 3px 0 0 3px;
  padding-left: 7.5px;
}
.gFrmField .gFrmPhoneCodeInp{
  width: 47px;
  height: 30px;
  border-top: var(--grey) solid 1px;
  border-bottom: var(--grey) solid 1px;
  border-radius: 0;
  padding-left: 7.5px;
}
.gFrmField .gFrmPhoneNumInp{
  width: 100px;
  height: 30px;
  border: var(--grey) solid 1px;
  border-radius: 0 3px 3px 0;
  padding-left: 7.5px;
}
.gFrmField .gFrmAddInp{
  width: 500px;
  height: 30px;
  border: var(--grey) solid 1px;
  border-radius: 3px;
  padding-left: 7.5px;
}
.gFrmField .gFrmAddMidInp{
  width: 200px;
  height: 30px;
  border: var(--grey) solid 1px;
  border-radius: 3px;
  padding-left: 7.5px;
}
.gFrmField .gFrmAddShortInp{
  width: 70px;
  height: 30px;
  border: var(--grey) solid 1px;
  border-radius: 3px;
  padding-left: 7.5px;
}
.gFrmField .gFrmSelectinp{
  width: 150px;
  height: 30px;
  border: var(--grey) solid 1px;
  border-radius: 3px;
  padding-left: 7.5px;
  -webkit-appearance: auto;
  -ms-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
}
.gFrmField .gFrmDateInp{
  width: 150px;
  height: 30px;
  border: var(--grey) solid 1px;
  border-radius: 3px;
  padding-left: 7.5px;
}
.gFrmField .gFrmCheckbox{
  width: 15px;
  height: 15px;
  border: var(--grey) solid 1px;
  border-radius: 3px;
  -webkit-appearance: auto;
  -ms-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
}
.gFrmField .gFrmItemAdd{
  width: 440px;
  height: 30px;
  border: var(--grey) solid 1px;
  border-right: 0;
  border-radius: 3px 0 0 3px;
  padding-left: 7.5px;
}
.gFrmField .gFrmItemAddBtn{
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 60px;
  border-radius: 0 3px 3px 0;
  background-color: var(--green);
  color: white;
  cursor: pointer;
  height: 30px;
}
.gFrmField .gFrmAddedTbl{
  width: 500px;
  border-radius: 3px;
  font-size: 14px;
  border: 0;
  border-collapse: collapse;
}
.gFrmField .gFrmAddedTbl td input{
  box-sizing: border-box;
  width: 70px;
  height: 30px;
  border: var(--grey) solid 1px;
  border-radius: 3px;
  padding-left: 7.5px;
}
.gFrmField .gFrmAddedTbl td .gEmpLicDateInp{
  box-sizing: border-box;
  width: 100%;
  height: 30px;
  border: var(--grey) solid 1px;
  border-radius: 3px;
  padding-left: 7.5px;
}
.gFrmField .gFrmAddedTbl td{
  text-align: center;
  padding: 5px 0 5px 0;
  border: 0;
}
.gFrmField .gFrmAddedTbl th{
  border: 0;
}
.gFrmField .gFrmAddedTbl th:last-of-type{
  width: 20px;
}
.gFrmField .gFrmAddedTbl th:first-of-type{
  width: 300px;
}
.gFrmField .gFrmAddedTbl td:first-of-type{
  text-align: left;
}
.gFrmField .gFrmAddedTbl td img{
  width: 15px;
  height: auto;
  cursor: pointer;
}
.gFrmField .gFrmSubmit{
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 60px;
  border-radius: 3px;
  background-color: var(--green);
  color: white;
  cursor: pointer;
  height: 30px;
}
.gViewProjAddCon{
    box-sizing: border-box;
    display: flex;
    flex-flow: column nowrap;
    position: relative;
    padding: 0 0 9px 60px;
    align-items: center;
    width: 800px;
    font-size: 14px;
}
.gViewProjAddRow{
   display: flex;
   flex-flow: row nowrap;
   align-items: center;
   width: 100%;
   justify-content: space-between;
   margin-bottom: 10px;
}
.gViewProjAddRow input{
    box-sizing: border-box;
    width: 180px;
    height: 30px;
    border: var(--grey) solid 1px;
    border-radius: 3px;
    padding-left: 7.5px;
}
.gViewProjAddRow textarea{
  box-sizing: border-box;
  width: 100%;
  height: 60px;
  border: var(--grey) solid 1px;
  border-radius: 3px;
  padding: 7.5px;
  font-family: sans-serif;
  font-size: 14px;
}
.gViewProjAddRow .gFrmSaveBtn{
  background-color: var(--green);
  display: flex;
  color: var(--white);
  font-size: 13px;
  height: 27Px;
  width: 100px;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  cursor: pointer;
}
.gViewProjStatus{
  background-color: var(--green);
  display: flex;
  color: var(--white);
  font-size: 10px;
  height: 20Px;
  width: 50px;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  cursor: pointer;
}
.gViewProjStatusC{
  background-color: var(--red);
  display: flex;
  color: var(--white);
  font-size: 10px;
  height: 20Px;
  width: 50px;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  cursor: pointer;
}

.gFrmFooter{
  display: flex;
  flex-flow: column nowrap;
  position: relative;
  align-items: center;
  width: 100%;
  height: 58px;
  position: fixed;
  bottom: 0;
  background-color: var(--white);
  box-shadow: 0 -2px 4px 0 rgb(0 0 0 / 20%);
}
.gFrmFooter .gFrmBtnCon{
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 930px;
}
.gFrmFooter .gFrmSaveBtn{
  background-color: var(--green);
  display: flex;
  color: var(--white);
  font-size: 13px;
  height: 27Px;
  width: 100px;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  cursor: pointer;
}
.gFrmFooter .gFrmSaveBtn:hover{
  background-color: var(--lightGreen);
}
.gFrmFooter .gFrmCancelBtn{
  background-color: var(--white);
  display: flex;
  color: var(--orange);
  font-size: 13px;
  height: 27Px;
  width: 100px;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  border: 1px var(--grey) solid;
  cursor: pointer;
}

.gViewSideNav{
  width: 130px;
  height: 100%;
  background-color: var(--charcoal);
  box-sizing: border-box;
  padding-top: 80px;
}
.gViewSideNav li{
  display: flex;
  align-items: center;
  color: var(--white);
  padding-left: 15px;
  height: 35px;
  font-size: 14px;
}
.gViewSideNav li:hover{
  background-color: var(--grey);
}
.gViewSideNav li.selected{
    background-color: var(--grey);
}

.gViewRightBody{
  position: relative;
  width: calc(100% - 130px);
  height: 100%;
  box-sizing: border-box;
  padding-bottom: 100px;
  overflow: scroll;
}
.gViewRBodyHead{
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-end;
  justify-content: space-between;
  height: 80px;
  width: 780px;
  box-sizing: border-box;
  padding: 0 0 8px 0;
  margin-left: 20px;
  border-bottom: 1px solid var(--white);
  margin-bottom: 30px;
}
.gViewRBodyHead h1{
  font-size: 25px;
  color: var(--charcoal);
}
.gViewEditBtn{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 20px;
  color: var(--white);
  background-color: var(--grey);
  border-radius: 5px;
  font-size: 14px;
}
.gViewEditBtn:hover{
  background-color: var(--green);
}

.gViewSubTitleCon{
  margin: 30px 20px 10px 40px;
}
.gViewSubTitle{
  color: var(--orange);
  font-size: 18px;
}
.gViewField{
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 0 0 9px 60px;
  align-items: center;
  width: 800px;
  font-size: 14px;
}
.gViewField span{
  width: 500px;
  text-align: left;
  padding-right: 10px;
  font-weight: bold;
}

.gViewField .gViewItemAdd{
  flex-grow: 1;
  height: 30px;
  border: var(--grey) solid 1px;
  border-right: 0;
  border-radius: 3px 0 0 3px;
  padding-left: 7.5px;
}
.gViewField .gEmpLicDateInp{
  height: 30px;
  border: var(--grey) solid 1px;
  border-right: 0;
  border-left: 0;
  padding-left: 7.5px;
}
.gViewField .gFrmItemAddBtn{
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 60px;
  border-radius: 0 3px 3px 0;
  background-color: var(--green);
  color: white;
  cursor: pointer;
  height: 30px;
}
.gViewField .gViewAddedTbl{
  margin-top: 10px;
  width: 100%;
  border-radius: 3px;
  font-size: 14px;
  border: 0;
  border-collapse: collapse;
}
.gViewField .gViewAddedTbl td{
  text-align: center;
  padding: 5px 0 5px 0;
  border: 0;
}
.gViewField .gViewAddedTbl th{
  border: 0;
}
.gViewField .gViewAddedTbl th:last-of-type{
  width: 25px;
}
.gViewField .gViewAddedTbl td:first-of-type{
  text-align: left;
  padding-left: 7.5px;
}
.gViewField .gViewAddedTbl td:nth-child(2){
    width: 100px;
}
.gViewField .gViewAddedTbl td:last-of-type{
  width: 25px;
}
.gViewField .gViewAddedTbl td img{
  padding-left: 10px;
  width: 15px;
  height: auto;
  cursor: pointer;
}

.gCheckbox{
  position: relative;
  border-radius: 50px;
  border: 1px solid var(--grey);
  width: 15px;
  height: 15px;
  cursor: pointer;
}
.gCheckbox.selected{
    background-color: var(--orange);
}
.gCheckbox:hover{
  background-color: var(--white);
}
.gPageCon{
  width: 210mm;
  min-height: 297mm;
  margin: 20mm auto;
  background: white;
  box-shadow: 0 0 0.5cm rgba(0,0,0,0.5);
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  padding: 1cm;
}

#toolTip{
    padding: 5px;
    position: absolute;
    background-color: rgba(0,0,0,0.8);
    color: var(--white);
    display: none;
    z-index: 10;
    -webkit-transition:opacity 0.5s;
    -moz-transition:opacity 0.5s;
    -o-transition:opacity 0.5s;
    transition:opacity 0.5s;
}

#infoBox{
    width: 250px;
    color: var(--white);
    background-color: #2b3b6e;
    border-radius: 15px;
    z-index: 4;
    display: none;
    position: absolute;
    margin: 0;
    padding: 15px;
    text-align: center;
    font-family: montserrat-light;
}
#infoBox header{
    margin-top: 15px;
    font-family: montserrat;
    font-weight: bold;
    font-size: 24px;
}
#infoBox img{
    margin-bottom: 3px;
    height: 50px;
    width: 50px;
}
#infoBox p{
    font-family: montserrat;
    font-weight: bold;
    font-size: 24px;
}
#infoBox .btnBox{
  margin-top: 10px;
    width: 100%;
    clear: both;
}
#infoBox .btnBox div{
    margin-bottom: 10px;
    color: var(--white);
    height: 40px;
    line-height: 37px;
    border-radius: 5px;
    font-size: 24px;
    cursor: pointer;
}

#dataListCon {
  position: absolute;
  display: none;
  background-color: var(--white);
  box-shadow: 0 0 3px var(--grey);
  z-index: 4;
  max-height: 300px;
}
#dataListCon .googleLogo{
    width: 144px;
    height: 18px;
    float: right;
}
#dataList {
  width: 100%;
  height: 100%;
  text-align: left;
  overflow-y: auto;
}
#dataList tr {
  position: relative;
}
#dataList td {
  text-align: left;
  height: 30px;
  cursor: pointer;
  width: 100%;
  padding-left: 5px;
  vertical-align: middle;
  font-style: 12px;
}
#dataList td:hover {
    background-color: var(--lightGrey);
    color: var(--black);
}
#dataList img {
  height: 20px;
  width: 20px;
  display: inline-block;
}

/*FORM LOGIN*/
#fullView{
  width: 100%;
  height: 100%;
  background-color: var(--orange);
}
#fullView .frmCon {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  width: 300px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#fullView .header {
  display: flex;
  justify-content: space-around;
  margin-bottom: 15px;
}
#fullView img{
  width: 220px;
}
#fullView label{
  font-size: 16px;
  display: flex;
  flex-flow: column;
  width: 100%;
  font-size: 14px;
  color: var(--white);
  padding-bottom: 5px;
}
#fullView input {
  display: block;
  border-radius: 5px;
  padding: 10px 15px;
  font-size: 18px;
  outline: none;
  margin-bottom: 12px;
  width: 100%;
  box-sizing: border-box;
  margin-top: 3px;
}
#fullView p {
  display: flex;
  flex-flow: column;
  text-align: center;
  padding: 15px 0 20px 0;
  color: var(--white);
  font-size: 14px;
}
#fullView .btnBox {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
}
#fullView .gBtnGreen{
  padding: 7px 14px;
  font-size: 18px;
  background-color: var(--green);
  color: var(--white);
  border-radius: 5px;
  cursor: pointer;
}
#fullView .gBtnGreen:hover{
  background-color: var(--lightGreen);
}
#fullView .btnLoginAlt {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  margin-top: 10px;
  cursor: pointer;
  font-size: 14px;
  text-decoration: underline;
  color: var(--white);
}
#fullView .btnLoginAlt:hover {
  color: var(--green);
}

/*WEB VIEW*/
#webView{
  min-height: 100%;
  width: 100%;
}
#webView .webViewCon {
  display: flex;
  flex-flow: column nowrap;
  position: relative;
  height: 100%;
  width: 100%;
  background: linear-gradient(#fff,var(--lightGrey));
}

/*MAIN NAVIGATION BAR*/
#mainNav{
  height: 60px;
}
#mainNav .mainNavBar {
  background-color: var(--orange);
  display: flex;
  flex-flow: column nowrap;
  height: 60px;
  box-shadow: 0 0 10px grey;
  position: relative;
}
#mainNav .mainNavCon {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}
#mainNav .mainNavCon img {
  width: 2.7vw;
  padding: 0 0 0 1vw;
}
#mainNav .mainNavCon h1{
  color: var(--white);
  margin-left: 0.5vw;
}
#mainNav .mainNavCon ul {
  display: flex;
  flex-grow: 1;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  list-style: none;
  margin-right: 2vw;
}
#mainNav .mainNavCon li {
  display: flex;
  text-align: center;
  padding: 0 1vw;
  cursor: pointer;
  color: var(--white);
  height: 100%;
  align-items: center;
}
#mainNav .mainNavCon li:hover {
  background-color: var(--darkOrange);
}

#mainNav .mainNavBtnCon {
  position: relative;
  margin-right: 1vw;
}
#mainNav .mainNavBtn{
  display: flex;
  min-width: 8vw;
  font-size: 100%;
  text-align: center;
  align-items: center;
  background-color: var(--charcoal);
  padding: 5px 0.5vw 5px 1vw;
}
#mainNav .mainNavBtn img{
  height: 1.7vw;
  width: 1.7vw;
  padding-left: 0;
}
#mainNav .mainNavBtn span{
  color: var(--white);
}
#mainNav .mainNavBtnContent {
  display: none;
  position: absolute;
  background-color: var(--lightGrey);
  width: 100%;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}
#mainNav .mainNavBtnContent a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: flex;
}
#mainNav .mainNavBtnContent a:hover {
  background-color: var(--darkOrange);
  color: var(--white);
}
#mainNav .mainNavBtnCon:hover .mainNavBtnContent {display: block;}
#mainNav .mainNavBtnCon:hover .mainNavBtn {
  color: var(--orange);
}

/*SEARCH SCREEN*/
#srcScreen{
  flex-flow: column nowrap;
  position: relative;
  align-items: center;
  width: 100%;
}
#srcScreen .srcHead{
  display: flex;
  flex-flow: column nowrap;
  position: relative;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid var(--grey);
  background: linear-gradient(#fff,#f5f7f8);
}
#srcScreen .srcTitleCon{
  display: flex;
  position: relative;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  width: 930px;
  height: 29px;
  margin-top: 20px;
  padding: 10px 0;
  border-bottom: 1px var(--grey) solid;
}
#srcScreen .srcTitleCon span{
  font-size: 24px;
  color: var(--charcoal);
  font-weight: bold;
}
#srcScreen .srcTitleBtn{
  display: flex;
  color: var(--white);
  padding: 0 12px;
  font-size: 12px;
  background-color: var(--green);
  height: 100%;
  align-items: center;
  border-radius: 3px;
  cursor: pointer;
}
#srcScreen .srcTitleBtn:hover{
  background-color: var(--lightGreen);
}

#srcScreen .srcMainTabCon{
  display: flex;
  flex-flow: row nowrap;
  width: 930px;
  margin-top: 50px;
  list-style: none;
  height: 40px;
  border-left: 1px var(--grey) solid;


}
#srcScreen .srcMainTab{
  display: flex;
  height: 39px;
  margin-bottom: 1px;
  align-items: center;
  background: linear-gradient(#fff,var(--lightGrey));
  font-size: 14px;
  padding: 0 16px;
  border-top: 1px var(--grey) solid;
  border-right: 1px var(--grey) solid;
  border-bottom: 1px var(--grey) solid;
  cursor: pointer;
}
#srcScreen .srcMainTab.selected{
    background: var(--white);
}
#srcScreen .srcMainTab:hover{
  background: var(--white);
}

#srcScreen .srcBody{
  position: relative;
  width: 90%;
}
#srcScreen .actionCon{
  display: flex;
  flex-flow: row nowrap;
  height: 40px;
  align-items: center;
  background-color: var(--lightGrey);
  border: 1px solid var(--grey);
  border-bottom: 0;
  border-radius: 3px 3px 0 0;
  margin-top: 20px;
}
#srcScreen .srcBodySearch{
  height: 25px;
  width: 150px;
  margin-left: 7.5px;
  padding-left: 5px;
  border-radius: 3px;
}
#srcScreen .srcBodyTblInfo{
  font-size: 12px;
  color: var(--orange);
  margin-left: 7.5px;
}

#srcScreen .actBtnCon{
  display: flex;
  flex-flow: row nowrap;
  flex-grow: 1;
  align-items: center;
  justify-content: flex-end;
}
#srcScreen .actBtnCon .actBtn{
  margin-right: 7.5px;
  display: flex;
  color: var(--charcoal);
  padding: 0 12px;
  font-size: 12px;
  background: linear-gradient(#fff,var(--lightGrey));
  height: 25px;
  align-items: center;
  border-radius: 3px;
  border: 1px solid var(--grey);
}
#srcScreen .actBtnCon.active div{
    opacity: 1;
    cursor: pointer;
}
#srcScreen .actBtnCon.disable div{
    opacity: 0.5
}
#srcScreen .actBtnCon.active .actBtn:hover{
  background-color: var(--white);
  color: var(--orange);
}

#srcScreen .srcShowDel{
  display: flex;
  align-items: center;
  font-size: 12px;
  margin: 0 7.5px;
}
#srcScreen .srcShowDel.selected{
    background-color: var(--orange);
}

#srcScreen table{
  width: 100%;
}
#srcScreen tr{
  height: 30px;
}
#srcScreen th{
  background: #f5f7f8;
}
#srcScreen td{
  background-color: var(--white);
  padding-left: 7.5px;
  cursor: pointer;

}
#srcScreen table .chkCell{
    width: 25px;
    text-align: center;
}
#srcScreen table .chkCell div{
    height: 15px;
    width: 15px;
    border: 1px solid black;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}
#srcScreen table .chkCell div.selected{
    background-color: var(--orange);
}
#srcScreen td:first-of-type{
  text-align: center;
  padding-left: 0;
}
#srcScreen tr:hover{
  background: var(--lightOrange);
}

/*FORM SCREEN*/
#frmEmp{
  flex-flow: column nowrap;
  position: relative;
  align-items: center;
  width: 100%;
}
#frmClients{
  flex-flow: column nowrap;
  position: relative;
  align-items: center;
  width: 100%;

}
#frmConsum{
  flex-flow: column nowrap;
  position: relative;
  align-items: center;
  width: 100%;
}
#frmPlants{
  flex-flow: column nowrap;
  position: relative;
  align-items: center;
  width: 100%;
}
#frmTasks{
  flex-flow: column nowrap;
  position: relative;
  align-items: center;
  width: 100%;
}
#frmJobDesc{
  flex-flow: column nowrap;
  position: relative;
  align-items: center;
  width: 100%;
}
#frmProjects{
  flex-flow: column nowrap;
  position: relative;
  align-items: center;
  width: 100%;
}
#frmProfile{
  flex-flow: column nowrap;
  position: relative;
  align-items: center;
  width: 100%;
}

/*EMP VIEW SCREEN*/
#viewEmp{
  flex-flow: row nowrap;
  position: fixed;
  align-items: stretch;
  width: 100%;
  height: calc(100% - 60px);
  bottom: 0;
}

#viewEmp .mainNavBar li{

}

#viewEmpDetail{
  flex-flow: column nowrap;
}
#viewEmpLic{
  flex-flow: column nowrap;
  width: 800px;
}
#viewEmpNote{
  flex-flow: column nowrap;
  width: 800px;
}

/*CLIENT VIEW SCREEN*/
#viewClient{
  flex-flow: row nowrap;
  position: fixed;
  align-items: stretch;
  width: 100%;
  height: calc(100% - 60px);
  bottom: 0;
}
#viewClientDetail{
  flex-flow: column nowrap;
}
#viewClientProj{
  flex-flow: column nowrap;
  width: 800px;
}
#viewClientProj .viewCltHead{
  width: calc(100% - 20px);
  display: flex;
  position: relative;
  box-sizing: border-box;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 20px 20px;
  height: 30px;
}
#viewClientProj .viewCltHead ul{
  display: flex;
  align-items: center;
  list-style: none;
  height: 100%;
}
#viewClientProj .viewCltHead li{
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding: 0 10px 0 10px;
  color: var(charcoal);
  height: 100%
}
#viewClientProj .viewCltHead li:hover{
  border-bottom: 2px var(--orange) solid;
  color: var(--orange);
}
#viewClientProj .viewCltTitle{
  color: var(--orange);
  font-size: 20px;
  font-weight: bold;
}
#viewClientProj .cltProjCon{
  box-sizing: border-box;
  position: relative;
  margin: 0 0 10px 20px;
  background-color: var(--white);
  border-radius: 7px;
  cursor: pointer;
  padding: 8px;
}
#viewClientProj .cltProjCon:hover{
  box-shadow: 0 0 5px var(--grey);
}
#viewClientProj .cltProjHead{
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
}
#viewClientProj .cltProjHeadL{
  font-size: 18px;
  font-weight: bold;
}
#viewClientProj .cltProjHeadR{
  font-size: 14px;
}
#viewClientProj .cltProgCon{
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  width: 100%;
  margin-bottom: 8px;
}
#viewClientProj .cltProgDis{
  box-sizing: border-box;
  width: 80px;
  font-size: 12px;
  color: var(--grey);
  padding-right: 5px;
  text-align: right;
}
#viewClientProj .cltProgBar{
  height: 15px;
  background-color: var(--lightGrey);
  flex-grow: 1;
  border-radius: 7px;
}
#viewClientProj .cltProgress{
  height: 15px;
  border-radius: 7px;
}
#viewClientNote{
  flex-flow: column nowrap;
  width: 800px;
}

/*PLANT VIEW SCREEN*/
#viewPlant{
  flex-flow: row nowrap;
  position: fixed;
  align-items: stretch;
  width: 100%;
  height: calc(100% - 60px);
  bottom: 0;
}
#viewPlantDetail{
  flex-flow: column nowrap;
}
#viewPlantLic{
  flex-flow: column nowrap;
  width: 800px;
}
#viewPlantLog{
  flex-flow: column nowrap;
  width: 800px;
}
#viewPlantLog table{
  margin-top: 10px;
  width: 100%;
  border-radius: 3px;
  font-size: 14px;
  border: 0;
  border-collapse: collapse;
}
#viewPlantLog table td{
  text-align: center;
  padding: 5px 0 5px 0;
  border: 0;
}
#viewPlantLog table th{
  border: 0;
}
#viewPlantLog table th:last-of-type{
  width: 30px;
}
#viewPlantLog table td:last-of-type{
  width: 30px;
}
#viewPlantLog table th:first-of-type{
  text-align: left;
  padding-left: 7.5px;
}
#viewPlantLog table td:first-of-type{
  text-align: left;
  padding-left: 7.5px;
}
#viewPlantLog table td img{
  padding-left: 10px;
  width: 15px;
  height: auto;
  cursor: pointer;
}
#viewPlantNote{
  flex-flow: column nowrap;
  width: 800px;
}

/*PROJECT VIEW SCREEN*/
#viewProject{
  flex-flow: row nowrap;
  position: fixed;
  align-items: stretch;
  width: 100%;
  height: calc(100% - 60px);
  bottom: 0;
}
#viewProjDetail{
  flex-flow: column nowrap;
}
#viewProjDiary{
  flex-flow: column nowrap;
  width: 800px;
}
#viewProjDiary table{
  margin-top: 10px;
  width: 100%;
  border-radius: 3px;
  font-size: 14px;
  border: 0;
  border-collapse: collapse;
}
#viewProjDiary table tbody tr{
  cursor: pointer;
}
#viewProjDiary table tbody tr:hover{
  background-color: var(--grey);
  color: var(--white);
}
#viewProjDiary table thead tr{
  cursor: default;
}
#viewProjDiary table thead tr{
  background-color: transparent;
  color: var(--black);
}
#viewProjDiary table td{
  text-align: center;
  padding: 5px 0 5px 0;
  border: 0;
}
#viewProjDiary table th{
  border: 0;
}
#viewProjDiary table th:first-of-type{
  text-align: left;
  padding-left: 7.5px;
}
#viewProjDiary table td:first-of-type{
  text-align: left;
  padding-left: 7.5px;
}

#viewProjArea{
  flex-flow: column nowrap;
  width: 800px;
}

#viewProjTask{
  flex-flow: column nowrap;
  width: 800px;
}
#viewProjTask .gFrmItemAddBtn{
  width: 70px;
}
#viewProjTask .gViewSubTitleCon{
  margin: 30px 0 10px 40px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}
#viewProjTask .gFrmItemImpBtn{
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 5px;
  width: 70px;
  border-radius: 3px;
  background-color: var(--lightGrey);
  border: 1px var(--green) solid;
  color: white;
  cursor: pointer;
  height: 30px;
  color: var(--grey);
}
#viewProjTask .gFrmItemImpBtn:hover{
  box-shadow: 0 0 7px var(--grey);
  border: var(--grey);
}
#viewProjTask .gFrmItemImpBtn img{
  width: 20px;
  height: auto;
}
#viewProjTask table{
  margin-top: 10px;
  width: 100%;
  border-radius: 3px;
  font-size: 14px;
  border: 0;
  border-collapse: collapse;
}
#viewProjTask table td{
  text-align: left;
  padding: 5px 2.5px 5px 2.5px;
  border-left: 0;
  border-right: 0;
}
#viewProjTask table th{
  border: 0;
  padding-bottom: 3px;
}
#viewProjTask table th:last-of-type{
  width: 30px;
}
#viewProjTask table td:last-of-type{
  width: 30px;
}
#viewProjTask table th:first-of-type{
  text-align: left;
}
#viewProjTask table th:nth-of-type(2){
  text-align: left;
}
#viewProjTask table td:first-of-type{
  text-align: left;
  padding-left: 7.5px;
}
#viewProjTask table td img{
  padding-left: 10px;
  width: 15px;
  height: auto;
  cursor: pointer;
}
#viewProjTask table td input{
  box-sizing: border-box;
  width: 70px;
  height: 30px;
  border: var(--grey) solid 1px;
  border-radius: 3px;
  padding-left: 7.5px;
  margin-left: 7.5px;
}
#viewProjTask .viewTaskProgressCon{
  width: 100%;
  position: relative;
  height: 8px;
  border-radius: 5px;
  background-color: var(--white);
  overflow: hidden;
}
#viewProjTask .viewTaskProgress{
  width: 65%;
  height: 100%;
  background-color: var(--green);
}
#viewProjTask table tr{
  cursor: pointer;
}
#viewProjTask table tr:hover{
  background-color: var(--white)
}
#viewProjTask table tr:first-of-type{
  cursor: default;
}
#viewProjTask table tr:first-of-type:hover{
  background-color: transparent;
}

#viewProjEmp{
  flex-flow: column nowrap;
  width: 800px;
}
#viewProjEmp table{
  margin-top: 10px;
  width: 100%;
  border-radius: 3px;
  font-size: 14px;
  border: 0;
  border-collapse: collapse;
}
#viewProjEmp table td{
  text-align: center;
  padding: 5px 0 5px 0;
  border: 0;
}
#viewProjEmp table th{
  border: 0;
}
#viewProjEmp table th:last-of-type{
  width: 30px;
}
#viewProjEmp table td:last-of-type{
  width: 30px;
}
#viewProjEmp table th:first-of-type{
  text-align: left;
  padding-left: 7.5px;
}
#viewProjEmp table td:first-of-type{
  text-align: left;
  padding-left: 7.5px;
}
#viewProjEmp table td img{
  padding-left: 10px;
  width: 15px;
  height: auto;
  cursor: pointer;
}

#viewProjPlant{
  flex-flow: column nowrap;
  width: 800px;
}
#viewProjPlant select{
  height: 30px;
  border: var(--grey) solid 1px;
  border-right: 0;
  border-radius: 0;
  padding-left: 7.5px;
  width: 100px;





}
#viewProjPlant table{
  margin-top: 10px;
  width: 100%;
  border-radius: 3px;
  font-size: 14px;
  border: 0;
  border-collapse: collapse;
}
#viewProjPlant table td{
  text-align: center;
  padding: 5px 0 5px 0;
  border: 0;
}
#viewProjPlant table th{
  border: 0;
}
#viewProjPlant table th:last-of-type{
  width: 30px;
}
#viewProjPlant table td:last-of-type{
  width: 30px;
}
#viewProjPlant table th:first-of-type{
  text-align: left;
  padding-left: 7.5px;
}
#viewProjPlant table td:first-of-type{
  text-align: left;
  padding-left: 7.5px;
}
#viewProjPlant table td img{
  padding-left: 10px;
  width: 15px;
  height: auto;
  cursor: pointer;
}
#viewProjPlant .viewProjPlantNav{
  width: calc(100% - 60px);
  box-sizing: border-box;
  display: flex;
  flex-flow: column;
  align-items: stretch;
  height: 30px;
  margin: 20px 0 20px 60px;
  border-bottom: 1px solid var(--grey);
}
#viewProjPlant .viewProjPlantNav ul{
  height: 100%;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
}
#viewProjPlant .viewProjPlantNav li{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  margin-right: 5px;
  border-radius: 5px 5px 0 0;
  padding: 0 15px;
  color: var(--white);
  background-color: var(--grey);
}
#viewProjPlant .viewProjPlantNav li:hover{
  background-color: var(--darkGrey);
}

#viewProjMat{
  flex-flow: column nowrap;
  width: 800px;
}
#viewProjMat table{
  margin-top: 10px;
  width: 100%;
  border-radius: 3px;
  font-size: 14px;
  border: 0;
  border-collapse: collapse;
}
#viewProjMat table td{
  text-align: left;
  padding: 5px 2.5px 5px 2.5px;
  border-left: 0;
  border-right: 0;
}
#viewProjMat table th{
  border: 0;
  padding-bottom: 3px;
  text-align: left;
}
#viewProjMat table th:last-of-type{
  width: 30px;
}
#viewProjMat table td:last-of-type{
  width: 30px;
}
#viewProjMat table th:first-of-type{
  text-align: left;
}
#viewProjMat table th:nth-of-type(5){
  text-align: center;
}
#viewProjMat table th:nth-of-type(6){
  text-align: center;
}
#viewProjMat table td:nth-of-type(5){
  text-align: center;
}
#viewProjMat table td:nth-of-type(6){
  text-align: center;
}
#viewProjMat table td:first-of-type{
  text-align: left;
  padding-left: 7.5px;
}
#viewProjMat table td img{
  padding-left: 10px;
  width: 15px;
  height: auto;
  cursor: pointer;
}
#viewProjMat table td input{
  box-sizing: border-box;
  width: 70px;
  height: 30px;
  border: var(--grey) solid 1px;
  border-radius: 3px;
  padding-left: 7.5px;
  margin-left: 7.5px;
}
#viewProjMat table tr{
  cursor: pointer;
}

#viewProjSiteI{
  flex-flow: column nowrap;
  width: 800px;
}
#viewProjSiteI .gViewSubTitleCon{
  margin: 30px 0 10px 40px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}

#viewProjTechQ{
  flex-flow: column nowrap;
  width: 800px;
}
#viewProjTechQ .gViewSubTitleCon{
  margin: 30px 0 10px 40px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}



#viewProjNote{
  flex-flow: column nowrap;
  width: 800px;
}
#viewProjNote .gViewSubTitleCon{
  margin: 30px 0 10px 40px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}


/*DIALY DIARY VIEW SCREEN*/
#viewDailyD{
  flex-flow: row nowrap;
  width: 100%;
  position: fixed;
  height: calc(100% - 60px);
  bottom: 0;
  align-items: center;
  overflow: scroll;
  font-size: 12px;
}

#viewDailyD .tabsCon{
    position: relative;
    height: 100%;
    width: 100%;
}
#viewDailyD iframe{
    height: 100%;
    width: 100%;
}

#viewDailyD .DdBtnCon{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  box-sizing: border-box;
  margin-bottom: 3mm;
}
#viewDailyD .DdBtn{
  background-color: var(--green);
  font-size: 12px;
  box-sizing: border-box;
  padding: 5px 15px;
  margin-left: 10px;
  color: var(--white);
  border-radius: 7px;
}
#viewDailyD .DdBtn:hover{
  background-color: var(--lightGreen);
}
#viewDailyD .DdEditBtn{
  background-color: var(--lightGrey);
  font-size: 12px;
  box-sizing: border-box;
  padding: 5px 15px;
  margin-left: 10px;
  color: var(--black);
  border-radius: 7px;
}
#viewDailyD .DdEditBtn:hover{
  background-color: var(--grey);
  color: var(--white);
}


#viewDailyD h2{
  width: 100%;
  text-align: center;
  margin: 3mm 0;
}
#viewDailyD .dDHeader{
  display: flex;
  flex-flow: row nowrap;
  align-self: baseline;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 5mm;
  border-radius: 7px;
  border: solid var(--black) 1px;

}
#viewDailyD .dDHeader img{
  width: 40mm;
}
#viewDailyD .dDHeadL{
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  padding: 0 5mm;
}
#viewDailyD .dDHeadL h1{

}
#viewDailyD .dDHeadR span{
  font-size: 12px;
}
#viewDailyD label{
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  min-width: 70mm;
}

#viewDailyD .dDBody{
  display: flex;
  flex-flow: column nowrap;
  width: 100%;
}
#viewDailyD .dDBodySec{
  padding: 5mm;
  border-top: 1px var(--black) solid;
}
#viewDailyD .dDBodySec table{
  margin-top: 10px;
  width: 100%;
  font-size: 12px;
  font-weight: 0;
  border: 0;
  border-collapse: collapse;
}
#viewDailyD .dDBodySec th{
  border: 0;
  text-align: left;
  padding-right: 3mm;
}
#viewDailyD .dDBodySec th:last-of-type{
  text-align: right;
  padding-right: 0;
}
#viewDailyD .dDBodySec td:last-of-type{
  text-align: right;
  padding-right: 0;
}
#viewDailyD .dDBodySec td{
  border: 0;
  text-align: left;
  padding-right: 3mm;
}
#viewDDTasks .viewTaskProgressCon{
  width: 100%;
  position: relative;
  height: 8px;
  border-radius: 5px;
  background-color: var(--lightGrey);
  overflow: hidden;
}
#viewDDTasks .viewTaskProgress{
  width: 65%;
  height: 100%;
  background-color: var(--green);
}

#viewDailyD .dDFooter{
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
#viewDailyD .dDSignBox{
  width: 48%;
  position: relative;
}
#viewDailyD .dDSignBox label{
  width: 100%;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
}
#viewDailyD .dDSignBox label div{
  width: 100%;
  border-bottom: 1px solid var(--black);
  margin-top: 20mm;
}

#viewDailyD .dDPandLFooter{
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}
#viewDailyD .dDPandLSumCon{
  width: 100%;
  position: relative;
  display: flex;
  flex-flow: column nowrap;
  align-items: flex-end;
  padding: 5mm;
  border-top: 1px var(--black) solid;
}
#viewDailyD .dDPandLSumCon table{
  margin-top: 10px;
  width: 50%;
  font-size: 12px;
  font-weight: 0;
  border: 0;
  border-collapse: collapse;
}
#viewDailyD .dDPandLSumCon th{
  border: 0;
  text-align: left;
  padding-right: 3mm;
}
#viewDailyD .dDPandLSumCon th:last-of-type{
  text-align: right;
  padding-right: 0;
}
#viewDailyD .dDPandLSumCon td:last-of-type{
  text-align: right;
  padding-right: 0;
}
#viewDailyD .dDPandLSumCon td{
  border: 0;
  text-align: left;
  padding-right: 3mm;
}
#viewDailyD .DdPandLTotal{
  border-bottom: 1px double var(--black);
  border-top: 1px double var(--black)
}

#viewDailyDetails{
  flex-flow: column nowrap;
}

#viewDailyPandL{
  flex-flow: column nowrap;
}

#viewDailyEdit{
  flex-flow: column nowrap;
  width: 800px;
}

#viewDailyEdit table{
  margin-top: 10px;
  width: 100%;
  border-radius: 3px;
  font-size: 14px;
  border: 0;
  border-collapse: collapse;
}
#viewDailyEdit table td{
  text-align: center;
  padding: 5px 0 5px 0;
  border: 0;
}
#viewDailyEdit table th{
  border: 0;
}
#viewDailyEdit table th:last-of-type{
  width: 30px;
}
#viewDailyEdit table td:last-of-type{
  width: 30px;
}
#viewDailyEdit table th:first-of-type{
  text-align: left;
  padding-left: 7.5px;
}
#viewDailyEdit table td:first-of-type{
  text-align: left;
  padding-left: 7.5px;
}
#viewDailyEdit table td img{
  padding-left: 10px;
  width: 15px;
  height: auto;
  cursor: pointer;
}
#viewDailyEdit table td input{
  box-sizing: border-box;
  width: 70px;
  height: 30px;
  border: var(--grey) solid 1px;
  border-radius: 3px;
  padding-left: 7.5px;
  margin-left: 7.5px;
}
#viewDailyEdit table td .viewEditTextbox{
  resize: none;
  overflow: hidden;
  width: 400px;
  background-color: var(--white);
  box-sizing: border-box;
  min-height: 30px;
  border: var(--grey) solid 1px;
  border-radius: 3px;
  padding: 7.5px;
  margin-left: 7.5px;
}

#viewDailyEdit .viewProjPlantNav{
  width: calc(100% - 60px);
  box-sizing: border-box;
  display: flex;
  flex-flow: column;
  align-items: stretch;
  height: 30px;
  margin: 20px 0 20px 60px;
  border-bottom: 1px solid var(--grey);
}
#viewDailyEdit .viewProjPlantNav ul{
  height: 100%;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
}
#viewDailyEdit .viewProjPlantNav li{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  margin-right: 5px;
  border-radius: 5px 5px 0 0;
  padding: 0 15px;
  color: var(--white);
  background-color: var(--grey);
}
#viewDailyEdit .viewProjPlantNav li:hover{
  background-color: var(--darkGrey);
}

/*DASHBOARD VIEW SCREEN*/
#viewDashboard{
  flex-flow: column nowrap;
  align-items: center;
  width: 100%;
  position: fixed;
  height: calc(100% - 60px);
  bottom: 0;
  overflow: scroll;
  font-size: 12px;
}
#viewDashboard .dashHeader{
  display: flex;
  flex-flow: column nowrap;
  width: 920px;
  padding: 60px 0 5px 0;
  border-bottom: 1px solid var(--charcoal);
}
#viewDashboard .dashHeader h1{
  color: var(--charcoal);
}
#viewDashboard .dashBody{
  padding-bottom: 60px;
}
#viewDashboard .dashBodySec{
  width: 920px;
  padding: 30px;
  box-sizing: border-box;
  border-radius: 7px;
  background-color: var(--white);
  margin-top: 30px;

}
#viewDashboard .dashBodySecHead{
  border-bottom: var(--grey) solid 1px;
}
#viewDashboard .dashBodySecHead p{
  color: var(--grey);
  margin-bottom: 30px;
  padding-top: 7px;
}
#viewDashboard .dashBodySecBody{
  width: 100%;
  padding-top: 30px;
}
#viewDashboard .dashBodySecBody table{
  margin-top: 10px;
  width: 100%;
  border-radius: 3px;
  font-size: 14px;
  border: 0;
  border-collapse: collapse;
}
#viewDashboard .dashBodySecBody table td{
  text-align: left;
  padding: 5px 0 5px 10px;
  border: 0;
}
#viewDashboard .dashBodySecBody table th{
  border: 0;
  text-align: left;
  padding-bottom: 10px;
}
#viewDashboard .dashBodySecBody table th:last-of-type{
  width: 30px;
}
#viewDashboard .dashBodySecBody table td:last-of-type{
  width: 30px;
}
#viewDashboard .dashBodySecBody table th:first-of-type{
  text-align: left;
  padding-left: 7.5px;
}
#viewDashboard .dashBodySecBody table td:first-of-type{
  text-align: left;
  padding-left: 7.5px;
}
#viewDashboard .dashBodySecBody table td img{
  padding-left: 10px;
  width: 15px;
  height: auto;
  cursor: pointer;
}

#viewDashboard .viewCltTitle{
  color: var(--orange);
  font-size: 20px;
  font-weight: bold;
}
#viewDashboard .cltProjCon{
  box-sizing: border-box;
  position: relative;
  margin: 0 0 10px 20px;
  background-color: var(--white);
  border-radius: 7px;
  cursor: pointer;
  padding: 8px;
}
#viewDashboard .cltProjCon:hover{
  box-shadow: 0 0 5px var(--grey);
}
#viewDashboard .cltProjHead{
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
}
#viewDashboard .cltProjHeadL{
  font-size: 18px;
  font-weight: bold;
}
#viewDashboard .cltProjHeadR{
  font-size: 14px;
}
#viewDashboard .cltProgCon{
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  width: 100%;
  margin-bottom: 8px;
}
#viewDashboard .cltProgDis{
  box-sizing: border-box;
  width: 80px;
  font-size: 12px;
  color: var(--grey);
  padding-right: 5px;
  text-align: right;
}
#viewDashboard .cltProgBar{
  height: 15px;
  background-color: var(--lightGrey);
  flex-grow: 1;
  border-radius: 7px;
}
#viewDashboard .cltProgress{
  height: 15px;
  border-radius: 7px;
  transition: width 1s;
}

#frmProfile{
  flex-flow: column nowrap;
  position: relative;
  align-items: center;
  width: 100%;
}
#frmProfile .logoDetails{
    width: 300px;
    margin-left: 250px;
}
#frmProfile .photoCon{
    position: relative;
}
#frmProfile .photoCon .photo{
    width: auto;
    max-width: 300px;
    max-height: 300px;
    user-select: none;
    user-drag: none;
    margin-bottom: 10px;
}
#frmProfile .photoCon .cropBox{
    position: absolute;
    display: none;
    z-index: 2;
    background-color: transparent;
    border: 2px solid white;
    box-shadow: 2px 2px 5px black, -2px -2px 5px black;
    cursor: grab;
    resize: both;
    overflow: hidden;
}
#frmProfile .cropBox .flexBox{
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 90%;
}
#frmProfile .photoCon .cropBox .cropMove{
    user-select: none;
    width: 50%;
    height: 50%;
    margin-top: 10%;
    background-color: rgba(255,255,255,0.3);
    position: relative;

}
#frmProfile .frmProPhotBtnCon{
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  margin-bottom: 9px;
}
#frmProfile .frmProPhotBtnCon .gFrmSaveBtn{
  background-color: var(--green);
  display: flex;
  font-size: 13px;
  height: 27px;
  width: 100px;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  cursor: pointer;
  color: var(--white);
  margin-right: 3px;
}
#frmProfile .frmProPhotBtnCon input{
  display: none;
}
