:root{
    --darkBrown: #4a3323;
    --brown: #b38530;
    --lightBrown: #e2d3ba;
    --green: #438945;
    --lightGreen : lightGreen;
    --white: #ffffff;
    --red: #e40c2b;
    --lightRed: pink;
    --goldYellow: #EBA63F;
    --black: #000000;
    --gradient: linear-gradient(#fff,var(--black));
}
*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html{
  height: 100%;
  width: 100%;
  overflow: hidden;
  font-family: sans-serif;
  font-size: 16px
}
body{
  height: 100%;
  width: 100%;
  background-color: var(--lightBrown);
}

h1{
  font-size: 5vh;
}
h2{
  font-size: 3vh;
}

#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;
}


form{
  display: none;
}

.dashboardSlide {
  height: 100%;
  width: 100%;
  overflow-y: auto;
}
.dashBody{
  display: flex;
  flex-flow: row nowrap;
  padding: 0 5vw 4vh 5vw;
  height: 90%;
}
.dashBonusBody{
  display: flex;
  flex-flow: column nowrap;
  padding: 5vw;
  height: 90%;
  align-items: center;
  justify-content: space-around;
  box-sizing: border-box;
}
.slideHeader {
  display: flex;
  align-items: center;
  flex-flow: row nowrap;
  padding: 0 5vw;
  height: 10%;
}
.headTitle{
  flex-grow: 1;
}
.headMatrix{
  display: flex;
  flex-flow: column nowrap;
  align-items: flex-start;
  padding: 0 2vw;
  justify-content: space-between;
}
.membersCon{
  width: 40%;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  box-sizing: border-box;
}
.merberRowCon{
  width: 100%;
  height: 25%;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  border-bottom: 1px solid gray;
  padding: 1.5vh 0;
  box-sizing: border-box;
}
.empCon{
  position: relative;
  margin-right: 20px;
  aspect-ratio: 1/1;
  height: 80%;
  border-radius: 50%;
  overflow: hidden;
  box-sizing: border-box;
}
.empCon img{
  width: 100%;
}

.empName{
  font-weight: bold;
  position: absolute;
  color: var(--white);
  bottom: 10%;
  width: 100%;
  font-size: 1.5vh;
  display: flex;
  z-index: 2;
  align-items: center;
  justify-content: center;
}
.fade{
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 60%;
  z-index: 1;
  background-image: linear-gradient(to top, rgba(0,0,0,1), rgba(0,0,0,0));
}
.progressCon{
  flex-grow: 1;
  box-sizing: border-box;
  height: 80%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
}
.progressHeadCon{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-flow: row nowrap;
  width: 100%;
  height: 18%;
  font-size: 1.4vh;

  box-sizing: border-box;
}
.progressLine{
  display: flex;
  align-items: center;
  flex-flow: row nowrap;
  width: 100%;
  height: 18%;
  box-sizing: border-box;
}
.progressBarCon{
  width: 100%;
  margin: 0 0 0 10px;
  box-sizing: border-box;
}
.progressBar{
  width: 100%;
  border-radius: 10px;
  height: 2vh;
  overflow: hidden;
  border: 1px solid var(--green);
  box-sizing: border-box;
}
.progress{
  height: 100%;
  background-color: var(--green);
  box-sizing: border-box;
  transition: width 1s;
}
.targetScoreCon{
 display: flex;
 flex-flow: column;
 align-items: center;
 justify-content: space-between;
 height: 80%;
 margin-left: 20px;
 box-sizing: border-box;
}
.targetHead{
  font-size: 1.4vh;
  height: 18%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.targetCircle{
  background-color: var(--green);
  aspect-ratio: 1/1;
  height: 80%;
  border-radius: 50%;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.targets{
  font-weight: bold;
  font-size: 2vh;
  padding-bottom: 0.5vh;
  border-bottom: 2px solid var(--white);
  color: var(--white);
}
.targetTotal{
  font-weight: bold;
  font-size: 2vh;
  padding-top: 0.5vh;
  color: var(--white);
}
.canvasCon{
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  width: 60%;
  height: 100%;
  padding: 1.5vh 0 0 5vw;
  box-sizing: border-box;
}
#frmMount{
  display: none;
}

#frmMount .canvas{
  width: 100%;
}

#frmManikins{
  display: none;
}

#frmBonus{
  height: 100%;
}
#frmBonus .canvas{
  width: 70%;
}

#frmPipeline{
  height: 100%;
}
#frmPipeline .canvas{
  width: 70%;
}

#frmLogin{
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  flex-flow: column;
}
#frmLogin label{
  display: flex;
  flex-flow: column;
  align-items: center;
}
#frmLogin label input{
  border-radius: 10px;
  height: 40px;
  box-sizing: border-box;
  padding: 8px;
  margin-top: 20px;
}
#frmLogin .saveBtn{
  padding: 10px 15px;
  background-color: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  border-radius: 10px;
}