:root {
  --charcoal: #393737;
  --orange: #D55334;
  --darkOrange: #C44E32;
  --lightOrange: #F8DDD7;
  --black: #000000;
  --lightGrey: #EDEBEB;
  --white: #ffffff;
  --darkGrey: #A29E9E;
  --grey: grey;
  --goldYellow: #EBA63F;
  --lightBlue: lightblue;
  --green: #438945;
  --lightGreen: #55AD58;
  --red: #E40C2B;
  --blue: blue;
}

* {
  padding: 0;
  border: 0;
  margin: 0;
}

html {
  width: 100%;
  height: 100%;
}

body {
  font-size: 3vw;
  font-family: sans-serif;
  width: 100%;
  height: 100%;
  background-color: var(--lightGrey);
  overscroll-behavior: contain;
}

.gMask{
    width: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 3;
    display: none;
    position: absolute;
    margin: 0;
    padding: 0;
    top: 0;
    left: 0;
    text-align: center;
}
.gLoader{
    position: fixed;
    border: 8px solid var(--darkOrange);
    border-radius: 50%;
    border-top: 8px solid var(--lightOrange);
    border-bottom: 8px solid var(--lightOrange);
    width: 60px;
    height: 60px;
    top: calc(50% - 30px);
    left: calc(50% - 10px);
    margin-left: -30px;
    margin-top: -30px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


.gFrm{
  display: none;
}
.mFrm{
  display: flex;
}
.gViewHead{
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-end;
  width: 100%;
  height: 80px;
  box-sizing: border-box;
  padding: 0 4vw 1vw 4vw;
  border-bottom: 1px var(--orange) solid;
}
.gViewHead h1{
  color: var(--charcoal);
}

#toolTip {
  padding: 5px;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.8);
  color: var(--white);
  display: none;
  z-index: 10;
  -webkit-transition: opacity 0.5s;
  -moz-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

#infoBox {
  width: 250px;
  color: var(--white);
  background-color: #2b3b6e;
  border-radius: 15px;
  z-index: 4;
  display: none;
  position: absolute;
  margin: 0;
  padding: 15px;
  text-align: center;
  font-family: montserrat-light;
}
#infoBox header {
  margin-top: 15px;
  font-family: montserrat;
  font-weight: bold;
  font-size: 24px;
}
#infoBox img {
  margin-bottom: 3px;
  height: 50px;
  width: 50px;
}
#infoBox p {
  font-family: montserrat;
  font-weight: bold;
  font-size: 24px;
}
#infoBox .btnBox {
  margin-top: 10px;
  width: 100%;
  clear: both;
}
#infoBox .btnBox div {
  margin-bottom: 10px;
  color: var(--white);
  height: 40px;
  line-height: 37px;
  border-radius: 5px;
  font-size: 24px;
  cursor: pointer;
}

#dataListCon {
  position: absolute;
  display: none;
  background-color: var(--white);
  border: 1px solid var(--orange);
  z-index: 4;
  max-height: 300px;
}
#dataListCon .googleLogo{
    width: 144px;
    height: 18px;
    float: right;
}
#dataList {
  width: 100%;
  height: 100%;
  text-align: left;
  overflow-y: auto;
}
#dataList tr {
  position: relative;
  height: 40px;
}
#dataList td {
  text-align: left;
  border-bottom: 1px solid var(--darkGrey);
  height: 25px;
  cursor: pointer;
  width: 100%;
  padding-left: 5px;
  vertical-align: middle;
}
#dataList td:hover {
    background-color: var(--orange);
    color: white;
}
#dataList img {
  height: 20px;
  width: 20px;
  display: inline-block;
}

/*MFULLVIEW BEGIN HIER*/
#fullView{
  flex-flow: column nowrap;
  width: 100%;
  height: 100%;
  position: relative;
  overflow-y: auto;
}
#fullView .mFullBodyCon{
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: var(--lightGrey);
  overflow-y: auto;
  bottom: 0;
}
#fullView .header{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#fullView .header img{
  width: 150px;
  height: auto;
  margin-top: 50px;
}
#fullView p{
  width: 75%;
  color: var(--charcoal);
  font-size: 16px;
  text-align: center;
  margin: 8px 0;
}
#fullView .mFullViewLabel{
  display: flex;
  flex-flow: column nowrap;
  width: 70%;
  margin: 8px 0;
  box-sizing: border-box;
  font-size: 14px;
  color: var(--orange);
}
#fullView .mFullViewLabel input{
  box-sizing: border-box;
  height: 40px;
  width: 100%;
  border-radius: 7px;
  padding-left: 5px;
  margin-top: 3px;
  font-size: 18px;
}
#fullView .mBtnOrange{
  height: 35px;
  border-radius: 7px;
  background-color: var(--orange);
  color: var(--white);
  box-sizing: border-box;
  padding: 8px 15px;
  font-size: 14px;
  margin: 15px 0 8px 0;
}
#fullView .btnLoginAlt{
  font-size: 14px;
  color: var(--grey);
}



#mobileView{
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}
/* VIEW SCREENS*/
#viewHome{
  flex-flow: row wrap;
  justify-content: space-around;
  width: 100%;
  padding: 4vw;
  box-sizing: border-box;
}
#viewHome .vHomeBtnCon{
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  margin: 4vw;
}
#viewHome .vHomeBtnCon img{
  width: 20vw;
}
#viewHome .vHomeBtnCon span{
  color: var(--orange);
  font-size: 130%;
  margin-top: 1vw;
}
#viewHome .vLogout{
  width: 100%;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  position: absolute;
  bottom: 0;
}
#viewHome .vLogout img{
  width: 35px;
  padding-bottom: 5px
}
#viewHome .vLogout span{
  padding-bottom: 25px;
  color: var(--grey);
}
/* SEARCH SCREENS*/
#srcScreens{
  flex-flow: column;
  width: 100%;
  box-sizing: border-box;
  height: 100%;
  position: relative;

}
#srcScreens .header{
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    max-height: 150px;
    min-height: 100px;
    box-sizing: border-box;
    padding: 20px 4vw 5px 4vw;
    border-bottom: 1px var(--orange) solid;
}
#srcScreens .header h1{
  color: var(--charcoal);
  text-align: left;
  width: 100%;
  font-size: 30px;
}
#srcScreens .header select{
  color: var(--charcoal);
  box-sizing: border-box;
  border-radius: 5px;
  width: 100%;
  height: 50px;
  margin: 30px 0 20px 0;
  padding: 0 2vw;
  font-size: 18px;
}
#srcScreens .body{
  box-sizing: border-box;
  display: flex;
  flex-flow: column nowrap;
  overflow: scroll;
  width: 100%;
  padding: 20px 4vw 120px 4vw;
}
#srcScreens .itemCon{
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  border-radius: 5px;
  background-color: var(--white);
  margin-bottom: 13px;
  padding: 8px 2vw;
  box-sizing: border-box;
}
#srcScreens .itemL{
  width: 100%;
  padding-right: 1vw;
}
#srcScreens .itemR{
  width: 25%;
  padding: 0 8px 0 8px;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  border-left: 1px var(--grey) solid;
}
#srcScreens .itemR input{
    border: 1px solid black;
    height: 25px;
    width: 100%;
    text-align: center;
}
#srcScreens .footer{
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  padding: 0 4vw;
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 90px;
  background-color: var(--white);
  border-top: 1px var(--orange) solid;
}
#srcScreens .footer .backBtn{
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  background-color: var(--grey);
  color: var(--white);
  font-size: 18px;
  padding: 8px 3vw;
  border-radius: 5px;
  width: 15vw;
}
#srcScreens .footer .addBtn{
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  background-color: var(--orange);
  color: var(--white);
  font-size: 18px;
  padding: 8px 3vw;
  border-radius: 5px;
  width: 15vw;
}
#srcScreens .footer .nextBtn{
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  background-color: var(--green);
  color: var(--white);
  font-size: 18px;
  padding: 8px 3vw;
  border-radius: 5px;
  width: 15vw;
}
#srcScreens .inputCon{
  box-sizing: border-box;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 4vw;
  height: 60px;
}
#srcScreens .inputCon .input{
  color: var(--charcoal);
  box-sizing: border-box;
  border-radius: 5px;
  width: 100%;
  padding: 0 2vw;
  height: 40px;
  font-size: 18px;
}

/*.gSrcHead{
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 150px;
  box-sizing: border-box;
  padding: 20px 4vw 5px 4vw;
  border-bottom: 1px var(--orange) solid;
}
.gSrcHead h1{
  color: var(--charcoal);
  text-align: left;
  width: 100%;
  font-size: 30px;
}
.gSrcHead select{
  color: var(--charcoal);
  box-sizing: border-box;
  border-radius: 5px;
  width: 100%;
  height: 50px;
  margin: 30px 0 20px 0;
  padding: 0 2vw;
  font-size: 18px;
}
.gSrcBody{
  box-sizing: border-box;
  display: flex;
  flex-flow: column nowrap;
  overflow: scroll;
  width: 100%;
  padding: 20px 4vw 120px 4vw;
}
.gSrcItemCon{
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  border-radius: 5px;
  background-color: var(--white);
  margin-bottom: 13px;
  padding: 8px 2vw;
  box-sizing: border-box;
}
.gSrcItemL{
  width: 75%;
  padding-right: 1vw;
  border-right: 1px var(--grey) solid;
}
.gSrcItemR{
  width: 25%;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
}
.gSrcFooter{
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  padding: 0 4vw;
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 90px;
  background-color: var(--white);
  border-top: 1px var(--orange) solid;
}
.gSrcFooter .gSrcBackBtn{
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  background-color: var(--grey);
  color: var(--white);
  font-size: 18px;
  padding: 8px 3vw;
  border-radius: 5px;
  width: 15vw;
}
.gSrcFooter .gSrcAddBtn{
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  background-color: var(--orange);
  color: var(--white);
  font-size: 18px;
  padding: 8px 3vw;
  border-radius: 5px;
  width: 15vw;
}
.gSrcInputCon{
  box-sizing: border-box;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 4vw;
  height: 60px;
}
.gSrcInputCon .gSrcInput{
  color: var(--charcoal);
  box-sizing: border-box;
  border-radius: 5px;
  width: 100%;
  padding: 0 2vw;
  height: 40px;
  font-size: 18px;
}
#srcTools{
  flex-flow: column;
  width: 100%;
  box-sizing: border-box;
  height: 100%;
  position: relative;
}
#srcMPlants{
  flex-flow: column;
  width: 100%;
  box-sizing: border-box;
  height: 100%;
  position: relative;
}
#srcSPlants{
  flex-flow: column;
  width: 100%;
  box-sizing: border-box;
  height: 100%;
  position: relative;
}
#srcLDV{
  flex-flow: column;
  width: 100%;
  box-sizing: border-box;
  height: 100%;
  position: relative;
}
#srcTasks{
  flex-flow: column;
  width: 100%;
  box-sizing: border-box;
  height: 100%;
  position: relative;
}
#srcMat{
  flex-flow: column;
  width: 100%;
  box-sizing: border-box;
  height: 100%;
  position: relative;
}
#srcIssues{
  flex-flow: column;
  width: 100%;
  box-sizing: border-box;
  height: 100%;
  position: relative;
}
#srcEmp{
  flex-flow: column;
  width: 100%;
  box-sizing: border-box;
  height: 100%;
  position: relative;
} */

/* FORM SCREENS*/
.gFrmHead{
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  padding: 60px 5vw 20px 5vw;
}
.gFrmHead img{
  margin-bottom: 10px;
}
.gFrmHead select{
  color: var(--charcoal);
  box-sizing: border-box;
  border-radius: 5px;
  width: 100%;
  height: 50px;
  margin: 30px 0 20px 0;
  padding: 0 2vw;
  font-size: 18px;
}
.gFrmHead h1{
  color: var(--charcoal);
  text-align: left;
  width: 100%;
  font-size: 30px;
}
.gFrmHead h2{
  color: var(--charcoal);
  width: 100%;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  margin-top: 10px;
}
.gFrmHead h6{
  color: var(--orange);
  width: 100%;
  font-size: 15px;
  text-align: center;
  margin-top: 5px;
}
.gFrmHead h4{
  color: var(--charcoal);
  width: 100%;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-top: 30px;
}
.gFrmHead .gFrmItemName{
  font-size: 200%;
  font-weight: bold;
  text-align: center;
  margin-top: 10px;
}
.gFrmHead .gFrmItemDis{
  font-size: 150%;
  color: var(--orange);
  margin-top: 10px;
  text-align: center;
}

.gFrmBody{
  box-sizing: border-box;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  overflow: scroll;
  width: 100%;
  padding: 20px 4vw 120px 4vw;
}
.gFrmBody input{
  box-sizing: border-box;
  height: 40px;
  padding-left: 3vw;
  margin: 4px 0;
  font-size: 150%;
  border-radius: 5px;
}
.gFrmBody{
  box-sizing: border-box;
  display: flex;
  flex-flow: column nowrap;
  overflow: scroll;
  width: 100%;
  padding: 20px 4vw 120px 4vw;
}
.gFrmBody .gSrcItemCon{
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  border-radius: 5px;
  background-color: var(--white);
  margin-bottom: 13px;
  padding: 8px 2vw;
  box-sizing: border-box;
}
.gFrmBody .outstanding{
  color: var(--white);
  background-color: var(--red);
}
.gFrmBody .notWorking{
  color: var(--white);
  background-color: var(--blue);
}
.gFrmBody .done{
  color: var(--white);
  background-color: var(--green);
}
.gFrmBody .gSrcItemL{

  width: 50%;
  padding-right: 1vw;
  border-right: 1px var(--grey) solid;
}
.gFrmBody .gSrcItemR{
  width: 50%;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
}

.gFrmFooter{
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  padding: 0 4vw;
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 90px;
  background-color: var(--white);
  border-top: 1px var(--orange) solid;
}
.gFrmFooter .gSrcBackBtn{
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  background-color: var(--grey);
  color: var(--white);
  font-size: 18px;
  padding: 8px 3vw;
  border-radius: 5px;
  width: 15vw;
}
.gFrmFooter .gSrcCreateBtn{
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  background-color: var(--orange);
  color: var(--white);
  font-size: 18px;
  padding: 8px 3vw;
  border-radius: 5px;
  width: 15vw;
}
.gFrmFooter .gSrcAddBtn{
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  background-color: var(--orange);
  color: var(--white);
  font-size: 18px;
  padding: 8px 3vw;
  border-radius: 5px;
  width: 15vw;
}

.gFrmOr{
  margin: 25px 0;
  font-size: 200%;
}
.gFrmDelBtn{
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  background-color: var(--red);
  border-radius: 5px;
  padding: 5px 5vw;
  margin-top: 15px;
  height: 45px;
  width: 70%;
  box-sizing: border-box;
}
.gFrmDelBtn span{
  color: var(--white);
  font-size: 150%;
}
.gFrmDelBtn img{
  height: 30px;
  margin-left: 3vw;
}
.gFrmSubBtn{
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  background-color: var(--green);
  border-radius: 5px;
  padding: 5px 5vw;
  margin-top: 25px;
  height: 45px;
  color: var(--white);
  font-size: 150%;
  box-sizing: border-box;
  width: 70%;
}
.gFrmInpDis{
  font-size: 140%;
  margin: 30px 0;
  text-align: center;
}
.gFrmInpHead{
  font-size: 180%;
  margin: 0 0 15px 0;
  font-weight: bold;
  text-align: center;
}
.gFrmInpSub{
  font-size: 160%;
  text-align: center;
}
.gFrmTextHead{
  box-sizing: border-box;
  padding: 8px 3vw;
  border-radius: 5px;
  background: var(--white);
  min-height: 40px;
  width: 80%;
  font-size: 150%;
  margin-bottom: 20px;
}
.gFrmTextBody{
  box-sizing: border-box;
  padding: 8px 3vw;
  border-radius: 5px;
  background: var(--white);
  min-height: 200px;
  width: 80%;
  font-size: 150%;
  resize: none;
  margin-bottom: 20px;
}
.gDaySelectCon{
  width: 70%;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  color: var(--white);
  margin: 13px 0;
  padding: 15px 2vw;
  font-size: 140%;
  font-weight: bold;
  box-sizing: border-box;
}

#frmTools{
  flex-flow: column;
  width: 100%;
  box-sizing: border-box;
  height: 100%;
  position: relative;
}
#frmMPlants{
  flex-flow: column;
  width: 100%;
  box-sizing: border-box;
  height: 100%;
  position: relative;
}
#frmSPlants{
  flex-flow: column;
  width: 100%;
  box-sizing: border-box;
  height: 100%;
  position: relative;
}
#frmLDV{
  flex-flow: column;
  width: 100%;
  box-sizing: border-box;
  height: 100%;
  position: relative;
}

#frmTask{
  flex-flow: column;
  width: 100%;
  box-sizing: border-box;
  height: 100%;
  position: relative;
}
#frmTask .unitCon{
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-end;
}
#frmTask .unitCon span{
    font-size: 200%;
    font-weight: bold;
    margin-left: 3px;

}

#frmMat{
  flex-flow: column;
  width: 100%;
  box-sizing: border-box;
  height: 100%;
  position: relative;
}
#frmIssues{
  flex-flow: column;
  width: 100%;
  box-sizing: border-box;
  height: 100%;
  position: relative;
}
#frmEmp{
  flex-flow: column;
  width: 100%;
  box-sizing: border-box;
  height: 100%;
  position: relative;
}
#frmRain{
  flex-flow: column;
  width: 100%;
  box-sizing: border-box;
  height: 100%;
  position: relative;
}
#frmDairyDate{
  flex-flow: column;
  width: 100%;
  box-sizing: border-box;
  height: 100%;
  position: relative;
}
#frmDateOut{
  flex-flow: column;
  width: 100%;
  box-sizing: border-box;
  height: 100%;
  position: relative;
}

#frmWizSum{
  flex-flow: column;
  width: 100%;
  box-sizing: border-box;
  height: 100%;
  position: relative;
}
#frmWizSum .wizConHead{
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  height: 150px;
  box-sizing: border-box;
  padding: 20px 4vw 5px 4vw;
  border-bottom: 1px var(--orange) solid;
}
#frmWizSum .wizConHead h1{
  color: var(--charcoal);
  text-align: left;
  width: 100%;
  font-size: 30px;
}
#frmWizSum .wizConBody{
  padding-bottom: 89px;
}
#frmWizSum .wizConSec{
  padding: 15px 8vw;
  border-bottom: 1px var(--orange) solid;
}
#frmWizSum table{
  width: 100%;
}
#frmWizSum td:last-of-type{
  text-align: right;
}
#frmWizSum table .headerRight{
  text-align: right;
  padding-top: 3px;
  font-weight: bold;
}
#frmWizSum table .headerLeft{
  text-align: left;
  padding-top: 3px;
  font-weight: bold;
}
#frmWizSum .wizConFooter{
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  padding: 0 4vw;
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 90px;
  background-color: var(--white);
  border-top: 1px var(--orange) solid;
}
#frmWizSum .wizSumBackBtn{
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  background-color: var(--grey);
  color: var(--white);
  font-size: 18px;
  padding: 8px 3vw;
  border-radius: 5px;
  width: 15vw;
}
#frmWizSum .wizSumSubmitBtn{
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  background-color: var(--orange);
  color: var(--white);
  font-size: 18px;
  padding: 8px 3vw;
  border-radius: 5px;
  width: 15vw;
}

#frmGPS{
  flex-flow: column;
  width: 100%;
  box-sizing: border-box;
  height: 100%;
  position: relative;
}
#frmGPS .gViewHead{
  padding-top: 40px;
}
#frmGPS .gpsBody{
  padding-bottom: 120px;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: space-around;
}
#frmGPS .gpsBody h2{
  display: flex;
  align-items: stretch;
  text-align: center;
  box-sizing: border-box;
  margin: 20px 7vw 10px 7vw;
  color: var(--charcoal);
  box-sizing: border-box;
}
#frmGPS select{
    font-size: 18px;
    font-family: sans-serif;
    text-rendering: auto;
    color: var(--charcoal);
    display: flex;
    text-align: start;
    appearance: auto;
    box-sizing: border-box;
    align-items: center;
    white-space: pre;
    -webkit-rtl-ordering: logical;
    background-color: field;
    cursor: default;
    margin: 3px;
    border-width: 1px;
    border-style: solid;
    border-color: var(--charcoal);
    border-image: initial;
    border-radius: 3px;
    padding:0 2vw;
    height: 36px;
    width: 70%;

}
#frmGPS .gpsBtnCon{
  display: flex;
  width: 100%;
  align-items: center;
  flex-flow: column nowrap;
}
#frmGPS .gpsBtn{
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 7px 5vw;
  background-color: var(--green);
  border-radius: 5px;
  color: var(--white);
  margin: 10px 0;
  font-size: 18px;
}

#frmGPS .qRBodySingleInp{
  box-sizing: border-box;
  width: 100%;
  padding: 0 2vw;
  border-radius: 5px;
  margin-top: 3px;
  height: 36px
}
#frmGPS .qRBodyDateInp{
  box-sizing: border-box;
  width: 70%;
  padding: 0 2vw;
  border-radius: 5px;
  margin-top: 3px;
  height: 36px
}
#frmGPS .qRBodyDateInp{
  box-sizing: border-box;
  width: 70%;
  padding: 0 2vw;
  border-radius: 5px;
  margin-top: 3px;
  height: 36px
}
#frmGPS .qRBtn{
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: space-around;
  padding: 20px;
  border-radius: 7px;
  width: 40%;
  background-color: var(--orange);
  box-shadow: 0 0 3px var(--grey);
  margin-top: 20px;
}
#frmGPS .qRBtn span{
  color: var(--white);
  font-size: 130%;
}
#frmGPS .coordDis{
  font-size: 1.2rem;
  margin: 10px 0;

}
#frmGPS .gpsAccuracy{
  margin: 10px 0;
  font-size: 1rem;
  font-style: italic;
  color: var(--orange);
}
#frmGPS .gpsResults{
  font-size: 2rem;
  font-weight: bold;
  color: var(--green);
}


#frmQR{
  flex-flow: column;
  width: 100%;
  box-sizing: border-box;
  height: 100%;
  position: relative;
}
#frmQR .gViewHead{
  padding-top: 40px;
}
#frmQR .qRBody{
  padding-bottom: 120px;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
}
#frmQR .qRBodySubCon{
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  padding: 20px 5vw 10px 5vw;
}
#frmQR .qRBodySub{
  text-align: left;
  color: var(--orange);
  font-size: 140%;
  width: 100%;
}
#frmQR .qRBodyField{
  display: flex;
  flex-flow: column nowrap;
  align-items: flex-start;
  width: 100%;
  box-sizing: border-box;
  padding: 0px 10vw 10px 10vw;
}
#frmQR .qRBodySelectInp{
  box-sizing: border-box;
  width: 100%;
  padding: 0 2vw;
  border-radius: 5px;
  margin-top: 3px;
  height: 36px
}
#frmQR .qRBodySingleInp{
  box-sizing: border-box;
  width: 100%;
  padding: 0 2vw;
  border-radius: 5px;
  margin-top: 3px;
  height: 36px
}
#frmQR .qRBodyDateInp{
  box-sizing: border-box;
  width: 70%;
  padding: 0 2vw;
  border-radius: 5px;
  margin-top: 3px;
  height: 36px
}
#frmQR .qRBodyDateInp{
  box-sizing: border-box;
  width: 70%;
  padding: 0 2vw;
  border-radius: 5px;
  margin-top: 3px;
  height: 36px
}
#frmQR .qRBtn{
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: space-around;
  padding: 20px;
  border-radius: 7px;
  width: 40%;
  background-color: var(--orange);
  box-shadow: 0 0 3px var(--grey);
  margin-top: 20px;
}
#frmQR .qRBtn span{
  color: var(--white);
  font-size: 130%;
}

/* ADD SCREENS*/
.gAddHead{
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100px;
  box-sizing: border-box;
  padding: 20px 4vw 5px 4vw;
}
.gAddHead h1{
  color: var(--charcoal);
  text-align: center;
  width: 100%;
  font-size: 30px;
}
.gAddInputCon{
  box-sizing: border-box;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 4vw;
  height: 60px;
  margin-bottom: 6px;
}
.gAddInputCon .gAddQRInput{
  color: var(--charcoal);
  box-sizing: border-box;
  border-radius: 5px;
  width: calc(100% - 50px);
  padding: 0 2vw;
  height: 40px;
  font-size: 18px;
}
.gAddInputCon .gAddInput{
  color: var(--charcoal);
  box-sizing: border-box;
  border-radius: 5px;
  width: 100%;
  padding: 0 2vw;
  height: 40px;
  font-size: 18px;
}
.gAddInputCon img{
  width: 40px;
}
#srcAddScreen{
  flex-flow: column;
  width: 100%;
  box-sizing: border-box;
  height: 100%;
  position: relative;
}
#srcAddScreen .body{
  box-sizing: border-box;
  display: flex;
  flex-flow: column nowrap;
  overflow: scroll;
  width: 100%;
  padding: 20px 4vw 120px 4vw;
}
#srcAddScreen .itemCon{
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  border-radius: 5px;
  background-color: var(--white);
  margin-bottom: 13px;
  padding: 8px 2vw;
  box-sizing: border-box;
}
#srcAddScreen .itemL{
  flex-grow: 1;
  padding-right: 1vw;
}
#srcAddScreen .itemR{
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
}
#srcAddScreen .itemR img{
  width: 30px;
}
#srcAddScreen .footer{
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  padding: 0 4vw;
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 90px;
  background-color: var(--white);
  border-top: 1px var(--orange) solid;
}
#srcAddScreen .footer .backBtn{
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  background-color: var(--grey);
  color: var(--white);
  font-size: 18px;
  padding: 8px 3vw;
  border-radius: 5px;
  width: 15vw;
}
#srcAddScreen .footer .addBtn{
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  background-color: var(--orange);
  color: var(--white);
  font-size: 18px;
  padding: 8px 3vw;
  border-radius: 5px;
  width: 15vw;
}
