@charset "UTF-8";
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1); }
  50% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15); }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1); } }
@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1); }
  50% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15); }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1); } }

@-webkit-keyframes flashRow {
  0% {
    background: yellow; }
  100% {
    background: none; } }

@keyframes flashRow {
  0% {
    background: yellow; }
  100% {
    background: none; } }

@-webkit-keyframes blinker {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

@keyframes blinker {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

.cols--two-1-2 > *:nth-child(1) {
  width: 33%;
  float: left; }

.cols--two-1-2 > *:nth-child(2) {
  width: 62%;
  float: right; }

#devEnvironment {
  position: fixed;
  top: -0.5em;
  left: -4em;
  z-index: 100;
  font-size: 150%;
  z-index: 999; }
  #devEnvironment > div {
    background: green;
    border-bottom: 2px solid white;
    color: white;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    width: 10em;
    height: 3.5em;
    padding-top: 2em;
    text-align: center; }

#headerGap {
  display: block;
  height: 4em; }
  @media only screen and (min-width: 72em) {
    #headerGap {
      height: 5em; } }
  .no-mq #headerGap {
    height: 5em; }
  @media only screen and (min-width: 85em) {
    #headerGap {
      height: 6em; } }
  .no-mq #headerGap {
    height: 6em; }

header {
  position: fixed !important;
  z-index: 100; }

.ov {
  overflow: visible !important; }

.clickable {
  cursor: hand;
  cursor: pointer; }

.blink {
  -webkit-animation: blinker 0.5s cubic-bezier(0.5, 0, 1, 1) infinite alternate;
          animation: blinker 0.5s cubic-bezier(0.5, 0, 1, 1) infinite alternate; }

.animate {
  transition: 250ms all; }

.pulse {
  -webkit-animation: pulse 250ms 1;
          animation: pulse 250ms 1; }

.hidden, .meta-hide {
  display: none; }

.driverStatus {
  margin: 1em; }

.fas.green, .far.green {
  color: green; }

.fas.yellow, .far.yellow {
  color: orange; }

.fas.red, .far.red {
  color: red; }

.fas.grey, .far.grey {
  color: #888; }

.fas.lightGrey, .far.lightGrey {
  color: #CCC; }

.fas.black, .far.black {
  color: black; }

span.red {
  color: red; }

.dtrax .red {
  color: red; }

.dtrax .green {
  color: green; }

.dtrax .white {
  color: white; }

.dtrax button.green {
  font-weight: bold; }

.dtrax .greenBG {
  background: green; }

.dtrax .redBG {
  background: red; }

.dtrax .whiteBG {
  background: white; }

.dtrax .blackBG {
  background: black; }

.dtrax .blueBG {
  background: blue; }

.dtrax .lightBlueBG {
  background: #8686ff; }

.dtrax span.padspan {
  padding: 0.5em;
  display: inline-block; }

.formattedAddress {
  font-size: 75%;
  font-weight: bold;
  color: red; }

div.dumpster-menu {
  margin-bottom: 2em; }
  div.dumpster-menu ul {
    overflow: hidden; }
    div.dumpster-menu ul li {
      float: left;
      margin-right: 1em; }
      div.dumpster-menu ul li.current {
        text-decoration: underline; }

.strong {
  font-weight: bold; }

.dtrax .locationEmailWarning,
.dtrax .locationPhoneWarning {
  color: red; }

.dtrax table {
  width: 100%;
  overflow-x: scroll; }
  .dtrax table th, .dtrax table td {
    padding: 0.45em 0.25em; }
  .dtrax table th {
    font-weight: bold;
    text-align: left;
    background: #DDF; }
  .dtrax table th:first-child, .dtrax table td:first-child {
    padding-left: 1.0em; }
  .dtrax table td {
    min-width: 1.5em; }
  .dtrax table.stripe tr:nth-child(even) td {
    background: #EEE; }
  .dtrax table tr:hover td, .dtrax table tr.selected td {
    background: #DDD !important; }
  .dtrax table tr:hover td {
    opacity: 1 !important; }
  .dtrax table tbody tr.hidden {
    display: none; }
  .dtrax table tfoot tr td {
    border-top: 1px solid #555;
    font-weight: bold; }
  .dtrax table tr.ghost-row td {
    background: #C8EBFB !important; }
  .dtrax table td.yellow {
    background: yellow !important; }
  .dtrax table td.green {
    background: greenyellow !important; }
  .dtrax table td span.tel {
    font-size: 90%;
    color: black; }
  .dtrax table td span.timePart {
    font-size: 80%;
    color: black; }
  .dtrax table tr.cancelled {
    text-decoration: line-through; }
  .dtrax table img.tableMapIcon {
    width: 1em; }
  .dtrax table .active {
    border-top: 1px solid black;
    border-bottom: 1px solid black; }
    .dtrax table .active td, .dtrax table .active:hover td {
      background: rgba(255, 255, 0, 0.5) !important; }
  .dtrax table span.paymentMethod {
    font-style: italic;
    color: black;
    display: inline-block; }
    .dtrax table span.paymentMethod.pay-CC {
      background: greenyellow !important; }
  .dtrax table tr.updateFlash {
    -webkit-animation: flashRow 1500ms 1;
            animation: flashRow 1500ms 1; }
    .dtrax table tr.updateFlash td {
      -webkit-animation: flashRow 1500ms 1;
              animation: flashRow 1500ms 1; }
  .dtrax table tr.countRow td {
    font-weight: bold; }
  .dtrax table tr.countRow.expanded td {
    border-top: 3px solid #333; }
    .dtrax table tr.countRow.expanded td:first-child {
      border-left: 0.25em solid #333; }
  .dtrax table tr.contracted {
    display: none; }
  .dtrax table tr.subTable.expanded td:first-child {
    border-left: 0.25em solid #333; }
  .dtrax table tr.subTable.expanded td {
    padding-left: 1em;
    background: rgba(255, 255, 0, 0.1) !important; }
  .dtrax table tr.subTable.expanded + tr.normal td,
  .dtrax table tr.subTable.expanded + tr.countRow td {
    border-top: 3px solid #333; }
  .dtrax table tr.needs-attention td {
    border-top: 2px solid red;
    border-bottom: 2px solid red;
    background: rgba(255, 255, 0, 0.1) !important; }
    .dtrax table tr.needs-attention td:last-child {
      border-right: 1em solid red; }
  .dtrax table.resizeColumn th {
    position: relative; }
    .dtrax table.resizeColumn th span.resizeTrigger {
      position: absolute;
      right: 0;
      top: 0;
      bottom: 0;
      width: 3px;
      margin-left: 3px;
      margin-right: 3px;
      background: rgba(0, 0, 0, 0.25);
      cursor: ew-resize; }
  .dtrax table .onlycsv {
    display: none; }

.dtrax button {
  border: 1px solid #888;
  border-radius: 3px;
  background: #DDD;
  padding: 0.5em;
  color: black;
  font-size: 100%; }
  .dtrax button[disabled] {
    color: #888;
    background: #EEE;
    cursor: not-allowed; }

.band.dtrax .container {
  width: auto;
  margin: 0 1em; }

button.action {
  border: 1px solid #888;
  border-radius: 3px;
  background: #DDD;
  padding: 0.1em 0.25em; }

.modal_menu {
  width: 10em;
  display: none;
  font-size: 80%; }
  .modal_menu ul {
    padding: 0.5em 0;
    background: #CCC;
    border: 1px solid #888; }
    .modal_menu ul li {
      padding: 0.15em 0.5em; }
      .modal_menu ul li a {
        display: block;
        color: inherit; }
      .modal_menu ul li.green {
        color: green; }
      .modal_menu ul li.red {
        color: #BB0000; }
      .modal_menu ul li:hover {
        background: #BBB; }

.faded {
  opacity: 0.5; }

.modalFloatHeader {
  float: right; }
  .modalFloatHeader h1 {
    font-size: 150%;
    font-weight: bold; }
  .modalFloatHeader #modalDeliveryID, .modalFloatHeader #modalDeliveryKey {
    font-size: 90%; }
  .modalFloatHeader #modalDeliveryKey {
    margin-left: 1em; }

.modal {
  padding: 3em 3em !important;
  max-width: 650px !important; }
  .modal.wide {
    max-width: 80% !important;
    width: 80% !important; }
  .modal ul li.padB {
    padding-bottom: 1em; }
  .modal ul li.padB2 {
    padding-bottom: 2em; }
  .modal ul li.padT {
    padding-top: 2em; }
  .modal div.spread {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between; }
  .modal .h5 {
    height: 5em; }
  .modal .h7 {
    height: 7em; }
  .modal .h10 {
    height: 10em; }
  .modal .archiveButton {
    text-align: center;
    margin: 0 auto;
    display: block; }
  .modal .archiveNotes {
    border: 1px solid #888;
    margin: 0.5em 1em 2em 1em;
    padding: 0.75em; }
  .modal p.small {
    font-size: 80%;
    color: #777; }

button.changeAddress {
  margin-bottom: 1em; }

input[data-toggle=datepicker] {
  background: url("/images/calendar.png") 95% center no-repeat;
  background-size: 1em 1em; }

#uploadDropbox, #masterEditUploadDropbox {
  margin-top: 1em;
  margin-bottom: 1em;
  max-width: 20em;
  text-align: center;
  padding: 1em;
  background: #CCC;
  border: 1px solid #4643ff; }

/* ---------------------- run sheet ---------------------- */
#runsheetForm {
  overflow: hidden;
  margin-bottom: 0.25em;
  padding-top: 0.25em; }
  #runsheetForm > div {
    float: left;
    margin-right: 5%; }
  #runsheetForm #runsheetFormDate button, #runsheetForm #runsheetFormDate input {
    display: inline; }
  #runsheetForm #runsheetFormDate button.today {
    color: green; }
  #runsheetForm #runsheetFormDate input {
    width: 9em; }

#runsheetTable {
  position: relative !important;
  text-align: left !important;
  overflow: visible !important; }
  #runsheetTable thead {
    position: relative !important; }
  #runsheetTable th {
    overflow: visible !important;
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 15em; }

#runsheetTop {
  overflow: visible;
  position: -webkit-sticky;
  position: sticky;
  background: white;
  top: 6em;
  left: 0em;
  right: 0em;
  min-width: 100%;
  padding-left: 2em;
  padding-right: 2em;
  margin-right: -2em;
  margin-left: -2em;
  z-index: 10;
  margin-top: -4em; }
  #runsheetTop h1 {
    font-size: 200%;
    margin-bottom: 0; }

.tableScrollWrapper {
  position: relative; }

input.today {
  color: green; }

.exempt {
  color: green;
  font-size: 80%; }

#locationMap {
  width: 100%;
  min-height: 50em; }

li.dates {
  margin-bottom: 1em; }
  li.dates button {
    padding: 0.25em 0.5em;
    margin-right: 0.5em; }

#deployedTable td img {
  width: 1.25em;
  margin-right: 0.5em; }

.runsheetModeOptions {
  margin-top: 1em; }
  .runsheetModeOptions a {
    padding: 0.5em 1em;
    color: #666; }
    .runsheetModeOptions a.active {
      background: #DFD; }
  .runsheetModeOptions span {
    padding: 0.5em 1em; }

#lockRunsheet .fa-lock-open {
  color: green; }

#lockRunsheet .fa-lock {
  color: #BB0000; }

/* ---------------------- login ---------------------- */
form.tqlogin input.submit {
  clear: both; }

#messageBar {
  position: fixed;
  top: 0px;
  right: 0;
  left: 0;
  z-index: 9999; }
  #messageBar #messageBarContent {
    color: black;
    text-align: center;
    transition: 250ms all;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards; }
    #messageBar #messageBarContent h1, #messageBar #messageBarContent h2, #messageBar #messageBarContent h3, #messageBar #messageBarContent p {
      color: inherit;
      padding: 0.5em 0;
      opacity: 0;
      transition: 250ms all;
      animation-fill-mode: forwards;
      -webkit-animation-fill-mode: forwards;
      background: #ffffad;
      border-bottom: 1px solid #888; }
      #messageBar #messageBarContent h1.active, #messageBar #messageBarContent h2.active, #messageBar #messageBarContent h3.active, #messageBar #messageBarContent p.active {
        opacity: 1; }
      #messageBar #messageBarContent h1.error, #messageBar #messageBarContent h2.error, #messageBar #messageBarContent h3.error, #messageBar #messageBarContent p.error {
        background: #ff6666;
        border-bottom: 1px solid #333; }

#sizeIconKey img {
  width: 1em; }

/* ----------------------  ---------------------- */
#driverHeader {
  width: 100%;
  height: 1.75em;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  border-bottom: 1px solid #888; }
  #driverHeader > div {
    width: 50%;
    text-align: center;
    border-right: 1px solid #888; }
    #driverHeader > div.current {
      background: rgba(0, 128, 0, 0.5); }
    #driverHeader > div.callOffice {
      width: 3em; }
    #driverHeader > div.timecard {
      width: 3em; }

#driverSchedulePage {
  display: none; }
  #driverSchedulePage h2 {
    margin-bottom: 0; }
  #driverSchedulePage .scheduledRun {
    border-left: 0.25em solid #DDD;
    padding-left: 0.25em;
    margin-top: 1em;
    border-bottom: 1px solid #888; }
    #driverSchedulePage .scheduledRun:last-child {
      border-bottom: none; }
    #driverSchedulePage .scheduledRun.current {
      background: rgba(0, 128, 0, 0.2); }

#waiverNeeded, #permitNeeded {
  background: #FF8888;
  padding: 1em;
  font-weight: bold;
  text-align: center;
  margin-top: 1em; }
  #waiverNeeded p, #permitNeeded p {
    padding-bottom: 0.5em; }

.driverStatus .driverH1 {
  font-weight: normal;
  font-size: 200%; }

/* ----------------------  ---------------------- */
@keyframes signup-response {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

@-webkit-keyframes signup-response {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

.autocomplete-suggestions {
  box-sizing: border-box;
  border: 1px solid #999;
  background: #FFF;
  cursor: default;
  overflow: auto;
  box-shadow: 1px 4px 3px rgba(50, 50, 50, 0.64); }

.autocomplete-suggestion {
  padding: 2px 5px;
  white-space: nowrap;
  overflow: hidden; }

.autocomplete-no-suggestion {
  padding: 2px 5px; }

.autocomplete-selected {
  background: #F0F0F0; }

.autocomplete-suggestions strong {
  font-weight: bold;
  color: #000; }

.autocomplete-group {
  padding: 2px 5px;
  font-weight: bold;
  font-size: 16px;
  color: #000;
  display: block;
  border-bottom: 1px solid #000; }

.spinnerWrapper {
  display: none;
  z-index: 10;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2); }
  .spinnerWrapper > div {
    position: absolute;
    left: 45%;
    top: 45%; }
    .spinnerWrapper > div i {
      font-size: 5vw; }

/* ---------------------- timecard ---------------------- */
table.timeCard {
  width: 100%; }
  table.timeCard td {
    padding: 1em; }
  table.timeCard tr.total td {
    background: #DDD; }

table.timeCardMulti tr td:nth-child(even) {
  background: #EEF !important; }

table.timeCardMulti tr td:nth-child(odd) {
  background: #FFF !important; }

table.timeCardMulti tr.footer td {
  padding-top: 1em;
  margin-top: 1em;
  border-top: 1px solid black;
  background: #FFF !important; }

/* ---------------------- chat ---------------------- */
#chatBox #chatBoxNotify {
  position: fixed;
  z-index: 10;
  bottom: -1px;
  right: 3em;
  border: 1px solid white;
  border-radius: 5px;
  padding: 0.3em 1em;
  background: #ccccff;
  cursor: hand;
  cursor: pointer; }

#chatBox #chatCount {
  border: 1px solid #888;
  border-radius: 99em;
  display: inline-block;
  padding: 0 0.5em;
  margin-right: 0.5em;
  background: rgba(255, 255, 0, 0.5); }
  #chatBox #chatCount.none {
    display: none; }

#chatBox #chatBoxMessages {
  position: fixed;
  bottom: 1em;
  right: 1em;
  border: 1px solid white;
  border-radius: 5px;
  width: 70%;
  max-width: 30em;
  height: 50vh;
  min-height: 30em;
  z-index: 11;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: saturate(100%) blur(20px);
          backdrop-filter: saturate(100%) blur(20px);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: row; }
  #chatBox #chatBoxMessages #chatClose {
    position: absolute;
    right: -0.5em;
    top: -0.5em;
    z-index: 15;
    height: 1.5em;
    width: 1.5em;
    background: white;
    border: 1px solid #888;
    border-radius: 999em;
    text-align: center; }
    #chatBox #chatBoxMessages #chatClose a {
      color: #888;
      display: block; }
  #chatBox #chatBoxMessages .chatList {
    width: 5em;
    border-right: 1px solid #CCC; }
    #chatBox #chatBoxMessages .chatList ul li {
      flex: 1 1 auto;
      position: relative;
      cursor: hand;
      cursor: pointer;
      padding: 0.3em 0 0.3em 0.5em;
      border-bottom: 1px solid #CCC; }
      #chatBox #chatBoxMessages .chatList ul li.new {
        background: rgba(255, 255, 0, 0.3); }
        #chatBox #chatBoxMessages .chatList ul li.new:before {
          content: '• '; }
      #chatBox #chatBoxMessages .chatList ul li.active {
        font-weight: bold;
        background: rgba(255, 255, 0, 0.5); }
        #chatBox #chatBoxMessages .chatList ul li.active:after {
          content: ' »'; }
  #chatBox #chatBoxMessages .messageSection {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    margin-top: 1em;
    margin-right: 1em;
    width: 100%; }
    #chatBox #chatBoxMessages .messageSection .messages {
      padding: 0.25em 0.5em;
      margin-left: 1em;
      overflow-y: scroll; }
      #chatBox #chatBoxMessages .messageSection .messages > div {
        margin-bottom: 0.5em; }
      #chatBox #chatBoxMessages .messageSection .messages .incoming {
        text-align: right; }
      #chatBox #chatBoxMessages .messageSection .messages span {
        display: block;
        font-weight: bold; }
      #chatBox #chatBoxMessages .messageSection .messages span.time {
        font-weight: normal;
        font-size: 70%;
        color: #888;
        line-height: 1.3; }
      #chatBox #chatBoxMessages .messageSection .messages span.message {
        display: inline-block;
        font-weight: normal;
        background: rgba(112, 48, 144, 0.1);
        padding: 0.5em 0.75em;
        border-radius: 1em; }
      #chatBox #chatBoxMessages .messageSection .messages .outgoing span.message {
        background: rgba(0, 0, 255, 0.1); }
    #chatBox #chatBoxMessages .messageSection .newMessage {
      margin-top: auto;
      padding-top: 1em; }
      #chatBox #chatBoxMessages .messageSection .newMessage input[type=text] {
        width: 100%;
        padding: 0.5em; }

.switchLabel .text {
  vertical-align: middle;
  display: inline-block;
  margin-top: 0.5em; }

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

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0; }

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

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

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

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

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

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

.slider.round:before {
  border-radius: 50%; }

.smaller {
  font-size: 50%; }

/* ---------------------- timecard ---------------------- */
.timecard #tqLogout {
  z-index: 99;
  position: absolute;
  right: 0;
  top: 0;
  text-align: right;
  margin: 0.5em; }
  .timecard #tqLogout a {
    color: blue; }

.timecard #spinner {
  position: absolute;
  font-size: 300%;
  left: 30%;
  top: 50%;
  display: none; }

.timecard #driverID {
  width: 45%;
  float: left; }

.timecard #driverPIN {
  width: 45%;
  float: right; }

.timecard .clockInOutButtons {
  margin-top: 2em;
  text-align: center; }

.timecard #clockIN, .timecard #clockOUT {
  display: none;
  padding: 2em;
  text-align: center;
  margin: 0 auto; }

.timecard #clockIN {
  background: green;
  color: white; }

.timecard #clockOUT {
  background: #b30000;
  color: white; }

.timecard .lunch {
  margin-top: 1em;
  display: flex;
  flex-direction: row;
  justify-content: space-between; }

.timecard #lunchYES, .timecard #lunchNO {
  background: rgba(0, 128, 0, 0.5);
  color: white; }
  .timecard #lunchYES.selected, .timecard #lunchNO.selected {
    background: green; }
  .timecard #lunchYES.deselected, .timecard #lunchNO.deselected {
    background: #888; }

.timecard #dailyHours h3 {
  margin-top: 1.5em;
  margin-bottom: 0.25em;
  font-weight: bold; }

.timecard #curTimeOnly {
  display: inline; }

#driverTimecardModal button {
  border: 1px solid #888;
  border-radius: 3px;
  background: #DDD;
  padding: 0.5em;
  color: black;
  font-size: 100%; }
  #driverTimecardModal button[disabled] {
    color: #888;
    background: #EEE;
    cursor: not-allowed; }
  #driverTimecardModal button.green {
    color: green; }
  #driverTimecardModal button.red {
    color: #BB0000; }

#driverTimecardModal .individualTimecardEntry {
  overflow: hidden;
  display: block; }
  #driverTimecardModal .individualTimecardEntry .clickable:hover:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f044";
    margin-right: 0.5em;
    color: rgba(0, 128, 0, 0.75); }

#driverTimecardModal .editTimecard {
  overflow: hidden; }
  #driverTimecardModal .editTimecard input[type=text] {
    width: 6em;
    float: left; }
  #driverTimecardModal .editTimecard button {
    margin-left: 0.5em;
    float: left; }

.content.timecard {
  margin-top: 2em !important;
  margin-bottom: 0 !important; }

div#keypadWrapper {
  overflow-y: scroll; }

table#keypad {
  width: auto;
  overflow-y: scroll; }
  table#keypad tr td {
    width: 5em !important;
    padding: 1.25em !important;
    border: 0.35em solid white;
    text-align: center;
    background: #DDD !important;
    cursor: hand;
    cursor: pointer; }
    @media only screen and (min-height: 500px) {
      table#keypad tr td {
        width: 6em !important;
        padding: 1.75em !important; } }
    .no-mq table#keypad tr td {
      width: 6em !important;
      padding: 1.75em !important; }
    table#keypad tr td:hover {
      font-weight: bold;
      background: #CCC !important; }
    table#keypad tr td#updateMileage {
      background: green !important;
      color: white; }
    table#keypad tr td.gap {
      background: none !important;
      width: 1em !important;
      padding: 0; }
    table#keypad tr td.adjust {
      background: #CCC !important; }
      table#keypad tr td.adjust:hover {
        background: #BBB; }

#dumpSiteRow {
  float: right;
  margin-bottom: 0.3em;
  font-size: 80%; }
  #dumpSiteRow button.active {
    background: rgba(255, 255, 0, 0.5) !important; }

@media print {
  body {
    font-size: 65%; }
  header {
    display: none; }
  #mobileNavWrapper {
    display: none; }
  .noprint, .action {
    display: none; }
  #headerGap {
    display: none; }
  #chatBox {
    display: none; }
  tfoot {
    display: none; }
  .modal {
    border: none !important;
    box-shadow: none !important; } }

.adminHide {
  display: none; }
  .adminHide, .adminHide td {
    background: rgba(0, 0, 255, 0.05); }
