@charset "utf-8";
/*current*/

/****************************************/
/* Global CSS Settings                  */
/****************************************/
body {
  font-family: 'Helvetica';
  font-size: 14px;
  height: 100%;
  margin: 0;
  padding: 0;
}

.spinner-border {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border: 0.2em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spinner-border .75s linear infinite;
}

@keyframes spinner-border {
  100% {
    transform: rotate(360deg);
  }
}


#background-opacity {
  visibility: hidden;
  background-color: black;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  opacity: 0.5;
  z-index: 11;
}

#bg {
  /**************************************************/
  /* Set background image in top of html body:      */
  /* <img src="img/carhop-bg.png" id="bg" alt="">   */
  /**************************************************/

  /* Set rules to fill background */
  min-height: 100%;
  min-width: 100%;

  /* Set up proportionate scaling */
  width: 100%;
  height: auto;

  /* Set up positioning */
  position: fixed;
  top: 0;
  left: 0;
  z-index: -2;
}

input[type='number'] {
  -moz-appearance: textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

#payroll-list {
  margin-top: 25px;
  background: white;
  padding: 0;
  border-radius: .5em;
  box-shadow: 5px 5px 5px 0px black;
  max-height: 500px;
  margin-left: 15%;
}

#payroll-list-data {
  max-height: 325px;
  overflow-x: hidden;
  overflow-y: overlay;
}

#coa-data {
  overflow: hidden;
}

#coa-data-rows {
  overflow-x: hidden;
  overflow-y: scroll;
  max-height: 85%;
  padding-left: 10px;
  width: 100%;
}

#address-sugg {
  background: white;
  color: black;
  position: fixed;
  width: 50%;
  left: 0;
  right: 0;
  margin-top: 200px;
  margin-left: auto;
  margin-right: auto;
  z-index: 26;
  border-radius: 0.5em;
  border: 1px solid black;
  max-height: 600px;
  box-shadow: 2px 2px 5px 0 black;
}


#address-sugg-list {
  overflow-x: hidden;
  overflow-y: overlay;
  max-height: 500px;
}

#address-sugg-header {
  position: relative;
  z-index: 26;
  padding: 10px 0 10px 0;
  background: black;
  color: white;
  border-radius: 0.5em 0.5em 0 0;
  box-shadow: 0 2px 2px 0 black;
  height: 50px;
  text-align: center;
}

#address-sugg-close {
  cursor: pointer;
}

#payroll-review-cont {
  padding: 15px;
}

#new-payroll-btn {
  margin-left: 15%;
}

#active-display {
  margin-bottom: 0;
}

#replenish-container {
  background: white;
  margin: 125px 25% 0 20%;
  text-align: center;
  border-radius: 0.5em;
  box-shadow: 2px 2px 2px 0 black;
  padding: 0;
  height: auto;
}

#replenish-header {
  background: black;
  color: white;
  margin: 0;
  height: auto;
  border-radius: 0.5em 0.5em 0 0;
  box-shadow: 0 2px 2px 0 black;
  padding: 15px;
}

#replenish-form {
  text-align: center;
}

#instructions-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

#replenish-instructions {
  width: 30%;
  margin-top: 25px;
  max-width: 500px;
  min-height: 100px;
  margin-left: 15px;
  display: inline-block;
}

#replenish-note {
  width: 75%;
  margin: 0 auto;
  margin-top: 15px;
  font-weight: bold;
}

#ap-data {
  width: 100%;
  margin-top: 25px;
  padding: 0;
  font-size: 18px;
  background: white;
  border-radius: 0.5em;
  box-shadow: 2px 2px 15 0 black;
  text-align: center;
}

#ap-checks {
  margin-top: 85px;
  padding: 0;
  font-size: 18px;
  border-radius: 0.5em;
  text-align: center;
  margin-bottom: 550px;
}

#check-invoices {
  margin-top: 25px;
  color: white;
  text-align: center;
}

#appId-input {
  width: 40%;
  margin: 0 auto;
  display: block;
  position: relative;
}

#appSearch-button {
  text-align: right;
  width: 40%;
  display: inline-block;
}

#appSearch-button-cancel {
  text-align: left;
  width: 40%;
  display: inline-block;
}

#create-job-desc {
  min-height: 150px;
}

#confWindow {
  z-index: 15;
  margin-top: 255px;
  display: none;
  background: white;
  border: 1px solid black;
  padding: 5px;
  border-radius: 0.5em;
  box-shadow: 2px 2px 5px 0 black;
  max-width: 350px;
}

#vendor-check-list {
  background: white;
  padding: 5px;
}

#error {
  text-align: center;
  margin-top: 50px;
  font-size: 18px;
  color: red;
}

#options-container {
  background: white;
  font-size: 12px;
  margin-top: 25px;
}

#cancel-coa-search:hover {
  cursor: pointer;
}

#vendor-verify-display {
  margin-top: 25px;
}

#invalid-app-search {
  color: red;
  font-size: 18px;
}

#viewCompletedPRCont {
  width: 65%;
  margin-left: 25%;
  margin-bottom: 100px;
  margin-top: 155px;
  background-color: white;
  border-radius: 0.5em;
}

#view-pr-total-emps {
  text-align: center;
}

#view-pr-data-cont {
  max-height: 800px;
  overflow-x: hidden;
  overflow-y: scroll;
  padding: 5px;
}

.new-paycard-warning {
  background-color: #fff3f3;
  border: 1px solid #dc3545;
  padding: 15px;
  border-radius: 6px;
  margin-top: 15px;
  max-width: 600px;
}

.view-text {
  visibility: hidden;
}

.view-click {
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
}

.split-total {
  margin-top: 5px;
  font-size: 14px;
}

.sub-row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.select-coa-btn {
  font-size: 12px !important;
}

.emp-report-check {
  margin-right: 15px;
}

.prd-label-row {
  margin-top: 10px;
}


.prd-label-section {
  font-weight: bold;
  text-decoration: underline;
}

.padded-row {
  padding: 15px;
}

.hr-not-full-width {
  width: 98%;
}

.thick-divider {
  border: 1px solid black;
  border-top: 1px solid black;
  margin: 5px 0 5px 0;
}

.address-sugg-select {
  color: blue;
}

.otherpay-date-row {
  margin-top: 25px;
  border: 1px solid;
  border-radius: 0.5em;
  padding: 15px;
  width: 95%;
  margin-left: 2.5%;
  background: cornflowerblue;
  box-shadow: 0 2px 2px 0 black;
}

.padded-table-cell {
  padding: 15px !important;
}

.selected-padded-cell {
  background-color: skyblue;
}

.rate-label {
  margin-top: 25px;
}

.rate-label>label {
  text-decoration: underline;
  font-size: 12px;
}

.tax-header {
  text-align: center;
  margin-top: 50px;
}

.vl {
  border-left: 1px solid black;
  height: 41px;
}

.centered-container {
  margin: 0 auto;
  margin-left: 20%;
  background: white;
  padding: 0;
  border-radius: 0.5em;
  background: white;
  margin-bottom: 150px;
}

.split-row {
  margin-top: 10px;
}

.coa-inp::placeholder {
  color: rgb(85, 85, 85);
}

.small-font-label {
  font-size: 14px;
  text-decoration: underline;
}

.with-msg {
  color: red;
}

.payroll-total-label {
  font-size: 14px;
}

.ethn-text {
  font-size: 12px;
}

.verified-disp {
  text-align: center;
}


.coa-divider {
  margin-top: 10px;
  margin-bottom: 10px;
}

.coa-row {
  margin-left: 0;
  margin-right: 0;
  height: auto;
  margin-top: 5px;
}

.coa-row:hover {
  cursor: pointer;
}

.coa-row>hr {
  box-shadow: 2px 5px 15px 0 black;
}

.breakdown-row {
  margin-top: 10px;
}

.breakdown-row-first {
  margin-top: 25px;
}

.margin-row {
  margin-top: 10px;
}

.check-create-header {
  position: relative;
  z-index: 10;
  padding: 10px;
  text-align: center;
  color: white;
}

.check-create-header-grey {
  position: relative;
  text-align: center;
  color: white;
  background: #37495d;
  margin-top: 15px;
  padding: 1px;
}

.check-create-header-grey-min {
  position: relative;
  z-index: 10;
  padding: 10px;
  text-align: center;
  color: black;
}

.check-create-label {
  font-size: 12px;
}

.invoice-header {
  padding: 5px;
  margin: 0;
}

.removeInv {
  cursor: no-drop;
}

.hidden-inv {
  display: none;
  visibility: hidden;
}

.input-icon {
  position: relative;
}

.input-icon>i {
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding-left: 10px;
  width: 5px;
  pointer-events: none;
  font-style: normal;
}

.input-icon>input {
  padding-left: 18px;
  padding-right: 0;
}

.vendor-button {
  margin-top: 0 !important;
  margin-left: 15px;
  overflow: hidden;
  font-size: 12px;
  min-width: 100px;
}

.centered {
  position: fixed;
  left: 50%;
  transform: translate(-50%, 0);
}

.custom-header {
  position: relative;
  text-align: center;
  padding: 15px;
  background: black;
  border-radius: 0.5em 0.5em 0 0;
  color: white;
  z-index: 10;
  box-shadow: 0px 2px 5px 0px black
}

.redirect-warning {
  animation: blinker 1.5s linear infinite;
}

.redirect-countdown {
  text-align: center;
  font-size: 24px;
  background: white;
  color: black;
  border-radius: 0 0 0.5em 0.5em;
  box-shadow: 2px 2px 5px 2px black;
  padding: 35px;
}

.job-list-header {
  background: black;
  color: white;
  border-radius: 0.5em 0.5em 0 0;
  position: relative;
  box-shadow: 0 2px 5px 0 black;
  height: 50px;
  padding-top: 15px;
}

.job-list {
  max-height: 45%;
  overflow-x: hidden;
  overflow-y: overlay;
  margin-top: 15px;
  width: 100%;
}

#empty-emp-list {
  padding: 15px;
  background: white;
  box-shadow: 2px -1px 15px 0 black;
  margin-top: 95px;
  width: 60%;
  text-align: center;
  border-radius: 0.5em;
  margin-left: 10%;
}

.job-label {
  font-weight: bold;
  text-decoration: underline;
}

.job-list-link {
  color: black;
}

.job-list-row {
  padding-top: 15px;
  padding-bottom: 15px;
}

.job-list-row:hover {
  background-color: skyblue;
  cursor: pointer;
}

.overflow-container {
  max-height: 250px;
  overflow-y: overlay;
  overflow-x: hidden;
  background: white;
}

.list-weight-btn>a {
  color: black;
}

#ap-data-header {
  width: 100%;
  background: black;
  color: white;
  box-shadow: 2px -1px 15px 0px black;
  z-index: 5;
  position: relative;
  text-align: center;
  border-radius: 0.5em 0.5em 0 0;
  padding: 5px;
}

#invoices-header {
  width: 100%;
  margin: 0;
  background: black;
  color: white;
  box-shadow: 2px -1px 15px 0px black;
  z-index: 100;
  position: relative;
  text-align: center;
  border-radius: 0.5em 0.5em 0 0;
}

#ap-search {
  width: 100%;
  margin-top: 125px;
  margin-bottom: 25px;
  font-size: 18px;
  border-radius: 0.5em;
}

#ap-search-nd-inp {
  padding: 5px;
  border-radius: 0.5em;
  border: 1px solid white;
  box-shadow: 2px 2px 5px 0 black;
}

#ap-checks-search {
  margin-top: 25px;
  padding: 0;
  font-size: 18px;
  border-radius: 0.5em;
}

#ap-checks-search-nd-inp {
  border-radius: 0.5em;
  border: 1px solid white;
  padding: 5px;
}

#no-ap-results {
  display: none;
  text-align: center;
}

#ap-check-header {
  text-align: center;
  color: white;
  position: relative;
  box-shadow: 0 2px 1px 0 black;
  border-radius: 0.5em 0.5em 0 0;
  background: black;
  height: 80px;
}

#check-desc {
  height: 80px;
  max-height: 150px;
  overflow: hidden;
}

#check-desc:hover {
  overflow-x: hidden;
  overflow-y: overlay;
}

#list-weight-control {
  margin-top: 95px;
}

.shadowed-check-row {
  position: relative;
  box-shadow: 0 2px 1px 0 grey;
}

.vendor {
  color: black;
}

.vendor:hover {
  text-decoration: none;
  color: black;
}

#ap-checkList-headings {
  box-shadow: 2px -1px 15px 0px black;
  position: relative;
  background: white;
}

.ap-check-row {
  background: white;
}

.ap-check-label {
  display: block;
  text-decoration: underline;
}

.ap-check-data {
  background: white;
  border-right: 1px solid lightgrey;
  border-bottom: 1px solid lightgrey;
  text-align: center;
  padding: 10px;
  height: 61px;
  font-size: 10px;
}

.breakdown-detail {
  background: white;
  border-right: 1px solid lightgrey;
  border-bottom: 1px solid lightgrey;
  text-align: center;
  padding: 20px;
  height: 61px;
  font-size: 10px;
}

.ap-check-data-internal {
  background: #F0F0F0;
  border-right: 1px solid lightgrey;
  border-bottom: 1px solid lightgrey;
  text-align: center;
  padding: 10px;
  height: 61px;
  max-height: 61px;
  overflow: hidden;
}

.check-data-heading {
  background: #F0F0F0;
  border-bottom: 1px solid lightgrey;
  text-align: center;
  padding: 10px;
  height: 61px;
  max-height: 61px;
  overflow: hidden;
  border-bottom: none;
}

.addit-check-heading {
  display: block;
  text-decoration: underline;
}

.date-input {
  outline: none !important;
}

.ap-visible {
  display: block;
}

.ap-hidden {
  display: none !important;
}

.ap-data-row {
  margin: 0;
  padding: 10px 15px;
  background: white;
  border-top: none;
  border-bottom: 1px dashed #ddd;
}

.address-section {
  display: inline-block;
}

.repl-button {
  margin-bottom: 15px !important;
  margin-top: 15px;
  margin-right: 15px;
}

.vendor-icon {
  margin: 0 auto;
}

.glowing-btn {
  animation: glowing 1300ms infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

@keyframes glowing {
  0% {
    background-color: skyblue;
    box-shadow: 0 0 3px white;
    color: white;
  }

  50% {
    background-color: white;
    box-shadow: 0 0 10px skyblue;
    color: black;
  }

  100% {
    background-color: skyblue;
    box-shadow: 0 0 3px white;
    color: white;
  }
}

#ap-redirect-warning {
  animation: blinker 1.5s linear infinite;
}

#replenish-results-container {
  margin: -100px 0 0 -150px;
  border: 1px solid black;
  top: 25%;
  left: 45%;
  position: absolute;
  border-radius: 0.5em;
  width: 500px;
  background: white;
  box-shadow: 0 2px 2px 0 black;
  padding: 15px;
  text-align: center;
}

#message-container {
  position: fixed;
  top: 10px;
  background: peachPuff;
  width: 45%;
  z-index: 100000;
  margin-left: 25%;
  margin-right: -37.5%;
  border-radius: 0.5em;
  border: 1px solid black;
  box-shadow: 0 2px 2px 0 black;
}

#message-hide {
  float: right;
  margin-right: 10px;
  color: blue;
}

#message-hide:hover {
  cursor: pointer;
  text-decoration: underline;
}

#rate-message {
  color: red;
  display: none;
}

#routing-verify-msg {
  font-weight: bold;
  font-size: 12px;
}

#routing-verify-msg-update {
  font-weight: bold;
  font-size: 12px;
}

#acct-verify-msg {
  font-weight: bold;
  font-size: 12px;
}

#clsname {
  font-size: 10px;
}

#rehirePrompt {
  position: absolute;
  left: 50%;
  top: 15%;
  transform: translateX(-50%);
  z-index: 10;
  width: 25%;
  background: white;
  border-radius: 0.5em;
  padding: 10px;
  border: solid 1px black;
  text-align: center;
  height: auto;
  box-shadow: 2px 2px 5px 0 black;
}

#terminatePrompt {
  position: fixed;
  left: 50%;
  top: 25%;
  transform: translateX(-50%);
  z-index: 21;
  width: 25%;
  background: white;
  border-radius: 0.5em;
  padding: 25px;
  border: solid 1px black;
  text-align: center;
  height: auto;
  box-shadow: 2px 2px 5px 0 black;
}

#term-result-container {
  margin-top: 35px;
}


#rehire-header {
  font-weight: bolder;
}

.empname {
  width: 34%;
}

.ememrcid {
  width: 34%;
}

.empptype {
  width: 25%;
}

#result-span {
  font-size: 24px;
}

.fade-color-error {
  -moz-transition: all .2s ease-in;
  -o-transition: all .2s ease-in;
  -webkit-transition: all .2s ease-in;
  transition: all .2s ease-in;
  background-color: red !important;
}

.fade-color-success {
  -moz-transition: all .2s ease-in;
  -o-transition: all .2s ease-in;
  -webkit-transition: all .2s ease-in;
  transition: all .2s ease-in;
  background-color: green !important;
}

.exists {
  position: fixed;
  z-index: 100;
  top: 125px;
  left: 0;
  right: 0;
  margin: 0 auto;
  margin-top: 0;
  background: white;
  border: 1px solid red;
  width: 350px;
  opacity: 0;
  display: block;
  visibility: hidden;
}

.fade-in-div {
  display: block;
  opacity: 1;
  transition: all 0.15s ease-in;
  visibility: visible;
}

.text-fade-out {
  opacity: 0;
  transition: opacity 1s ease-out;
}

.ssn-li {
  font-weight: bold;
}

.pay-type-warning {
  margin-top: 215px;
  background-color: white;
  position: fixed;
  left: 50%;
  top: 15%;
  transform: translate(-50%, 0);
  z-index: 50;
  width: 450px;
  border-radius: 0.5em;
  padding: 5px;
  border: 1px solid black;
  box-shadow: 0 2px 2px 0 black;
  display: none;
}

.note-head {
  font-size: 14px;
}

.list-head-left {
  font-size: 20px;
  width: 25%;
  border-radius: 0.5em 0 0 0;
  border-top: none !important;
}

.list-head-right {
  font-size: 20px;
  width: 25%;
  border-radius: 0 0.5em 0 0;
  border-top: none !important;
}

.list-head-left:hover {
  cursor: pointer;
}

.list-head-right:hover {
  cursor: pointer;
}

.message-content-container {
  margin-top: 15px;
  padding-left: 5px;
}

.message-content {
  margin-top: 0;
}

.message-divider {
  margin: 0;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

#response-section {
  margin: 0 auto;
}

#response-contents {
  display: block;
  width: 80%;
  margin: 0 auto;
  margin-bottom: 15px;
  border-radius: 0.5em;
}

#response {
  display: block;
  width: 100%;
  border-radius: 0.5em;
}

.messages-hidden {
  animation: fadeOut 1s ease-out;
}

#conversation-contents {
  max-height: 500px;
  overflow-y: overlay;
  overflow-x: hidden;
  width: auto;
  background: white;
  border-radius: 0 0 0.5em 0.5em;
}

#mail-read-container {
  padding: 0;
  width: 60%;
}

.mail-container {
  background: white;
  border-radius: 0.5em;
  margin-top: 90px;
  color: black;
  box-shadow: 5px 5px 5px 0 black;
}

#mail-header {
  position: relative;
  background: black;
  color: white;
  border-radius: 0.5em 0.5em 0 0;
  width: auto;
}

#mail-header>button {
  margin-left: 25px;
  margin-right: 25px;
}

#mail-title {
  text-align: center;
}

#mail-from {
  background: #E0E0E0;
  border-top: 0.5px solid grey;
  border-bottom: 0.5px solid lightgrey;
  margin-bottom: 15px;
  padding: 1%;
  text-align: center;
  position: relative;
  box-shadow: 2px 3px 5px 0 grey;
}

#compose-title-container {
  margin-top: 15px;
  margin-bottom: 15px;
}

#mail-message-content {
  min-height: 100px;
}

.mail-header-text {
  text-align: center;
}

#mail-content {
  height: auto;
  padding: 2%;
}

#mail-received {
  padding: 2%;
  font-weight: bold;
}

#mail-control {
  margin-bottom: 10px;
}

#mail-compose-header {
  background: black;
  color: white;
  border-radius: 0.5em 0.5em 0 0;
  position: relative;
  box-shadow: 0 2px 2px 0 black;
}

#inboxMsg {
  margin-top: 15px;
  font-size: 18px;
}

#mail-column-titles {
  border-bottom: 1px solid lightgrey;
  box-shadow: 2px -1px 10px black;
  position: relative;
  height: 45px;
  display: flex;
  align-items: center;
  font-size: 18px;
}

#mail-none {
  text-align: center;
}

.mail-label {
  text-decoration: underline;
  margin-top: 10px;
}

.mail-buttons {
  width: 100%;
}

.mail-row {
  padding: 10px;
  border-bottom: 1px solid lightgrey;
  background: #E0E0E0;
  display: flex;
  align-items: center;
  height: 50px;
}

.mail-check {
  margin: 0 !important;
}

.mail-row>label:hover {
  cursor: pointer;
}

.mail-divider {
  margin: 0;
  border: 0.5px solid black;
}

.mail-back {
  margin-left: 25px;
  width: 100px;
}

.unread {
  background: white;
}

.select-button {
  margin-left: 15px;
  width: 150px;
}

.status-button {
  margin-left: 15px;
  width: 150px;
}

.remove-button {
  height: 25px;
  font-size: 12px;
}

#paycard-verify-btn {
  margin-top: 15px;
}

#paycard-verify-msg {
  font-weight: bold;
  margin-left: 4.5%;
}

#edit-profile-submit {
  float: right;
}

.edit-profile-btn {
  margin: 15px !important;
}

/* Scrollbar styles */
::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 7px;
}

::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: rgba(0, 0, 0, .5);
  -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, .5);
}

.img-thumbnail {
  background: whitesmoke !important;
  height: 280px !important;
}

.idle-header {
  text-align: center;
  background: darkred;
  border-radius: 0.5em 0.5em 0 0;
  color: white;
}

.idle-hidden {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s all ease-in-out;
  filter: none;
  display: none;
}

.idle-show {
  filter: none;
  visibility: visible;
  opacity: 1;
  transition: 0.5s all ease-in-out;
  display: block;
}

#idle-message {
  padding: 15px;
}

#reports-container {
  margin: 100px 0 100px 20%;
  width: 70%;
}

.reports-input {
  width: 45%;
  display: inline-block;
}

.reports-date-submit {
  margin-top: 5px !important;
  margin-bottom: 25px !important;
  display: block;
  margin: 0 auto;
}

.update-results {
  margin: 0 auto;
  margin-top: 150px;
  width: 50%;
  padding: 5px;
  border-radius: 0.5em;
  background: white;
  min-height: 95px;
  box-shadow: 2px 5px 2px 2px black;
}

.update-results-buttons {
  text-align: center;
}

.update-results-home {
  margin: 15px;
}

.update-profile {
  margin-top: 25px;
  padding: 0 25px 0 25px;
}

.update-profile-divider {
  border: 0.5px dotted black;
  margin: 25px 0 25px 0;
}

.update-profile-container {
  padding: 0;
}

.report-img {
  height: 220px;
  border: none;
  margin: 0 auto;
  margin-top: 15px;
}

.report-icon {
  margin-right: 15px;
  margin-top: 10px;
}

.reports-header {
  text-align: center;
  background: whitesmoke;
  color: white;
  border: 1px solid white;
  border-bottom: none;
  border-radius: 0.5em;
}

.reports-section:hover {
  cursor: pointer;
  transform: translateY(2px);
  box-shadow: none;
  transition: 0.2s all ease-in;
}

.reports-section {
  border-radius: 0.5em;
  margin: 15px;
  height: 250px;
  transition: 0.5s all ease-in-out;
  background: whitesmoke;
  box-shadow: 2px 5px 2px 2px black;
}

.report-list {
  text-align: center;
  min-height: 195px;
  max-height: 195px;
  font-size: 14px;
  overflow-x: hidden;
  overflow-y: overlay;
  visibility: hidden;
  opacity: 0;
  height: 100%;
  background: white;
  border-radius: 0 0 0.5em 0.5em;
}

.report-list-visible {
  opacity: 1;
  visibility: visible;
  transition: 0.5s all ease-in-out;
  display: block;
  height: 100%;
  padding: 5px;
  box-shadow: 5px 5px 5px 0 black;
}

.reports-fixed-header {
  text-align: center;
  font-size: 14px;
  visibility: hidden;
  opacity: 0;
  background: black;
  color: white;
  border-radius: 0.5em 0.5em 0 0;
  padding-top: 15px;
}

.reports-fixed-header-visible {
  opacity: 1;
  visibility: visible;
  transition: 0.5s all ease-in-out;
  display: block;
  box-shadow: 5px 5px 5px 0 black;
}

a:focus {
  color: #337ab7;
  outline: none;
}

.btn {
  box-shadow: 0px 2px 2px 0 black;
}

.navbar-inverse .navbar-nav>li>a {
  color: white;
}

.dropdown {
  top: 0;
  background: black !important;
}

h1 {
  font-size: 2.3em;
  font-weight: 300;
}

label {
  font-size: 1.3em;
  font-weight: 200;
}

.form-h3 {
  margin: 0 auto;
}

.btn.btn-primary {
  margin-top: 15px;
  margin-bottom: 0px;
}

.copyright {
  text-align: center;
  font-family: 'Helvetica';
  font-size: 14px;
  color: #ffffff;
  margin-top: 2px;
  padding-top: 15px;
  z-index: 120;
}

.footer {
  background-color: #1e3045;
  height: 50px;
  width: 100%;
  position: fixed;
  z-index: 110;
  top: 90%;
  bottom: 0;
  left: 0;
  margin-top: auto;
}

.image_container {
  max-width: 900px;
  max-height: 30px;
  width: 100%;
  height: 100%;
  margin: 60px auto;
}

.left_subcontainer {
  float: left;
  background-color: #D2D2D4;
  max-width: 425px;
  max-height: 490px;
  width: 100%;
  height: 100%;
  padding: 5px 5px;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

.upper_right_subcontainer {
  float: left;
  background-color: #FFF;
  max-width: 425px;
  max-height: 350px;
  width: 100%;
  height: 100%;
  padding: 10px 30px;
  border-top-right-radius: 6px;
}

.lower_right_subcontainer {
  float: left;
  background-color: #FFF;
  max-width: 425px;
  max-height: 140px;
  width: 100%;
  height: 100%;
  padding: 0px 30px;
  border-bottom-right-radius: 6px;
}

.left_button_container {
  float: left;
  /*padding-top: 5px;*/
  width: 50%;
  text-align: left;
}

.right_button_container {
  float: right;
  /*padding-top: 5px;*/
  width: 50%;
  text-align: right;
}

.login_submit_button {
  margin-bottom: 10px;
}

.forgotid_container {
  float: left;
  padding-top: 35px;
  width: 50%;
  text-align: left;
}

.forgotpw_container {
  float: left;
  padding-top: 35px;
  width: 50%;
  text-align: right;
}

.message_container {
  width: 100%;
  max-height: 15px;
  text-align: left;
  color: red;
  padding-bottom: 25px;
  margin-bottom: 10px;
  font-size: 1.15em;
}

.copyright_container {
  text-align: center;
  font-family: 'Helvetica';
  font-size: 14px;
  color: #ffffff;
  margin-top: 10px;
  padding-top: 15px;
  z-index: 1;
}

.form-label {
  font-size: 12px;
}

.form-section {
  margin-bottom: 25px;
  font-weight: bold;
}

.custom-row {
  padding: 5px;
}

.form-control {
  font-size: 12px;
}

.note {
  min-height: 30px;
  border: 1px solid lightgrey;
  border-radius: 6px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}

#emp-precheck-buttons {
  text-align: center;
}

/****************************************/
/* Register CSS Settings                */
/****************************************/


.register_left_subcontainer {
  float: left;
  background-color: #FFF;
  max-width: 425px;
  max-height: 490px;
  width: 100%;
  height: 100%;
  padding: 10 20;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

.register_upper_right_subcontainer {
  float: left;
  background-color: #FFF;
  max-width: 425px;
  max-height: 380px;
  width: 100%;
  height: 100%;
  padding: 110px 30px 10px 30px;
  border-left: #DDD 1px solid;
  border-top-right-radius: 6px;
}


.register_lower_right_subcontainer {
  float: left;
  background-color: #FFF;
  max-width: 425px;
  max-height: 110px;
  width: 100%;
  height: 100%;
  padding: 0px 30px;
  border-left: #DDD 1px solid;
  border-bottom-right-radius: 6px;
}


.register_left_input {
  max-width: 170px;
  margin: 10px 0px;
}


.register_right_input {
  margin: 5px 0px 22px 0px;
}


.register_hr {
  margin: 10px 0px;
}

/****************************************/
/* Employee Profile modal dialog        */
/****************************************/

.modal-header {
  text-align: center;
  padding-top: 0px;
  padding-bottom: 10;
  margin-top: 0;
  margin-bottom: 0;
  height: auto;
  background-color: #e3e1df;
}

#pp_left_button_container {
  float: left;
  padding-bottom: 10;
  padding-top: 0;
}

#pp_right_button_container {
  float: right;
  padding-bottom: 10;
  padding-top: 0;
}

#pp-msg {
  text-align: center;
}

#ep-title {
  background-color: #b4cef7;
  text-align: center;
  font-weight: 400;
  font-family: 'Helvetica';
  font-size: 20px;
  padding: 0;
}

#ep-body {
  margin-top: 20px;
  font-weight: 100;
  font-family: 'Helvetica';
  font-size: 18px;
}

#ep_dialog {
  margin-top: 90px;
  margin-right: 10px;
  float: right;
  z-index: 200;
}

.rehireInp {
  text-align: left;
  font-size: 10px;
}

.mobile-nav {
  display: none;
}

.profile-nav {
  padding: 5px;
  color: white;
  visibility: hidden;
  position: fixed;
  top: 75px;
  right: 0;
  width: 0;
  opacity: 0;
  background-color: #37495d;
  height: 100%;
  box-shadow: -2px 0 15px 0 black;
  transition: all 0.2s ease-in;
  z-index: 11;
}

.profile-item {
  font-size: 12px;
  padding: 5px;
  box-shadow: inset 0 1px 0 grey;
  word-wrap: break-word;
}

.profile-nav-visible {
  visibility: visible;
  opacity: 1;
  width: 15%;
}

.profile-nav a:hover {
  color: #337ab7;
}

/****************************************/
/* Change Password modal dialog         */
/****************************************/

.chgPW_left_button_container {
  float: left;
  padding-bottom: 10;
  padding-top: 0;
}

.chgPW_right_button_container {
  float: right;
  padding-bottom: 10;
  padding-top: 0;
}

#chgPW-title {
  position: relative;
  z-index: 1;
  background-color: black;
  color: white;
  text-align: center;
  font-weight: 400;
  font-family: 'Helvetica';
  font-size: 20px;
  padding: 0;
  border-radius: 0.5em 0.5em 0 0;
  box-shadow: 0 2px 2px 0 black;
  border-bottom: none;
}

#chgPW-body {
  background: white;
  font-weight: 100;
  font-family: 'Helvetica';
  font-size: 18px;
}

#chgPW-msg {
  text-align: center;
  color: red;
}

#chgPW-dialog {
  margin-top: 90px;
  float: center;
  z-index: 300;
  border-radius: 0 0 0.5em 0.5em;
}

#chgPW-footer {
  background: white;
  border-radius: 0 0 0.5em 0.5em;
}

.modal-backdrop {
  z-index: 150;
}

.modal-backdrop.in {
  opacity: 0.25;
}

/****************************************/
/* Base CSS Settings                    */
/****************************************/


.base-html-body {
  margin: 0 auto;
  width: 100%;
  height: 100%;
  /*overflow:hidden;*/
}


.whole {
  Display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  height: 100vh;
  width: 100vw;
}

.whole-left {
  display: flex;
  flex-direction: column;
  z-index: 1;
  width: 180px;
}

.whole-left-collapse {
  width: 0px;
  overflow-x: hidden;
}

.left-top {
  background-color: #1a3048;
  height: 80px;

}

.nav-logo {
  margin: 8px 5px 15px 0px;
}

.left-bottom {
  display: flex;
  flex-direction: column;
  background-color: #1a3048;
  flex: 1;
}

.whole-right {
  display: flex;
  flex-direction: column;
  z-index: 2;
  margin-left: 0;
  height: 100vh;
}

.wr-normal {
  width: calc(100vw - 180px);
}

.wr-expanded {
  width: 100vw;
}

.right-header {
  display: flex;
  flex-direction: row;
  height: 40px;
  background-color: #c0d0e4
}

.right-header-left {
  background-color: #c0d0e4;
  flex: 1;
  margin: 7.4px 7.4px 7.4px 15px
}

.right-header-center {
  flex: 1;
}

.right-header-right {
  flex: 1;
}

.right-bottom {
  display: flex;
  flex: 1;
  margin-top: 40px;
  background-color: #ffffff;
}

.hide {
  visibility: hidden;
}

.show {
  visibility: visible;
}

/* TOP NAV ITEMS */

.toggle-icon {
  font-size: 22px;
  color: #1A3048;
}

.toggle-icon-button {
  cursor: pointer;
  background-color: transparent;
  border-style: none;
  outline: none;
  border: none;
}

.header-item-container {
  display: flex;
  vertical-align: top;
  white-space: nowrap;
}

.header-item-center-child {
  background-color: #1a3048;
  height: 40px;
  padding: 10px 15px;
  border-right: solid 1px #c0d0e4;
}

.header-item-center-child:hover {
  cursor: pointer;
  background-color: #4880BD;
}

.topnav-icon {
  align-items: center;
  color: #ffffff;
  font-size: 20px;
}

.client-settings {
  text-align: right;
  color: #828282;
}

.client-settings:hover {
  color: #ffffff;
  background-color: #4880BD;
}

.client-settings-block {
  border-left: solid 1px #828282;
  height: 40px;
  float: right;
}

.client-settings-block:hover {
  color: #ffffff;
  background-color: #4880BD;
  cursor: pointer;
}

.client-settings-icon {
  font-size: 25px;
  padding: 8px 6px 8px 18px;
}

.client-settings-text {
  font-family: calibri;
  padding: 0px 10px 1px 4px;
  font-size: 20px;
}

.status {
  background-color: chartreuse;
  font-family: calibri;
  height: 40px;
  padding: 0px 0px 0px 15px;
  font-size: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


/* LEFT NAV LIST STRUCTURE */

.primary-nav-item {
  height: 55px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.primary-nav-item:hover {
  cursor: pointer;
  background-color: #4880BD;
}

.primary-nav-item:hover span.nav-label {
  color: #ffffff;
}

.primary-nav-item:hover i.leftnav-icon {
  color: #ffffff;
}

.secondary-nav-item {
  height: 20px;
  padding: 3px 0px 3px 50px;
}

.secondary-hidden {
  display: none;
}

.secondary-nav-item:hover {
  cursor: pointer;
  background-color: #4880BD;
}

.secondary-nav-item:hover span.secondary-nav-label {
  color: #ffffff;
}

.nav-label {
  color: #8397aa;
  font-family: calibri;
  font-size: 18px;
  margin: 0px 0px 0px 0px
}

.secondary-nav-label {
  color: #8397aa;
  font-family: calibri;
  font-size: 14px;
  margin: 0px 0px 0px 0px;
}


/* ICONS */

.leftnav-icon {
  font-size: 25px;
  width: 30px;
  color: #8397AA;
  margin: 0px 15px 0px 15px
}

pre {
  display: none;
}

#dummy-div {
  height: 500px;
  margin-top: 20px;
  margin-left: 20%;
  margin-bottom: 100px;
  filter: blur(5px);
  background: white;
  border-radius: 1.5em;
  text-align: center;
  padding: 0;
}

#date-reminder {
  position: absolute;
  text-align: center;
  margin-top: 50px;
  margin-left: 16%;
  height: 500px;
  padding: 0;
}

#dummy-header {
  font-size: 18px;
}

#main-container {
  z-index: 5;
}

#page-container {
  margin-left: 0px;
  padding-left: 0px;
}

#page-header {
  padding-top: 5px;
  background: rgb(237, 237, 237);
  /* Old browsers */
  background: -moz-linear-gradient(45deg, rgba(237, 237, 237, 1) 0%, rgba(224, 224, 224, 1) 50%, rgba(209, 209, 209, 1) 57%, rgba(229, 229, 229, 1) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(45deg, rgba(237, 237, 237, 1) 0%, rgba(224, 224, 224, 1) 50%, rgba(209, 209, 209, 1) 57%, rgba(229, 229, 229, 1) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg, rgba(237, 237, 237, 1) 0%, rgba(224, 224, 224, 1) 50%, rgba(209, 209, 209, 1) 57%, rgba(229, 229, 229, 1) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  position: fixed;
  width: 100%;
  margin-top: 0px;
  margin-left: 0px;
  padding-left: 0px;
  border: solid #bfbdbc;
  border-top-width: 0px;
  border-left-width: 0px;
  border-right-width: 0px;
  border-bottom-width: 1px;
  z-index: 14;
  top: 0;
  box-shadow: 0 2px 2px 0 black;
  overflow: hidden;
}

#testBanner {
  margin-top: 12px;
  color: red;
  z-index: 20;
}

#wsBegDate-mobile,
#wsEndDate-mobile {
  z-index: 0;
}

#selectWSDate-mobile {
  display: none;
}

#sc-logo {
  margin-top: 0px;
  margin-left: 0px;
  z-index: 18;
}

#empList-header {
  position: relative;
  margin-bottom: 0;
  margin-top: 25px;
  border: none;
}

#employee-stub-container {
  max-height: 550px;
  overflow-y: overlay;
  overflow-x: hidden;
  width: 100%;
}

#emp-wage-table {
  margin-top: 25px;
}

#emp-wage-data {
  max-height: 550px;
  overflow-x: scroll;
}

.wagestub-error {
  text-align: center;
  color: red;
  margin-bottom: 15px;
}

.employeeList {
  height: 80%;
  background: white;
  border-radius: 0 0 0.5em 0.5em;
  overflow-y: overlay;
  overflow-x: hidden;
  max-height: 400px;
  box-shadow: 2px 2px 15px 0 black;
  z-index: 0;
}

.hidden-list {
  display: none;
}

.employee-section {
  border-top: 1px solid #ddd;
  padding-top: 5px;
  font-size: 10px;
  margin: 0;
}

.employee-section:hover {
  background: skyblue !important;
}

.employee-section>label:hover {
  cursor: pointer;
}

#emp-th-table {
  color: white;
  position: relative;
  background-color: black !important;
  margin-bottom: 0;
  border-radius: 0.5em 0.5em 0 0;
  box-shadow: 2px -1px 15px 0 black;
  border-top: none;
}

#clientTable {
  font-size: 14px;
  max-height: 350px;
  background: white;
  overflow-y: overlay;
  overflow-x: hidden;
  z-index: 10;
  box-shadow: 2px 2px 15px 0px black;
}

.borderless-head-table {
  border: 1px solid black !important;
}

.clickable-row:hover {
  cursor: pointer;
}

#begin-selectedClient {
  margin-top: 10px;
}

#selectedClient-header {
  position: relative;
  z-index: 1;
  text-align: center;
  background: black;
  color: white;
  width: 800px;
  box-shadow: 0 2px 2px 0 black;
}

.selectedClient-item {
  padding-top: 10px;
  font-size: 12px;
  border-bottom: 0.1px solid lightgrey;
}

#employee-exist-container {
  background-color: white;
  width: 100%;
  min-height: 150px;
  max-height: 350px;
  border-radius: 0 0 6px 6px;
  box-shadow: 2px 2px 15px 0 black;
  padding: 10px;
}

#addemployee-header-container {
  background: black;
  width: 100%;
}

.cancel-button {
  font-size: 16px;
  float: left;
  margin-top: 10px;
  margin-left: 5px;
  font-weight: bold;
}

.addemployee-h1 {
  padding-top: 10px;
  text-align: center;
  text-shadow: 2px 0px 2px rgba(150, 150, 150, 1);
  position: relative;
  display: inline;
}


.emp-precheck-container {
  height: 100px;
  width: 100%;
  margin: auto;
}

#paystubTable {
  background: white;
  margin-top: 150px;
  margin-left: 20%;
  z-index: 10;
  width: 65%;
}

.emp-container {
  margin-top: 25px;
  margin-bottom: 25px;
}

.check-row {
  font-size: 12px;
  border-top: 1px dashed black;
}

.check-row:hover {
  background: skyblue;
}

.check-row>label:hover {
  cursor: pointer;
}

.body-center {
  padding-top: 10px;
  margin-top: 10px;
}


/*On-hover drop down.*/
/*@media (min-width: 979px) {
  ul.nav li.dropdown:hover > ul.dropdown-menu {
    display: block;
  }
}*/

.nav.navbar-nav.navbar-left {
  margin-top: 55px;
  margin-left: 20px;
}

.nav.navbar-nav.navbar-right {
  margin-top: 0px;
  margin-left: 200px;
  padding-top: 0;
}

.icon-bar {
  width: 100% !important;
}

#bs-example-navbar-collapse-1 {
  color: black;
  font-size: 22px;
  padding: 0;
  margin-right: 0;
  margin-top: 10px;
  text-align: right;
  max-height: 10px;
}

.header-msg-container {
  color: red;
  font-size: 20px;
  width: 300px;
  margin-left: 50px;
  margin-top: 10px;
  text-align: left;
  z-index: 17;
}

#emp-profile {
  margin-right: -100px;
  padding-bottom: 20px;
}

/* right side of header: username + logout */
#client-name {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

#payroll-form-container {
  background: transparent !important;
  box-shadow: none !important;
}

/* Lock banner: always above header, visible on all sizes */
.lock-banner {
  position: fixed;                 /* was absolute */
  top: 96px;                       /* sit below fixed header (adjust if header changes) */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  pointer-events: none;
  z-index: 10000;                  /* higher than #page-header (14) */
}

.lock-banner > div {
  background: #fff3f3;
  border: 2px solid #b33;
  border-radius: 8px;
  padding: 20px 24px;              /* slightly tighter on small screens */
  max-width: 600px;
  width: 92%;
  box-shadow: 0 2px 15px rgba(0,0,0,0.3);
  pointer-events: auto;
}

.user-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}


/* tidy the username */
#emp-name {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #555;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.logout-btn {
  display: inline-flex;
  align-items: center;           /* vertical centering */
  justify-content: center;       /* horizontal centering */
  gap: 6px;
  background: linear-gradient(145deg, #3c3c3c, #222);
  color: #fff;
  border: 1px solid #1a1a1a;
  border-radius: 14px;
  padding: 4px 12px;
  font-size: 12px;
  line-height: 1;
  min-width: 80px;               /* gives room to visually center the text */
  text-align: center;            /* ensures text itself centers within flex */
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease, opacity .2s ease;
  box-shadow: 0 1px 0 rgba(255,255,255,.06) inset, 0 1px 6px rgba(0,0,0,.2);
}

.logout-btn:hover {
  background: linear-gradient(145deg, #4a4a4a, #2b2b2b);
  transform: translateY(-1px);
  box-shadow: 0 2px 10px rgba(0,0,0,.25);
}

.logout-btn:active {
  transform: translateY(0);
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
}

.logout-btn:focus-visible {
  outline: 2px solid #ffb84d; /* accessible focus ring */
  outline-offset: 2px;
}

.logout-btn i {
  font-size: 12px;
  opacity: .9;
}

#save-edit-btn {
  display: none;
  width: 80px;
}

.exp-ent-header {
  text-align: center;
}

.exp-disp {
  margin-top: 10px;
}

.exp-ent-col  {
  margin: 0 auto;
}

.exp-td {
  width: 8.625%;
}

.exp-col  {
  width: 80%;
  margin: 0 auto;
}

.act-ent-disp {
  text-align: center;
}

.exp-ent-cont {
  text-align: center;
}

.exp-edit-cont {
  display: none;
  padding: none;
}

@media (min-width: 601px) {
  #viewCompletedPRCont {
    width: 85%;
    margin: 0 auto;
    margin-bottom: 100px;
    margin-top: 175px;
    background-color: white;
    border-radius: 0.5em;
  }

  .view-comp-pr-hr {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
  }

  .view-text {
    visibility: hidden;
  }

  .expand-data-entered {
    margin-top: 5px;
    font-size: 10px;
  }

  .prd-label {
    font-size: 10px;
    text-decoration: underline;
  }

  #exp-edit-btn {
    width: 80px;
  }

  #bs-sidebar-navbar-collapse-1 {
    background: black;
    font-size: 24px;
    box-shadow: 2px 2px 5px 0 black;
    width: 500%;
  }

  #bs-sidebar-navbar-collapse-1 li {
    background: black;
    font-size: 24px;
  }

  .job-list-container {
    background: white;
    border-radius: 0.5em;
    margin: 0 auto;
    margin-top: 155px;
    width: 80%;
    box-shadow: 2px 2px 5px 0 black
  }

  #ap-row-container {
    width: 100%;
    background: white;
    padding: 0;
    overflow-x: hidden;
    overflow-y: overlay;
    border-radius: 0 0 0.5em 0.5em;
    box-shadow: 2px 2px 5px 0 black;
    max-height: 45%;
  }

  .heavy-top-padding-container {
    margin: 0 auto;
    margin-top: 165px;
    height: auto;
    padding: 115px 15px 15px 15px;
  }

  .ap-data-item {
    padding: 0;
    font-size: 14px;
  }

  #menu-cont {
    border-radius: 0 0 0.5em 0.5em;
    border: 1px solid grey;
  }

  #prd-data-cont {
    padding: 10px;
    max-height: 225px;
    overflow-y: overlay;
    overflow-x: hidden;
    border: 3px inset;
  }

  #ap-list-container {
    margin: 0 auto;
    margin-top: 155px;
    width: 95%;
  }

  .split-rate-window {
    position: absolute;
    background: white;
    color: black;
    width: 55%;
    left: 0;
    right: 0;
    z-index: 12;
    border-radius: 0.5em;
    border: 1px solid black;
    box-shadow: 2px 2px 5px 0 black;
    padding: 10px;
    height: auto;
  }

  .ap-data-heading {
    text-decoration: underline;
    font-size: 16px;
    color: black;
    background: white;
  }

  .ap-check-container {
    background: #F0F0F0;
    margin: 0 auto;
    margin-top: 185px;
    margin-bottom: 95px;
    width: 95%;
    border-radius: 0.5em;
    box-shadow: 2px 2px 15px 0 black;
  }

  #pre-check-container {
    visibility: hidden;
    display: none;
  }

  .navbar-collapse.collapse {
    display: none !important;
  }

  .mobile-na-message-cont {
    position: fixed;
    top: 165px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 85%;
  }

  .mobile-na-message {
    visibility: visible;
    width: 100%;
    background: white;
    border-radius: 0.5em;
    padding: 15px;
    text-align: center;
  }

  #prd-emp {
    position: absolute;
    background-color: white;
    left: 0;
    right: 0;
    z-index: 11;
    box-shadow: 2px 5px 5px 0 black;
    border: 1px solid black;
    border-radius: 0.5em;
    padding: 10px;
    width: 95%;
  }

  #client-select {
    width: 95%;
    margin: 0 auto;
    margin-top: 185px;
    margin-bottom: 200px;
    position: relative;
  }

  #login-container {
    margin: 0 auto;
    padding: 15px;
    border-radius: 0.5em;
    width: 900px;
  }
  
  #login-image-cont {
    width: 50%;
    display: inline-block;
  }
  
  #sonic-login-img {
    border: 1px solid black;
    box-shadow: 5px 5px 5px 5px grey;
  }
  
  #login-image {
    width: 415px;
  }
  
  #login-inputs-cont {
    width: 45%;
    display: inline-block;
  }
  
  #login-inputs {
    margin: 0 auto;
  }

  #vendor-create-container {
    background: black;
    margin: 0 auto;
    margin-bottom: 150px;
    margin-top: 185px;
    border-radius: 0.5em;
    padding: 0;
    width: 98%;
  }
  
  #vendor-create-header {
    position: relative;
    z-index: 10;
    box-shadow: 2px 2px 5px 0 black;
    padding: 10px;
    text-align: center;
    color: white;
  }
  
  #vendor-create-form {
    background: white;
    padding: 10px;
    border-radius: 0 0 0.5em 0.5em;
    overflow: hidden;
  }

  #check-create-container {
    background: black;
    margin: 0 auto;
    margin-top: 165px;
    margin-bottom: 250px;
    border-radius: 0.5em;
    padding: 0;
    width: 90%;
    box-shadow: 2px 2px 5px 0 black;
  }
  
  #check-create-form {
    background: white;
    padding: 10px;
    border-radius: 0 0 0.5em 0.5em;
    overflow: hidden;
  }

  #selectedClientInfo {
    font-size: 12px;
    margin: 0 auto;
    margin-top: 165px;
    margin-bottom: 200px;
    background: white;
    box-shadow: 2px 2px 15px 0px black;
    width: 80%;
    border-radius: 0.5em;
  }

  #selectedClient-header {
    z-index: 1;
    text-align: center;
    background: black;
    color: white;
    width: 100%;
    border-radius: 0.5em 0.5em 0 0;
  }

  #employee-list {
    margin: 0 auto;
    margin-top: 165px;
    width: 85%;
    margin-bottom: 200px;
  }

  #sc-menu {
    position: fixed;
    z-index: 13;
    box-shadow: 2px 0px 15px 0 black;
    padding: 0;
    border: none;
    border-radius: 0.5em;
    width: 8%;
    background-color: black;
    height: 1%;
    border-radius: 0.5em;
    margin-left: 1%;
  }
  
  .button_size {
    width: auto;
    font-size: 14px;
  }

  .idle-message-container {
    position: fixed;
    left: 15%;
    margin-top: 250px;
    background: white;
    width: 70%;
    z-index: 100;
    box-shadow: 0 5px 5px 2px black;
    border-radius: 0.5em;
  }

  #create-job-form {
    margin: 0 auto;
    margin-top: 185px;
    margin-bottom: 200px;
    background: white;
    border-radius: 0.5em;
    width: 90%;
  }
  
  #create-job-form-header {
    text-align: center;
    background: black;
    color: white;
    border-radius: 0.5em 0.5em 0 0;
    padding: 5px;
  }

  #appsearch-cont {
    margin: 0 auto;
    margin-top: 155px;
    width: 100%;
  }

  #appSearchById {
    margin: 0 auto;
    background: white;
    border-radius: 0.5em;
    padding: 10px;
    text-align: center;
    width: 60%;
    box-shadow: 2px 2px 5px 0 black;
  }

  #emp-reports-cont {
    margin: 0 auto;
    margin-top: 165px;
    margin-bottom: 200px;
    width: 95%;
  }

  #selectWSDate-container {
    padding: 0;
    margin: 0 auto;
    margin-top: 155px;
  }
  
  #selectWSDate {
    background: white;
    border-radius: 0.5em;
    box-shadow: 0 2px 2px 0 black;
    width: 90%;
    margin: 0 auto;
  }

  #selectWSDateHeader {
    background-color: black;
    box-shadow: 1px 1px 15px 0 black;
    color: white;
    padding: 15px;
    border-radius: 0.5em 0.5em 0 0;
  }
  
  #selectWSDate-results {
    border-radius: 0 0 0.5em 0.5em;
    border: none;
    box-shadow: 0 2px 2px 0 black;
  }

  #coa-data {
    left: 50%;
    font-size: 10px;
    background: white;
    color: black;
    position: absolute;
    width: 60%;
    z-index: 13;
    border-radius: 0.5em;
    border: 1px solid black;
    height: 250px;
    max-height: 250px;
    box-shadow: 2px 2px 5px 0 black;
    transform: translate(-50%, 0);
  }

  #payroll-form-container {
    visibility: hidden;
  }

  .pscontainer {
    border: 1px solid black;
    padding: 10px 10px;
    background-color: whitesmoke;
    border-radius: 0 0 0.5em 0.5em;
    border: 2px solid black;
    width: 95%;
    margin: 0 auto;
    margin-top: 185px;
    margin-bottom: 100px;
  }

  #ap-vendor-container {
    width: 95%;
    margin: 0 auto;
    margin-top: 185px;
    margin-bottom: 100px;
  }

  #replenish-container {
    background: white;
    margin: 0 auto;
    margin-top: 185px;
    margin-bottom: 150px;
    font-size: 12px;
    border-radius: 0.5em;
    box-shadow: 2px 2px 2px 0 black;
    height: auto;
    width: 95%;
  }

  #emp-stubs {
    margin: 0 auto;
    margin-top: 155px;
    margin-bottom: 100px;
    background: white;
    border-radius: 0.5em;
    width: 800px;
    box-shadow: 5px 5px 5px 0 black;
  }
  
  #emp-stubs-header {
    padding: 15px;
    position: relative;
    background: black;
    color: white;
    border-radius: 0.5em 0.5em 0 0;
    z-index: 10;
    box-shadow: 0 2px 2px 0 black;
  }
  
  #emp-check-section {
    margin-top: 10px;
    overflow-y: overlay;
    overflow-x: hidden;
    height: auto;
    max-height: 500px;
    padding: 15px;
  }

  #emp-wage-container {
    margin: 0 auto;
  }

  #emp-stub-container {
    margin: 0 auto;
  }

  .split-data {
    padding: 0 25px 20px 25px;
    max-height: 25vh;
    overflow-y: overlay;
    overflow-x: hidden;
    border: 5px groove;
  }

  .fixed-edit {
    position: absolute;
    background: white;
    color: black;
    width: 65%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    z-index: 11;
    border-radius: 0.5em;
    border: 1px solid black;
    box-shadow: 2px 2px 5px 0 black;
    padding: 10px;
    height: auto;
  }

  .emp-status-select {
    margin-left: 25px;
    margin-top: 165px; 
    width: 95%;
  }

  .employeeTable {
    background: white;
    width: 100%;
    margin-top: 25px;
    margin-bottom: 100px;
    border-radius: 0.5em;
    box-shadow: 2px 2px 15px 0 black;
    z-index: 10;
    padding: 0;
    padding-bottom: 15px;
  }
  
  .employeeTable-header {
    background: black;
    color: white;
    border-radius: 0.5em 0.5em 0 0;
    position: relative;
    box-shadow: 0 2px 2px 0 black;
    padding-top: 10px;
    margin: 0;
  }

  #wage-col {
    width: 95%;
    margin: 0 auto;
    margin-bottom: 100px;
  }

  .stub-label {
    font-size: 10px !important;
  }

  .stub-info {
    font-size: 10px !important;
  }

  .emp-form {
    margin-top: 15px;
  }

  .addemployee-breadcrumb {
    padding-top: 0px;
    padding-bottom: 15px;
    margin-top: 25px;
    font-size: 12px;
  }

  #addemployee-container {
    display: none;
    visibility: hidden;
  }

  .addemployee-fixed-div {
    width: 100%;
    background-color: white;
    position: sticky;
    text-align: center;
    z-index: 10;
    border: none;
    box-shadow: 0 2px 2px 0 black;
    border-radius: 0.5em;
    top: 95px;
    border: 1px solid grey;
  }

  /*Allow main to be next to Nav*/
  .main {
    position: absolute;
    width: calc(100% - 40px);
    /*keeps 100% minus nav size*/
    margin-left: 40px;
    float: right;
  }

  /*lets nav bar to be shown on mouseover*/
  nav.sidebar:hover+.main {
    margin-left: 200px;
  }

  /*Center Brand*/
  nav.sidebar.navbar.sidebar>.container .navbar-brand,
  .navbar>.container-fluid .navbar-brand {
    margin-left: 0px;
  }

  /*Center Brand*/
  nav.sidebar .navbar-brand,
  nav.sidebar .navbar-header {
    text-align: center;
    width: 100%;
    margin-left: 0px;
  }

  /*Center Icons*/
  nav.sidebar a {
    padding-right: 13px;
    padding-left: 25px;
  }

  /*adds border top to first nav box */
  nav.sidebar .navbar-nav>li:first-child {
    border-top: 1px grey solid;
  }

  /*adds border to bottom nav boxes*/
  nav.sidebar .navbar-nav>li {
    border-bottom: 1px grey solid;
  }

  /* Colors/style dropdown box*/
  nav.sidebar .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    /*width: auto;*/
    width: 100%;
    background-color: transparent;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  /*allows nav box to use 100% width*/
  nav.sidebar .navbar-collapse,
  nav.sidebar .container-fluid {
    padding: 0 0px 0 0px;
  }

  /*colors dropdown box text */
  .navbar-inverse .navbar-nav .open .dropdown-menu>li>a {
    color: white;
  }

  .navbar-inverse .navbar-nav>.open>a,
  .navbar-inverse .navbar-nav>.open>a:focus,
  .navbar-inverse .navbar-nav>.open>a:hover {
    background-color: black;
  }

  /*gives sidebar width/height*/
  nav.sidebar {
    width: 250px;
    height: 100%;
    float: left;
    z-index: 10;
    margin-bottom: 0px;
    margin-top: 90px;
    background-color: #37495d;
  }

  /*give sidebar 100% width;*/
  nav.sidebar li {
    /*width: 100%;*/
    width: 250px;
  }

  /* Move nav to full on mouse over*/
  nav.sidebar:hover {
    margin-left: 0px;
  }

  /*for hidden things when navbar hidden*/
  .forAnimate {
    opacity: 0;
  }
}

@media(min-width: 800px) {
  .lock-banner {
    top: 100px;             /* more spacing if header stacks */
    width: 95%;
    padding: 15px;
  }

  #viewCompletedPRCont {
    width: 65%;
    margin-left: 25%;
    margin-bottom: 100px;
    margin-top: 155px;
    background-color: white;
    border-radius: 0.5em;
  }
  
  #pre-check-container {
    visibility: visible;
    display: block;
    margin: 0 auto;
    margin-top: 165px;
    margin-bottom: 200px;
    width: 95%;
  }

  .form-main {
    background-color: aliceblue;
    border-radius: 0.5em;
    box-shadow: 0 5px 5px 0 black;
    padding: 5px;
    position: relative;
    margin-top: 50px;
    border: 1px solid black;
    overflow: hidden;
    width: 100%;
  }
  
  .form-main i {
    margin-left: 10px;
    margin-right: 25px;
  }

  .addemployee-breadcrumb {
    padding-top: 0px;
    padding-bottom: 15px;
    margin-top: 25px;
    font-size: 12px;
  }

  .mobile-na-message-cont {
    display: none;
    visibility: hidden;
  }

  .mobile-na-message {
    display: none;
    visibility: hidden;
  }

  #addemployee-container {
    display: block;
    visibility: visible;
    margin: 0 auto;
    margin-bottom: 55px;
    margin-top: 115px;
    width: 80%;
    min-height: 670px;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 25px;
  }

  #prd-emp {
    position: absolute;
    background-color: white;
    left: 0;
    right: 0;
    z-index: 11;
    box-shadow: 2px 5px 5px 0 black;
    border: 1px solid black;
    border-radius: 0.5em;
    padding: 10px;
    width: 85%;
  }

  #client-select {
    width: 95%;
    margin: 0 auto;
    margin-top: 155px;
    margin-bottom: 200px;
    position: relative;
  }

  #payroll-form {
    width: 95%;
    font-size: 11px;
    box-shadow: 2px 5px 5px 0 black;
    background-color: white;
    padding: 0;
    border-radius: 0.5em;
    margin: 0 auto;
  }

  #mobile-payroll {
    visibility: hidden;
    display: none;
  }

  #payroll-form-container {
    visibility: visible;
    margin-top: 155px;
    margin-bottom: 500px;
    border-radius: 0.5em;
  }

  #menu-cont {
    padding: 0;
    border-radius: 0 0 0.5em 0.5em;
    border: 1px solid grey;
  }
}

@media (min-width: 1301px) {
  .expand-data-entered {
    font-size: 12px;
  }

  .prd-label {
    font-size: 12px;
    text-decoration: underline;
  }

  #bs-sidebar-navbar-collapse-1 {
    background: black;
    font-size: 14px;
    box-shadow: 2px 2px 5px 0 black;
    width: 500%;
  }

  #bs-sidebar-navbar-collapse-1 li {
    background: black;
    font-size: 14px;
  }

  .heavy-top-padding-container {
    margin: 0 auto;
    margin-top: 155px;
    height: auto;
    padding: 115px 15px 15px 15px;
  }

  .form-main {
    background-color: aliceblue;
    border-radius: 0.5em;
    box-shadow: 0 5px 5px 0 black;
    padding: 5px;
    position: relative;
    margin-top: 50px;
    border: 1px solid black;
    overflow: hidden;
    width: 100%;
  }
  
  .form-main i {
    margin-left: 10px;
    margin-right: 25px;
  }

  .addemployee-fixed-div {
    width: 100%;
    background-color: white;
    position: sticky;
    text-align: center;
    z-index: 10;
    border: none;
    box-shadow: 0 2px 2px 0 black;
    border-radius: 0.5em;
    top: 75px;
    border: 1px solid grey;
  }

  #ap-list-container {
    margin: 0 auto;
    margin-top: 155px;
    width: 80%;
  }

  .split-rate-window {
    position: absolute;
    background: white;
    color: black;
    width: 45%;
    left: 0;
    right: 0;
    z-index: 12;
    border-radius: 0.5em;
    border: 1px solid black;
    box-shadow: 2px 2px 5px 0 black;
    padding: 10px;
    height: auto;
  }

  .ap-data-item {
    padding: 0;
    font-size: 16px;
  }

  .ap-data-heading {
    text-decoration: underline;
    font-size: 16px;
    color: black;
    background: white;
  }

  .ap-check-container {
    background: #F0F0F0;
    margin: 0 auto;
    margin-top: 155px;
    margin-bottom: 95px;
    width: 80%;
    border-radius: 0.5em;
    box-shadow: 2px 2px 15px 0 black;
  }

  #mobile-payroll {
    visibility: hidden;
  }

  #login-container {
    margin: 0 auto;
    padding: 15px;
    border-radius: 0.5em;
    max-width: 900px;
  }
  
  #login-image-cont {
    width: 50%;
    display: inline-block;
  }
  
  #sonic-login-img {
    border: 1px solid black;
    box-shadow: 5px 5px 5px 5px grey;
  }
  
  #login-image {
    width: 415px;
  }
  
  #login-inputs-cont {
    width: 45%;
    display: inline-block;
  }
  
  #login-inputs {
    margin: 0 auto;
  }

  .primary_container {
    max-width: 850px;
    max-height: 500px;
    width: 100%;
    height: 100vh;
    margin: 50px auto 150px auto;
  }

  #check-create-container {
    background: black;
    margin: 0 auto;
    margin-top: 155px;
    margin-bottom: 250px;
    border-radius: 0.5em;
    padding: 0;
    width: 80%;
    box-shadow: 2px 2px 5px 0 black;
  }
  
  #check-create-form {
    background: white;
    padding: 10px;
    border-radius: 0 0 0.5em 0.5em;
    overflow: hidden;
  }

  #selectedClientInfo {
    font-size: 12px;
    margin: 0 auto;
    margin-top: 165px;
    margin-bottom: 200px;
    background: white;
    box-shadow: 2px 2px 15px 0px black;
    width: 70%;
    border-radius: 0.5em;
  }

  #employee-list {
    margin: 0 auto;
    margin-top: 155px;
    width: 80%;
    margin-bottom: 200px;
  }

  #sc-menu {
    position: fixed;
    z-index: 13;
    box-shadow: 2px 0px 15px 0 black;
    padding: 0;
    border: none;
    border-radius: 0.5em;
    width: 5%;
    background-color: black;
    height: 1%;
    border-radius: 0.5em;
    margin-left: 1%;
  }

  #create-job-form {
    margin: 0 auto;
    margin-top: 155px;
    margin-bottom: 200px;
    background: white;
    border-radius: 0.5em;
    width: 90%;
  }
  
  #create-job-form-header {
    text-align: center;
    background: black;
    color: white;
    border-radius: 0.5em 0.5em 0 0;
    padding: 5px;
  }

  #appsearch-cont {
    margin: 0 auto;
    margin-top: 115px;
    width: 100%;
  }

  #appSearchById {
    margin: 0 auto;
    background: white;
    border-radius: 0.5em;
    padding: 10px;
    text-align: center;
    width: 45%;
    box-shadow: 2px 2px 5px 0 black;
  }

  #emp-reports-cont {
    margin: 0 auto;
    margin-top: 155px;
    margin-bottom: 200px;
    width: 80%;
  }

  #emp-summary-container {
    margin: 0 auto;
    margin-bottom: 500px;
    width: 70%;
  }

  #selectWSDate-container {
    padding: 0;
    margin: 0 auto;
    margin-top: 150px;
    width: 95%;
  }
  
  #selectWSDate {
    background: white;
    border-radius: 0.5em;
    box-shadow: 0 2px 2px 0 black;
    margin: 0 auto;
    width: 40%;
  }

  #selectWSDateHeader {
    background-color: black;
    box-shadow: 1px 1px 15px 0 black;
    color: white;
    padding: 15px;
    border-radius: 0.5em 0.5em 0 0;
  }
  
  #selectWSDate-results {
    border-radius: 0 0 0.5em 0.5em;
    border: none;
    box-shadow: 0 2px 2px 0 black;
  }

  #coa-data {
    left: 50%;
    font-size: 10px;
    background: white;
    color: black;
    position: absolute;
    width: 35%;
    z-index: 13;
    border-radius: 0.5em;
    border: 1px solid black;
    height: 250px;
    max-height: 250px;
    box-shadow: 2px 2px 5px 0 black;
    transform: translate(-50%, 0);
    padding: 0;
  }

  #payroll-form {
    width: 95%;
    font-size: 11px;
    box-shadow: 2px 5px 5px 0 black;
    background-color: white;
    padding: 0;
    border-radius: 0.5em;
    margin: 0 auto;
  }

  #mobile-payroll {
    visibility: hidden;
    display: none;
  }

  #payroll-form-container {
    visibility: visible;
    margin-top: 155px;
    margin-bottom: 500px;
    border-radius: 0.5em;
  }

  #pre-check-container {
    visibility: visible;
    display: block;
    margin: 0 auto;
    margin-top: 165px;
    margin-bottom: 200px;
    width: 80%;
  }

  .navbar-collapse.collapse {
    display: none !important;
  }

  .emp-status-select {
    margin-top: 125px; 
    width: 95%;
  }

  #emp-wage-container {
    margin: 0 auto;
  }

  #emp-stub-container {
    margin: 0 auto;
    width: 80%;
  }

  .button_size {
    width: auto;
    font-size: 16px;
  }

  .idle-message-container {
    position: fixed;
    left: 25%;
    margin-top: 250px;
    background: white;
    width: 35%;
    z-index: 100;
    box-shadow: 0 5px 5px 2px black;
    border-radius: 0.5em;
  }

  .employeeTable {
    background: white;
    width: 95%;
    margin-top: 25px;
    margin-bottom: 100px;
    border-radius: 0.5em;
    box-shadow: 2px 2px 15px 0 black;
    z-index: 10;
    padding: 0;
    padding-bottom: 15px;
  }

  .split-data {
    padding: 0 25px 20px 25px;
    max-height: 35vh;
    overflow-y: overlay;
    overflow-x: hidden;
    border: 5px groove;
  }

  .pscontainer {
    border: 1px solid black;
    padding: 10px 10px;
    background-color: whitesmoke;
    border-radius: 0 0 0.5em 0.5em;
    border: 2px solid black;
    width: 95%;
    margin: 0 auto;
    margin-top: 155px;
    margin-bottom: 100px;
  }

  #ap-vendor-container {
    width: 95%;
    margin: 0 auto;
    margin-top: 155px;
    margin-bottom: 100px;
  }

  #replenish-container {
    background: white;
    margin: 0 auto;
    margin-top: 155px;
    margin-bottom: 150px;
    font-size: 12px;
    border-radius: 0.5em;
    box-shadow: 2px 2px 2px 0 black;
    height: auto;
    width: 95%;
  }

  #emp-stubs {
    margin-top: 150px;
    margin-left: 20%;
    margin-bottom: 100px;
    background: white;
    border-radius: 0.5em;
    width: 65%;
    box-shadow: 5px 5px 5px 0 black;
  }
  
  #emp-stubs-header {
    padding: 15px;
    position: relative;
    background: black;
    color: white;
    border-radius: 0.5em 0.5em 0 0;
    z-index: 10;
    box-shadow: 0 2px 2px 0 black;
  }
  
  #emp-check-section {
    margin-top: 10px;
    overflow-y: overlay;
    overflow-x: hidden;
    height: auto;
    max-height: 500px;
    padding: 15px;
  }

  .emp-form {
    margin-top: 50px;
  }

  .addemployee-breadcrumb {
    padding-top: 0px;
    padding-bottom: 15px;
    margin-top: 25px;
    font-size: 12px;
  }

  .mobile-na-message-cont {
    display: none;
    visibility: hidden;
  }

  .mobile-na-message {
    display: none;
    visibility: hidden;
  }

  #addemployee-container {
    display: block;
    visibility: visible;
    margin: 0 auto;
    margin-bottom: 55px;
    margin-top: 110px;
    width: 65%;
    min-height: 670px;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    padding-top: 0px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 25px;
  }

  .reviewRowHeader {
    font-size: 12px;
    font-weight: bold;
    text-decoration: underline;
  }

  #prd-data-cont {
    padding: 10px;
    max-height: 350px;
    overflow-y: overlay;
    overflow-x: hidden;
    border: 3px inset;
  }

  #prd-emp {
    position: absolute;
    background-color: white;
    left: 0;
    right: 0;
    z-index: 12;
    box-shadow: 2px 5px 5px 0 black;
    border: 1px solid black;
    border-radius: 0.5em;
    padding: 10px;
    width: 45%;
  }

  #payroll-emp-list {
    max-height: 460px;

  }

  #vendor-create-container {
    background: black;
    margin: 0 auto;
    margin-bottom: 150px;
    margin-top: 155px;
    border-radius: 0.5em;
    padding: 0;
    width: 80%;
  }
  
  #vendor-create-header {
    position: relative;
    z-index: 10;
    box-shadow: 2px 2px 5px 0 black;
    padding: 10px;
    text-align: center;
    color: white;
  }
  
  #vendor-create-form {
    background: white;
    padding: 10px;
    border-radius: 0 0 0.5em 0.5em;
    overflow: hidden;
  }

  .job-list-container {
    background: white;
    border-radius: 0.5em;
    margin: 0 auto;
    margin-top: 155px;
    width: 80%;
    box-shadow: 2px 2px 5px 0 black
  }

  #ap-row-container {
    width: 100%;
    background: white;
    padding: 0;
    overflow-x: hidden;
    overflow-y: overlay;
    border-radius: 0 0 0.5em 0.5em;
    box-shadow: 2px 2px 5px 0 black;
    max-height: 45%;
  }

  #replenish-container {
    display: block;
    background: white;
    margin: 0 auto;
    margin-top: 150px;
    font-size: 12px;
    border-radius: 0.5em;
    box-shadow: 2px 2px 2px 0 black;
    height: auto;
    width: 95%;
  }

  #client-select {
    width: 70%;
    margin: 0 auto;
    margin-top: 155px;
    margin-bottom: 200px;
    padding: 0;
    font-size: 14px;
    position: relative;
    padding-bottom: 50px;
  }


  /*Allow main to be next to Nav*/
  .main {
    width: calc(100% - 200px);
    margin-left: 200px;
  }

  /*Show all nav*/
  nav.sidebar {
    margin-left: 0px;
    float: left;
  }

  /*Show hidden items on nav*/
  nav.sidebar .forAnimate {
    opacity: 1;
  }

  #testBanner {
    display: none;
  }

  .payroll-label {
    font-size: 14px;
  }

  .centered-container {
    margin-left: 20%;
    max-width: 70%;
  }

  .fixed-edit {
    position: absolute;
    background: white;
    color: black;
    width: 55%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    z-index: 11;
    border-radius: 0.5em;
    border: 1px solid black;
    box-shadow: 2px 2px 5px 0 black;
    padding: 10px;
    height: auto;
  }
}

@media (min-width: 1400px) {
  .view-text {
    visibility: visible;
  }

  .expand-data-entered {
    font-size: 14px;
  }

  .prd-label {
    font-size: 14px;
    text-decoration: underline;
  }
  
  #bs-sidebar-navbar-collapse-1 {
    background: black;
    font-size: 14px;
    box-shadow: 2px 2px 5px 0 black;
    width: 100%;
  }

  #bs-sidebar-navbar-collapse-1 li {
    background: black;
    font-size: 14px;
  }

  .job-list-container {
    background: white;
    border-radius: 0.5em;
    margin-top: 115px;
    width: 65%;
    margin-left: 20%;
    box-shadow: 2px 2px 5px 0 black
  }

  #ap-row-container {
    width: 100%;
    background: white;
    padding: 0;
    overflow-x: hidden;
    overflow-y: overlay;
    border-radius: 0 0 0.5em 0.5em;
    box-shadow: 2px 2px 5px 0 black;
    max-height: 45%;
  }

  .heavy-top-padding-container {
    margin-left: 20%;
    margin-top: 115px;
    height: auto;
    padding: 115px 15px 15px 15px;
    width: 65%;
  }

  .emp-form {
    margin-top: 50px;
  }

  .form-main {
    background-color: aliceblue;
    border-radius: 0.5em;
    box-shadow: 0 5px 5px 0 black;
    padding: 5px;
    position: relative;
    margin-top: 50px;
    border: 1px solid black;
    overflow: hidden;
    width: 100%;
  }
  
  .form-main i {
    margin-left: 10px;
    margin-right: 25px;
  }

  #ap-list-container {
    margin-left: 20%;
    width: 65%;
  }

  #list-weight-control {
    margin-top: 125px;
  }

  .split-rate-window {
    position: absolute;
    background: white;
    color: black;
    width: 35%;
    top: 20%;
    left: 0;
    right: 0;
    z-index: 12;
    border-radius: 0.5em;
    border: 1px solid black;
    box-shadow: 2px 2px 5px 0 black;
    padding: 10px;
    height: auto;
  }

  .ap-data-item {
    padding: 0;
    font-size: 20px;
  }


  .ap-data-heading {
    text-decoration: underline;
    font-size: 20px;
    color: black;
    background: white;
  }

  .ap-check-container {
    background: #F0F0F0;
    margin-top: 115px;
    margin-bottom: 95px;
    width: 65%;
    margin-left: 20%;
    border-radius: 0.5em;
    box-shadow: 2px 2px 15px 0 black;
  }

  .navbar-collapse.collapse {
    display: block !important;
  }

  .mobile-na-message-cont {
    display: none;
    visibility: hidden;
  }

  .mobile-na-message {
    display: none;
    visibility: hidden;
  }

  #mobile-payroll {
    visibility: hidden;
  }

  #prd-emp {
    position: absolute;
    background-color: white;
    left: 0;
    right: 0;
    z-index: 11;
    box-shadow: 2px 5px 5px 0 black;
    border: 1px solid black;
    border-radius: 0.5em;
    padding: 10px;
    width: 55%;
  }

  #employee-list {
    margin-left: 20%;
    margin-top: 115px;
    width: 65%;
    margin-bottom: 200px;
  }
  #client-select {
    width: 65%;
    margin-left: 20%;
    margin-top: 115px;
    margin-bottom: 200px;
    position: relative;
  }

  #login-container {
    margin: 0 auto;
    padding: 15px;
    border-radius: 0.5em;
    max-width: 900px;
  }
  
  #login-image-cont {
    width: 50%;
    display: inline-block;
  }
  
  #sonic-login-img {
    border: 1px solid black;
    box-shadow: 5px 5px 5px 5px grey;
  }
  
  #login-image {
    width: 415px;
  }
  
  #login-inputs-cont {
    width: 45%;
    display: inline-block;
  }
  
  #login-inputs {
    margin: 0 auto;
  }

  .primary_container {
    max-width: 850px;
    max-height: 500px;
    height: 100vh;
    margin: 50px auto 150px auto;
  }

  #vendor-create-container {
    background: black;
    margin-left: 20%;
    margin-bottom: 150px;
    margin-top: 155px;
    border-radius: 0.5em;
    padding: 0;
    width: 60%;
  }
  
  #vendor-create-header {
    position: relative;
    z-index: 10;
    box-shadow: 2px 2px 5px 0 black;
    padding: 10px;
    text-align: center;
    color: white;
  }
  
  #vendor-create-form {
    background: white;
    padding: 10px;
    border-radius: 0 0 0.5em 0.5em;
    overflow: hidden;
  }

  #check-create-container {
    background: black;
    margin-left: 20%;
    margin-top: 125px;
    margin-bottom: 250px;
    border-radius: 0.5em;
    padding: 0;
    width: 65%;
    box-shadow: 2px 2px 5px 0 black;
  }
  
  #check-create-form {
    background: white;
    padding: 10px;
    border-radius: 0 0 0.5em 0.5em;
    overflow: hidden;
  }

  #selectedClientInfo {
    font-size: 12px;
    margin-left: 20%;
    margin-top: 125px;
    margin-bottom: 200px;
    background: white;
    box-shadow: 2px 2px 15px 0px black;
    width: 65%;
  }

  #sc-menu {
    position: fixed;
    z-index: 13;
    box-shadow: 2px 0px 15px 0 black;
    padding: 0;
    border: none;
    border-radius: 0.5em;
    width: 250px;
    background-color: #37495d;
    border-radius: 0.5em;
    height: 100%;
    margin: 0;
  }

  #create-job-form {
    margin-left: 20%;
    margin-top: 115px;
    margin-bottom: 200px;
    background: white;
    border-radius: 0.5em;
    width: 65%;
  }
  
  #create-job-form-header {
    text-align: center;
    background: black;
    color: white;
    border-radius: 0.5em 0.5em 0 0;
    padding: 5px;
  }

  #appsearch-cont {
    margin: 0 auto;
    margin-top: 115px;
    width: 100%;
  }

  #appSearchById {
    margin: 0 auto;
    background: white;
    border-radius: 0.5em;
    padding: 10px;
    text-align: center;
    width: 45%;
    box-shadow: 2px 2px 5px 0 black;
  }

  #emp-reports-cont {
    margin-top: 115px;
    margin-left: 20%;
    margin-bottom: 200px;
    width: 60%;
  }

  #emp-summary-container {
    margin-left: 20%;
    margin-bottom: 500px;
    width: 70%;
  }

  #selectWSDate-container {
    padding: 0;
    margin-top: 150px;
  }
  
  #selectWSDate {
    background: white;
    border-radius: 0.5em;
    box-shadow: 0 2px 2px 0 black;
    width: 40%;
    margin: 0 auto;
  }

  #selectWSDateHeader {
    background-color: black;
    box-shadow: 1px 1px 15px 0 black;
    color: white;
    padding: 15px;
    border-radius: 0.5em 0.5em 0 0;
  }
  
  #selectWSDate-results {
    border-radius: 0 0 0.5em 0.5em;
    border: none;
    box-shadow: 0 2px 2px 0 black;
  }

  #coa-data {
    left: 50%;
    font-size: 10px;
    background: white;
    color: black;
    position: absolute;
    width: 35%;
    z-index: 13;
    border-radius: 0.5em;
    border: 1px solid black;
    height: 250px;
    max-height: 250px;
    box-shadow: 2px 2px 5px 0 black;
    transform: translate(-50%, 0);
  }

  #mobile-payroll {
    visibility: hidden;
    display: none;
  }

  #payroll-form {
    width: 85%;
    font-size: 11px;
    box-shadow: 2px 5px 5px 0 black;
    background-color: white;
    padding: 0;
    border-radius: 0.5em;
    margin: 0;
  }

  #payroll-form-container {
    visibility: visible;
    margin-left: 20%;
    margin-top: 115px;
    margin-bottom: 500px;
    border-radius: 0.5em;
  }

  #pre-check-container {
    visibility: visible;
    display: block;
    margin: 0 auto;
    margin-top: 115px;
    margin-left: 20%;
    margin-bottom: 200px;
    width: 65%;
  }

  .button_size {
    width: auto;
    font-size: 16px;
  }

  .idle-message-container {
    position: fixed;
    left: 35%;
    margin-top: 250px;
    background: white;
    width: 25%;
    z-index: 100;
    box-shadow: 0 5px 5px 2px black;
    border-radius: 0.5em;
  }

  .split-data {
    padding: 0 25px 20px 25px;
    max-height: 35vh;
    overflow-y: overlay;
    overflow-x: hidden;
    border: 5px groove;
  }

  .fixed-edit {
    position: absolute;
    background: white;
    color: black;
    width: 45%;
    left: 15%;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    z-index: 11;
    border-radius: 0.5em;
    border: 1px solid black;
    box-shadow: 2px 2px 5px 0 black;
    padding: 10px;
    height: auto;
  }

  .addemployee-fixed-div {
    width: 100%;
    background-color: white;
    position: sticky;
    text-align: center;
    z-index: 10;
    border: none;
    box-shadow: 0 2px 2px 0 black;
    border-radius: 0.5em;
    top: 80px;
    border: 1px solid grey;
  }

  .stub-label {
    font-size: 14px !important;
  }

  .stub-info {
    font-size: 14px !important;
  }

  .pscontainer {
    border: 1px solid black;
    padding: 10px 10px;
    background-color: whitesmoke;
    border-radius: 0 0 0.5em 0.5em;
    border: 2px solid black;
    width: 65%;
    margin-top: 115px;
    margin-left: 20%;
    margin-bottom: 100px;
  }

  #ap-vendor-container {
    width: 65%;
    margin-left: 20%;
    margin-top: 125px;
    margin-bottom: 100px;
  }

  #replenish-container {
    background: white;
    margin: 0 auto;
    margin-top: 125px;
    margin-bottom: 150px;
    margin-left: 20%;
    font-size: 12px;
    border-radius: 0.5em;
    box-shadow: 2px 2px 2px 0 black;
    height: auto;
    width: 65%;
  }

  #emp-stubs {
    margin-top: 150px;
    margin-left: 20%;
    margin-bottom: 100px;
    background: white;
    border-radius: 0.5em;
    width: 65%;
    box-shadow: 5px 5px 5px 0 black;
  }
  
  #emp-stubs-header {
    padding: 15px;
    position: relative;
    background: black;
    color: white;
    border-radius: 0.5em 0.5em 0 0;
    z-index: 10;
    box-shadow: 0 2px 2px 0 black;
  }
  
  #emp-check-section {
    margin-top: 10px;
    overflow-y: overlay;
    overflow-x: hidden;
    height: auto;
    max-height: 500px;
    padding: 15px;
  }

  #addemployee-container {
    margin-top: 115px;
    margin-left: 20%;
  }

  #emp-wage-container {
    margin-left: 20%;
  }

  #emp-stub-container {
    margin-left: 20%;
    width: 65%;
  }

  .employeeTable {
    background: white;
    width: 100%;
    margin-top: 25px;
    margin-bottom: 100px;
    border-radius: 0.5em;
    box-shadow: 2px 2px 15px 0 black;
    z-index: 10;
    padding: 0;
    padding-bottom: 15px;
  }

  .emp-status-select {
    width: 80%;
    margin-top: 125px; 
  }
  
  .employeeTable-header {
    background: black;
    color: white;
    border-radius: 0.5em 0.5em 0 0;
    position: relative;
    box-shadow: 0 2px 2px 0 black;
    padding-top: 10px;
    margin: 0;
  }

  #wage-col {
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 1400px) {
  #payroll-list {
    margin: 0 auto;
    margin-top: 25px;
  }

  #payroll-emp-list {
    max-height: 250px;
  }

  #ap-data {
    width: 100%;
    margin-top: 25px;
    padding: 0;
    font-size: 18px;
    background: white;
    border-radius: 0.5em;
    box-shadow: 2px 2px 15 0 black;
    text-align: center;
  }

  #replenish-note {
    font-size: 10px;
  }

  #ap-checks-search {
    margin-top: 15px;
    padding: 0 15px;
  }

  #clientTable {
    font-size: 12px;
    width: 95%;
    margin: 0 auto;
    margin-bottom: 90px;
  }

  #prd-data-cont .row {
    font-size: 10px;
  }

  #client-name {
    font-size: 14px;
    text-align: right;
  }

  #selectedClientInfo {
    font-size: 11px;
    margin: 0 auto;
    margin-top: 125px;
    margin-bottom: 150px;
    background: white;
    box-shadow: 2px 2px 15px 0px black;
    width: 65%;
  }

  #emp-name {
    margin-top: 80px;
    font-size: 16px;
  }

  #bs-sidebar-navbar-collapse-1 {
    background: black;
  }

  #bs-sidebar-navbar-collapse-1 li {
    background: black;
    font-size: 12px !important;
    width: 100%;
  }

  #menu-button {
    width: 100%;
    display: block;
    border: none;
    margin-right: 0px;
  }

  #profile-nav {
    width: 20%;
  }

  #reports-container {
    margin-left: 10%;
  }

  .header-msg-container {
    margin-left: 100px;
  }

  .centered-container {
    margin-left: 0;
  }

  .select-coa-btn {
    padding: 2px;
    font-size: 10px !important;
  }

  .employeeList {
    height: 100%;
    background: white;
    border-radius: 0 0 0.5em 0.5em;
    overflow-y: overlay;
    overflow-x: hidden;
    max-height: 250px;
    box-shadow: 2px 2px 15px 0 black;
    z-index: 0;
  }

  .reviewRowHeader {
    font-size: 8px;
    font-weight: bold;
    text-decoration: underline;
  }

  .employee-section {
    margin: 0;
  }

  .employee-section>label {
    font-size: 10px;
  }

  .clickable-row {
    font-size: 10px;
  }

  .deductions-total {
    font-size: 12px;
  }

  .otherHrsFullTotalDisp {
    font-size: 12px;
  }

  .payroll-label {
    font-size: 10px;
  }

  .navbar-header {
    float: none;
  }

  .navbar-left,
  .navbar-right {
    float: none !important;
  }

  .navbar-collapse {
    border-top: 1px solid transparent;
  }

  .navbar-fixed-top {
    top: 0;
    border-width: 0 0 1px;
  }

  .navbar-nav {
    float: none !important;
  }

  .navbar-nav>li {
    float: none;
  }

  .navbar-nav>li>a {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .collapse.in {
    display: block !important;
  }

  .dropdown-menu>li>a {
    color: white;
  }
}

/* Mobile */

@media (max-width: 600px) {
  .lock-banner {
    top: 120px;             /* ensure it's below logo/nav even on mobile */
    font-size: 14px;
  }

  .expand-data-entered {
    font-size: 10px;
  }

  .prd-label {
    font-size: 10px;
    text-decoration: underline;
  }

  .ap-check-container {
    background: #F0F0F0;
    margin: 0 auto;
    margin-top: 165px;
    margin-bottom: 95px;
    width: 95%;
    border-radius: 0.5em;
    box-shadow: 2px 2px 15px 0 black;
  }

  .job-list-container {
    background: white;
    border-radius: 0.5em;
    margin: 0 auto;
    margin-top: 155px;
    width: 80%;
    box-shadow: 2px 2px 5px 0 black
  }

  #ap-row-container {
    width: 100%;
    background: white;
    padding: 0;
    overflow-x: hidden;
    overflow-y: overlay;
    border-radius: 0 0 0.5em 0.5em;
    box-shadow: 2px 2px 5px 0 black;
    max-height: 45%;
  }

  .heavy-top-padding-container {
    margin: 0 auto;
    margin-top: 165px;
    height: auto;
    padding: 115px 15px 15px 15px;
  }

  #prd-data-cont {
    padding: 10px;
    max-height: 225px;
    overflow-y: overlay;
    overflow-x: hidden;
    border: 3px inset;
  }


  .ap-data-item {
    padding: 0;
    font-size: 12px;
  }

  #ap-list-container {
    margin: 0 auto;
    margin-top: 155px;
    width: 95%;
  }

  .ap-data-heading {
    text-decoration: underline;
    font-size: 12px;
    color: black;
    background: white;
  }

  #pre-check-container {
    visibility: hidden;
    display: none;
  }

  .navbar-collapse.collapse {
    display: none;
  }

  .mobile-na-message-cont {
    position: fixed;
    top: 165px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 85%;
  }

  .mobile-na-message {
    visibility: visible;
    width: 100%;
    background: white;
    border-radius: 0.5em;
    padding: 15px;
    text-align: center;
  }

  #prd-emp {
    position: absolute;
    background-color: white;
    left: 0;
    right: 0;
    z-index: 11;
    box-shadow: 2px 5px 5px 0 black;
    border: 1px solid black;
    border-radius: 0.5em;
    padding: 10px;
    width: 95%;
  }

  .image_container {
    margin: 0 auto;
    margin-top: 50px;
    margin-bottom: 100px;
    width: 95%;
  }

  #login-container {
    margin: 0 auto;
    margin-bottom: 150px;
    padding: 15px;
    border-radius: 0.5em;
    max-width: 900px;
  }
  
  #login-image-cont {
    width: 100%;
    display: block;
  }
  
  #sonic-login-img {
    border: 1px solid black;
    box-shadow: 5px 5px 5px 5px grey;
    width: 100%;
  }
  
  #login-image {
    margin: 0 auto;
  }
  
  #login-inputs-cont {
    margin: 0 auto;
    margin-top: 50px;
    width: 65%;
    display: block;
  }
  
  #login-inputs {
    margin: 0 auto;
  }

  #vendor-create-container {
    background: black;
    margin: 0 auto;
    margin-bottom: 150px;
    margin-top: 185px;
    border-radius: 0.5em;
    padding: 0;
    width: 95%;
  }
  
  #vendor-create-header {
    position: relative;
    z-index: 10;
    box-shadow: 2px 2px 5px 0 black;
    padding: 10px;
    text-align: center;
    color: white;
  }
  
  #vendor-create-form {
    background: white;
    padding: 10px;
    border-radius: 0 0 0.5em 0.5em;
    overflow: hidden;
  }

  #check-create-container {
    background: black;
    margin: 0 auto;
    margin-top: 165px;
    margin-bottom: 250px;
    border-radius: 0.5em;
    padding: 0;
    width: 95%;
    box-shadow: 2px 2px 5px 0 black;
  }

  #check-create-form {
    background: white;
    padding: 10px;
    border-radius: 0 0 0.5em 0.5em;
    overflow: hidden;
  }
  
  #selectedClientInfo {
    margin: 0 auto;
    margin-top: 165px;
    margin-bottom: 200px;
    background: white;
    box-shadow: 2px 2px 15px 0px black;
    width: 90%;
    border-radius: 0.5em;
    font-size: 14px;
  }

  #employee-list {
    margin: 0 auto;
    margin-top: 165px;
    width: 95%;
    margin-bottom: 200px;
  }

  #sc-menu {
    position: fixed;
    z-index: 13;
    box-shadow: 2px 0px 15px 0 black;
    padding: 0;
    border: none;
    border-radius: 0.5em;
    width: 10%;
    background-color: black;
    height: 1% !important;
    border-radius: 0.5em;
    margin-left: 1%;
  }

  
  #create-job-form {
    margin: 0 auto;
    margin-top: 185px;
    margin-bottom: 200px;
    background: white;
    border-radius: 0.5em;
    width: 98%;
  }
  
  #create-job-form-header {
    text-align: center;
    background: black;
    color: white;
    border-radius: 0.5em 0.5em 0 0;
    padding: 5px;
  }

  #appsearch-cont {
    margin: 0 auto;
    margin-top: 155px;
    width: 100%;
  }

  #appSearchById {
    font-size: 10px;
    margin: 0 auto;
    background: white;
    border-radius: 0.5em;
    padding: 10px;
    text-align: center;
    width: 60%;
    box-shadow: 2px 2px 5px 0 black;
  }

  #emp-reports-cont {
    margin: 0 auto;
    margin-top: 185px;
    margin-bottom: 200px;
    width: 95%;
  }

  #selectWSDate-container {
    padding: 0;
    margin: 0 auto;
    margin-top: 155px;
  }
  
  #selectWSDate {
    background: white;
    border-radius: 0.5em;
    box-shadow: 0 2px 2px 0 black;
    margin: 0 auto;
    width: 90%;
  }

  #selectWSDateHeader {
    background-color: black;
    box-shadow: 1px 1px 15px 0 black;
    color: white;
    padding: 15px;
    border-radius: 0.5em 0.5em 0 0;
  }
  
  #selectWSDate-results {
    border-radius: 0 0 0.5em 0.5em;
    border: none;
    box-shadow: 0 2px 2px 0 black;
  }

  #coa-data {
    left: 50%;
    font-size: 10px;
    background: white;
    color: black;
    position: absolute;
    width: 80%;
    z-index: 13;
    border-radius: 0.5em;
    border: 1px solid black;
    height: 250px;
    max-height: 250px;
    box-shadow: 2px 2px 5px 0 black;
    transform: translate(-50%, 0);
  }

  #payroll-form-container {
    visibility: hidden;
  }

  .emp-status-select {
    margin-left: 25px;
    margin-top: 165px; 
    width: 95%;
  }

  .button_size {
    width: auto;
    font-size: 12px;
  }

  .idle-message-container {
    position: fixed;
    left: 15%;
    margin-top: 250px;
    background: white;
    width: 70%;
    z-index: 100;
    box-shadow: 0 5px 5px 2px black;
    border-radius: 0.5em;
  }


  .payroll-total-label {
    font-size: 10px;
  }

  .pscontainer {
    border: 1px solid black;
    padding: 10px 10px;
    background-color: whitesmoke;
    border-radius: 0 0 0.5em 0.5em;
    border: 2px solid black;
    width: 95%;
    margin: 0 auto;
    margin-top: 185px;
    margin-bottom: 100px;
  }

  #ap-vendor-container {
    width: 95%;
    margin: 0 auto;
    margin-top: 185px;
    margin-bottom: 100px;
  }

  #replenish-container {
    background: white;
    margin: 0 auto;
    margin-top: 155px;
    margin-bottom: 150px;
    font-size: 12px;
    border-radius: 0.5em;
    box-shadow: 2px 2px 2px 0 black;
    height: auto;
    width: 95%;
  }

  #emp-stubs {
    margin: 0 auto;
    margin-top: 155px;
    margin-bottom: 100px;
    background: white;
    border-radius: 0.5em;
    width: 90%;
    box-shadow: 5px 5px 5px 0 black;
  }
  
  #emp-stubs-header {
    padding: 15px;
    position: relative;
    background: black;
    color: white;
    border-radius: 0.5em 0.5em 0 0;
    z-index: 10;
    box-shadow: 0 2px 2px 0 black;
  }
  
  #emp-check-section {
    margin-top: 10px;
    overflow-y: overlay;
    overflow-x: hidden;
    height: auto;
    max-height: 500px;
    padding: 15px;
  }

  #client-select {
    width: 95%;
    margin: 0 auto;
    margin-top: 185px;
    margin-bottom: 200px;
    position: relative;
  }

  #menu-cont {
    padding: 0;
    border-radius: 0 0 0.5em 0.5em;
    border: 1px solid grey;
  }

  .emp-form {
    margin-top: 15px;
  }

  .addemployee-breadcrumb {
    padding-top: 0px;
    padding-bottom: 15px;
    margin-top: 15px;
    font-size: 12px;
  }

  #emp-wage-container {
    margin: 0 auto;
  }

  #emp-stub-container {
    margin: 0 auto;
  }

  .employeeTable {
    margin: 0 auto;
    background: white;
    margin-top: 25px;
    margin-bottom: 100px;
    border-radius: 0.5em;
    box-shadow: 2px 2px 15px 0 black;
    z-index: 10;
    padding: 0;
    padding-bottom: 15px;
    width: 150%;
  }
  
  .employeeTable-header {
    background: black;
    color: white;
    border-radius: 0.5em 0.5em 0 0;
    position: relative;
    box-shadow: 0 2px 2px 0 black;
    padding-top: 10px;
    margin: 0;
  }

  #addemployee-container {
    display: none;
    visibility: hidden;
  }

  #page-header {
    height: 100px;
  }

  #wage-col {
    width: 95%;
    margin: 0 auto;
    margin-bottom: 100px;
  }

  #emp-summary-container {
    margin: 0 auto;
    width: 95%;
  }

  #profile-nav {
    display: none;
  }

  #reports-container {
    margin: 0 auto;
    margin-top: 150px;
    width: 100%;
  }

  #sc-logo {
    height: 40px;
    margin-top: 0px;
    margin-left: 0px;
    z-index: 18;
    width: 250px;
  }

  #sc-logo-container {
    height: 40px;
    margin-top: 5px;
    display: inline-block;
    text-align: center;
  }

  #client-name {
    margin: 0 auto;
    margin-top: 10px;
    font-size: 14px;
    text-align: center;
  }

  #emp-name {
    font-size: 14px;
  }

  #menu-button {
    border: none;
    margin-right: 0;
  }

  #selectedClientInfo h1,
  label {
    font-size: 10px;
    font-weight: bold;
  }

  #selectedClient-header {
    z-index: 1;
    text-align: center;
    background: black;
    color: white;
    width: 100%;
    border-radius: 0.5em 0.5em 0 0;
  }

  #begin-selectedClient {
    margin-top: 55px;
  }

  #dummy-div {
    width: 100%;
    margin-left: 0;
  }

  #emp-name {
    margin-top: 80px;
  }

  #employeeList {
    width: 100%;
    margin: 165px 0;
  }

  #client-th-table {
    width: 100%;
    margin: 0 auto;
  }

  #bs-sidebar-navbar-collapse-1 {
    background: black;
    font-size: 24px;
    width: 500%;
    box-shadow: 2px 2px 5px 0 black;
  }

  #bs-sidebar-navbar-collapse-1 li {
    background: black;
    font-size: 24px;
  }

  .centered-container {
    margin-left: 0;
  }

  .blurred-container {
    filter: blur(2px);
  }

  .stub-label {
    font-size: 12px !important;
  }

  .stub-info {
    font-size: 12px !important;
    font-weight: 100;
  }

  .mobile-nav {
    visibility: hidden;
    opacity: 0;
    margin: 170px 15px 0 15px;
    display: block;
    position: fixed;
    filter: none;
    padding: 0;
    padding-top: 5px;
    background-color: #37495d;
    color: white;
    width: 350px;
    z-index: 100;
    border-radius: 0.5em;
    box-shadow: 0 5px 5px 2px black;
    transition: 0.5s all ease-in-out;
  }

  .mobile-nav-visible {
    visibility: visible;
    filter: none;
    opacity: 1;
  }

  .mobile-nav .row {
    margin: auto;
    margin-left: 5px;
  }

  .emp-form {
    margin-top: 1% !important;
    width: 100% !important;
  }

  .addemployee-fixed-div {
    width: 100%;
    background-color: white;
    text-align: center;
    position: fixed;
    z-index: 10;
    border: none;
    top: 185px;
    border: 1px solid grey;
  }

  .header-msg-container {
    margin-left: 100px;
  }

  .selectedClient-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
    padding: 5px;
  }

  .stub-label {
    font-size: 10px !important;
  }

  .stub-info {
    font-size: 10px !important;
  }
}

@media (min-width: 2330px) {
  .mobile-na-message-cont {
    display: none;
    visibility: hidden;
  }

  .mobile-na-message {
    display: none;
    visibility: hidden;
  }

  #emp-summary-container {
    margin-left: 20%;
    margin-bottom: 500px;
  }

  #selectWSDate-container {
    padding: 0;
    margin-top: 150px;
  }
  
  #selectWSDate {
    background: white;
    border-radius: 0.5em;
    box-shadow: 0 2px 2px 0 black;
    margin: 0 auto;
    width: 40%;
  }

  .split-data {
    padding: 0 25px 20px 25px;
    max-height: 35vh;
    overflow-y: overlay;
    overflow-x: hidden;
    border: 5px groove;
  }

  #coa-data {
    left: 50%;
    font-size: 10px;
    background: white;
    color: black;
    position: absolute;
    width: 25%;
    z-index: 13;
    border-radius: 0.5em;
    border: 1px solid black;
    min-height: 150px;
    height: 250px;
    max-height: 60%;
    box-shadow: 2px 2px 5px 0 black;
    transform: translate(-50%, 0);
  }

  #mobile-payroll {
    visibility: hidden;
    display: none;
  }

  #payroll-form {
    width: 100%;
    font-size: 11px;
    box-shadow: 2px 5px 5px 0 black;
    background-color: white;
    padding: 0;
    border-radius: 0.5em;
  }

  #payroll-form-container {
    visibility: visible;
    width: 65%;
    margin-left: 20%;
    margin-top: 115px;
    margin-bottom: 500px;
    background-color: white;
    border-radius: 0.5em;
  }

  .addemployee-fixed-div {
    font-weight: bold;
  }

  .fixed-edit {
    position: absolute;
    background: white;
    color: black;
    width: 35%;
    top: 30%;
    left: 15%;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    z-index: 11;
    border-radius: 0.5em;
    border: 1px solid black;
    box-shadow: 2px 2px 5px 0 black;
    padding: 10px;
    height: auto;
  }
}



/****************************************/
/* User Profile modal dialog        */
/****************************************/

.panel.panel-default {
  font-family: 'Helvetica';
  font-size: 16px;
  z-index: 150;
}

#pp-title {
  background-color: #b4cef7;
  text-align: center;
  font-weight: 400;
  font-family: 'Helvetica';
  font-size: 18px;
  padding: 0;
}

#ppbody {
  padding: 10;
  font-weight: 100;
  font-family: 'Helvetica';
  font-size: 16px;
}

#profilePanel {
  margin-left: 875px;
  width: 375px;
  z-index: 150;
  padding: 0;
  position: fixed;
}

.ppLinks {
  float: right;
  width: 100%;
}

#ppBtn {
  float: left;
}

.collapsing {
  position: absolute;
  width: 600px;
  z-index: 150;
}

.collapse.in {
  display: block;
  position: absolute;
  width: 600px;
  z-index: 150;
}


/****************************************/
/* Update Profile modal dialog          */
/****************************************/

#upModal .modal-dialog {
  width: 90%;
}

.UP-left-button-container {
  float: left;
  padding-top: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.UP-right-button-container {
  float: right;
  padding-top: 0;
  margin-top: 0;
  margin-bottom: 10;
}

#UP-title {
  position: relative;
  background-color: black;
  text-align: center;
  font-weight: 400;
  font-family: 'Helvetica';
  font-size: 20px;
  padding: 0;
  z-index: 1;
  color: white;
  border-radius: 0.5em 0.5em 0 0;
  box-shadow: 0 2px 2px 0 black;
  border-bottom: none;
}

#UP-container {
  background: transparent;
  border: none;
}

#UP-body {
  padding: 0;
  font-weight: 100;
  font-family: 'Helvetica';
  font-size: 18px;
  background-color: white;
  border-radius: 0 0 0.5em 0.5em;
}

#UP-msg {
  text-align: center;
  color: red;
}

#upFooter {
  margin-top: 0;
  padding-top: 0;
}


#UP-address1,
#UP-address2,
#UP-address3 {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 20px;
}

#UP-secQuest {
  margin-left: 15px;
}

#UP-ans1,
#UP-ans2,
#UP-ans3 {
  margin-top: 10px;
}

.UP-secLabels {
  text-align: left;
  width: 500px;
}

#UP-right-button-container {
  float: right;
}

.modal-backdrop {
  z-index: 150;
}

/****************************************/
/* Profile Message modal dialog         */
/****************************************/

#PM-title {
  background-color: #b4cef7;
  text-align: center;
  font-weight: 400;
  font-family: 'Helvetica';
  font-size: 20px;
  padding: 0;
}

#PM-body {
  margin-top: 20px;
  margin-left: 30px;
  font-weight: 100;
  font-family: 'Helvetica';
  font-size: 18px;
}

#PM-msg {
  text-align: center;
  color: red;
}

#PM-dialog {
  margin-top: 100px;
  z-index: 300;
}

#PM-footer {
  font-weight: 100;
  font-family: 'Helvetica';
  font-size: 18px;
}

/****************/
/* Sidebar Menu */
/****************/

/* remove outer padding */
.main .row {
  padding: 0px;
  margin: 0px;
}

/*Remove rounded corners*/
nav.sidebar.navbar {
  border-radius: 0px;
}

nav.sidebar,
.main {
  -webkit-transition: margin 200ms ease-out;
  -moz-transition: margin 200ms ease-out;
  -o-transition: margin 200ms ease-out;
  transition: margin 200ms ease-out;
  color: red;
}

/* Add gap to nav and right windows.*/
.main {
  padding: 10px 10px 0 10px;
}

nav.sidebar .navbar-nav .open .dropdown-menu>li>a:hover,
nav.sidebar .navbar-nav .open .dropdown-menu>li>a:focus {
  color: white;
  background-color: transparent;
}

nav:hover .forAnimate {
  opacity: 1;
}

section {
  padding-left: 15px;
  */
}

/****************/
/* Wage Reports */
/****************/

#wageTable {
  background: white;
  margin-top: 90px;
  margin-left: 0px;
  z-index: 10;
}

.wagetable {
  border-collapse: collapse !important;
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}

#wsDateSubmit {
  text-align: center;
  /*float: right;*/
}

#wsTableHeaderLeft {
  background-color: #b4cef7;
}

#wsTableHeaderRight {
  background-color: #b4cef7;
  padding-left: 0;
}

#wsTitleLeft {
  text-align: right;
  font-weight: 400;
  font-family: 'Helvetica';
  font-size: 30px;
  padding: 0;
}

#wsTitleRight {
  text-align: left;
  font-weight: 400;
  font-family: 'Helvetica';
  font-size: 30px;
  padding: 0;
}

#wsTableRow {
  font-size: 18px;
  font-family: 'Helvetica';
  text-align: right;
}

#psPrintBtn {
  margin-right: 5px;
}

#wsPrintBtn {
  margin-right: 5px;
}

/***************************************/

#payroll-container-precheck {
  background-color: white;
  margin-top: 90px;
  margin-left: 250px;
  padding-bottom: 10px;
  width: 800px;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  padding: 10 20;
}

#payroll-emp-details {
  max-height: 700px;
  overflow-x: hidden;
  overflow-y: overlay;
  border-bottom: 1px solid black;
}

#payroll-emp-details-btns {
  margin-top: 0 !important;
  background-color: white;
  margin-bottom: 100px;
  border-radius: 0 0 0.5em 0.5em;
}

#expected-vs-actual-cont {
  margin-bottom: 0;
}

#payroll-container-1st {
  background-color: white;
  margin-top: 90px;
  margin-left: 250px;
  width: 900px;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  padding-top: 2px;
  padding-bottom: 25px;
}

#payroll-container {
  background-color: white;
  margin-top: 10px;
  margin-left: 250px;
  width: 850px;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  padding-top: 2px;
  padding-bottom: 15px;
}

#prd-tax-data {
  margin-top: 25px;
}

.prd-tax-data-cont {
  margin-bottom: 25px;
}

.prd-data-h {
  text-decoration: underline;
  font-weight: bold;
}

.payroll-load {
  position: fixed;
  background-color: white;
  margin-top: 155px;
  width: 350px;
  left: 0;
  right: 0;
  top: 20%;
  z-index: 11;
  font-size: 24px;
  text-align: center;
  box-shadow: 2px 5px 5px 0 black;
  border: 1px solid black;
  border-radius: 0.5em;
  padding: 10px;
}

.no-interact {
  pointer-events: none;
}

.spinner {
  width: 40px;
  height: 40px;

  position: relative;
  margin: 10px auto;
}

.double-bounce1,
.double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: darkblue;
  opacity: 0.6;
  position: absolute;

  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
  animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {

  0%,
  100% {
    -webkit-transform: scale(0.0)
  }

  50% {
    -webkit-transform: scale(1.0)
  }
}

@keyframes sk-bounce {

  0%,
  100% {
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  }

  50% {
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}

.tax-otherded-checkbox {
  margin-top: 10px;
}

.otherHrsRate {
  padding: 10px;
}

.otherpay-section:hover {
  cursor: pointer;
}

.hover-icon:hover {
  cursor: pointer;
}

.other-hrs-data {
  padding: 10px;
  max-height: 35vh;
  overflow-y: overlay;
  overflow-x: hidden;
  border: 5px groove;
}

.blurred :not(.no-blur) {
  filter: blur(4px);
}

.payroll-precheck-date-text {
  float: left;
  background-color: white;
  margin-left: 150px;
  padding-top: 10px;
  margin-bottom: 0px;
  padding-left: 10px;
  width: 300px;
  height: 39px;

}

.payroll-precheck-date-input {

  float: left;
  background-color: white;
  margin-left: 5px;
  padding-top: 3px;
  margin-bottom: 10px;
  padding-left: 10px;
  width: 300px;
  height: 39px;

}

.payroll-precheck-para {
  margin-left: 80px;
  margin-right: 80px;
  font-size: 1.3em;
  color: blue;
}


.payroll-precheck-h1 {
  padding-top: 10px;
  margin-left: 25px;
  text-align: center;
}

.payroll-precheck-button {
  text-align: center;
}

.payroll-label {
  text-decoration: underline;
}

.gen-form-header {
  padding: 15px;
  display: block;
  border-radius: 0.5em 0.5em 0 0;
  position: relative;
  width: 100%;
  z-index: 1;
  box-shadow: 2px -1px 15px 0 black;
  background: black;
  text-align: center;
  color: white;
}

.gen-form-small-header {
  margin-top: 15px;
  display: block;
  position: relative;
  width: 100%;
  z-index: 1;
  background: #37495d;
  text-align: center;
  color: white;
  border-radius: 0.5em;
}

.payroll-gen-header {
  padding: 10px;
}

.otherpay-section {
  border-radius: 0.5em;
  padding: 5px;
  width: 90%;
}

.otherpay-section-unselected {
  color: black;
  background: white;
  box-shadow: none;
}

.otherpay-section-selected {
  color: white;
  background: #37495d;
  box-shadow: 0px 2px 2px black;
}

#payroll-employee-table {
  background: white;
  margin-top: 20px;
  margin-left: 10px;
  padding-left: 10px;
  z-index: 10;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}




/****************************************/
/*       ADD EMPLOYEE SETTINGS          */
/****************************************/

.employee_message_container {
  width: 100%;
  max-height: 15px;
  text-align: center;
  color: red;
  padding-bottom: 25px;
  font-size: 1.15em;
}


/* header for addEmployee */
.form-header {
  padding: 15px;
  display: block;
  background-color: #fff;
  border-radius: 0.5em 0.5em 0 0;
  position: relative;
  z-index: 1;
  box-shadow: 0px 2px 2px 0 black;
  margin: -5px -5px;
  background: #e0e0e0;
}

.form-header h1 {
  font-family: Nunito;
  font-weight: 700;
}

.form-container {
  background: white;
  margin: 0 auto;
  padding: 15px;
  border-radius: 0.5em;
}

.error-message {
  font-size: 12px;
  color: red;
}

#dynamicNote {
  overflow: hidden;
  margin-top: 25px;
}

/*.addemployee-left-sub-container {

  float: left;
  background-color: white;
  margin-top: 0px;
  margin-left: 0px;
  width: 200px;
  height: 400px;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  padding-top: 2px;
  padding-left: 5px;
  padding-bottom: 25px;
}*/


#addEmpDeletNoteBtn {
  margin-bottom: 14px;
}


.addEmpSubBtn {
  text-align: right;
  margin: 35px 0 105px 0;
}


.tab_content {
  padding-top: 120px;
}

.tab_content_hidden {
  display: none;
}

/*.addemployee-middle-sub-container {

  float: left;
  background-color: white;
  margin-top: 0px;
  margin-left: 0px;
  width: 200px;
  height: 400px;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  padding-top: 2px;
  padding-left: 5px;
  padding-bottom: 25px;
}*/

/*.addemployee-right-sub-container {

  float: left;
  background-color: white;
  margin-top: 0px;
  margin-left: 0px;
  width: 200px;
  height: 400px;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  padding-top: 2px;
  padding-left: 5px;
  padding-bottom: 25px;
}*/

#addRateButton {
  width: 40px;
}

.rate-message {
  font-size: 12px;
  color: red;
  font-weight: bold;
}

.coa-desc-cont {
  padding-top: 10px;
  font-weight: bold;
}

.sDeducRow {
  margin-top: 5px;
}

#addemployee-state {
  width: 185px;
  margin-left: 2px;
}

#emp-precheck-header {
  background-color: black;
  color: white;
  width: 100%;
  border-radius: 6px 6px 0 0;
  text-shadow: 0 1px 0 blue;
  box-shadow: 2px -1px 15px 0 black;
  position: relative;
  height: 100px;
  text-align: center;
  padding-top: 10px;
}

#payroll-emp-list {
  overflow-x: hidden;
  overflow-y: overlay;
  border: 3px inset;
  padding: 10px;
}

.input-dollar {
  position: relative;
}

.input-dollar.left input {
  padding-left: 18px;
}

.input-dollar.right input {
  padding-right: 18px;
  text-align: end;
}

.input-dollar:before {
  position: absolute;
  top: 0;
  content: "$";
}

.input-dollar.left:before {
  left: 5px;
}

.reg-btn {
  margin-top: 15px;
}

.emp-precheck-ssn {
  width: auto;
  margin: 0 auto;
}

.employee-precheck-input {
  margin: 0 auto;
  width: 100%;
}


.inside-emp-precheck-top {
  width: 100%;
  float: left;
}

.inside-emp-precheck-bottom-left {

  height: 100px;
  width: 225px;
  float: left;

}

.inside-emp-precheck-bottom-right {

  height: 100px;
  width: 225px;
  float: left;

}

.emp-precheck-button-cancel {

  text-align: right;

}

.emp-precheck-button-next {

  text-align: left;
  padding-left: 20px;

}

/****************************************/
/* Report Selection                     */
/****************************************/
#tree {
  padding-top: 0px;
  padding-left: 0px;
  padding-bottom: 10px;
  margin: 90px 0 0 20%;
  color: white;
  font-size: 18px;
  font-weight: 200;
  background-color: #37495d;
  border-radius: 0.5em;
  box-shadow: 2px 2px 15px 0px black;
  border: 1px solid black;
}

#j1_1_anchor {
  font-size: 0px;
  font-weight: 0;
  margin-bottom: 15px;
  color: transparent;
  background-color: transparent;
  border-bottom-color: transparent;
  display: none;
}

.jstree-anchor {
  font-size: 25px;
  margin-top: 10px;
  margin-bottom: 10px;
  border-bottom: 0.5px dashed lightgrey;
  border-left: 0.5px dashed lightgrey;
  width: 90%;
}

.jstree-anchor:hover {
  background-color: transparent;
  color: skyblue;
}

.jstree-default .jstree-clicked {
  background: darkgray;
}

.jstree-themeicon {
  color: transparent;
}

.jstree-default .jstree-node,
.jstree-default .jstree-icon {
  background-image: none;
}

@media print {

  .col-xs-1,
  .col-xs-2,
  .col-xs-3,
  .col-xs-4,
  .col-xs-5,
  .col-xs-6,
  .col-xs-7,
  .col-xs-8,
  .col-xs-9,
  .col-xs-10,
  .col-xs-11,
  .col-xs-12 {
    float: left;
  }

  .col-xs-12 {
    width: 100%;
  }

  .col-xs-11 {
    width: 91.66666666666666%;
  }

  .col-xs-10 {
    width: 83.33333333333334%;
  }

  .col-xs-9 {
    width: 75%;
  }

  .col-xs-8 {
    width: 66.66666666666666%;
  }

  .col-xs-7 {
    width: 58.333333333333336%;
  }

  .col-xs-6 {
    width: 50%;
  }

  .col-xs-5 {
    width: 41.66666666666667%;
  }

  .col-xs-4 {
    width: 33.33333333333333%;
  }

  .col-xs-3 {
    width: 25%;
  }

  .col-xs-2 {
    width: 16.666666666666664%;
  }

  .col-xs-1 {
    width: 8.333333333333332%;
  }

}

/********** ICON STYLING ************/

.yellow-icon {
  color: yellow;
}

.basic-icon {
  color: white;
}

#clientTable th, #empList-container th {
  position: relative;
  cursor: pointer;
}

#clientTable .sort-icon, #empList-container .sort-icon {
  position: absolute;
  right: 10px;
  opacity: 0;
  transition: opacity 0.2s;
}

#clientTable th:hover .sort-icon, #empList-container th:hover .sort-icon {
  opacity: 1;
}

/* Tablet and down: push a bit lower so it clears stacked headers/menus */
@media (max-width: 992px) {
  .lock-banner { top: 110px; }
}

/* Small phones: push further and shrink text a touch */
@media (max-width: 600px) {
  .lock-banner { top: 130px; }
  .lock-banner > div { padding: 16px 18px; font-size: 14px; }
}