:root{
    --darkBrown: #4a3323;
    --brownShadow: #6f5543;
    --brown: #b38530;
    --lightBrown: #e8d7b3;
    --green: #6B8E23;
    --lightGreen : #A2C96D;
    --white: #FCFCFC;
    --red: #B74A3E;
    --lightRed: #D78574;
    --yellow: #D9B310;
    --lightYellow: #EDD25F;
    --blue: #4A708B;
    --lightBlue: #6C8DA5;
    --orange: #D2691E;
    --lightOrange: #F4A460;

}
*{
    padding: 0;
    border: 0;
    margin: 0;
    box-sizing: border-box;
}
html{
    width: 100%;
    height: 100%;
}
body{
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--darkBrown);
    font-size: 1vw;
    font-family: 'roboto', sans-serif;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: var(--frmBackground);
}
table{
    width: 100%;
}
table, td{
    border-collapse: collapse;
}
ul, li{
    user-select: none;
}

#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(--darkBrown);
    background-color: var(--white);
    border: 2px solid var(--red);
    border-radius: 15px;
    z-index: 4;
    display: none;
    position: absolute;
    margin: 0;
    padding: 15px;
    text-align: center;
    font-family: 'roboto', sans-serif;
}
#infoBox header{
    margin: 15px 0 15px 0;
    color: var(--red);
    font-family: 'roboto', sans-serif;
    font-weight: bold;
    font-size: 24px;
}
#infoBox img{
    margin-bottom: 3px;
    height: 50px;
    width: 50px;
}
#infoBox p{
    font-family: 'roboto', sans-serif;
    font-size: 20px;
}
#infoBox .btnBox{
    margin: 10px 0 10px 0;
    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);
    border: 1px solid var(--darkBrown);
    z-index: 4;
    overflow-y: auto;
}
#dataList{
    width: 100%;
    height: 100%;
    text-align: left;
}
#dataList tr{
  position: relative;
  height: 40px;
}
#dataList td{
    text-align: left;
    border-bottom: 1px solid var(--darkBrown);
    height: 25px;
    cursor: pointer;
    width: 100%;
    padding-left: 5px;
    vertical-align: middle;
}
#dataList td:hover{
    background-color: var(--lightBrown);
}
#dataList img{
    height: 20px;
    display: inline-block;
}

#imgView{
    display: none;
    position: absolute;
    background-color: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    z-index: 1;
    cursor: alias;
}
#imgView .photoCon{
    position: relative;
}
#imgView .mainImg{
    max-height: 90vh;
    max-width: 80vw;
}
#imgView .prevBtn{
    position: absolute;
    top: 0;
    left: 0;
    height: 5vw;
    z-index: 2;
    margin-left: -7vw;
    cursor: pointer;
}
#imgView .nextBtn{
    position: absolute;
    top: 0;
    right: 0;
    height: 5vw;
    z-index: 2;
    margin-right: -7vw;
    cursor: pointer;
}


.gFullFrm{
    max-width: 500px;
    margin: 0 auto;
    display: none;
}
.gFullFrm .frmCon{
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-around;
    height: 100%;
    width: 100%;
    padding: 1vw 1vw 1vw 1vw;
}
.gFullFrm .header{
    text-align: center;
}
.gFullFrm .frmCon input{
    height: 40px;
    width: 96%;
}
.gFullFrm .frmCon img{
    width: 6vw;
}
.gFullFrm .btnBox{
    text-align: center;
    width: 100%;
}
.gFullFrm .frmCon a{
    color: var(--brown);
    text-align: center;
}

/*GLOBAL FORM DESIGN*/
.gFrm {
  display: none; /* JS changes none → block */
  width: 100%;
  max-height: 100%;
  background-color: var(--lightBrown);
  border-radius: 7px;
  box-shadow: 1px 1px 3px grey;
  position: relative;
  max-height: 85vh;
  overflow: hidden; /* Prevent double scroll */
  box-sizing: border-box;
  overflow-y: auto;
}
.gFrmHeader {
  padding: 1vw;
  position: sticky;
  top: 0;
  background-color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--darkBrown);
  font-size: 150%;
  font-weight: bolder;
  z-index: 30;
}
.gFrmBody{
    padding: 10px;
}
/* SCROLL AREA */
.gFrmContent {
  overflow-y: auto;
  overflow-x: hidden;

  /* HEIGHT CALCULATION:
     Form = 85vh
     Header = ±60px
     Footer = ±70px
  */
  max-height: calc(85vh - 130px);

  padding: 10px 12px;
  padding-bottom: 0 !important; /* FIX */
  margin-bottom: 0 !important;  /* FIX */
}

.gFrmFooter {
  position: sticky;
  bottom: 0;
  background: #faf8f4;
  border-top: 1px solid var(--lightBrown);
  padding: 14px 18px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  z-index: 40;
  box-shadow: 0 -2px 4px rgba(0,0,0,0.05);
}
.gFrmBtnBox{
    background-color: var(--white);
    position: sticky;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
    bottom: 0;
    border-top: solid 1px var(--darkBrown);
}
.gFrmInfoBox{
  display: flex;
  flex-flow: row;
  align-items: center;
  border-radius: 7px;
  border: 1px solid var(--red);
  background-color: var(--lightRed);
  padding: 1vw;
  margin: 1vw;
}
.gFrmInfoBox p{
  color: var(--red);
  margin-left: 10px;
}
.gFrmInfoBox img{
  width: 20px;
}


.gFrmSection{
    padding: 1vw 1vw 1vw 1vw;
    display: flex;
    flex-flow: row nowrap;
    border-bottom: 1px solid var(--darkBrown);
}
.gFrmSection p{
  font-weight: normal;
  color: var(--white);
  font-size: 70%;
  margin-top: 0.5vw;
  padding-right: 0.5vw;
}
.gFrmSection .desc{
    width: 50%;
    font-weight: bold;
    font-size: 130%;
    font-family: 'roboto', sans-serif;
}
.gFrmSection .detail{
    width: 100%;
}

.gFrmLabel{
    font-weight: bold;
    display: block;
    font-family: 'roboto', sans-serif;
    margin-bottom: 7px;
}
.gFrmLabel input{
    display: block;
    outline-color: var(--darkBrown);
    margin-top: 0.1vw;
    margin-bottom: 0.5vw;
    height: 3vw;
    width: 100%;
    border: 1px solid var(--lightBrown);
    padding-left: 1vw;
    font-size: 110%;
    border-radius: 7px;
    box-sizing: border-box;
}
.gFrmLabel input:focus{
    font-size: 120%;
}
.gFrmLabel input::placeholder{
    color: var(--lightBrown);
}
.gFrmLabel input:invalid{
    border: 1px solid var(--red);
}

.gFrmInput{
    display: block;
    outline-color: var(--darkBrown);
    margin-top: 0.1vw;
    margin-bottom: 0.5vw;
    height: 2vw;
    width: calc(100% - 1vw);
    border: 1px solid var(--lightBrown);
    padding-left: 1vw;
    font-size: 110%;
}
.gFrmInput::placeholder{
    color: var(--lightBrown);
}
.gFrmDoubleInputCon{
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    gap: 5px;
    
}

.gFirstOption {
    color: var(--brown);
}
.gFrmLabel select{
    outline-color: var(--darkBrown);
    background-color: var(--white);
    display: block;
    margin-top: 0.1vw;
    margin-bottom: 0.5vw;
    height: 3vw;
    width: 100%;
    border: 1px solid var(--lightBrown);
    padding-left: 1vw;
    font-size: 120%;
    border-radius: 7px;
    box-sizing: border-box;
}
.gFrmLabel select:required:invalid{
    color: var(--lightBrown);
}
.gFrmLabel select option[value=""][disabled]{
    display: none;
}
.gFrmLabel select option{
    color: black;
}

.gFrmSelect{
    outline-color: var(--darkBrown);
    background-color: var(--white);
    display: block;
    margin-top: 0.1vw;
    margin-bottom: 0.5vw;
    height: 2vw;
    width: calc(100% - 1vw);
    border: 1px solid var(--lightBrown);
    padding-left: 1vw;
    font-size: 120%;
}
.gFrmSelect:required:invalid{
    color: var(--lightBrown);
}
.gFrmSelect option[value=""][disabled]{
    display: none;
}
.gFrmSelect option{
    color: black;
}

.gFrmLabel textarea{
    box-sizing: border-box;
    margin-top: 0.1vw;
    width: 100%;
    outline-color: var(--darkBrown);
    display: block;
    padding: 0.5vw 1vw 0.5vw 1vw;
    border-radius: 7px;
    font-family: 'roboto', sans-serif;
}

.gPhoneBox{
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
}
.gPhoneBox .gPhoneCode{
    width: 18%;
    display: inline-block;
}
.gPhoneBox .gPhoneNo{
    width: 50%;
    display: inline-block;
}

.gFrmLabel .gAddShort{
    width: 50%;
}
.gFrmLabel .gAddZip{
    width: 20%;
}

.gNone{
    display: none;
}

.gQCon{
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    margin-top: 0.5vw;
    margin-bottom: 0.5vw;
}
.gQCon .gQ{
    font-weight: bold;
}
.gQCon .gACon{
    display: flex;
    flex-flow: row nowrap;
}
.gQCon .gACon div{
    opacity: 0.7;
    border: 1px solid var(--lightBrown);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 4vw;
    height: 3vw;
    cursor: pointer;
    background-color: var(--white);
    border-radius: 7px;
}
.gQCon .gACon .yes.selected{
    opacity: 1;
    background-color: var(--green);
    color: var(--white);
}
.gQCon .gACon .no{
    margin-left: 0.5vw;
}
.gQCon .gACon .no.selected{
    opacity: 1;
    background-color: var(--red);
    color: var(--white);
}

.gItemsCon{
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    margin-top: 0.5vw;
    margin-bottom: 0.5vw;
}
.gItemsCon .gQ{
    font-weight: bold;
}
.gItemsCon .gItems{
    display: flex;
    flex-flow: row wrap;
    width: 100%;
    justify-content: space-between;
}
.gItemsCon .gItems div{
    color: var(--brown);
    background-color:var(--white);
    width: 20vw;
    max-width: 100px;
    height: 5vw;
    max-height: 40px;
    margin-bottom: 1vw;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 7px;
}
.gItemsCon .gItems div.selected{
    opacity: 1;
    background-color: var(--green);
    color: var(--white);
}

.gItemsCon .gLabel{
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.5vw;
    margin-bottom: 0.5vw;
}


.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{
    width: 50vw;
    position: absolute;
    top: 4.4vw;
    z-index: 3;
    max-height: 83vh;
}

/*BUTTONS*/

.gBtnSave {
  background: var(--green);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .15s;
  white-space: nowrap;
  margin-left: 8px;
}
.gBtnSave:hover {
  background: var(--lightGreen);
  transform: translateY(-1px);
  box-shadow: 0 3px 6px rgba(0,0,0,0.12);
}

.gBtnDel {
  background: var(--red);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .15s;
  white-space: nowrap;
}
.gBtnDel:hover {
  background: var(--lightRed);
  transform: translateY(-1px);
  box-shadow: 0 3px 6px rgba(0,0,0,0.12);
}

.gBtnAdd {
  background: var(--brown);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.gBtnAdd:hover {
  background: var(--brownShadow);
  transform: translateY(-1px);
}





.gClickable{
    cursor: pointer;
}
.gClickable:hover{
  font-weight: bold;
  background-color: var(--lightBrown);
}
.gBtnCloseFrm{
    height: 1.2vw;
    cursor: pointer;
}
.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;
}

.gPayPlanDis{
    opacity: 0.5;
}


.js_textareaCon{
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
}
.js_textareaCon textarea{
  resize: none;
  overflow: hidden;
  width: 100%;
  background-color: var(--white);
  box-sizing: border-box;
  min-height: 30px;
  border: var(--darkBlue) solid 1px;
  border-radius: 3px;
  padding: 7.5px;
  box-sizing: border-box;
}
.js_textareaCon span{
    position: absolute;
    right: 20px;
    top: 2px;
    color: black;
    font-size: 8px;
}



/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#fullView{
    display: flex;
    flex-flow: column nowrap;
    display: none;
}

#webView{
    height: 100%;
    width: 100%;
    display: flex;
    flex-flow: column nowrap;
    display: none;
}

#webView .mainHeader{
    padding: 0.5vw 0 0 0;
    display: flex;
    flex-flow: column nowrap;
    height: 60px;
}

#webView .mainHeader .menuCon{
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    flex-grow: 1;
}
#webView .mainHeader .menuCon img{
    height: 4vw;
    max-height: 40px;
    margin-left: 1vw;
    padding: 0.3vw;
}
#webView .mainHeader .menuCon .search{
    height: 2.5vw;
    max-height: 30px;
    width: 12vw;
    border: 1px solid black;
    padding-left: 1vw;
    font-size: 130%;
    margin-left: 1vw;
    border-radius: 7px;
}
#webView .mainHeader .menuCon ul{
    list-style: none;
    margin-left: 2vw;
    font-size: 130%;

}
#webView .mainHeader .menuCon li{
    display: inline-block;
    padding: 0 0.5vw 0 0.5vw;
    cursor: pointer;
    text-align: center;
}

#webView .mainHeader .tabSelectBar{
    position: relative;
    width: 100%;
    height: 3px;
    background-color: var(--darkBrown);
}
#webView .mainHeader .tabSelectBar .selector{
    position: relative;
    height: 100%;
    background-color: var(--lightBrown);
    transition: left 0.5s, width 0.5s;
}

#webView .mainHeader .rightHeader{
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
    flex-grow: 2;
}
#webView .mainHeader .userCon{
    margin: 0 1vw 0.5vw 0;
    display: flex;
    align-items: center;
    padding: 0 0.5vw;

}
#webView .mainHeader .userCon .userName{
    font-size: 130%;
    font-weight: bold;
    color: var(--white);
    cursor: pointer;
    background-color: var(--darkBrown);
    padding: 5px 0.5vw;
    border-radius: 10px;
}
#webView .mainHeader .userCon .userName:Hover{
  box-shadow: 0 0 7px grey;
}
#webView .mainHeader .userCon .userType{

}
#webView .mainHeader .userCon .logOut{
    margin-left: 1vw;
    cursor: pointer;
    font-style: italic;
    color: var(--darkBrown);
}
#webView .mainHeader .userCon .logOut:hover{
  text-decoration: underline;
}


#webView .contactList{
    position: absolute;
    max-height: 0px;
    transition: height 2s;
    overflow: hidden;
    transition: max-height 0.5s;
    background-color: var(--white);
    z-index: 2;
    color: var(--darkBrown);
    box-shadow: 0.5vw 0.5vw 0.5vw grey;
}
#webView .contactList div{
    padding: 0.5vw 1vw 0.5vw 1vw;
    text-align: left;
    border-left: solid 2px var(--darkBrown);
}
#webView .contactList div:hover{
    color: var(--brown);
    border-left: solid 5px var(--brown);
    font-weight: bold;
}

#webView .frmCon{
    display: flex;
    justify-content: center;
    background-color: var(--lightBrown);
    height: calc(100% - 60px);
    overflow: scroll;
    width: 100%;
    box-sizing: border-box;
}

/*FORM PHOTO*/
#frmPhoto .imgCon{
    display: flex;
    justify-content: center;
    padding-top: 10px;
}
#frmPhoto .img{
    max-height: 300px;
    max-width: 100%;
}


/*FORM LOGIN*/
#frmLogin{
    display: block;
    width: 30vw;
}
#frmLogin img{
  width: 100%;
}
#frmLogin .secResetCode{
    display: none;
}
#frmLogin .secNewPass{
    display: none;
}
#frmLogin .secTaxi{
    display: none;
}

#frmLogin .btnForgot{
    cursor: pointer;
}

#frmLogin .secTaxi img{
  width: 100%;
  margin-bottom: 20px;
}
#frmLogin .secTaxi h2{
  width: 100%;
  margin-bottom: 10px;
  text-align: center;
  color: var(--brown);
}
#frmLogin .secTaxi .taxiSelectBox{
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  width: 100%;
}
#frmLogin .secTaxi .taxiSelectOpt{
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  width: 100%;
  border: 2px solid var(--darkBrown);
  border-radius: 7px;
  height: 50px;
  margin-bottom: 10px;
  padding: 0 10px;
}
#frmLogin .secTaxi .taxiSelectOpt:hover{
  background-color: var(--lightBrown);
  box-shadow: 1px 1px 3px grey;
}
#frmLogin .secTaxi .taxiSelectOpt img{
  align-items: center;
  width: 30px;
  height: 30px;
  margin: 0;
}
#frmLogin .secTaxi .taxiSelectOpt span{
  font-size: 110%;
  font-weight: bold;
  margin-left: 10px;
  color: var(--darkBrown);
}

/*FORM DASHBOARD*/
#frmDash{
    overflow-x: hidden;
}
#frmDash .gFrm{
    box-shadow: none;
}
#frmDash .frmCon{
    display: flex;
    margin-top: 20px;
    padding-bottom: 20px;
    height: 95%;
}
#frmDash .frmLeftCon{
    margin: 20px 10px 10px 10px;
    width: 25%;
    height: 100%;
    flex-direction: column;
}
#frmDash .frmRightCon{
    margin: 20px 10px 10px 10px;
    width: 75%;
    height: 100%;
}

#frmDash .infoCon{
    background-color: var(--white);
    padding: 10px;
    border-radius: 7px;
    box-shadow: 1px 1px 3px grey;
    border: solid 2px var(--darkBrown);
    margin-bottom: 10px;
    cursor: pointer;
}
#frmDash .frmLeftCon .infoCon:hover{
    box-shadow: 0 0 10px var(--darkBrown);
    border: solid 2px var(--brown);
}

#frmDash .infoCon .header{
    border-bottom: solid 1px var(--darkBrown);
    text-align: center;
    font-size: 170%;
    font-weight: bold;
    color: var(--brown);
    padding-bottom: 5px;
}

#frmDash .infoCon .body{
    padding: 10px;
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
}

#frmDash .infoCon .matrixCon{
    background-color: var(--white);
    border-radius: 7px;

}
#frmDash .matrixCon .matHead{
    width: 100%;
    text-align: center;
    color: var(--brown);
    font-size: 80%;

}
#frmDash .matrixCon .matBody{
    text-align: center;
    font-size: 180%;
    font-weight: bold;
    padding: 2px;
    color: var(--darkBrown);
}
#frmDash .matrixCon .matFooter{
    width: 100%;
    text-align: center;
    color: Var(--green);
    font-weight: bold;
}

#frmDash .frmRightCon .rightHeaderCon{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 200%;
    font-weight: bold;
    color: var(--darkBrown);
    padding-bottom: 15px;
}
#frmDash .rightHeaderCon .dataRange{
    position: relative;
    top: 35px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-around;
    border-radius: 7px;
    background-color: var(--lightBrown);
    padding: 5px;
    border: 1px solid var(--darkBrown);
    border-radius: 5px;
}
#frmDash .rightHeaderCon .dataRange label{
    display: flex;
    align-items: center;
    color: var(--darkBrown);
    margin-left: 20px;
    font-size: 40%;
}
#frmDash .rightHeaderCon .dataRange .frmDashInput{
    padding: 5px;
    border-radius: 7px;
    margin-left: 5px;
    font-family: 'roboto', sans-serif;
}


#frmDash .detMatrixCon{
    border-radius: 7px;
    padding: 10px;
    margin: 10px;
    min-width: 46%;
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
}
#frmDash .detMatrixCon h1{
    text-align: left;
    font-size: 150%;
    padding: 10px;
    color: var(--darkBrown);
    font-weight: bold;
    border-bottom: 1px solid var(--lightBrown)
}
#frmDash .detMatrixCon h2{
    text-align: left;
    font-size: 120%;
    padding: 15px 10px 8px 10px;
    color: var(--darkBrown);
    font-weight: bold;
}
#frmDash .detMatrixCon .gMtxTbl{
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.9em;
    min-width: 400px;
    border-radius: 7px 7px 0 0;
    overflow: hidden;
    box-shadow: 0 0 20px grey;
}
#frmDash .detMatrixCon .gMtxTbl thead tr{
    background-color: var(--darkBrown);
    color: var(--white);
    text-align: left;
    font-weight: bold;
}
#frmDash .detMatrixCon .gMtxTbl td,
#frmDash .detMatrixCon .gMtxTbl th{
    padding: 12px 15px;
}
#frmDash .detMatrixCon .gMtxTbl tr{
    border-bottom: 1px solid var(--brown);
}
#frmDash .detMatrixCon .gMtxTbl tr:nth-of-type(even){
    background-color: var(--lightBrown);
}
#frmDash .detMatrixCon .gMtxTbl tr:last-of-type{
    border-bottom: 2px Solid var(--darkBrown);
}



#frmDash .matrixConclCon{
    width: 100%;
    background-color: var(--lightBrown);
    border-radius: 7px;
    margin: 10px;
    padding: 10Px;
}
#frmDash .matrixConclCon h2{
    text-align: left;
    padding: 10px;
    color: var(--darkBrown);
    font-weight: bold;
    border-bottom: 1px solid var(--white);
    margin-bottom: 10px;
}
#frmDash .matrixConclCon .conclItemCon{
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: flex-end;
    margin-top: 5px;
}
#frmDash .matrixConclCon .conclDis{
    color: var(--darkBrown);
}
#frmDash .matrixConclCon .conclItemCon .conclMatrix{
    padding: 10px;
    width: 10%;
    text-align: center;
    background-color: var(--white);
    border-radius: 7px;
    margin-left: 10px;
}
#frmDash .matrixConclCon .conclAnsCon{
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: flex-end;
    margin-top: 5px;
}
#frmDash .matrixConclCon .conclAnsCon .conclMatrix{
    padding: 10px;
    width: 10%;
    text-align: center;
    background-color: var(--green);
    color: var(--white);
    border-radius: 7px;
    margin-left: 10px;
}

#frmDash .avgMatrixCon{
    width: 100%;
    background-color: var(--lightBrown);
    border-radius: 7px;
    margin: 10px;
    padding: 10Px;
}
#frmDash .avgMatrixCon .gDashAveItem{
    display: flex;
    flex-flow: row;
    align-content: stretch;
}
#frmDash .avgMatrixCon h2{
    text-align: left;
    padding: 10px;
    color: var(--darkBrown);
    font-weight: bold;
    border-bottom: 1px solid var(--white);
    margin-bottom: 10px;
}
#frmDash .avgMatrixCon .gDashAveCon{
    background-color: var(--white);
    padding: 10px;
    border-radius: 7px;
    box-shadow: 1px 1px 3px grey;
    border: solid 2px var(--darkBrown);
    margin: 10px;
    flex-grow: 1;
}
#frmDash .avgMatrixCon .gDashAveCon .gMatConHead{
    margin-top: 10px;
}

#frmDash .js_ChartsCon canvas{
    margin-bottom: 30px;
}
#frmDash .js_ChartsCon div{
    margin-bottom: 30px;
}


/*FORM SALES DASH*/
#frmSDash .mainFrmCon{
  width: 100%;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  position: relative;
}

#frmSDash h1{
  width: 90%;
  border-bottom: 1px solid var(--darkBrown);
  margin: 35px 0 10px 0;
}
#frmSDash h2{
  margin: 35px 0 10px 0;
}







#frmSDash .monthComCon {
    width: 90%;
    display: flex;
    flex-flow: column nowrap;
    margin: 20px 0;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
#frmSDash .monthComCon select {
    padding: 8px 10px;
    margin-left: 0;
    border: 1px solid #ced4da;
    border-radius: 5px;
    font-size: 16px;
    width: 7vw;
    background-color: #ffffff;
    color: #495057;
}
#frmSDash .monthComCon table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
#frmSDash .monthComCon thead {
    background-color: var(--darkBrown);
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
#frmSDash .monthComCon th {
    padding: 15px 1vw;
    text-align: center;
    font-size: 16px;
    color: var(--lightBrown);
    border-bottom: 1px solid #dee2e6;
} 
#frmSDash .monthComCon td {
    padding: 15px 1vw;
    text-align: center;
    font-size: 16px;
    color: var(--brownShadow);
    border-bottom: 1px solid #dee2e6;
}
#frmSDash .monthComCon th {
    font-weight: 600;
}
#frmSDash .monthComCon tbody tr:hover {
    background-color: #f1f3f5;
}
#frmSDash .monthComCon td {
    background-color: #ffffff;
}
#frmSDash .monthComCon tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}
#frmSDash .monthComTCon {
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    width: 30%;
    padding: 15px 1.5vw;
    background-color: var(--darkBrown);
    color: var(--lightBrown);
    border-radius: 8px;
    margin: 10px 0;
}
#frmSDash .monthComTCon span {
    font-size: 16px;
}
#frmSDash .monthComTCon .monthPayTCAmount {
    font-weight: 600;
}







#frmSDash .monthPayCon {
    width: 90%;
    display: flex;
    flex-flow: column nowrap;
    margin: 20px 0;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
#frmSDash .monthPayCon select {
    padding: 8px 10px;
    margin-left: 0;
    border: 1px solid #ced4da;
    border-radius: 5px;
    font-size: 16px;
    width: 7vw;
    background-color: #ffffff;
    color: #495057;
}
#frmSDash .monthPayCon table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
#frmSDash .monthPayCon thead {
    background-color: var(--darkBrown);
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
#frmSDash .monthPayCon th {
    padding: 15px 1vw;
    text-align: center;
    font-size: 16px;
    color: var(--lightBrown);
    border-bottom: 1px solid #dee2e6;
} 
#frmSDash .monthPayCon td {
    padding: 15px 1vw;
    text-align: center;
    font-size: 16px;
    color: var(--brownShadow);
    border-bottom: 1px solid #dee2e6;
}
#frmSDash .monthPayCon th {
    font-weight: 600;
}
#frmSDash .monthPayCon tbody tr:hover {
    background-color: #f1f3f5;
}
#frmSDash .monthPayCon td {
    background-color: #ffffff;
}
#frmSDash .monthPayCon tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}
#frmSDash .monthPayTCon {
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    width: 30%;
    padding: 15px 1.5vw;
    background-color: var(--darkBrown);
    color: var(--lightBrown);
    border-radius: 8px;
    margin: 10px 0;
}
#frmSDash .monthPayTCon span {
    font-size: 16px;
}
#frmSDash .monthPayTCon .monthPayTCAmount {
    font-weight: 600;
}






#frmDash .dashGraphs{
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}
#frmDash #frmDashRightGraph .infoCon{
  width: 47%;
}
#frmDash .graphCon{
  width: 100%;
  position: relative;
  margin-top: 10px;
}
#frmDash .graphRowCon{
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
}
#frmDash .graphRowDisc{
  width: 15%;
  font-size: 70%;
}
#frmDash .graphRowContent{
  width: 85%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}
#frmDash .graphConHead{
  font-weight: bold;
  color: var(--darkBrown);
  margin-bottom: 3px;
}
#frmDash .graphTargetCon{
  display: flex;
  flex-flow: row nowrap;
}
#frmDash .graphTargetCon span{
  padding: 0 0.2vw;
}
#frmDash .graphTargetFrame{
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
}
#frmDash .graphThisM{
  display: inline-block;
  background-color: var(--green);
  color: var(--white);
  padding: 3px 0.3vw;
  transition: width 1s;
  width: 50%;
}
#frmDash .graphLastPartM{
  display: inline-block;
  background-color: var(--lightGreen);
  transition: width 1s;
  width: 0px;
}

#frmDash .graphLastM{
  font-size: 60%;
  background-color: var(--red);
  color: var(--white);
  padding: 3px 0.3vw;
  transition: width 1s;
}
#frmSDash .salesBookCon{
  width: 90%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  margin: 20px 0;
}
#frmSDash .frmSDashItem{
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  border-radius: 7px;
  border: 1px solid var(--darkBrown);
  padding: 15px 2vw;
}
#frmSDash .frmSDashItem .frmSDashItemHead{
  color: var(--green);
  font-size: 150%;
  font-weight: bold;
}

/*FORM MY DASH*/
#frmMyDash .mainFrmCon{
    width: 100%;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    position: relative;
  }
  
  #frmMyDash h1{
    width: 90%;
    border-bottom: 1px solid var(--darkBrown);
    margin: 35px 0 10px 0;
  }
  #frmMyDash h2{
    margin: 35px 0 10px 0;
  }
  
  #frmMyDash .monthPayCon{
    width: 90%;
    display: flex;
    flex-flow: column nowrap;
    margin: 20px 0;
  }
  #frmMyDash .monthPayCon select{
    padding: 5px 0.3vw;
    margin-left: 0;
    width: 5vw;
  }
  #frmMyDash .monthPayCon table{
    border-radius: 7px;
    border: 1px solid var(--darkBrown);
  }
  #frmMyDash .monthPayCon thead{
    background-color: var(--darkBrown);
    color: var(--white);
  }
  #frmMyDash .monthPayCon th{
    padding: 10px 0.5vw;
  }
  #frmMyDash .monthPayCon td{
    text-align: center;
    padding: 10px 0.5vw;
  }
  #frmMyDash .monthPayTCon{
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    width: 20%;
    padding: 10px 0.8vw;
    background-color: var(--darkBrown);
    color: var(--white);
  }
  #frmMyDash .container {
    width: 100%;
    margin: auto;
    overflow: hidden;
    
  }
  #frmMyDash .content-box {
    background: #fff;
    padding: 1px 35px 35px 35px;
    border-radius: 10px;
    margin-bottom: 10px;
  }

  #frmMyDash .header {
    margin-bottom: 10px;
  }
  #frmMyDash .comBold{
    font-weight: bolder;
    margin-top: 5px;
    font-size: 14px;
    text-decoration: underline;
  }

  
  #frmDash .dashGraphs{
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
  }
  #frmDash #frmDashRightGraph .infoCon{
    width: 47%;
  }
  #frmDash .graphCon{
    width: 100%;
    position: relative;
    margin-top: 10px;
  }
  #frmDash .graphRowCon{
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
  }
  #frmDash .graphRowDisc{
    width: 15%;
    font-size: 70%;
  }
  #frmDash .graphRowContent{
    width: 85%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
  }
  #frmDash .graphConHead{
    font-weight: bold;
    color: var(--darkBrown);
    margin-bottom: 3px;
  }
  #frmDash .graphTargetCon{
    display: flex;
    flex-flow: row nowrap;
  }
  #frmDash .graphTargetCon span{
    padding: 0 0.2vw;
  }
  #frmDash .graphTargetFrame{
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
  }
  #frmDash .graphThisM{
    display: inline-block;
    background-color: var(--green);
    color: var(--white);
    padding: 3px 0.3vw;
    transition: width 1s;
    width: 50%;
  }
  #frmDash .graphLastPartM{
    display: inline-block;
    background-color: var(--lightGreen);
    transition: width 1s;
    width: 0px;
  }
  
  #frmDash .graphLastM{
    font-size: 60%;
    background-color: var(--red);
    color: var(--white);
    padding: 3px 0.3vw;
    transition: width 1s;
  }
  #frmMyDash .salesBookCon{
    width: 90%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    margin: 20px 0;
  }
  #frmMyDash .frmSDashItem{
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    border-radius: 7px;
    border: 1px solid var(--darkBrown);
    padding: 15px 2vw;
  }
  #frmMyDash .frmSDashItem .frmSDashItemHead{
    color: var(--green);
    font-size: 150%;
    font-weight: bold;
  }

/*FORM SEARCH*/
#frmSearch{
    border-radius: none;
    box-shadow: none;
    padding: 0px 5px 0px 5px;
}
#frmSearch .topCon{
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
}
#frmSearch .topCon .btnAddCon{
    display: flex;
    flex-flow: row wrap;
}
#frmSearch .topCon .btnAddCon div{
    text-align: center;
    background-color: var(--green);
    padding: 10px 15px 10px 15px;
    display: inline-block;
    color: var(--white);
    font-size: 100%;
    cursor: pointer;
    margin: 20px 0px 10px 20px;
}
#frmSearch .topCon .rightCon{}

#frmSearch .filterBtnCon{
    width: 100%;
    margin-left: 20px;
}
#frmSearch .filterBtnCon ul{
    list-style: none;
}
#frmSearch .filterBtnCon li{
    position: relative;
    padding: 0.5vw;
    top: 2px;
    text-align: center;
    border-bottom: none;
    display: inline-block;
    font-weight: bold;
    cursor: pointer;
}
#frmSearch .filterBtnCon li.selected{
    border: 2px solid var(--darkBrown);
    border-bottom: 0;
    background-color: var(--white);
    border-radius: 7px 7px 0px 0px;
}

#frmSearch .secondFilterSec{
    width: 100%;
}
#frmSearch .secondFilterSec ul{
    list-style: none;
}
#frmSearch .secondFilterSec li{
    position: relative;
    padding: 0.5vw;
    top: 2px;
    text-align: center;
    border-bottom: none;
    display: inline-block;
    font-weight: bold;
    cursor: pointer;
}
#frmSearch .secondFilterSec li.selected{
    background-color: var(--darkBrown);
    color: var(--white);
    border-radius: 4px;
}

#frmSearch .customFilters{
    display: flex;
    flex-flow: column nowrap; 
    justify-content: flex-start;
    width: 100%;
}
#frmSearch .customFilters .filterCon{
    display: flex;
    flex-flow: row wrap;
    width: 100%;
    margin-top: 5px;
    gap: 5px;
}

#frmSearch .filterCon div{
    position: relative;
    padding: 0.5vw;
    top: 2px;
    text-align: center;
    border-bottom: none;
    display: inline-block;
    font-weight: bold;
    cursor: pointer;
}
#frmSearch .filterCon div.selected{
    background-color: var(--darkBrown);
    color: var(--white);
    border-radius: 4px;
}



#frmSearch .tblSectionCon{
    border: 2px solid var(--darkBrown);
    border-radius: 7px 7px 7px 7px;
    background-color: var(--white);
    padding: 1vw 2vw 1vw 2vw;
    height: 80vh;
    overflow: hidden;
    position: relative;
}
#frmSearch .alphabetCon{
    width: 100%;
}
#frmSearch .alphabetCon ul{
    list-style: none;
}
#frmSearch .alphabetCon li{
    display: inline-block;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    padding: 0.5vw;
}
#frmSearch .alphabetCon li.selected{
    background-color: var(--darkBrown);
    color: var(--white);
    border-radius: 4px;
}

#frmSearch .actionCon{
    display: flex;
    align-items: center;
    margin: 0.5vw 0 0.5vw 0;
}
#frmSearch .showDeleted{
    margin-left: 5px;
}
#frmSearch .actionCon .btnDeleteSelect{
    display: flex;
    cursor: pointer;
    align-items: center;
    color: var(--red);
    height: 2.6vw;
    padding: 0 0.5vw 0 0.2vw;
    font-size: 110%;
    border-radius: 7px;
    margin-left: 1vw;
}
#frmSearch .actionCon .btnDeleteSelect:hover{
  border: 1px solid var(--red);
}
#frmSearch .actionCon img{
  width: 2vw;
  height: 2vw;
}
#frmSearch .actionCon .txtSearch{
    outline-color: var(--darkBrown);
    height: 2.6vw;
    max-height: 30px;
    width: 11vw;
    border: 1px solid var(--lightBrown);
    padding-left: 1vw;
    font-size: 110%;
    border-radius: 7px;
}
#frmSearch .actionCon .txtSearch::placeholder{
    color: var(--lightBrown);
}

#frmSearch .bulkEditCon{

  position: absolute;
  overflow-x: hidden;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: var(--lightBrown);
  border-left: 2px solid var(--darkBrown);
  width: 0px;
  z-index: 2;
  box-shadow: -3px 0px 6px grey;
  transition: width 0.5s;
}
#frmSearch .bulkEditHead{
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--white);
  padding: 15px;
  font-size: 20px;
  box-shadow: 0px 3px 3px grey;
}
#frmSearch .bulkEditHead img{
  width: 17px;
  height: 17px;
  cursor: pointer;
}

#frmSearch .bulkEditBody{
  overflow: scroll;
  padding: 15px;
  height: 75%;
}

#frmSearch .bulkEditFoot{
  display: flex;
  position: absolute;
  background-color: var(--white);
  bottom: 0;
  right: 0;
  left: 0;
  box-shadow: 0px -3px 3px grey;
  align-items: center;
  justify-content: center;
  padding: 15px 0;
}
#frmSearch .bulkEditFoot .gBtnSave{
  background-color: var(--green);
  box-shadow: 1px 1px 3px grey;
  border-radius: 7px;
  padding: 7px 20px;
  font-family: 'roboto', sans-serif;
  display: inline-block;
  color: var(--white);
  font-size: 15px;
  font-weight: normal;
  cursor: pointer;
  margin: 0;
}

#frmSearch .searchTblCon{
    height: 68vh;
    overflow-y: auto;
}
#frmSearch .searchTbl{
    position: relative;
    border-collapse: separate;
    border-spacing: 0;
}
#frmSearch .searchTbl.hideChk tr td:nth-child(1){
    display: none;
}
#frmSearch .searchTbl.hideChk tr th:nth-child(1){
    display: none;
}

#frmSearch .searchTbl .tblCheckBox{
    position: relative;
    z-index: 0;
    width: 0.7vw;
    height: 0.7vw;
    border: 1px solid black;
}
#frmSearch .searchTbl thead th{
    padding: 0.5vw 0.5vw 0.3vw 0.5vw;
    cursor: pointer;
    font-weight: bold;
    text-align: left;
    font-size: 120%;
    position: sticky;
    top: 0;
    background-color: var(--white);
    z-index: 1;
    border-bottom: 2px solid var(--brown);
}
#frmSearch .searchTbl thead th:hover{
  color: var(--brown);
}

#frmSearch .searchTbl tbody td{
    padding: 0.5vw 0.5vw 0.5vw 0.5vw;
    font-size: 100%;
}
#frmSearch .searchTbl tbody tr:hover{
    background-color: var(--lightBrown);
    cursor: pointer;
}

#frmSearch .tblSectionShow{
  background-color: var(--lightBrown);
  padding: 5px 0.5vw;
  border-top: 1px var(--darkBrown) solid;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
#frmSearch .tblSectionShow label{
  padding: 5px 0.5vw;
}

/*FORM VIEWS*/
#frmViews{
    border-radius: none;
    box-shadow: none;
    overflow: hidden;
}
#frmViews .mainCon{
    display: flex;
    flex-flow: column nowrap;
    width: 100%;
    height: 100%;
    padding: 0 5%;
    box-sizing: border-box;
    overflow: hidden;
}
#frmViews .mainHeaderCon{
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    margin: 1vw 0.5vw 0vw 0.5vw;
    cursor: pointer;
}
#frmViews .mainHeaderCon div{
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
}
#frmViews .mainHeaderCon img{
    height: 2vw;
    max-height: 30px;
    margin-left: 1vw;
}

#frmViews .mainDescCon{
    padding: 1.2vw 1.5vw 1.2vw 1.5vw;
    background-color: var(--white);
    margin: 0.5vw 0.5vw 0vw 0.5vw;
    border-radius: 7px;
    box-shadow: 1px 1px 3px grey;
}
#frmViews .rorLost{
    box-sizing: border-box;
    border: 2px var(--red) solid;
    background-color: var(--lightRed);
}
#frmViews .rorHold{
    box-sizing: border-box;
    border: 2px var(--yellow) solid;
    background-color: var(--lightYellow);
}
#frmViews .rorComplete{
    box-sizing: border-box;
    border: 2px var(--green) solid;
    background-color: var(--lightGreen);
}
#frmViews .mainDescHead{
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}
#frmViews .mainDescCon .mainDesc{
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: flex-start;
    flex-grow: 1;
    min-width: 150px;
}
#frmViews .mainDescCon .viewTypeIcon{
    width: 2.5vw;
    height: 2.5vw;
}

#frmViews .mainDescCon .viewTypeIcon .typeText{
    font-size: 150%;
    color: var(--white);
}
#frmViews #frmVlblMainDesc{
    margin-left: 0.5vw;
    font-size: 150%;
    font-weight: bold;
}
#frmViews .mainDescCon .xeroBtn{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    box-sizing: border-box;
    padding: 0.5vw 1vw;
    color: var(--darkBrown);
    background-color: var(--white);
    border: 1px var(--darkBrown) solid;
    margin-right: 0.5vw;
    cursor: pointer;
  }
#frmViews .mainDescCon .xeroBtn img{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 2.5vw;
    box-sizing: border-box;
    margin-right: 0.5vw;
  }
#frmViews .mainDescCon .rorViewBtnCon{
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0.5vw;
    margin-right: 1vw;
}
#frmViews .mainDescCon .rorLostBtn{
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  width: 5vw;
  box-sizing: border-box;
  padding: 0.5vw 1vw;
  color: var(--red);
  background-color: var(--white);
  border: 1px var(--red) solid;
  margin-right: 0.5vw;
  cursor: pointer;
}
#frmViews .mainDescCon .rorLostBtn.selected{
    background-color: var(--red);
    color: var(--white);
}
#frmViews .mainDescCon .rorHoldBtn{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    width: 5vw;
    box-sizing: border-box;
    padding: 0.5vw 1vw;
    color: var(--yellow);
    background-color: var(--white);
    border: 1px var(--yellow) solid;
    margin-right: 0.5vw;
    cursor: pointer;
}
#frmViews .mainDescCon .rorHoldBtn.selected{
    background-color: var(--yellow);
    color: var(--white);
}
#frmViews .mainDescCon .rorCompleteBtn{
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border-radius: 7px;
  width: 5vw;
  padding: 0.5vw 1vw;
  color: var(--green);
  border: 1px var(--green) solid;
  background-color: var(--white);
  cursor: pointer;
}
#frmViews .mainDescCon .rorCompleteBtn.selected{
    background-color: var(--green);
    color: var(--white);
}
#frmViews .rorLostReas{
  display: flex;
  flex-flow: row;
  align-items: center;
}
#frmViews .rorHoldReas{
    display: flex;
    flex-flow: row;
    align-items: center;
}
#frmViews .rorHoldReas h3{
    color: var(--yellow);
    margin: 0 5px;
}
#frmViews .rorHoldReas span{
    color: var(--yellow);
    margin-right: 25px;
}
#frmViews .rorLostReas h3{
  color: var(--red);
  margin: 0 5px;
}
#frmViews .rorLostReas span{
  color: var(--red);
  margin-right: 25px;
}

#frmViews .mainDescCon .rorLostBtn:hover{
  color: var(--white);
  background-color: var(--red);
}
#frmViews .mainDescCon .rorCompleteBtn:hover{
  color: var(--white);
  background-color: var(--green);
}
#frmViews .mainDescCon .statusCon{
    font-size: 1.2rem;
    width: 170px;
    font-weight: bold;
}
#frmViews .mainDescCon .statusCon #frmVlblStatus{
    color: var(--green);
}
#frmViews .mainDescCon .mainDescProgressBar{
  background-color: var(--white);
  display: flex;
  flex-flow: row nowrap;
  border-radius: 7px;
  margin-top: 1.2vw;
  overflow: hidden;
  border: 1px solid var(--green);
  border-left: 0;
  cursor: pointer;
}
#frmViews .mainDescCon .ProgressBarItem{
  flex-grow: 1;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.5vw 0.8vw 0.5vw 0.8vw;
  color: var(--darkBrown);
  border-left: 1px solid var(--green);
}
#frmViews .mainDescCon .ProgressBarItem:hover{
  background-color: var(--green);
  color: var(--white);

}
#frmViews .mainDescCon .ProgressBarItem.selected{
    background-color: var(--green);
    color: var(--white);
}
#frmViews .mainDescCon .mainDesDateCon{
    box-sizing: border-box;
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
}
#frmViews .mainDescCon .mainDescAgeDate{
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
    align-items: center;
    margin-top: 0.5vw;
  }
  #frmViews .mainDescCon .lblAgeCom{
    color: var(--brown)
  }
  #frmViews .mainDescCon .receiveDate{
    color: var(--darkBrown);
    font-weight: bold;
    margin-left: 0.5vw;
    font-size: 110%;
  }
#frmViews .mainDescCon .mainDescExtDate{
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
  align-items: center;
  margin-top: 0.5vw;
}
#frmViews .mainDescCon .mainDescAgeDate .rorAgeCon{
    display: flex;
    align-items: center;
    padding: 5px 8px;
    background-color: var(--red);
    color: var(--white);
    border-radius: 7px;
    margin-right: 8px;
}
#frmViews .rorAgeCon .rorAgeLbl{
    margin-right: 5px;
}
#frmViews .rorAgeCon .rorAgeUnit{
    margin-left: 5px;
}



#frmViews .mainDescCon .lblSEstCom{
  color: var(--brown)
}
#frmViews .mainDescCon .estComDate{
  color: var(--darkBrown);
  font-weight: bold;
  margin-left: 0.5vw;
  font-size: 110%;
}

#frmViews .mainDetailsCon{
    display: flex;
    flex-flow: row nowrap;
    box-sizing: border-box;
    margin-top: 0.5vw;
    align-items: flex-start;
    height: 100%;
    width: 100%;
    overflow: hidden;
}
#frmViews .leftDCon{
    background-color: var(--white);
    width: 30%;
    max-height: 100%;
    position: relative;
    border-radius: 7px;
    box-shadow: 1px 1px 3px grey;
    margin-left: 0.5vw;
    padding-bottom: 1vw;
    overflow: auto;
}
#frmViews .leftDCon .leftDConHeader{
    display: flex;
    justify-content: space-between;
    padding: 0.7vw 0.5vw 0.7vw 0.5vw;
    position: sticky;
    top: 0;
    background-color: var(--white);
    border-bottom: dotted 2px var(--darkBrown);
}
#frmViews .leftDCon .btnEdit{
    max-height: 35px;
    cursor: pointer;
}

#frmViews .leftDConHeader .btnRepCon{
    width: 100%;
    display: none;
}
#frmViews .leftDConHeader .btnEdit{
    padding-right: 0.5vw;
}
#frmViews .leftDConHeader .btnEditCon{
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.frmVPrintBtnCon {
    padding: 10px 15px;
    background-color: #f2f2f2;
    border: 1px solid #d4d4d4;
    cursor: pointer;
    position: relative;  /* This will make sure the dropdown positions relatively to this container */
}

/* Style for the spans in your dropdown. Initially hidden. */
.frmVPrintBtns {
    display: none;
    position: absolute; /* This will pull the dropdown out of the regular document flow */
    top: 0;  /* Position directly under the .frmVPrintBtnCon */
    left: 0;
    border: 1px solid #d4d4d4;
    background-color: #ffffff;
    width: 250px; /* or whatever width you want */
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); /* Optional: for a nice shadow effect */
    z-index: 1; /* In case there's other content around, this will ensure the dropdown is above it */
}

.frmVPrintBtns span {
    padding: 10px 15px;
    display: block; /* Make the spans behave like block elements */
    white-space: nowrap; /* Prevents text from wrapping, remove if not needed */
    color: var(--darkBrown);
    text-decoration: none;
}

/* Change the background color of the spans on hover for better UX */
.frmVPrintBtns span:hover {
    background-color: #ddd;
}
.frmVPrintBtnCon:hover + .frmVPrintBtns, .frmVPrintBtns:hover {
    display: block;
}

#frmViews .pinNoteCon{
  width: 100%;
  box-sizing: border-box;
}
#frmViews .pinNote{
  background-color: var(--lightRed);
  border-radius: 7px;
  border: 1px var(--red) solid;
  box-sizing: border-box;
  padding: 8px;
  margin: 15px 8px 0 8px;
}
#frmViews .pinNoteHeader{
  font-size: 110%;
  font-weight: bold;
  width: 100%;
  margin-bottom: 5px;
}
#frmViews .pinNoteCreator{
  width: 100%;
  text-align: right;
  color: var(--white);
  margin-top: 5px;
}
#frmViews .pinNoteDate{
  width: 100%;
  text-align: right;
  color: var(--red);
}


#frmViews .leftDCon .sectionCon{
    width: 100%;
    margin-bottom: 1vw;
}
#frmViews .sectionCon .secHeader{
    width: 95%;
    font-size: 120%;
    font-weight: bold;
    margin: 0.5vw 0.5vw 0.5vw 0.5vw;
    border-bottom: 1px solid var(--brown);
    color: var(--darkBrown);
    padding-top: 0.5vw;
}
#frmViews .sectionCon .firstHeader{
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-top: 0.5vw;
}
#frmViews .sectionCon table{
    width: 90%;
    margin: 0 auto;
}
#frmViews .sectionCon tr{
    width: 100%;
}
#frmViews .sectionCon td:nth-child(1){
    color: var(--brown);
    vertical-align: top;
    padding-top: 0.5vw;
    width: 30%;
    text-align: right;
}
#frmViews .sectionCon td:nth-child(2){
    margin-left: 1vw;
    padding-top: 0.5vw;
    padding-left: 0.5vw;
    width: 70%;
    color: var(--darkBrown);
    text-align: left;
}

#frmViews .rightDCon{
    display: flex;
    flex-flow: column nowrap;
    max-height: 100%;
    width: 70%;
    box-sizing: border-box;
    padding: 0 0.5vw 0 0.5vw;
    overflow-y: auto;
    overflow-x: hidden;
}
#frmViews .optCon{
    position: relative;
    width: 100%;
    font-size: 80%;
    padding: 0 0 0 2vw;
    margin: 20px 0.5vw 0 0;
    box-sizing: border-box;
}
#frmViews .optCon ul{
    list-style: none;
    margin-left: 2vw;
    font-size: 140%;
    box-sizing: border-box;
}
#frmViews .optCon li{
    display: inline-block;
    padding: 0 0.5vw 0 0.5vw;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
    position: relative;
}
#frmViews .optCon li div{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    top: -13px;
    right: 0px;
    background-color: var(--green);
    color: var(--white);
    border-radius: 15px;
    min-width: 16px;
    height: 16px;
    font-size: 10px;
}
#frmViews .optCon li div span{
  display: flex;
  align-items: center;
  padding: 2px 4px;
}
#frmViews .optCon .tabSelectBar{
    position: relative;
    width: 100%;
    height: 3px;
    background-color: var(--white);
    margin-top: 5px;
}
#frmViews .optCon .tabSelectBar .selector{
    position: relative;
    height: 100%;
    background-color: var(--brown);
    transition: left 0.5s, width 0.5s;
}

#frmViews .actionSection{
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    padding: 0 0.2vw 0 2vw;
}
#frmViews .actionCon{
    display: flex;
    flex-flow: row nowrap;
    padding: 1vw 0;
}
#frmViews .actionCon div {
    border-radius: 8px;
    background-color: var(--green);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 0.5vw 1vw;
    font-family: 'Roboto', sans-serif;
    display: inline-block;
    color: var(--white);
    font-size: 1em;
    font-weight: 500;
    cursor: pointer;
    margin: 1vw 0.3vw;
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.2s;
}

#frmViews .actionCon div:hover {
    background-color: #45a049; /* Slightly lighter green for hover effect */
    transform: translateY(-2px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

#frmViews .actionCon div:active {
    background-color: #397d3a; /* Even darker green for active effect */
    transform: translateY(0);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#frmViews .actionCon .closeActBtn{
    background-color: var(--white);
    color: var(--red);
    border: 2px solid var(--red);
}
#frmViews .actionCon .reopenActBtn{
    background-color: var(--white);
    color: var(--green);
    border: 2px solid var(--green);
}
#frmViews .showDelCon{
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
    align-items: center;
    padding: 1vw;

}
#frmViews .showDelCon label{
    cursor: pointer;
}
#frmViews .showDelCon input{
    height: 1vw;
    width: 1vw;
    max-height: 20px;
    max-width: 20px;
}

/* ------------------------------------------------------ */
/*  SHARED CARD STYLE (applies to both blocks)            */
/* ------------------------------------------------------ */

#frmViews .viewInstructCon,
#frmViews .viewCheckCon {
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  gap: 14px;

  background: #ffffff;
  border: 1px solid #e4e7eb;
  border-radius: 10px;

  padding: 16px 18px;
  margin: 0 0.2vw 1vw 2vw;

  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  font-family: 'Roboto', sans-serif;
}

/* Icons */
#frmViews .viewInstructCon img,
#frmViews .viewCheckCon img {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  opacity: 0.9;
}

/* ------------------------------------------------------ */
/*  HEADINGS                                              */
/* ------------------------------------------------------ */

#frmViews .viewInstructCon h3,
#frmViews .viewCheckCon h3 {
  margin: 0 0 6px 0;
  font-size: 17px;
  font-weight: 600;
  color: #2e3a45;
}

#frmViews .viewInstructCon h4 {
  margin-top: 8px;
  margin-bottom: 4px;
  font-size: 15px;
  font-weight: 500;
  color: var(--brown);
}

/* ------------------------------------------------------ */
/*  INSTRUCTIONS PARAGRAPHS                               */
/* ------------------------------------------------------ */

#frmViews .viewInstructCon p {
  margin: 0 0 12px 0;
  line-height: 1.55;
  color: #4a4f55;
}

/* ------------------------------------------------------ */
/*  CHECKLIST STYLING                                     */
/* ------------------------------------------------------ */

#frmViews .viewCheckCon .js_checkDetail {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Checklist rows in single line */
#frmViews .viewCheckCon .checkRow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4a4f55;
  line-height: 1.4;
}

/* Modern checkbox look */
#frmViews .viewCheckCon input[type="checkbox"] {
  transform: scale(1.25);
  accent-color: #6ba442; /* modern green */
  cursor: pointer;
}

/* ------------------------------------------------------ */
/*  HOVER EFFECT                                          */
/* ------------------------------------------------------ */

#frmViews .viewInstructCon:hover,
#frmViews .viewCheckCon:hover {
  box-shadow: 0 3px 10px rgba(0,0,0,0.10);
  border-color: #d7dade;
  transition: all 0.15s ease-in-out;
}


#frmViews .filterCon{
    text-align: right;
    padding: 0 0.2vw 0 2vw;
}
#frmViews .filterCon ul{
    list-style: none;
    font-size: 100%;
}
#frmViews .filterCon li{
    display: inline-block;
    padding: 0.5vw 1vw 0.5vw 1vw;
    margin-left: 0.5vw;
    cursor: pointer;
}
#frmViews .filterCon li.selected{
    background-color: var(--brown);
    color: var(--white);
    border-radius: 7px;
}

#frmViews .itemsCon{
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    margin: 1vw 0 0 0;
    padding: 0 0.2vw 0 2vw;
    box-sizing: border-box;
    height: 100%;
}
#frmViews .multiItemsCon {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    background-color: var(--white);
    margin: 0 0 1.5vw 0;
    width: 100%;
    border-radius: 8px;
    box-sizing: border-box;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


#frmViews .bottomText ul {
    display: flex;
    flex-flow: row;
    margin-top: 3px;
    list-style-type: none;
    padding: 0;
}

#frmViews .bottomText li {
    padding: 3px 8px;
    margin-right: 8px;
    border-radius: 5px;
    color: var(--white);
    background-color: var(--red);
}

#frmViews .bottomText .taskComment {
    margin-top: 5px;
    padding-left: 10px;
}

#frmViews .itemCon {
    padding: 1vw;
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    align-items: flex-start;
    cursor: pointer;
    width: 100%;
    background: #f8f8f8;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}
#frmViews .itemCon .itemDetails{
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: flex-start;
    cursor: pointer;
    width: 100%;
}
#frmViews .itemCon .customTop{
    display: flex;
    flex-flow: row nowrap;
    width: 100%;
    justify-content: flex-end;
}
#frmViews .multiItemCon {
    background-color: var(--lightBrown);
    margin: 20px;
    width: 95%;
    box-sizing: border-box;
}

#frmViews .multiItemCon:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}


#frmViews .itemCon:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

#frmViews .itemCon img {
    height: 3vw;
    margin-right: 1vw;
    border-radius: 50%;
}

#frmViews .itemCon .leftDiv {
    text-align: left;
    width: 70%;
}

#frmViews .itemCon div span {
    display: block;
    font-weight: bold;
}

#frmViews .itemCon .rightDiv {
    text-align: right;
    width: 30%;
}

#frmViews .itemCon .rightDiv span {
    text-align: right;
}

#frmViews .itemCon .topText {
    color: var(--darkBrown);
    font-size: 1.2em;
    font-weight: 600;
    white-space: pre-wrap;
}

#frmViews .itemCon .bottomText {
    color: var(--brown);
    font-size: 0.9em;
    font-weight: 400;
    white-space: pre-wrap;
}

#frmViews .itemCon .linkCon {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-end;
    align-items: flex-end;
    width: 2vw;
}

#frmViews .itemCon .linkCon img {
    height: 1.5vw;
    margin-right: 0;
}

#frmViews .itemCon.deleted{
    background-color: var(--lightRed);
}


#frmViews .multiItemsCon div br{
    color: #e40c2b;
}

/*FORM ADD PRODUCT TYPES*/
#frmProdType{
    max-width: 70vw;
    background-color: var(--white);
}
#frmProdType .gFrmSection{
    background-color: var(--lightBrown)
}
#frmProdType .qCon{
    display: flex;
    flex-flow: column nowrap;
    margin-bottom: 1vw;
    padding: 0 1.5vw 0 1.5vw;
}
#frmProdType .qCon .qItem{
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 0.5vw;
    margin-right: 2vw;
    padding: 0.5vw;
    background-color: var(--white);
    border-radius: 7px;
    color: var(--darkBrown);
}
#frmProdType .qCon .q{
    width: 70%;
    margin-right: 1vw;
}
#frmProdType .qCon .ans{
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    width: 30%;
}
#frmProdType .qCon .ans div{
    padding: 0.6vw 0 0.6vw 0;
    background-color: var(--white);
    width: 47%;
    text-align: center;
    cursor: pointer;
    border-radius: 7px;
}
#frmProdType .qCon .ans .yes{
    color: var(--green);
    border: solid 1px var(--darkBrown);
}
#frmProdType .qCon .ans .yes.selected{
    background-color: var(--green);
    color: var(--white);
    border: none;
}
#frmProdType .qCon .ans .no{
    color: var(--red);
    border: solid 1px var(--darkBrown);
}
#frmProdType .qCon .ans .no.selected{
    background-color: var(--red);
    color: var(--white);
    border: none;
}

#frmProdOrderSec{
    max-width: 70vw;
    background-color: var(--white);
}
#frmProdOrderSec .gFrmSection{
    background-color: var(--lightBrown)
}
#frmProdOrderSec .qCon{
    display: flex;
    flex-flow: column nowrap;
    margin-bottom: 1vw;
    padding: 0 1.5vw 0 1.5vw;
}
#frmProdOrderSec .qCon .qItem{
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 0.5vw;
    margin-right: 2vw;
    padding: 0.5vw;
    background-color: var(--white);
    border-radius: 7px;
    color: var(--darkBrown);
}
#frmProdOrderSec .qItem .q{
    max-width: 60%;
    margin-right: 1vw;
}
#frmProdOrderSec .qItem .ans{
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    width: 115px;
}
#frmProdOrderSec .qCon .ans div{
    padding: 0.6vw 0 0.6vw 0;
    background-color: var(--white);
    width: 47%;
    text-align: center;
    cursor: pointer;
    border-radius: 7px;
}
#frmProdOrderSec .qCon .ans .yes{
    color: var(--green);
    border: solid 1px var(--darkBrown);
}
#frmProdOrderSec .qCon .ans .yes.selected{
    background-color: var(--green);
    color: var(--white);
    border: none;
}
#frmProdOrderSec .qCon .ans .no{
    color: var(--red);
    border: solid 1px var(--darkBrown);
}
#frmProdOrderSec .qCon .ans .no.selected{
    background-color: var(--red);
    color: var(--white);
    border: none;
}

#frmProdType .priceScaleItem{
    margin-bottom: 0.5vw;
}
#frmProdType .pScaleInCon{
    margin-top: 0.2vw;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
}
#frmProdTScalePCon span{
    font-weight: bold;
}
#frmProdType .pScaleInCon input{
    outline-color: var(--darkBrown);
    height: 2.5vw;
    width: 45%;
    padding-left: 1vw;
    font-size: 110%;
    border-radius: 7px;
}
#frmProdType .pScaleInCon input::placeholder{
    color: var(--lightBrown);
}

#frmProdType .frmBtnBox{
    padding: 0.5vw 1vw 0.5vw 1vw;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    background-color: var(--white);
    align-items: center;
}
#frmProdType .frmBtnBox .chkPriceListCon{
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}
#frmProdType .frmBtnBox .chkPriceListCon input{
    margin-right: 0.3vw;
}
#frmProdType .frmBtnBox .btnCon{
    display: flex;
    flex-flow: row nowrap;
}

/*FORM CONTACT PERSON*/
#frmCP .userCon{
    display: none;
    width: 100%;
    position: relative;
    align-items: center;
    padding-left: 10px;
    cursor: pointer;
}

/*FORM TICKET*/

#frmTicket textarea{
  font-family: 'roboto', sans-serif;
  border-radius: 7px;
  width: 100%;
  box-sizing: border-box;
  outline-color: var(--darkBrown);
  display: block;
  padding: 0.5vw 1vw 0.5vw 1vw;
  margin-bottom: 0.5vw;
  margin-top: 0.2vw;
}
/* Container */
#frmTicket .priorityCon {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 5px 0 12px 0;
}

/* Left label */
#frmTicket .priorityCon .pLabel {
  font-weight: 600;
  font-size: 14px;
  color: var(--darkBrown);
  margin-right: 4px;
}

/* Each option */
#frmTicket .priorityCon .pOption {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 13.5px;
  color: var(--darkBrown);
  user-select: none;
}

/* Hide the radio */
#frmTicket .priorityCon .pOption input[type="radio"] {
  display: none;
}

/* The colored dot */
#frmTicket .priorityCon .pOption .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--lightBrown);
  background: var(--white);
  transition: 0.2s;
}

/* Colors */
#frmTicket .pOption.normal .dot {
  border-color: var(--green);
}

#frmTicket .pOption.medium .dot {
  border-color: var(--yellow);
}

#frmTicket .pOption.high .dot {
  border-color: var(--red);
}

/* Checked state: dot fills with color */
#frmTicket .pOption.normal input[type="radio"]:checked ~ .dot {
  background: var(--green);
}

#frmTicket .pOption.medium input[type="radio"]:checked ~ .dot {
  background: var(--yellow);
}

#frmTicket .pOption.high input[type="radio"]:checked ~ .dot {
  background: var(--red);
}

/* Checked text bold */
#frmTicket .pOption input[type="radio"]:checked ~ span {
  font-weight: 600;
}



#frmTicketSecTic .detail{
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}
#frmTicketSecTic .detail label{
  width: 24%;
}

/*FORM TASK*/
#frmViewsItemCon .chkBox{
  width: 1.5vw;
  height: 1.5vw;
  margin: .5vw 1vw .5vw .5vw;
}


#frmTaskSecTask{
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
}
#frmTaskSecTask label{
  width: 100%;
}
#frmTaskSecTask .detail{
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}
#frmTaskSecTask .detail label{
  width: 33%;
}


/* MAIN COMMENTS BOX – same look as chkListInputCon */
#frmTaskComments{
    width: 100%;
}
#frmTaskComments .comments {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  background: var(--white);
  padding: 16px;
  border: 1px solid var(--lightBrown);
  border-radius: 10px;
  margin: 12px 0;
}

/* Label + Textarea */
#frmTaskComments .comments .gLabel {
  flex: 1;
  font-size: 14px;
  color: var(--darkBrown);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Textarea same style as input */
#frmTaskComments .comments textarea {
  border: 1px solid var(--lightBrown);
  border-radius: 8px;
  padding: 10px 12px;

  /* MATCH PROGRAM FONT */
  font-family: inherit;      /* ← BELANGRIK */
  font-size: 14.5px;
  line-height: 1.4;

  background: #fff;
  transition: border 0.2s, box-shadow 0.2s, background 0.2s;
  resize: vertical;
  min-height: 60px;
}


#frmTaskComments .comments textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 2px rgba(74,112,139,0.25);
  background: var(--white);
}

/* Button container */
#frmTaskComments .comments .gFrmBtnBox {
  display: flex;
  align-items: flex-end;
}

#frmTaskComments .gBtnSave{
  background-color: var(--green);
  box-shadow: 1px 1px 3px grey;
  border-radius: 7px;
  padding: 0.5vw 1vw 0.5vw 1vw;
  font-family: 'roboto', sans-serif;
  display: inline-block;
  color: var(--white);
  font-size: 100%;
  font-weight: normal;
  cursor: pointer;
  margin: 0.2vw;
}
/* MAIN TABLE – Same look as tblChkList */
#frmTaskTblComm {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
  background: var(--white);
  border: 1px solid var(--lightBrown);
  border-radius: 10px;
  overflow: hidden;
  font-size: 14px;
}

/* Header */
#frmTaskTblComm thead {
  background: var(--lightBrown);
}

#frmTaskTblComm th {
  padding: 12px 10px;
  text-align: left;
  font-weight: 600;
  color: var(--darkBrown);
  border-bottom: 1px solid var(--lightBrown);
}

/* Body rows */
#frmTaskTblComm td {
  padding: 12px 10px;
  border-bottom: 1px solid #e8e8e8;
  color: var(--darkBrown);
  vertical-align: top;
}

/* Zebra rows */
#frmTaskTblComm tr:nth-child(even) {
  background: #faf8f4;
}

/* Hover effect */
#frmTaskTblComm tbody tr:hover {
  background: #f1ede6;
}


/*FORM TICKET CHECK LIST*/
/* ───────────────────────────────────────────────
   INPUT CARD (chkListInputCon)
   ─────────────────────────────────────────────── */

.chkListInputCon {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  background: var(--white);
  padding: 16px;
  border: 1px solid var(--lightBrown);
  border-radius: 10px;
  margin: 12px 0;
}

/* Label + Input */
.chkListInputCon .gLabel {
  flex: 1;
  font-size: 14px;
  color: var(--darkBrown);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.chkListInputCon input[type="text"] {
  border: 1px solid var(--lightBrown);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 14.5px;
  background: #fff;
  transition: border 0.2s, box-shadow 0.2s, background 0.2s;
}

.chkListInputCon input[type="text"]:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 2px rgba(74,112,139,0.25);
  background: var(--white);
}

/* ───────────────────────────────────────────────
   TABLE (tblChkList)
   ─────────────────────────────────────────────── */

.tblChkList {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  background: var(--white);
  border: 1px solid var(--lightBrown);
  border-radius: 10px;
  overflow: hidden;
  font-size: 14px;
}

/* Header */
.tblChkList thead {
  background: var(--lightBrown);
}

.tblChkList th {
  padding: 12px 10px;
  text-align: left;
  font-weight: 600;
  color: var(--darkBrown);
  border-bottom: 1px solid var(--lightBrown);
}

/* Body rows */
.tblChkList td {
  padding: 12px 10px;
  border-bottom: 1px solid #e8e8e8;
  color: var(--darkBrown);
}

/* Zebra rows for professional look */
.tblChkList tr:nth-child(even) {
  background: #faf8f4;
}

/* Row hover */
.tblChkList tbody tr:hover {
  background: #f1ede6;
}

/* Delete button cell */
.tblChkList .btnDelete {
  color: var(--red);
  cursor: pointer;
  font-weight: 600;
  transition: 0.2s;
}

.tblChkList .btnDelete:hover {
  color: var(--lightRed);
}
/* Default delete icon */
.tblChkList .delIcon {
  color: var(--red);     /* Rooi */
  cursor: pointer;
  transition: 0.2s ease;
}

/* Hover state */
.tblChkList .delIcon:hover {
  color: var(--lightRed);   /* Lighter red */
  transform: scale(1.2);    /* Klein pop effect */
}


/* TICKET REVIEW FORM */
#frmTicketReview .infoMsg {
  background: var(--white);
  border: 1px solid var(--lightBrown);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--darkBrown);
  margin-bottom: 18px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

/* Normal labels (not review row) */
#frmTicketReview label:not(.reviewLabel) {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 10px;
  font-size: 14px;
  color: var(--darkBrown);
}

/* Review row wrapper */
#frmTicketReview .reviewLabel {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin: 12px 0;
  width: 100%;
  font-size: 14px;
  color: var(--darkBrown);
  white-space: nowrap;
}

/* Date input box — clean, stable, no tricks */
#frmTicketReview .reviewLabel input[type="date"] {
  flex: 1;
  border: 1px solid var(--lightBrown);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 14.5px;
  font-family: inherit;
  background: #fff;
  color: var(--darkBrown);
  transition: 0.2s;
}

/* Focus behaviour */
#frmTicketReview .reviewLabel input[type="date"]:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 2px rgba(74,112,139,0.2);
}

/* Remove spinner buttons for cleaner look */
#frmTicketReview input[type="date"]::-webkit-inner-spin-button,
#frmTicketReview input[type="date"]::-webkit-clear-button {
  display: none;
}

/* Mobile layout */
@media (max-width: 480px) {
  #frmTicketReview .reviewLabel {
    flex-direction: column;
    align-items: flex-start;
    white-space: normal;
  }
}








/*FORM Lost reason*/
#frmLostReason textarea{
  font-family: 'roboto', sans-serif;
  border-radius: 7px;
  width: 100%;
  box-sizing: border-box;
  outline-color: var(--darkBrown);
  display: block;
  padding: 0.5vw 1vw 0.5vw 1vw;
  margin-bottom: 0.5vw;
  margin-top: 0.2vw;
}
#frmHoldReason textarea{
    font-family: 'roboto', sans-serif;
    border-radius: 7px;
    width: 100%;
    box-sizing: border-box;
    outline-color: var(--darkBrown);
    display: block;
    padding: 0.5vw 1vw 0.5vw 1vw;
    margin-bottom: 0.5vw;
    margin-top: 0.2vw;
  }

/*FORM PRODUCT*/

#frmProd .chkBox{
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
}
#frmProd .chkBox input{
    width: 30px;
}
#frmProd .chkBox span{
    margin-left: 5px;
}

#frmProd .qCon{
    display: flex;
    flex-flow: column nowrap;
    margin-bottom: 1vw;
}
#frmProd .qCon .aYesNo{
    display: flex;
    flex-flow: row nowrap;
    width: 100%;
    margin-bottom: 1vw;
}
#frmProd .qCon .aSelect{
    display: flex;
    flex-flow: column nowrap;
    width: 100%;
    margin-bottom: 1vw;
}

#frmProd .qCon .q{
    width: 60%;
    margin-right: 1vw;
}
#frmProd .qCon .ans{
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-around;
    width: 40%;

}
#frmProd .qCon .ans div{
    padding: 0.5vw 0 0.5vw 0;
    border: 1px solid var(--darkBrown);
    width: 45%;
    text-align: center;
    cursor: pointer;
}
#frmProd .qCon .ans .yes{
    margin-right: 1vw;
    color: var(--green);
}
#frmProd .qCon .ans .yes.selected{
    background-color: var(--green);
    color: var(--white);
}
#frmProd .qCon .ans .no{
    color: var(--red);
}
#frmProd .qCon .ans .no.selected{
    background-color: var(--red);
    color: var(--white);
}

#frmProd .partsCon{
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    padding: 1vw 0 0 0;
    border: 1px solid var(--lightBrown);
    background-color: var(--white);
    max-height: 500px;
    overflow-y: auto;
    border-radius: 7px;
    margin-bottom: 0.5vw;
}
#frmProd .partsCon .partItem{
    width: 90%;
    height: 2vw;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    padding: 0.5vw 1vw 0.5vw 1vw;
    background-color: var(--lightBrown);
    margin-bottom: 1vw;
    cursor: pointer;
    border-radius: 7px;
}
#frmProd .partsCon .partItem.selected{
    background-color: var(--green);
    color: var(--white);
}

#frmProd .fixProdCon .prodItem{
    position: relative;
}
#frmProd .fixProdCon .prodItem img{

    height: 2vw;
    max-height: 25px;
    position: absolute;
    top: 5%;
    right: 5%;
    cursor: pointer;
}
/* FORM PROFILE*/
#frmProfile .frmProfilePic{
  height: 12.5vw;
  width: 12.5vw;
  border: 0.3vw solid var(--darkBrown);
  border-radius: 7px;
  position: relative;
  background: url('../img/logoPlaceholder.png');
  background-size: 100% 100%;
  overflow: hidden;
}
#frmProfile .frmProfilePic img{
  width: 100%;
  background-color: transparent;
}
#frmProfile .profileFotoFile{
  position: absolute;
  bottom: 0;
  margin: 0;
  border: 0;
  outline: none;
  color: transparent;
  width: 100%;
  box-sizing: border-box;
  padding: 0.4vw 2.4vw;
  cursor: pointer;
  transition: 0.5s;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
}
#frmProfile .profileFotoFile::-webkit-file-upload-button{
  visibility: hidden;
}
#frmProfile .profileFotoFile::before{
  content: url('../img/icoUpload.png');
  display: flex;
  flex-flow: column;
  align-items: center;
  -webkit-user-select:none;
}/*
#frmProfile .profileFotoFile::after{
  content: 'upload';
  font-family: 'roboto', sans-serif;
  font-weight: bold;
  color: var(--white);
  display: block;
  text-align: center;
  top: 70px;
  font-size: 50%;
  position: absolute;
}*/
#frmProfile .profileFotoFile:hover{
  opacity: 1;
}

/* FORM WEB ROR*/
#frmRor .gItems div{
    width: 49%;
    height: 3vw;
    max-height: 30px;
}
#frmRor .itemCon{
    border: 1px solid var(--lightBrown);
    padding: 1vw;
    margin-bottom: 0.5vw;
    display: flex;
    flex-flow: column nowrap;
    background-color: var(--white);
}
#frmRor .itemCon .rorItem{
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    margin-bottom: 0.5vw;
    padding: 0.5vw;
    background-color: var(--lightBrown);
    cursor: pointer;
}
#frmRor .itemCon .rorItem.selected{
    background-color: var(--yellow);
}

/* FORM NOTE*/
#frmNote .detail textarea{
    border-radius: 7px;
    margin-top: 0.1vw;
    padding: 1vw;
    font-size: 120%;
    font-family: 'roboto', sans-serif;
}

#frmNote .pinCheckBox input{
  margin: 0 0.5vw 0 1vw;
}

/* FORM ORDER*/
#frmOrder .ordItemCon{
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    padding: 10px;
    background-color: var(--white);
    margin-bottom: 7px;
    border-radius: 7px;
    cursor: pointer;
}
#frmOrder .ordItemCon:hover{
    box-shadow: 0 0 5px var(--brownShadow);
}
#frmOrder .ordItemTop{
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    font-weight: bold;
    color: var(--darkBrown);
}
#frmOrder .ordItemBot{
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    font-size: 80%;
    color: var(--brown);
}

#frmOrder .ordItemCon.selected{
    background-color: var(--green);
}
#frmOrder .ordItemCon.selected *{
    color: white;
}


/* FORM PRICELIST*/
#frmPList{
  box-shadow: none;
  border-radius: 0;
  height: 100%;
  overflow-y: hidden;
}
#frmPList .priceListCon{
    height: 100%;
}
#frmPList .priceLCreateCon{
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding: 30px 30px 0 30px;
    flex-flow: row nowrap;
    width: 100%;
}
#frmPList .priceLCreateCon.disabled{
    pointer-events: none;
}

#frmPList .larger{
    width: 300px;
}
#frmPList .lblMarging{
    margin-right: 10px;
}

#frmPList .priceTypeTabs{
    display: flex;
    flex-flow: row nowrap;
    width: 100%;
    justify-content: center;
    font-size: 130%;
}
#frmPList .priceTypeTabs div{
    border: 1px solid var(--darkBrown);
    display: flex;
    justify-content: center;
    padding: 5px;
    cursor: pointer;
}
#frmPList .priceTypeTabs div:nth-child(n+2){
    margin-left: 10px;
}
#frmPList .priceTypeTabs div.selected{
    background-color: var(--white);
}

#frmPList .frmPListHeader{
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  margin: 30px 0 0 0;
  border-bottom: 2px solid var(--darkBrown);
  padding: 0 30px;
  box-sizing: border-box;
}
#frmPList .frmPListHeader h2{
    padding-bottom: 10px;
    flex-grow: 1;
}


#frmPList .frmPListHeader .headTabsCon{
    display: flex;
    flex-flow: row nowrap;
  
}

#frmPList .frmPHeadTab{
  padding: 5px 10px 10px 10px;
  border-radius: 7px 7px 0 0;
  margin-left: .5vw;
  cursor: pointer;
  height: 100%;
}
#frmPList .frmPHeadTab.selected{
    background-color: var(--white);
    color: var(--darkBrown);
}
#frmPList .frmPHeadTab:hover{
  background-color: var(--white);
  color: var(--darkBrown);
}

#frmPList .frmPListBody{
  display: flex;
  flex-flow: row nowrap;
  width: 100%;
  height: 100%;
  padding-bottom: 210px;
}

#frmPList .frmPListBody .mainTblCon{
    width: 80%;
    max-height: 100%;
    overflow-x: auto;
    overflow-y: auto;
}
#frmPList .frmPListBody .frmPListConR{
    width: 20%;
    max-height: 100%;
    overflow-y: auto;
}

#frmPList th{
  text-align: center;
  font-weight: bold;
  padding-bottom: 8px;
  padding-top: 30px;
}
#frmPList td input{
  padding: 5px .4vw;
  margin: 5px .4vw;
  border-radius: 7px;
  color: var(--darkBrown);
  background-color: var(--white);
  width: 7vw;
}
#frmPList td{
  text-align: left;
  border-bottom: 1px solid var(--darkBrown);
  height: 25px;
  cursor: pointer;
  width: 100%;
  padding-left: 5px;
  vertical-align: middle;
}
#frmPList .frmPListConL{
    height: 100%;
    box-sizing: border-box;
}
#frmPList .sticky-header{

    background-color: var(--lightBrown);
    border-bottom: 1px solid var(--darkBrown);
}
#frmPList .frmPListConR{
  background-color: var(--xLightBrowns);
  padding: 40px 15px;
  min-width: 10vw;
  box-shadow: -4px 0 4px var(--brownShadow);
}
#frmPList .frmPListConR .productSelect{
  display: flex;
  flex-flow: row nowrap;
  margin: 8px 0;
}
#frmPList .frmPListConR .productSelect span{
  margin-left: 0.5vw;
  color: var(--darkBrown);
}
#frmPList .priceListBtnCon{
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 80px;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: flex-end;
    padding: 0 30px;
    box-sizing: border-box;
    background-color: var(--white);
    border-top: var(--darkBrown) 2px solid;
    box-shadow: 1px 1px 5px grey;
}
#frmPList .priceListBtnCon .rightCon{
    display: flex;
    flex-flow: row nowrap;
}
#frmPList .priceListBtnCon .printBtn.disable{
    pointer-events: none;
    cursor:not-allowed;
    opacity: 0.5;
}
/* FORM DOC*/
#frmDoc {
    width: 90vw;
    height: 90vh;
    overflow-y: hidden;
}

#frmDoc .frmBody{
    display: flex;
    flex-flow: row nowrap;
    padding: 1vw;
    height: 100%;
}
#frmDoc .frmBody .details{
    width: 40%;
    max-height: 100%;
    background-color: var(--white);
    border-radius: 7px;
    box-shadow: 1px 1px 3px grey;
    overflow-y: auto;
    padding-bottom: 35px;
}

#frmDoc .frmBody .photos{
    display: flex;
    flex-flow: column nowrap;
    padding: 1vw;
    width: 60%;
    max-height: 100%;
    margin-left: 1vw;
    background-color: var(--white);
    border-radius: 7px;
    box-shadow: 1px 1px 3px grey;
    overflow-y: auto;
    padding-bottom: 50px;
}
#frmDoc .photos .imgCon{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: 0.5vw;
    width: 100%;
    height: 100%;
}
#frmDoc .photos .docIFrame{
    width: 100%;
    height: 100%;
}
#frmDoc .photos .btnPrev{
    position: absolute;
    top: 50%;
    left: 5%;
    font-size: 300%;
    font-weight: bolder;
    color: var(--white);
    z-index: 1;
    cursor: pointer;
    background-color: black;
    opacity: 0.6;
}
#frmDoc .photos .btnNext{
    position: absolute;
    top: 50%;
    right: 5%;
    font-size: 300%;
    font-weight: bolder;
    color: var(--white);
    z-index: 1;
    cursor: pointer;
    background-color: black;
    opacity: 0.6;
}
#frmDoc .photos .btnDel{
    position: absolute;
    top: 0;
    margin-top: 5px;
    right: 0;
    margin-right: 5px;
    height: 20px;
    cursor: pointer;
}
#frmDoc .photos .addPage{
    margin-top: 0.5vw;
    cursor: pointer;
}


#frmDoc .frmSecCon{
    display: flex;
    flex-flow: column nowrap;
}
#frmDoc .frmSection{
    display: flex;
    flex-flow: column nowrap;
    padding: 1vw;
}
#frmDoc .frmSection .secHeader{
    font-size: 130%;
    font-weight: bold;
    border-bottom: solid 2px var(--lightBrown);
    margin-bottom: 1.5vw;
}
#frmDoc .frmSection .inputCon{
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    margin-bottom: 0.7vw;
}
#frmDoc .frmSection .LblCon{
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    margin-bottom: 0.5vw;
}


#frmDoc .inputCon span{
    width: 30%;
    font-size: 100%;
    text-align: right;
    padding-right: 1vw;
    color: var(--brown);
}
#frmDoc .inputCon input{
    width: 70%;
    border: solid 1.5px var(--brown);
    height: 2vw;
    max-height: 30px;
    border-radius: 7px;
    padding-left: 1vw;
    font-size: 110%;
}
#frmDoc .inputCon select{
    width: 70%;
    border: solid 1.5px var(--brown);
    height: 2.2vw;
    max-height: 35px;
    border-radius: 7px;
    padding-left: 0.5vw;
    padding-right: 0.5vw;
    font-size: 110%;
    margin-right: 10px;
}

#frmDoc .disTbl table{
    width: 100%;
    margin: 0 auto;
}
#frmDoc .disTbl tr{
    width: 100%;
}
#frmDoc .disTbl td:nth-child(1){
    color: var(--brown);
    text-align: right;
    vertical-align: top;
    padding-bottom: 1vw;
    padding-right: 0.5vw;
    width: 30%;
}
#frmDoc .disTbl td:nth-child(2){
    margin-left: 1vw;
    padding-bottom: 1vw;
    width: 70%;
    color: var(--darkBrown);
    text-align: left;
    font-size: 110%;
    padding-left: 0.5vw;
}
#frmDoc .frmSection .chkCon{
    display: flex;
    flex-flow: row nowrap;
    margin-bottom: 0.5vw;
    background-color: var(--lightBrown);
    border-radius: 7px;
    padding: 1vw;
}

#frmDoc .chkCon input{
    width: 5%;
    font-size: 130%;
    cursor: pointer;
}
#frmDoc .chkCon p{
    width: 95%;
    padding-left: 0.5vw;
}

#frmDoc .hunPerSpecieCon{
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-end;
}
#frmDoc .hunPerSpecieCon .specieItem{
    display: flex;
    flex-flow: row nowrap;
    padding: 0.5vw 1vw 0.5vw 1vw;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5vw;
    background-color: var(--yellow);
    color: var(--white);
    font-size: 130%;
}
#frmDoc .hunPerSpecieCon .specieItem img{
    content: url("../img/icoDelete.png");
    height: 2vw;
    max-height: 20px;
    cursor: pointer;
}
#frmDoc .hunPerAddSpecie{
    margin-top: 1vw;
}

#frmDoc .phRegSpecieTbl{
    background-color: var(--lightBrown);
}
#frmDoc .phRegSpecieTbl tbody{
    padding: 0.2vw;
}
#frmDoc .phRegSpecieTbl td{
    width: 50%;
    padding: 0.3vw 0.3vw 0.3vw 0.3vw;
}
#frmDoc .phRegSpecieTbl input{
    width: 95%;
    height: 25px;
    padding-left: 0.5vw;
}
#frmDoc .phRegBtnAddSpecie{
    margin-top: 1vw;
    cursor: pointer;
}

/*FORM PRODUCT DIP AND SHIP*/

#frmProdDipSec th{
  text-align: left;
  font-size: 120%;
  padding: 5px 0;
}
#frmProdDipSec td{
  text-align: left;
  font-size: 120%;
  padding-left: 10px;
}
#frmProdDipSec th:last-of-type{
  text-align: right;
  font-size: 120%;
}
#frmProdDipSec td:last-of-type{
  text-align: right;
  font-size: 120%;
  padding-left: 10px;
}
#frmProdDipSec td input{
  padding: 7px 12.12px;
  border-radius: 7px;
  width: 70px;
  font-size: 110%;
  margin-bottom: 5px;
}


/*FORM DISPATCH*/
#frmDis .gItems div{
    width: 49%;
    height: 3vw;
    max-height: 30px;
}
#frmDis .itemCon{
    border: 1px solid var(--lightBrown);
    padding: 1vw;
    margin-bottom: 0.4vw;
    display: flex;
    flex-flow: column nowrap;
    background-color: var(--white);
    border-radius: 7px;
}
#frmDis .itemCon .item{
    display: flex;
    flex-flow: column nowrap;
    margin-bottom: 0.3vw;
    margin-top: 0.3vw;
    padding: 0.5vw;
    background-color: var(--lightBrown);
    cursor: pointer;
    color: var(--darkBrown);
    border-radius: 7px;
}
#frmDis .itemCon .item.selected{
    background-color: var(--green);
    color: var(--white)
}
#frmDis .item div{
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
}

/*FORM REPORT VIEW*/
#frmReportView {
    height: 85vh;
    width: 80vw;
    text-align: center;
}
#frmReportView .repLinkCon{
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    padding: 1vw;
    border-bottom: 1px solid var(--darkBrown);
}
#frmReportView .dinamicBtnCon{
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  gap: 10px;
}
#frmReportView .repBtnCon{
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  width: 100%;
  gap: 20px;
}
#frmReportView .repBtn{
  display: flex;
  align-items: center;
  flex-flow: row nowrap;
  background-color: var(--green);
  border-radius: 7px;
  padding: 4px 7px;
  cursor: pointer;
}
#frmReportView .repBtn:hover{
  box-shadow: 0 0 5px black;
}
#frmReportView .repBtn img{
  width: 20px;
  margin-right: 7px;
}
#frmReportView .repBtn span{
  color: var(--white);
}

#frmReportView .repEmailInput{
    width: 100%;
    text-align: left;
}
#frmReportView .repEmailInput label{
    display: flex;
    flex-flow: column nowrap;
    font-weight: bold;
    text-align: left;
    font-size: 120%;
    width: 30%;
}
#frmReportView .repEmailInput input{
    padding: 0.5vw;
    font-family: 'roboto', sans-serif;
    font-size: 120%;
    font-weight: normal;
    border-radius: 7px;
    margin: 0.1vw 0 0.5vw 0;
}

#frmReportView .linkData{
    display: flex;
    flex-flow: column nowrap;
    width: 68%;
}
#frmReportView .linkData span{
    margin-bottom: 0.1vw;
    font-weight: bold;
    text-align: left;
    font-size: 120%;
}
#frmReportView .linkData textarea{
    padding: 0.5vw;
    border-radius: 7px;
    font-family: 'roboto', sans-serif;
}

#frmReportView .iFrame{
    width: 100%;
    height: 100%;
    overflow: scroll;
}

/*frmRegTV*/
#frmRegTV .frmBody{
    padding: 10px;
}

/*APP VIEW*/
#appView{
    display: flex;
    height: 100%;
    width: 100%;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    overflow: hidden;
}
#appView .mainHeader{
    padding: 0.8vw 1vw 0.8vw 1vw;
    position: sticky;
    top: 0;
    color: var(--white);
    background-color: var(--darkBrown);
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    font-size: 120%;
    font-weight: bolder;
    width: 100%;
}
#appView .mainHeader img{
    height: 25px;
    display: none;
}
#appView .mainHeader .headerSide{
    width: 5%;
    min-width: 25px;
    position: relative;
}
#appView .mainHeader .desc{
    font-size: 130%;
    font-weight: bold;
}
#appView .frmCon{
    display: flex;
    justify-content: center;
    height: 100%;
    width: 100%;
    background-color: var(--lightBrown);
    overflow: hidden;
}




@media only screen and (min-width: 1300px) {
body{
    font-size: 14px;
}

}

@media only screen and (max-width: 1000px) {

#toolTip{
    font-size: 16px;
}

#appView{
    display: flex;
    height: 100%;
    width: 100%;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    overflow: hidden;
}
#appView .mainHeader{
    padding: 0.8vw 1vw 0.8vw 1vw;
    position: sticky;
    top: 0;
    color: var(--white);
    background-color: var(--darkBrown);
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    font-size: 130%;
    font-weight: bolder;
    width: 100%;
}
#appView .mainHeader img{
    height: 25px;
    display: none;
}
#appView .mainHeader .headerSide{
    width: 5%;
    min-width: 25px;
    position: relative;
}
#appView .mainHeader .desc{
    font-size: 130%;
    font-weight: bold;
}
#appView .frmCon{
    display: flex;
    justify-content: center;
    height: 100%;
    width: 100%;
    background-color: var(--lightBrown);
}

#fullView{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
}
#frmLogin{
    width: 80%;
}
#frmLogin img{
  height: auto;
  margin-bottom: 20px;
}
#frmLogin .gFrmLabel{
  margin-bottom: 7px;
}
#frmLogin .gBtnSave{
  padding: 10px 20px;
}

#dataList{
    font-size: 18px;
}

.gFrmLabel{
    display: block;
}
.gFrmLabel input{
    margin-bottom: 5px;
    height: 40px;
    width: calc(100% - 5px);
    padding-left: 5px;
    font-size: 90%;
}
.gFrmLabel select{
    margin-bottom: 5px;
    height: 40px;
    width: 100%;
    padding-left: 5px;
    font-size: 90%;
}

.gFrmLabel .gAddShort{
    width: 50%;
}
.gFrmLabel .gAddZip{
    width: 20%;
}

.gFrmSelect{
    height: 30px;
}

.gFrmTextArea{
    padding: 5px;
    width: calc(100% - 10px);
}


.gSearchItemCon{
    padding: 10px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    background-color: var(--white);
    margin-top: 10px;
    border-radius: 7px;
    box-shadow: 1px 1px 3px grey;
}
.gSearchItemCon .leftDiv{
    text-align: left;
}
.gSearchItemCon div span{
    display: block;
    font-weight: bold;
}

.gSearchItemCon .rightDiv{
    text-align: right;
}
.gSearchItemCon .rightDiv span{
    text-align: right;
}
.gSearchItemCon .topText{
    color: var(--darkBrown);
    font-size: 120%;
}
.gSearchItemCon .bottomText{
    color: var(--brown);
}

#imgView .mainImg{
    max-height: 90vh;
    max-width: 100vw;
}
#imgView .prevBtn{
    position: absolute;
    top: 0;
    left: 0;
    height: 10vw;
    z-index: 2;
    margin-left: 0vw;
    cursor: pointer;
    opacity: 0.7;
}
#imgView .nextBtn{
    position: absolute;
    top: 0;
    right: 0;
    height: 10vw;
    z-index: 2;
    margin-right: 0vw;
    cursor: pointer;
    opacity: 0.7;
}


.gFullFrm{
    width: 90vw;
}
.gFullFrm .frmCon img{
    height: 100px;
    width: 100px;
}

}
