:root {
  --color-1: #075353;
  --color-2: #A1BEBC;
  --color-3: #F8C864;
  --color-4: #F1E9BB;
  --color-5: #F2C56C;
}

body{
  padding: 0;
  margin: 0;
  font-family: "Roboto,sans-serif";
}

canvas {
    position:absolute;
    transform: translateY(-100%);
    z-index:-1;
    padding: 0;
    margin: 0;
}

[v-cloak] {
  display: none;
}

body.dragging,
body.dragging * { cursor: e-resize !important; }

.header{
  margin: 0 auto;
  font-size: 36px;
  text-align: center;
  height: 75px;
  margin-bottom: 10px;
  font-family: "Lato", sans-serif;
}

.bold{
  font-weight: bold;
  font-size: 16px;
}

.smallItalic{
  font-size: 10px;
  font-style: italic;
}

.boldItalic{
  font-weight: bold;
  font-style: italic;
}

.questionDiv{
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.savingDiv{
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-style: italic;
  font-size: 14px;
  color: rgba(137,137,137,.9);
}

.messageDiv{
  position: fixed;
  top: 100%;
  left: 50%;
  transform: translate(-50%,-120%);
  text-align: center;
  background: white;
  opacity: 1;
  border: thin solid black;
  padding: 10px;
  font-size: 18px;
  width: 90%;
  
}

.pinkBorder{
  border: 3px solid pink;
}

.schedule-table .blueBorder{
  border: 2px solid orangered;
}

.schedule-table .needsBreak{
  animation-name: breakWarning;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-direction: alternate;

}

@keyframes breakWarning {
  to {background-color: rgb(93, 173, 226,.8)}
}

.messageBox{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 90%;
  font-size: 16px;
  background: white;
  border: thin solid black;
  text-align: center;
}

.messageBoxBottom{
  position: fixed;
  top: 90%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 90%;
  font-size: 16px;
  background: white;
  border: thin solid black;
  text-align: center;
}


.messageButton{
  font-style: underline;
  font-size: 20px;
  font-weight: bold;
}


.question{
  width: 25px;
  height: 25px;
  text-decoration: none;
  font-size: 25px;
  opacity: .4;
  cursor: pointer;
  color: black;
}

.question:hover{
  opacity: 1;
}

USER CARD

@import url('//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css');
@import url('//fonts.googleapis.com/css?family=Lato:400');
*, *:before, *:after {
  box-sizing: border-box;
  user-select:none;
  -webkit-user-select:none;
  -moz-user-select:none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.userProfileCorner {
  height: 75px;
  width: 150px;
  font-family: "Lato", sans-serif;
  padding: 0;
  margin: 0;
  color: #6D6D6D;
  float: left;
}

.userWrapper
{
    background: rgba(255, 255, 255, .0);
    width: 120px;
    height: 75px;
    /*box-shadow: 0px 0px 6px rgba(100, 89, 89, 0.34);*/
    top: 2px;
    left: 2px;
}

.userWrapper .img
{
  background-size: 120px;
  background-position: -56px 0px;
  width: 100%;
  height: 100%;
  cursor: pointer;
  margin: 0 auto;
  padding: 0;
  display: relative;
  transform: translateY(-5px);
}

#displayImage{
  width: 120px;
  height: 60px;
  margin: 0 auto;
  background-size: 75px 75px;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.userWrapper div.name
{
    cursor: pointer;
    position: absolute;
    width: 120px;
    height: 25px;
    background-color: #191919;
    color: #ffffff;
    box-shadow: 0px 0px 6px rgba(100, 89, 89, 0.34);
    text-align: center;
    font-size: 12px;
    transform: translateY(-10px);
    transition:all 0.4s ease-out;
}

#userNameDisplay{
  line-height: 25px;
  color: #ffffff;
}

#sign-in-status
{
  width: 80%;
  margin: 0 auto;
  text-align: center;
  font-size: 24px;
  margin-bottom: 50px;
}

#firebaseui-auth-container
{
  display: none;
}

#vue-app
{
  width: 100%;
}

.view-dailyShiftsWrapper
{
  margin-bottom: 250px;

}

.asterisk{
  font-size: 20px;
  color: red;
  display: inline-block;
}

.weatherForecast
{
  font-size: 12px;
  font-weight: normal;
}

.currentWeather{
  width: 400px;
  margin: 0 auto;
  position: absolute;
  top: 10px;
  left: 125px;
}

.view-modeSelector
{
  width: 100%;
  margin : 0 auto;
  background-color: #111;
  padding-top: 10px;
  padding-bottom: 10px;
}

.view-modeSelectBox
{
  display: block;
  text-align: left;
  font-size: 24px;
  color: white;
  cursor: pointer;
  margin: 0 auto;
  background-color: #333;
  border: thin solid black;
}


#error-container{
  width: 100%;
  text-align: center;
}

.clickableDiv{
  color: rgba(0,0,0,.8);
  cursor: pointer;
  text-decoration: underline;
  display: inline;
}

/* SELECTOR BOX */

.selectorBox{
  height: 75px;
  position: absolute;
  top: 5px;
  right: 5px;
  display: flex;
  flex-direction: column;
}

.pendingUsers{
  font-size: 24px;
  margin-top: 10px;
  cursor: pointer;
  animation: blink 1s infinite;
}

@keyframes blink {
	0% {opacity: 1}
	50% {opacity: .5}
  100% {opacity: 1}
}

.dcr-selectorBox{
  width: 100px;
  text-align: right;

}



.emptyDCRCell{
  height: 50px;
}

.selectorBox-section{
  display: inline-flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.selectorBox-section select{
  width: 225px;
  margin-left: 5px;
}


.addEmployee
{
  border-color: var(--color-1);
  width: 30%;
  border: thin solid;
  border-radius: 5px;
  padding: 10px;
  position: fixed;
  top: 20px;
  left: calc(-30% - 25px);
  transition: all .2s ease-out;
  background-color: #FFFFFF;
  opacity: 1;
}

.addEmployeeWide
{
  border-color: var(--color-1);
  width: 80%;
  border: thin solid;
  border-radius: 5px;
  padding: 10px;
  position: fixed;
  top: 20px;
  left: calc(-80% - 25px);
  transition: all .2s ease-out;
  background-color: #FFFFFF;
  opacity: 1;
  min-height: 400px;
}

.offerTable{
  margin: 0 auto;
  margin-top: 25px;
  width: 100%;
  border-collapse: collapse;
}

.offerTable td{
  border: thin solid black;
}

.wide{
  width: 150px;
}


.assignRolePopup{
  display: none;
  position: absolute;
  border: thin solid black;
  border-radius: 5px;
  opacity: 1;
  width: 150px;
  background-color: #505050;
  color: white;
}

.assignRolePopup ul{
      width: 100%;
      padding: 0;
}

.assignRolePopup li{
  list-style-type: none;
  cursor: pointer;
  width: 100%;
  text-align: center;
}

.assignRolePopup li:hover{
  opacity: .6;
}

.staffContextPopup
{
  display: none;
  position: absolute;
  border: thin solid black;
  border-radius: 2px;
  opacity: 1;
  width: 250px;
  background-color: #FFFFFF;
  height: 175px;
}

.staffContextPopup ul{
      width: 100%;
      padding: 0;
}

.staffContextPopup li{
  list-style-type: none;
  cursor: pointer;
  width: 100%;
  text-align: center;
}

.staffContextPopup li:hover{
  opacity: .6;
}


.RoleActive{
  display: block;
}


.Active{
  left: 50%;
  transform: translateX(-50%);
  transition: all .2s ease-out;
}

.addEmployeeToSchedule-input{
  cursor: pointer;
}


.addEmployeeToSchedule-input:hover{
  background-color: rgba(255, 99, 77,.2);
}

.schedule-employeeRow td{
  padding: 2px 10px 2px 10px!important
}


.addEmployee h3{
  width: 100%;
  text-align: center;
}

.addEmployee-close{
  position: absolute;
  top: 5px;
  right: 5px;
}

.addEmployee-close:hover{
  color: #999;
  cursor: pointer;
}

.addEmployee-minus{
  color: #999;
  display: inline-block;
}

.addEmployee-minus:hover{
  color: black;
  cursor: pointer;
}

.addEmployee-input{
  display: block;
  margin-bottom: 10px;
}

.addEmployee-lable{
  min-width: 100px;
}

.addEmployee-input select{
  width: 150px;
}

.addEmployee-input input{
  width: 150px;
}

.addEmployee-input input.inputWageRate{
  margin-left: 15px;
  width: 50px;
  display: inline-block;
}

.employeePool{
  width: 100%;
  margin-top: 50px;
  text-align: left;
  border-top: thin solid #999;
  background-color: #b2b2b2;
  color: white;
  padding-left: 20px;
}

.employeePool-addButton{
  display: block;
  margin-top: 10px;
}

.schedule{
  width: 97%;
  margin: 0 auto;
  margin-top: 25px;
  margin-bottom: 25px;
}

.currentRulesTable{
  width: 100%;
}

.switchyContainer
{
  width: 100%;
}

.traineeCompetencies{
  width: 90%;
  margin: 0 auto;
}

.smallStaffTable{
  margin: 0 auto;
  margin-top: 20px;
  border-collapse: collapse;
  table-layout: fixed;
}

.trainingStaffTable{
  margin: 0 auto;
  margin-top: 20px;
  border-collapse: collapse;
  table-layout: fixed;
}

.marginTopBottom
{
  margin-top: 5px;
  margin-bottom: 15px;
}

.shiftTable{
  font-size: 10px;
}

.availabilityTable{
  margin-top: 10px;
  margin-bottom: 10px;
}

.availabilityInput{
  width: 50px;
}

.availabilityInputCell{
  text-align: right;
  padding-right: 10px;
}

.limitCell{
  font-size: 8px;
  font-style: italic;
}

.notAvailable
{
  background-color: #999;
  opacity: .5;
  border: 2px solid rgba(0,0,0,.2);
}

.schedule-table{
  margin: 0 auto;
  height: 100%;
  /*border: thin solid var(--color-5);*/
  border-collapse: collapse;
}

.highlightSection{
  background-color: rgba(237,237,237,.6);
  border-style: solid;
  border-width: 1px;
  border-color: rgba(237,237,237,.9);
  margin-bottom: 10px;
  margin-top: 10px;
}


.view-weeklyScheduleWrapper{
  margin-bottom: 25px;
}

.fullWeekTable{
  border-collapse: collapse;
  width: 100%;
}
.fullWeekTable th, td{
  padding: 0;
  text-align: center;
}




.schedule-table{
  margin: 0 auto;
  width: 1200px;
  min-width: 1200px;
}

.schedule-table th{
  cursor: default;
}

.schedule-table th, td {
    padding: 0;

}

.schedule-table td {
  width: 100%;
}

.schedule-table .employeeColumnHeader{
  width: 10%;
  padding-right: 5px;
  cursor: default;
}


.schedule-table .availabilityFlag{
  background-color: rgba(160,160,160,.8);
}

.schedule-table .scheduledNotAvailable{
  border: 1px solid red;
}

.schedule-table .employeeColumnCell{
  text-align: right;
  padding-right: 5px;
  cursor: default;
}

.schedule-table .dayColumnHeader{
  text-align: center;
  cursor: default;
}

.schedule-table .updatingCell{
  border: thin solid rgba(255,0,0,.8);
}

.schedule-table .updateComplete{
  border: none;
}


.schedule-table .dayColumnCell
{
}

.schedule-table .totalRowCell
{
  padding-top: 15px;
}

.schedule-table .totalHoursSpan
{
  text-align: center;
  width: 100%;
  display: block;
}

.schedule-table input{
  max-width: 70px;
  text-align: center;
}

.schedule-table .noteBox{
  width: 97%;
  max-width: 97%;
  padding: 0;
}

.lowVis{
  color: rgba(0,0,0,.3);
}

.buttonLeft{
  text-align: left;
}

.buttonRight{
  text-align: right;
}

.right{
  text-align: right;
  padding-right: 20px;
}

.topPadding{
  padding-top: 25px;
}

.centre{
  text-align: centre;
}

.fill{
  width: 100%;
}

.dataTable{
  
  text-align: center;
}


.dataTable td{
  width: 120px;
  font-size: 18px;
  text-align: center;
}

.trainingHeader{
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 20px;
  font-weight: bold;
  text-align: center;
  
}



.largeFont{
  font-size: 20px;
}

.topRightButton{
  position: absolute;
  right: 20;
  top: 0;
}

.skillSection{
  padding-top: 25px;
}

.adjustMultiplierButton{
  margin: 0 auto;
  display: block;
  margin-top: 10px;
  width: 80%;
  padding: 0;
  margin: 10px 20px 10px 0;
  font-weight: 600;
  text-align: center;
  line-height: 25px;
  color: black;
  border-radius: 5px;
  transition: all 0.2s ;
  text-decoration: none;
  height: 25px;
}

.btnBlueGreen {
  border-style: solid;
  border-width: 2px;
  border-color: rgba(152,251,152,.4)
}

.btnOrange {
  border-style: solid;
  border-width: 2px;
  border-color: rgba(237,67,55,.4)
}

.btnFade.btnBlueGreen:hover {
  border-color: rgba(152,251,152,1)
}

.btnFade.btnOrange:hover {
  border-color: rgba(237,67,55,1)
}



.dcrWrapper{
  width: 100%;
  padding: 0;
  margin: 0 auto;
  margin-top: 5px;
  margin-bottom: 50px;

}

.dcrWrapper h3{
  margin: 0 auto;
  text-align: center;
  margin-bottom: 25px;
}

table.dcrTable {
  table-layout:fixed;
  margin: 0 auto;
  width: 1075px;
  border-collapse: collapse;
}

table.dcrTable-viewMode {
  table-layout:fixed;
  margin: 0 auto;
  border-collapse: collapse;
}

.salesGuestSelectWrapper{
  display: block;
  margin: 0 auto;
  margin-top: 15px;
  text-align: center;
  font-size: 14px;

}


.salesGuestSelect{
  display: inline-block;
  margin: 0 auto;
  opacity: .6;
  cursor: pointer;
}

.salesGuestSelect:hover{
  opacity: .8;
}

.dcrUnitsOn{
  opacity: 1;
}

.availableEmployeeList{
  list-style-type: none;
  text-align: center;
  margin: 0 auto;
  padding: 5px;
}

.moreInfoTable
{
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
  border-collapse: collapse;
}

.moreInfoTable td{
  background-color: rgba(0,0,0,.1);
  font-size: 12px;
}




/* table.dcrTable th { overflow: hidden; padding: 0; border-left: solid 1px #999; border-right: solid 1px #999 }
table.dcrTable th:first-child { overflow: hidden; padding: 0; border-left: none; border-right: solid 1px #999 }
table.dcrTable td { overflow: hidden; padding: 0; border-top: solid 1px #999; border-bottom: solid 1px #999 } */

table.dcrTable th { overflow: hidden; padding: 0;  }
table.dcrTable th:first-child { overflow: hidden; padding: 0;  }
table.dcrTable td { overflow: hidden; padding: 0; border-top: solid 1px #999; border-bottom: solid 1px #999 }

.dcrFillBar{
  min-height: 100%;
  cursor: default;
}

.dcrLeftDrag
{
  background-color: #999;
  cursor: e-resize;
  float: left;
}

.dcrRightDrag{
  background-color: #999;
  cursor: e-resize;
  float: right;
}

.dcrRightDrag:after{
  content: "";
  display: table;
  clear: both;
}

.dcrLeftDrag-view
{
  float: left;
  font-size: 10px;
  /* transform: translateY(50%); */
}

.dcrLeftDrag-display
{
  float: left;
  font-size: 10px;
  /* transform: translateY(50%); */
}

.dcrRightDrag-view{
  float: right;
  font-size: 10px;
  /* transform: translateY(50%); */
}

.dcrRightDrag-display{
  float: right;
  font-size: 10px;
  /* transform: translateY(50%); */
}

.dcrRightDrag-view:after{
  content: "";
  display: table;
  clear: both;
}

.dcrTable .employeeColumnCell{
  text-align: right;
  padding-right: 5px;
  cursor: default;
}

.dcrTable-viewMode-location
{
  width: 100%;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 10px;
  padding-bottom: 5px;
  font-weight: bold;
  border: 0;
  background-color: #111;
}

.dcrTable-viewMode .employeeColumnCell{
  text-align: right;
  padding-right: 5px;
  cursor: default;
}

.dcrColumnHeader{
  text-align: center;
  width: 24%;
  min-width: 24%;
  max-width: 24%;
  cursor: default;
}

.dcrColumnHeader-viewMode{
  width: 4%;
  min-width: 4%;
  max-width: 4%;
  cursor: default;
  text-align: right;
}

.dcrSelect
{
  width: 125px;
}

.dcrSelect-view
{
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  width: 80%;
  padding: 10px 50px 10px 10px;
  background: url(select-icon.png) no-repeat 95% center;
  background-color: #222;
  border-radius: 4px;
  border: 1px solid #fff;
  color: white;
  margin-bottom: 5px 0;
}




/* LABOUR MODE */

.modeSelectorWrapper
{
  width: 100%;
  margin: 0 auto;
  margin-bottom: 50px;
}

.modeSelectBox{
  margin: 0 auto;
  width: 300px;
  display: block;

}

.modeSelectFlexContainer
{
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: space-around;
}

.modeSelector
{
  width: 100px;
  font-size: 18px;
  text-align: center;
  opacity: .3;
}

.view-modeSelector
{
  width: 100%;
  background-color: #111;
  font-size: 18px;
  text-align: center;
}

.modeSelector:hover
{
  opacity: 1;
  cursor: pointer;
}

.verticaLine
{
  width: 2px;
  background-color: rgba(0,0,0,.1);
  height: 100%;
}

.labourDayWrapper
{
  width: 100%;
  margin: 0 auto;
}

.labourDay-selectorBox
{
  width: 300px;
  margin: 0 auto;
}

.labourManagerFirstColumn
{
  text-align: right;
  padding-right: 25px;
}

.table-top-margin
{
  margin-top: 50px;
}

.align-left
{
  text-align: left;
}


.allStaffTable{
  margin: 0 auto;
  width: 98%;
  border-collapse: collapse;

}

.allStaffTable td{
  border: 1px solid grey;
}

.hiringWrapper{
  margin-top: 50px;
  width: 95%;
  margin: 0 auto;
  border: thin solid rgba(137,137,137,.6);
  border-radius: 2px;
}

.hiringHeader{

  width: 250px;
  margin: 0 auto;
  margin-top: 10px;
  margin-bottom: 25px;
  font-weight: bold;
  text-align: center;
}

.hiringTable{
  width: 90%;
  margin: 0 auto;
  border-collapse: collapse;
  margin-bottom: 50px;
}

.hiringTable td{
  border: thin solid black;
}
/* BUTTONS */


#chunky-buttons a {
    float: left;
    display: inline-block;
    position: relative;
    margin: 0;
    margin-top: 8px;
    margin-left: 6px;
}

.chunky {
  padding-bottom: 12px;
}

/* ===[ Begin Chunky Button ]=== */

.chunky a {
    /* Normal State */
    padding: 4px 15px 7px 15px;
    width: auto;
    height: auto;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: bold;
    font-style: normal;
    font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    -o-font-smoothing: antialiased;
    -ms-font-smoothing: antialiased;
    text-decoration: none;
    text-shadow: 0 -1px 1px rgba(0,0,0,0.50);
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    -ms-border-radius: 3px;
    border: 1px solid rgba(0,0,0,0.50);
    border-top: 1px solid rgba(0,0,0,0.001);
    box-shadow: 0 0 10px rgba(0,0,0,0.35), 0px 1px 3px rgba(0,0,0,0.18), inset 0px -3px 0px rgba(0,0,0,0.35), inset 0px 14px 14px rgba(255,255,255,0.10);
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.35), 0px 1px 3px rgba(0,0,0,0.18), inset 0px -3px 0px rgba(0,0,0,0.35), inset 0px 14px 14px rgba(255,255,255,0.10);
    -moz-box-shadow: 0 0 10px rgba(0,0,0,0.35), 0px 1px 3px rgba(0,0,0,0.18), inset 0px -3px 0px rgba(0,0,0,0.35), inset 0px 14px 14px rgba(255,255,255,0.10);
    -o-box-shadow: 0 0 10px rgba(0,0,0,0.35), 0px 1px 3px rgba(0,0,0,0.18), inset 0px -3px 0px rgba(0,0,0,0.35), inset 0px 14px 14px rgba(255,255,255,0.10);
    -ms-box-shadow: 0 0 10px rgba(0,0,0,0.35), 0px 1px 3px rgba(0,0,0,0.18), inset 0px -3px 0px rgba(0,0,0,0.35), inset 0px 14px 14px rgba(255,255,255,0.10);
    cursor: pointer;
}

.chunky a:hover {
    /* Hover State */
    box-shadow: 0 0 10px rgba(0,0,0,0.35), 0px 1px 3px rgba(0,0,0,0.18), inset 0px -3px 0px rgba(0,0,0,0.35), inset 0px 14px 14px rgba(255,255,255,0.25);
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.35), 0px 1px 3px rgba(0,0,0,0.18), inset 0px -3px 0px rgba(0,0,0,0.35), inset 0px 14px 14px rgba(255,255,255,0.25);
    -moz-box-shadow: 0 0 10px rgba(0,0,0,0.35), 0px 1px 3px rgba(0,0,0,0.18), inset 0px -3px 0px rgba(0,0,0,0.35), inset 0px 14px 14px rgba(255,255,255,0.25);
    -o-box-shadow: 0 0 10px rgba(0,0,0,0.35), 0px 1px 3px rgba(0,0,0,0.18), inset 0px -3px 0px rgba(0,0,0,0.35), inset 0px 14px 14px rgba(255,255,255,0.25);
    -ms-box-shadow: 0 0 10px rgba(0,0,0,0.35), 0px 1px 3px rgba(0,0,0,0.18), inset 0px -3px 0px rgba(0,0,0,0.35), inset 0px 14px 14px rgba(255,255,255,0.25);
    cursor: pointer;
}

.chunky a:active {
    /* Active State (clicked on) */
    padding: 6px 15px 5px 15px;
    border-top: 1px solid rgba(0,0,0,0.55);
    box-shadow: 0 0 10px rgba(0,0,0,0.35), 0px 2px 1px rgba(255,255,255,0.50), inset 0px 1px 4px rgba(0,0,0,0.35), inset 0px -14px 14px rgba(255,255,255,0.10);
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.35), 0px 2px 1px rgba(255,255,255,0.50), inset 0px 1px 4px rgba(0,0,0,0.35), inset 0px -14px 14px rgba(255,255,255,0.10);
    -moz-box-shadow: 0 0 10px rgba(0,0,0,0.35), 0px 2px 1px rgba(255,255,255,0.50), inset 0px 1px 4px rgba(0,0,0,0.35), inset 0px -14px 14px rgba(255,255,255,0.10);
    -o-box-shadow: 0 0 10px rgba(0,0,0,0.35), 0px 2px 1px rgba(255,255,255,0.50), inset 0px 1px 4px rgba(0,0,0,0.35), inset 0px -14px 14px rgba(255,255,255,0.10);
    -ms-box-shadow: 0 0 10px rgba(0,0,0,0.35), 0px 2px 1px rgba(255,255,255,0.50), inset 0px 1px 4px rgba(0,0,0,0.35), inset 0px -14px 14px rgba(255,255,255,0.10);
    -webkit-animation: none;
    cursor: pointer !important;
}

/* ===[ End Chunky Button ]=== */

/* ===[ Start Chunky Button Background Color ]=== */

.chunky1 a { background: #c0c0c0 }

.chunky2 a { background: #b2b2b2 }

.chunky3 a { background: #a1a1a1 }

.chunky4 a { background: #9b9b9b }

.chunky5 a { background: #999 }

.chunky6 a { background: #8b8b8b }

.chunky7 a { background: #7b7b7b }

.chunky8 a { background: #6b6b6b }

.chunky9 a { background: #666 }

.chunky10 a { background: #5e5e5e }

.chunky11 a { background: #5b5b5b }

.chunky12 a { background: #000000 }

.chunky13 a { background: #77AD0C }

.chunky14 a { background: #669900 }

.chunky15 a { background: #336600 }

.chunky16 a { background: #0066cc }

.chunky17 a { background: #333399 }

.chunky18 a { background: #663399 }

.chunky19 a { background: #993399 }

.chunky20 a { background: #EA4C89 }

.chunky21 a { background: #CC3333 }

.chunky22 a { background: #CC0000 }

.chunky23 a { background: #990000 }

.chunky24 a { background: #cc6633 }

.chunky25 a { background: #FF6600 }

.chunky26 a { background: #FF9900 }

.chunky27 a { background: #F9BB11 }

.chunky28 a { background: #FFCC33 }

.addEmployeeButton
{
  width: 100%;
}

/* ===[ End Chunky Button Background Color ]=== */


/* VIEW MODE */

.view-myShiftsWrapper
{
  width: 100%;
  margin: 0 auto;
  padding: 0;
  margin-bottom: 200px;
}

.view-myShiftsThisWeek
{
  width: 90%;
  margin: 0 auto;
  padding: 10px;
}

.leftArrow
{
  float: left;
  margin-left: 15px;
  color: white;
  font-size: 36px;
  cursor: pointer;
}

.rightArrow{
  float: right;
  margin-right: 15px;
  color: white;
  font-size: 36px;
  cursor: pointer;
}

.rightArrow::after {
  content: "";
  clear: both;
  display: table;
}

.view-Header{
  margin-bottom: 0;
}

.view-title{
  height: 25px;
  background: white;
  text-align: center;
}

.view-section{
  height: 2px;
  background: white;
  text-align: center;
}


.myShiftsHeader
{
  width: 100%;
  margin: 0 auto;
  background-color: black;
  color: white;
  text-align: center;
  font-size: 24px;
  height: 50px;
  line-height: 50px;
}

.scheduleBoxWrapper
{
  width: 100%;
  margin: 0 auto;
}

.weekdayHeader
{
  background-color: white;
  color: #111;
  text-align: left;
  font-size: 24px;
  height: 24px;
  margin-bottom: 5px;
}

.shift
{
  margin-bottom: 10px;
  margin-left: 15px;
  margin-right: 15px;
}


.shiftInfoWrapper{
  padding: 5px;
  border-radius: 5px;
  box-shadow: 0 0 1px 2px rgba(137,137,137,.4);
}

.availableShiftHeader
{
  text-align: center;
  margin: 0 auto;
  font-weight: bold;
  margin-bottom: 10px;
}

.availableShiftInfoWrapper{
  padding: 5px;
  border-radius: 5px;
  border: thin solid red;
  animation: border-pulsate 1s infinite;
}

@keyframes border-pulsate {
  0%   { border-color: rgba(236, 122, 99, 1); }
  50%  { border-color: rgba(236, 122, 99, 0); }
  100% { border-color: rgba(236, 122, 99, 1); }
}


.shiftInfo
{
  text-align: center;
  font-size: 18px;
}

.shiftPostIcon
{
  cursor: pointer;
  text-align: center;
  font-size: 24px;
  height: 100%;
  margin-top: 12px;
}


.rootWrapper{
  width: 100%;
  margin: 0 auto;
  height: 100vh;
}

.rootMenu
{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.bhLogo
{
  position: absolute;
  top: 0;
  width: 100%;
  text-align: center;
  font-size: 32px;
}

.rootList
{
  width: 100%;
  list-style-type: none;
  text-align: center;
  margin-bottom: 100px;
}

.rootList a{
  text-decoration: none;
  font-size: 64px;
  color: black;
  width: 100%;
  text-align: center;
  cursor: pointer;
}

.rootList a:hover{
  color: rgba(0,0,0,.2);
}

.loggedInAs
{
  width: 100%;
  margin: 0 auto;
  text-align: center;
  bottom: 0;
  height: 14px;
  line-height: 14px;
  font-size: 14px;
  margin-top: 10px;
  margin-bottom: 2px;
}

.clickable{
  cursor: pointer;
}

.clickableMargin{
  cursor: pointer;
  margin: 10px;
}

.clickable:hover{
  color: rgba(0,0,0,.2);
}

.clickableMargin:hover{
  color: rgba(0,0,0,.2);
}

.loader
{
  width: 250px;
  height: 250px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}


/* PUBLISHED SWITCH */

.publishedWrapper{
  width: 60px;
  margin: 0 auto;
}

.otherShiftInfo
{
  font-size: 8px;
  width: 100%;
  text-align: center;
  border: thin solid #888;
  height: 20px;
}

.notPublished
{
  width: 100%;
  font-size: 16px;
  text-align: center;
}

.notPublished:nth-child(1)
{
  margin-top: 20px;
}

.optInDiv{
  width: 100%;
  font-size: 16px;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 55px;
  border-top: thin solid rgba(137,137,137,.5);
}

.publishedLabelWrapper{
  width: 300px;
  margin: 0 auto;
  margin-bottom: 20px;
}

.borderTop{
    border-top: thin solid #333;
    padding-top: 15px;
}

.addTraineeSection{
  width: 80%;
  margin: 0 auto;
  margin-top: 20px;
}

.bottomRow{
  padding-bottom: 15px;
}

.paddingBottom{
  padding-bottom: 10px;
}


.printWrapper{
  text-align: center;
  margin-bottom: 15px;
}

.scheduleHeader{
  width: 500px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 15px;
}

.dayMultiplier
{
  font-size: 12px;
  color: rgba(0,0,0,.8);
}

.print{
  font-size: 24px;
  color: rgba(0,0,0,.3);
  cursor: pointer;
}

.print:hover{
  color: black;
}

.publishLabel{
  width: 100%;
  text-align: center;
  font-size: 12px;
}


/* The Modal (background) */
.confirmModal {
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(137,137,137,0.9); /* Black w/ opacity */
}

/* Modal Content/Box */
.confirmModal-content {
  background-color: #fefefe;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 85%; /* Could be more or less, depending on screen size */
}

.modalHeader{
  margin: 0 auto;
  font-size: 18px;
  text-align: center;
  margin-bottom: 25px;
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

a.button {
	display: inline-block;
	font: bold 13px/18px Arial;
	text-decoration: none;
	text-transform: uppercase;
	text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.5);
  margin: 0 auto;
  margin-top: 25px;
	
	box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.5);
	-moz-box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.5);
  -webkit-box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.5);
  
  width: 150px;
}

a.button.style2 {	
	padding: 8px 20px;
	background: #e8e8e8;
	
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	
	background: #f4f4f4;
}


/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {display:none;}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}
/* ===[ Start Glow Animation ]=== */

@-webkit-keyframes glow {
    0% {
        box-shadow: 0 0 10px rgba(0,0,0,0.35), 0px 1px 3px rgba(0,0,0,0.18), inset 0px -3px 0px rgba(0,0,0,0.35), inset 0px 14px 14px rgba(255,255,255,0.35);
        -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.35), 0px 1px 3px rgba(0,0,0,0.18), inset 0px -3px 0px rgba(0,0,0,0.35), inset 0px 14px 14px rgba(255,255,255,0.35);
        -moz-box-shadow: 0 0 10px rgba(0,0,0,0.35), 0px 1px 3px rgba(0,0,0,0.18), inset 0px -3px 0px rgba(0,0,0,0.35), inset 0px 14px 14px rgba(255,255,255,0.35);
        -o-box-shadow: 0 0 10px rgba(0,0,0,0.35), 0px 1px 3px rgba(0,0,0,0.18), inset 0px -3px 0px rgba(0,0,0,0.35), inset 0px 14px 14px rgba(255,255,255,0.35);
        -ms-box-shadow: 0 0 10px rgba(0,0,0,0.35), 0px 1px 3px rgba(0,0,0,0.18), inset 0px -3px 0px rgba(0,0,0,0.35), inset 0px 14px 14px rgba(255,255,255,0.35);
    }

    100% {
        box-shadow: 0 0 10px rgba(0,0,0,0.35), 0px 1px 3px rgba(0,0,0,0.18), inset 0px -3px 0px rgba(0,0,0,0.35), inset 0px 14px 14px rgba(255,255,255,0.18);
        -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.35), 0px 1px 3px rgba(0,0,0,0.18), inset 0px -3px 0px rgba(0,0,0,0.35), inset 0px 14px 14px rgba(255,255,255,0.18);
        -moz-box-shadow: 0 0 10px rgba(0,0,0,0.35), 0px 1px 3px rgba(0,0,0,0.18), inset 0px -3px 0px rgba(0,0,0,0.35), inset 0px 14px 14px rgba(255,255,255,0.18);
        -o-box-shadow: 0 0 10px rgba(0,0,0,0.35), 0px 1px 3px rgba(0,0,0,0.18), inset 0px -3px 0px rgba(0,0,0,0.35), inset 0px 14px 14px rgba(255,255,255,0.18);
        -ms-box-shadow: 0 0 10px rgba(0,0,0,0.35), 0px 1px 3px rgba(0,0,0,0.18), inset 0px -3px 0px rgba(0,0,0,0.35), inset 0px 14px 14px rgba(255,255,255,0.18);
    }
}

@media print {

  .body{
    -webkit-print-color-adjust: exact;
  }
  
  .userProfileCorner{
    display: none;
  }

  .modeSelectorWrapper{
    display: none;
  }

  .modeSelectorWrapper{
    display: none;
  }

  .publishedWrapper{
    display: none;
  }

  .publishedLabelWrapper{
    display: none;
  }

  .noPrint{
    display: none;
  }
}


.sk-folding-cube {
  margin: 20px auto;
  width: 40px;
  height: 40px;
  position: relative;
  -webkit-transform: rotateZ(45deg);
          transform: rotateZ(45deg);
}

.sk-folding-cube .sk-cube {
  float: left;
  width: 50%;
  height: 50%;
  position: relative;
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.sk-folding-cube .sk-cube:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #999;
  -webkit-animation: sk-foldCubeAngle 2.4s infinite linear both;
          animation: sk-foldCubeAngle 2.4s infinite linear both;
  -webkit-transform-origin: 100% 100%;
      -ms-transform-origin: 100% 100%;
          transform-origin: 100% 100%;
}
.sk-folding-cube .sk-cube2 {
  -webkit-transform: scale(1.1) rotateZ(90deg);
          transform: scale(1.1) rotateZ(90deg);
}
.sk-folding-cube .sk-cube3 {
  -webkit-transform: scale(1.1) rotateZ(180deg);
          transform: scale(1.1) rotateZ(180deg);
}
.sk-folding-cube .sk-cube4 {
  -webkit-transform: scale(1.1) rotateZ(270deg);
          transform: scale(1.1) rotateZ(270deg);
}
.sk-folding-cube .sk-cube2:before {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.sk-folding-cube .sk-cube3:before {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.sk-folding-cube .sk-cube4:before {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}
@-webkit-keyframes sk-foldCubeAngle {
  0%, 10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
            transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  } 25%, 75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
            transform: perspective(140px) rotateX(0deg);
    opacity: 1;
  } 90%, 100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
            transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}

@keyframes sk-foldCubeAngle {
  0%, 10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
            transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  } 25%, 75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
            transform: perspective(140px) rotateX(0deg);
    opacity: 1;
  } 90%, 100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
            transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}

/* the loader */

.load {
  margin: 0 auto;
  width: 50px;
  height: 50px;
  line-height: 50px;
  /** height is required as absolute value **/
  background-color: rgb(0, 0, 0);
  border-radius: 50px;
  animation: pulse 2000ms linear infinite;
  -webkit-animation: pulse 2000ms linear infinite;
  -moz-animation: pulse 2000ms linear infinite;
}

.load i{
  color:white;
  text-shadow:-1px -1px #333;
}

.load:after,
.load:before {
  display: inline-block;
  margin: auto;
  position: absolute;
  content: "";
  width: 50;
  height: 50;
  border-radius: 50;
  background-color: rgb(0, 0, 0);
}

.load:after {
  z-index: -100;
  -webkit-animation: outer-ripple 2000ms linear infinite;
  -moz-animation: outer-ripple 2000ms linear infinite;
  animation: outer-ripple 2000ms linear infinite;
}

.load:before {
  z-index: -200;
  -webkit-animation: inner-ripple 2000ms linear infinite;
  -moz-animation: inner-ripple 2000ms linear infinite;
  animation: inner-ripple 2000ms linear infinite;
}
/* outer ripple */


@keyframes pulse{
  0% {
    transform: scale(0.8);
    filter: alpha(opacity=50);
    opacity: 1;
  }
  10% {
    transform: scale(1.1);
    filter: alpha(opacity=1);
    opacity: 1;
  }
  20% {
    transform: scale(0.9);
    filter: alpha(opacity=1);
    opacity: 1;
  }
  100% {
    transform: scale(0.8);
    filter: alpha(opacity=50);
    opacity: 1;
  }
}


@keyframes outer-ripple {
  0% {
    transform: scale(1);
  }
  80% {
    transform: scale(3.5);
  }
  100% {
    transform: scale(3.5);
  }
}

/* inner ripple */

@keyframes inner-ripple {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  30% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2.5);
    opacity: 1;
  }
}


/* Buzz */
@-webkit-keyframes hvr-buzz {
  50% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  100% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
}
@keyframes hvr-buzz {
  50% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  100% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
}
.hvr-buzz {
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
}
.hvr-buzz:hover, .hvr-buzz:focus, .hvr-buzz:active {
  -webkit-animation-name: hvr-buzz;
  animation-name: hvr-buzz;
  -webkit-animation-duration: 0.15s;
  animation-duration: 0.15s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}