:root{
    --black: black;
    --white: white;
    --logoBlue: #124985;
    --logoRed: #f05927;
}

  
  body {
    font-family: 'Roboto Flex', sans-serif;
    font-variation-settings: 
      'wght' 400, /* Weight */
      'wdth' 100, /* Width */
      'opsz' 16,  /* Optical size */
      'GRAD' 0,   /* Grade */
      'slnt' 0,   /* Slant */
      'XTRA' 400, /* Extra Width */
      'XOPQ' 100, /* X-height Optical Size */
      'YOPQ' 100, /* Y-height Optical Size */
      'YTLC' 500, /* Lowercase Letters Size */
      'YTUC' 700, /* Uppercase Letters Size */
      'YTAS' 750, /* Ascender Size */
      'YTDE' 250, /* Descender Size */
      'YTFI' 700; /* Figure Style */
  }
  

*{
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
}

html, body{
    height: 100%;
    width: 100%;
    font-size: 16px;
    overflow: hidden;
}

input {
    padding-left: 5px;
}
input:invalid{
    background-color: pink;
}

.gFrmTable{
    border-collapse: collapse;
    width: 100%;
}
.gFrmTable tr{
    width: 100%;
}
.gFrmTable td, table th{
    border: 1px solid black;
    padding: 0 3px 0 3px;
}

.gNone{
    display: none;
}
.gFrm{
  display: none;
  width: 100%;
  max-height: 100%;
  max-width: 500px;
  background-color: white;
  overflow: auto;
}
.gFullFrm{
    display: none;
    width: 100%;
    max-height: 100%;
    background-color: white;
    overflow: auto;
}
.gFrmHeader{
    display: flex;
    position: sticky;
    top: 0px;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    background-color: var(--logoBlue);
    color: white;
    text-shadow: 2px 2px 3px var(--logoRed);
    padding: 5px 10px 5px 10px;
    font-size: 200%;
    width: 100%;
    z-index: 1;
}
.gFrmBackHeader{
    display: flex;
    flex-flow: row nowrap;
    gap:5px;
    justify-content: center;
    align-items: center;
}
.gFrmBackHeader .js_BtnBack{
    height: 30px;
    width: 30px;
}

.gFrmFieldset{
    border: 1px solid black;
    padding: 5px;
    margin-top: 10px;
}
.gFrmFieldset legend{
    margin: 0px 5px 0px 5px;
}
.gLegendHeader{
    font-size: 120%;
    font-weight: bold;
}


.gFrmClose{
    height: 30px;
    cursor: pointer;
}
.gFrmEdit{
  height: 30px;
  cursor: pointer;
}
.gFrmSection{
    display: block;
    margin-top: 10px;
    margin-bottom: 5px;
    font-size: 130%;
    color: var(--darkBlue);
    text-decoration: underline;
}
.gFrmInput{
    height: 30px;
    display: block;
    border: 1px solid black;
    padding-left: 5px;
    width: 100%;
}
.gFrmSecHeader{
    display: block;
    font-size: 130%;
    font-weight: bold;
    margin-top: 10px;
    text-decoration: underline;
}

.gFrmTabCon{
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-around;
    border-top: 1px solid var(--logoBlue);
    border-bottom: 1px solid var(--logoBlue);
    padding-top: 5px;
    padding-bottom: 5px;
}
.gFrmTabCon div{
    padding: 5px;
    border: 1px solid var(--logoBlue);
}
.gFrmTabCon div.selected{
    color: white;
    background-color: var(--logoBlue);
}

.gDoubleInputCon{
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-end;
    width: 100%;
    gap: 5px;
}
.gChkBox{
    display: flex;
    flex-flow: row nowrap;
    gap: 5px;
    align-items: center;
}
.gChkBox input{
    height: 25px;
    width: 25px;
}
.gFrmBtnBox{
    position: sticky;
    bottom: 0;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
    gap: 15px;
    margin: 10px 0 5px 0;
    width: 100%;
    padding: 10px;
    background-color: white;
}

.gBtnBox{
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
    gap: 15px;
    margin: 10px 0 5px 0;
    width: 100%;
}

.gBtnSave{
    background-color: var(--logoBlue);
    color: white;
    padding: 5px 10px 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    min-width: 80px;
    text-align: center;
    box-shadow: 2px 2px 5px black;
}
.gBtnDel{
    background-color: white;
    color: red;
    padding: 5px 10px 5px 10px;
    border-radius: 5px;
    border: 1px solid red;
    cursor: pointer;
    text-align: center;
    margin-right: 10px;
    margin-left: 10px;
}
.gBtnBack{
    height: 50px;
}
.gBtnCancel{
    border: 1px solid var(--logoRed);
    padding: 5px;
}

.gBtnFrame{
    color: var(--logoBlue);
    border: 1px solid var(--logoBlue);
    padding: 5px 10px 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    min-width: 80px;
    text-align: center;
    box-shadow: 2px 2px 5px black;
    

}
.gBtnPhoto{
    position: relative;
    height: 50px;
    width: 50px;
    background-image: url('../img/btnPhoto.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    border: 1px solid var(--lightBlue);
    margin-top: 10px;
}
.gBtnRefresh{
    height: 30px;
}

.gFlexRowBetween{
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    margin-top: 10px;
}

.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(--darkBrown);
    border-radius: 50%;
    border-top: 8px solid var(--lightBrown);
    border-bottom: 8px solid var(--lightBrown);
    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;
}
.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;
    text-align: center;
}
.gFloatScreen{
    position: absolute;
    z-index: 3;
    max-height: 83vh;
    width: 95%;
    max-width: 500px;
    background-color: rgba(255, 255, 255, 0.8);
}

.gAlignCener{
    display: flex;
    width: 100%;
    justify-content: center;
}

.gLabel{
    display: flex;
    flex-flow: column nowrap;
    gap: 1px;
    margin-top: 3px;
}
.gLabel input{
    height: 40px;
    display: block;
    border: 1px solid black;
    padding-left: 5px;
    width: 100%;
}
.gLabel select{
    height: 40px;
    display: block;
    border: 1px solid black;
    padding-left: 5px;
    width: 100%;
}

.gSideLabel{
    display: flex;
    flex-flow: row nowrap;

}

.gFrmBody{
    padding: 5px 10px 5px 10px;
    width: 100%;
}

.gFrmFooter{
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
    width: 100%;
    padding: 10px 10px 10px 10px;
    border-top: 1px solid var(--darkBlue);
    background-color: white;
}

.gjs_textareaCon{
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    margin-top: 5px;
}
.gjs_textareaCon textarea{
  resize: none;
  overflow: hidden;
  width: 100%;
  background-color: white;
  box-sizing: border-box;
  min-height: 30px;
  border: black solid 1px;
  border-radius: 3px;
  padding: 7.5px;
  
}
.gjs_textareaCon span{
    position: absolute;
    right: 10px;
    top: 2px;
    color: black;
    font-size: 8px;
}

.gBtnOptionsCon{
    display: flex;
    flex-flow: column nowrap;
    gap: 20px;
    margin-top: 10px;
}

.gBtnOptionsCon span{
    font-size: 120%;
    text-decoration: underline;
    color: var(--logoBlue);
    text-shadow: 0.5px 0.5px 0.5px black;
}

#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;
  background-color: white;
  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: white;
    height: 40px;
    line-height: 37px;
    border-radius: 5px;
    font-size: 24px;
    cursor: pointer;
}

#dataListCon {
  position: absolute;
  display: none;
  background-color: white;
  border: 1px solid var(--logoBlue);
  z-index: 4;
  max-height: 300px;
  overflow-y: scroll;
}
#dataListCon .googleLogo{
    width: 144px;
    height: 18px;
    float: right;
}
#dataList {
  width: 100%;
  height: 100%;
  text-align: left;
  overflow-y: auto;
}
#dataList tr {
  position: relative;
  height: 40px;
}
#dataList td {
  text-align: left;
  border-bottom: 1px solid var(--logoRed);
  height: 25px;
  cursor: pointer;
  width: 100%;
  padding-left: 5px;
  vertical-align: middle;
}
#dataList td:hover {
    background-color: var(--logoBlue);
    color: white;
}
#dataList img {
  height: 20px;
  width: 20px;
  display: inline-block;
}
#dataList .btnAdd{
    background-color: var(--lightBlue);
    color: black;
    padding: 5px;
    border-radius: 5px;
    max-width: 200px;
    text-align: center;
}

#fullView{
    display: none;
    max-width: 500px;
}
#fullView .fullVHeader{
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
}
#fullView .logo{
    max-height: 100px;
    max-width: 100%;
    height: 20vh;
}

#appView{
    display: none;
    grid-template-areas:
      'header'
      'body'
      'footer';
    grid-template-rows: 60px auto 80px;
    height: 100%;
    max-width: 500px;
}
#appView .appViewHeader{
    grid-area: header;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px 0 10px;
}
#appView .appViewHeader .appVHeaderCon{
    grid-area: header;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    gap: 5px;
    

}
#appView .appViewHeader .icoMenu{
    max-width: 40px;
    max-height: 40px;
    border-radius: 50%;
}

#appView .appViewHeader .logo{
    max-width: 70px;
    box-shadow: 1px 1px 5px black;
}
#appView .appViewHeader ul{
    list-style: none;
}
#appView .appViewHeader ul li{
    display: inline-block;
    border-radius: 10px;
    color: black;
    padding: 5px;
    font-size: 110%;
    border: 1px solid black;
}
#appView .appViewHeader ul li.selected{
    background-color: var(--darkBlue);
    color: white;
}

#appView .appViewHeader ul li:nth-child(n+2){
    margin-left: 5px;
}
#appView .appViewHeader .userBox{
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-end;
    align-items: flex-end;
    font-size: 60%;
}

#appView .appViewHeader .userBox #appVCompName{
    color: var(--logoRed);
    font-weight: bold;
}

#appView .mainDropDown{
    max-height: 0px;
    position: absolute;
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-around;
    background-color: var(--logoBlue);
    z-index: 5;
    top: 60px;
    width: 200px;
    box-shadow: 2px 2px 5px black;
    box-sizing: border-box;
    overflow: hidden;
    transition: max-height 0.5s;
    box-sizing: border-box;
}
#appView .mainDropDown div{
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    gap: 5px;
    margin-top: 5px;
    margin-bottom: 5px;
    border-radius: 5px;
    width: 50px;
    height: 50px;
    border: 1px solid var(--darkBlue);
    box-shadow: 1px 1px 3px black;
    width: 100%;
    padding: 10px;
    background-color: white;
}
#appView .mainDropDown div.disable{
    opacity: 0.4;
}

#appView .mainDropDown div img{
    max-height: 30px;
    max-width: 30px;
}
#appView .mainDropDown div span{
    font-weight: bold;
    color: var(--logoBlue);
    text-shadow: 0.5px 0.5px 0.5px black;
}

#appView .appViewBody{
    grid-area: body;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    height: 100%;
    width: 100%;
    padding-bottom: 10px;
}

#appView .appViewFooter{
    grid-area: footer;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-around;
    gap: 5px;
    border-top: 1px solid black;
}
#appView .appViewFooter .appViewBtn{
    display: flex;
    flex-flow: column nowrap;
    align-items: center;  
    justify-content: center;  
    border-radius: 5px;
    width: 50px;
}
#appView .appViewFooter .appViewBtn.disable{
    opacity: 0.4;
}
#appView .appViewFooter .appViewBtn img{
    max-height: 30px;
    max-width: 30px;
}
#appView .appViewFooter .appViewBtn span{
    font-weight: bold;
    color: var(--logoBlue);
    text-shadow: 0.5px 0.5px 0.5px black;
}

/*FORM SELECTBOX*/
#frmSelectBox{
    position: absolute;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 3;
    overflow-y: hidden;
}
#frmSelectBox .frmBody{
    background-color: white;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    width: 90%;
    max-height: 90%;
    overflow-y: hidden;
    padding: 10px;
}
#frmSelectBox .q{
    font-size: 120%;
    text-decoration: underline;
    font-weight: bold;
}
#frmSelectBox .optionCon{
    display: flex;
    flex-flow: column nowrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
    width: 90%;
    overflow-y: auto;
    margin-top: 10px;
}
#frmSelectBox .optionCon div{
    background-color: var(--logoBlue);
    color: white;
    text-align: center;
    width: 80%;
    padding: 5px 0 5px 0;
    border-radius: 5%;
}

#frmSelectBox footer{
    margin-top: 10px;
}
#frmSelectBox .js_BtnClose{
    width: 80px;
    padding: 5px 0 5px 0;
    border: 1px solid var(--logoBlue);
    text-align: center;
}

/*FORM PHOTO*/
#frmPhoto .imgCon{
    display: flex;
    justify-content: center;
    padding-top: 10px;
}
#frmPhoto .img{
    max-height: 300px;
    max-width: 100%;
}



/*FORM SEARCH*/
#frmSearch .actBtnsCon{
    display: flex;
    flex-flow: row nowrap;
    width: 100%;
    gap: 5px;
    justify-content: flex-end;
    padding: 5px;
}

#frmSearch .searchTbl thead{
    background-color: var(--logoRed);
    text-align: left;
}
#frmSearch .searchTbl thead th{
    padding: 5px;
    border: 1px solid black;
}
#frmSearch .searchTbl tbody td{
    background-color: white;
    height: 40px;
    padding: 5px;
    border: 1px solid black;
    cursor: pointer;
}
#frmSearch .searchTbl tbody img{
    height: 35px;
   
}
#frmSearch .searchTbl tbody input[type='checkbox']{
    height: 30px;
    width: 30px;
}

#frmSearch .searchTbl .btnA.selected{
    background-color: green;
    color: white;
}
#frmSearch .searchTbl .btnD.selected{
    background-color: red;
    color: white;
}

#frmSearch .filterCon{
    display: flex;
    flex-flow: row wrap;
    width: 100%;
    margin: 10px 0 10px 0;
    gap: 5px;
}
#frmSearch .filterCon div{
    border: 1px solid var(--logoBlue);
    padding: 5px;
    cursor: pointer;
    font-size: 80%;
    border-radius: 5%;
}
#frmSearch .filterCon div.selected{
    background-color: var(--logoBlue);
    color: white;
    text-shadow: 1px 1px 3px black;
}

#frmSearch .selectionActCon{
    display: flex;
    flex-flow: row nowrap;
    gap: 5px;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    font-size: 80%;
}
#frmSearch .selectionActCon .btnClearSelect{
    border: 1px solid red;
    padding: 2px 5px 2px 5px;
}
#frmSearch .selectionActCon .btnSelection{
    background-color: var(--logoBlue);
    color: white;
    padding: 2px 5px 2px 5px;
    border-radius: 5px;
    cursor: pointer;
    min-width: 80px;
    text-align: center;
    box-shadow: 2px 2px 5px black;
    
}

#frmSearch .searchCon{
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    gap: 3px;
    align-items: center;
    margin-top: 5px;
    margin-bottom: 5px;
}
#frmSearch .searchCon .searchAndClear{
    display: flex;
    flex-flow: row nowrap;
    gap: 5px;
}

#frmSearch .searchCon .txtSearch{
    width: 150px;
}
#frmSearch .searchCon .js_BtnRefresh{
    max-height: 30px;
}

/*FORM MAIN MENU*/
#frmMainMenu .menuBtnsCon{
    display: flex;
    flex-flow: row wrap; 
    justify-content: space-around;
    gap: 20px;
}
#frmMainMenu .menuBtnsCon .menuBtn{
    background-color: var(--logoBlue);
    color: white;
    border: 1px solid black;
    border-radius: 5px;
    box-shadow: 1px 1px 5px black;
    padding: 5px;
}

/*FORM ADMIN MENU*/
#frmAdminMenu .menuBtnsCon{
    display: flex;
    flex-flow: row wrap; 
    justify-content: space-around;
    gap: 20px;
}
#frmAdminMenu .menuBtnsCon .menuBtn{
    background-color: var(--logoBlue);
    color: white;
    border: 1px solid black;
    border-radius: 5px;
    box-shadow: 1px 1px 5px black;
    padding: 5px;
}

/*FORM USER MENU*/
#frmUserMenu .menuBtnsCon{
    display: flex;
    flex-flow: row wrap; 
    justify-content: space-around;
    gap: 20px;
}
#frmUserMenu .menuBtnsCon .menuBtn{
    background-color: var(--logoBlue);
    color: white;
    border: 1px solid black;
    border-radius: 5px;
    box-shadow: 1px 1px 5px black;
    padding: 5px;
}


/*FORM USER*/
#frmUser .sitesCon{
    display: flex;
    flex-flow: column nowrap;
    gap: 10px;
}
#frmUser .secTable .siteName{
    color: black;
    text-align: center;
    font-size: 110%;
    background-color: white;
}

#frmUser .secTable thead th{
    background-color: var(--logoPink);
    color: white;
}
#frmUser .secTable thead .textLeft{
    padding-left: 5px;
    text-align: left;
}
#frmUser .secTable thead th:nth-child(n+2){
    text-align: center;
}


/*FORM SECURITY ACCESS*/
#frmSecAccess .profilesCon{
    display: flex;
    flex-flow: row nowrap;
    gap: 5px;
}
#frmSecAccess .profilesCon div{
    border: 1px solid var(--logoRed);
    padding: 3px;
    cursor: pointer;
}
#frmSecAccess .profilesCon div.selected{
    background-color: var(--logoBlue);
    color: white;
    
}   

#frmSecAccess .secTable th{
    background-color: var(--logoRed);
}

#frmSecAccess .secTable tbody td{
    height: 40px;
}
#frmSecAccess .secTable tbody td:first-of-type{
    padding-left: 5px;
}

#frmSecAccess .secTable .btn{
    text-align: center;
}
#frmSecAccess .secTable .allow{
    color: green;
    opacity: 0.7;
    width: 80px;
}
#frmSecAccess .secTable .allow.selected{
    opacity: 1;
    background-color: green;
    color: white;
}
#frmSecAccess .secTable .deny{
    color: red;
    opacity: 0.5;
    width: 80px;
}
#frmSecAccess .secTable .deny.selected{
    opacity: 1;
    background-color: red;
    color: white;
}


/*FORM USER PIN*/
#frmUserPin .pinDisplayCon{
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-around;
    width: 100%;
    margin-top: 10px;
}
#frmUserPin .pinDisplayCon div{
    display: flex;
    flex-flow: row nowrap;
    width: 30px;
    height: 30px;
    font-size: 200%;
    border: 1px solid black;
    border-radius: 5px;
    justify-content: center;
    align-items: center;
    color: var(--logoBlue);
}

#frmUserPin .numKeyCon{
    display: flex;
    flex-flow: row wrap;
    gap: 1%;
    margin-top: 20px;
}
#frmUserPin .numKeyCon div{
    display: flex;
    flex: 0 0 32.33333%;
    height: 80px;
    border: 1px solid black;
    font-size: 300%;
    justify-content: center;
    align-items: center;
}
#frmUserPin .numKeyCon img{
    height: 50%;
}

/*FORM FORM USER ACCOUNTS*/
#frmUserAccs .accsCon{
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    gap: 10px;
    align-items: center;
    
}
#frmUserAccs .acc{
    border-radius: 5px;
    box-shadow: 2px 2px 5px black;
    padding: 10px 5px 10px 5px;
    width: 90%;
    cursor: pointer;
}


/*FORM QNOTE*/
#frmQA{
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    top: 0;
    z-index: 3;
}
#frmQA .disArea{
    max-height: 80vh;
    width: 90%;
    max-width: 500px;
    display: flex;
    flex-flow: column nowrap;
}

#frmQA .frmBody{
    background-color: white; 
    display: flex;
    flex-flow: column nowrap;
    height: 100%;
    width: 100%;
    padding: 10px;
}

#frmQA .ansCon{
    display: flex;
    flex-flow: column nowrap;
    gap: 10px;
    padding: 10px;
}

/*FORM COPY LINK*/
#frmCopyLink{
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    top: 0;
    z-index: 3;
}
#frmCopyLink .disArea{
    max-height: 80vh;
    width: 90%;
    max-width: 500px;
    display: flex;
    flex-flow: column nowrap;
}

#frmCopyLink .frmBody{
    background-color: white; 
    display: flex;
    flex-flow: column nowrap;
    height: 100%;
    width: 100%;
    padding: 10px;
}

/*FORM PO*/

#frmPO .js_lblFrmHeader{
    font-size: 80%;
}

#frmPO .tabsCon{
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-around;
    gap: 10px;
    margin-bottom: 10px;
}
#frmPO .tabsCon div{
    display: flex;
    justify-content: center;
    padding: 5px;
    border: 1px solid var(--logoRed);
}
#frmPO .tabsCon div.selected{
    background-color: var(--logoBlue);
    color: white;
}

#frmPO .poDetailsCon{
    padding-bottom: 300px;
}

#frmPO .usersCon{
    display: flex;
    flex-flow: column nowrap;
    align-items: flex-end;
    color: var(--logoBlue);
    font-size: 80%;
}

#frmPO .suppDetailsCon table{
    font-size: 80%;
}
#frmPO .suppDetailsCon{
    position: relative;
    transition: max-height 0.5s ease-out;
    overflow: hidden;
}
#frmPO .detailTblsCon{
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
}
#frmPO .detailTblsCon table:first-of-type{
    border-right: 1px solid black;
}

#frmPO .tblAddBtnCon{
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
}
#frmPO .tblAddBtnCon .itemTotals{
    display: flex;
    flex-flow: column nowrap;
    width: 100%;
    color: var(--logoBlue);
}

#frmPO .tblStockItems tbody td:nth-child(3){
    width: 40px;
    text-align: center;
}
#frmPO .tblStockItems tbody td:nth-child(4){
    width: 50px;
    text-align: center;
}

#frmPO .tblStockItems tbody{
    font-size: 80%;
}
#frmPO .tblStockItems tbody img{
    max-height: 35px;
}

#frmPO .gFrmBtnBox{
    gap: 5px;
    justify-content: space-between;
}
#frmPO .gFrmBtnBox div{
    padding: 3px;
    justify-content: center;
    margin: 0;
    
}


#frmPO .js_pannelSuppInv .pannelCon{
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
#frmPO .js_pannelSuppInv .pannelCon .disSuppInvImg{
    max-width: 100%;
    max-height: 300px;
}
#frmPO .js_pannelSuppInv .pannelCon .invPhotosCon{
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    width: 100%;

}
#frmPO .js_pannelSuppInv .pannelCon .invPhotosCon .imgCon{
    position: relative;
}
#frmPO .js_pannelSuppInv .pannelCon .invPhotosCon .delImg{
    position: absolute;
    right: 0;
    top: 0;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background-color: white;
}
#frmPO .js_pannelSuppInv .pannelCon .invPhotosCon .disImg{
    max-height: 120px;
    max-width: 120px;
}

/*FORM USER PROJECTS*/
#frmUserProj .tblUserProj{
    width: 100%;
    margin-top: 5px;
}
#frmUserProj .tblUserProj th{
    background-color: var(--logoRed);
    color: var(--logoBlue);
}

#frmUserProj .tblUserProj td:nth-child(1){
    width: 100px;
}
#frmUserProj .tblUserProj td:nth-child(3){
    width: 50px;
    text-align: center;
}

/*FORM APPROVAL SETUP*/
#frmApprovalSetup .tblLimits td input{
    width: 100%;
    text-align: right;
    height: 25px;
    padding-right: 5px;
}
#frmApprovalSetup .tblLimits td img{
    height: 25px;
    width: 25px;
}
#frmApprovalSetup .tblLimits td:nth-child(3){
    width: 30px;
    align-items: center;
}

/*FORM PO ITEMS RECEIVED*/
#frmPORec .pannelCon {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    width: 100%;

}

#frmPORec .pannelCon .disDnImg{
    max-width: 100%;
    max-height: 300px;
}
#frmPORec .pannelCon .imgCon{
    position: relative;
}
#frmPORec .pannelCon .delImg{
    position: absolute;
    right: 0;
    top: 0;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background-color: white;
}
#frmPORec .pannelCon .disImg{
    max-height: 120px;
    max-width: 120px;
}

#frmPORec .dNPhotosCon{
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    width: 100%;

}


#frmPORec .stockCon{
    display: flex;
    flex-flow: column nowrap;
}
#frmPORec .stockCon .receivedCon{
    display: flex;
    flex-flow: column nowrap;
    align-items: flex-end;
    color: var(--logoRed);
    font-size: 80%;
    padding-right: 3px;
}
#frmPORec .stockCon .receivedCon div{
    display: flex;
    width: 100%;
    flex-flow: row wrap;
    justify-content: flex-end;
}
#frmPORec .tblPOItemsCon thead{
    background-color: var(--logoRed);
    text-align: center;
}
#frmPORec .tblPOItemsCon td:nth-child(2){
    width: 50px;
    text-align: center;
}
#frmPORec .tblPOItemsCon td:nth-child(3){
    width: 60px;
}
#frmPORec .tblPOItemsCon td:nth-child(3) input{
    width: 100%;
    text-align: right;
    padding-right: 3px;
}
