/* By default ts-icon will be 24 by 24. This can be overridden by adding other ts-icon-xx styles. */
.ts-icon {
    vertical-align: top;
    fill: currentColor;
    height: 24px;
    width: 24px;
    pointer-events: none;
}

.ts-icon-16 {
    height: 16px;
    width:  16px;
}

.ts-icon-18 {
    height: 18px;
    width: 18px;
}

.ts-icon-20 {
    height: 20px;
    width: 20px;
}

.ts-icon-32 {
    height: 32px;
    width: 32px;
}

.ts-icon-40 {
    height: 40px;
    width: 40px;
}


.winc-title-icon {
    padding: 8px;
    cursor:pointer;
    color: #666;
}
.full-page-winc-title-icon {
    padding: 0;
    cursor:pointer;
    color: #666;
}
.winc-title-icon:hover {
    color: #333;
}
.winc-title-icon a {
    color: #666;
}

.ts-avatar {
    border-radius: 50%;
    display: table;
    border: none;
    max-width: 300px;
    max-height: 300px;
    position: relative;
    /* Browsers are inconsistent on how they handle elements with both border-box and display:table
    (Chrome is the WORST!) so enforce box sizing here. */
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

.ts-avatar-default {
    background: #DADADA;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #666666;
    line-height: 32px;
    text-align: center;
    position: relative;
}

.ts-avatar-img, .ts-avatar-label, .ts-avatar-svg {
    max-width: 100%;
    max-height: 100%;
    min-width: 100%;
    min-height: 100%;
    border-radius: 50%;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none;   /* Chrome/Safari/Opera */    /* Konqueror */
    -moz-user-select: none;      /* Firefox */
    -ms-user-select: none;       /* Internet Explorer/Edge */
    user-select: none;           /* Non-prefixed version, currently not supported by any browser */
}

.ts-avatar-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    color: transparent;
}

.ts-avatar-svg {
    position: absolute;
}

.ts-avatar-hidden {
    display: none !important;
}

.ts-avatar-label {
    display: table-cell;
    width: 100%;
    height: 100%;
    text-align: center;
    vertical-align: middle;
    background-color: #DADADA;
    font-size: 14px;
    text-transform: uppercase;
    color: #333;
}

.ts-avatar.ts-avatar-expandable {
    cursor: pointer;
}

.ts-avatar, .ts-avatar-img, .ts-avatar-status {
    -webkit-transition: all 333ms ease;
    -o-transition: all 333ms ease;
    transition: all 333ms ease;
}

.ts-avatar.ts-avatar-expanded, .ts-avatar.ts-avatar-expanded * {
    border-radius: 3px;
}

.ts-avatar.ts-avatar-expanded {
    position: absolute;
    z-index: 50;
    -webkit-box-shadow: 0 0 10px 0px rgba(0,0,0,0.6);
            box-shadow: 0 0 10px 0px rgba(0,0,0,0.6);
}

.ts-avatar-expanded .ts-avatar-status,
.ts-avatar-expanded.ts-avatar-large-status .ts-avatar-status {
    left: 13px;
    top: auto;
    bottom: 13px;
    -webkit-transform: none;
            transform: none;
    margin: 0;
    width: 16px;
    height: 16px;
}

.ts-avatar.ts-avatar-expanded:after {
    content: attr(data-name);
    position: absolute;
    bottom: 14px;
    left: 40px;
    z-index: 2;
    display: block;
    color: #fff;
    text-shadow: 0 0 6px black;
    font-size: 16px;
}

.ts-avatar-status {
    z-index: 1;
    display: none;
    border: 2px solid #fff;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -4.5px; /* half the total diameter of the circle */
}

.ts-avatar-large-status .ts-avatar-status {
    width: 16px;
    height: 16px;
    margin: -10px; /* half the total diameter of the circle */
}

.ts-avatar-status[title="on clock"] {
    display: block;
    background: #46A657;
}

.ts-avatar-status[title="on break"] {
    display: block;
    background: #F7931E;
}

/* RESPONSIVE MEDIA QUERIES
 * See (and update if necessary): https://tsheets.atlassian.net/wiki/display/DEV/Responsive+Media+Query+Breakpoints
 */
html {
  background-color: #FAFAFA;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}
/* Necessary so that scrolling overflown children doesn't elastic scroll the body */
html,
body {
  height: 100%;
  width: 100%;
  overflow: auto;
}
body {
  width: 100%;
  min-height: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}
body,
body * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  /* TODO: (CraigB) -- Figure out why Safari text box entry doesn't work right with these settings. */
  /* Necessary for a touch interface so we don't inadvertently highlight stuff */
  /*-webkit-user-select: none;*/
  /*-moz-user-select: none;*/
  /*-ms-user-select: none;*/
}
body,
a,
button,
.ts-avatar-label,
.ts-select-box select,
.ts-text-box,
.kiosk-notes {
  font: normal 400 20px ClearSans, sans-serif;
  color: #666;
}
a,
a:focus,
button,
button:focus {
  cursor: pointer;
}
input {
  border-radius: 0;
}
input::-ms-clear {
  display: none;
}
button {
  margin: 0;
}
*[disabled] {
  opacity: 0.5;
  cursor: default;
}
.center-content {
  text-align: center;
  margin: 0 auto;
}
.list-container {
  will-change: transform;
}
#kiosk_wrapper {
  height: 100%;
}
.kiosk-screen {
  height: 100%;
  width: 100%;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.kiosk-panel-container {
  -ms-flex: 1;
  -webkit-box-flex: 1;
          flex: 1;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: relative;
}
.kiosk-ui-half {
  position: relative;
  -ms-flex: 1;
  -webkit-box-flex: 1;
          flex: 1;
  top: 0;
  left: 0;
  overflow: hidden;
  -webkit-transition: -webkit-box-flex 333ms ease;
  transition: -webkit-box-flex 333ms ease;
  -o-transition: flex 333ms ease;
  transition: flex 333ms ease;
  transition: flex 333ms ease, -webkit-box-flex 333ms ease, -ms-flex 333ms ease;
}
#left_panel.kiosk-ui-half {
  -ms-flex: 0 0 200px;
  -webkit-box-flex: 0;
          flex: 0 0 200px;
}
@media (min-width: 768px) and (max-width: 899px) {
  #left_panel.kiosk-ui-half {
    -ms-flex: 0 0 33.33%;
    -webkit-box-flex: 0;
            flex: 0 0 33.33%;
  }
}
@media (min-width: 900px) {
  #left_panel.kiosk-ui-half {
    -ms-flex: 1;
    -webkit-box-flex: 1;
            flex: 1;
  }
}
.panel {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #fff;
  width: 100%;
  height: 100%;
  padding: 0 16px;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition-property: left, width, top;
  -o-transition-property: left, width, top;
  transition-property: left, width, top;
  -webkit-transition-duration: 600ms, 600ms, 600ms;
       -o-transition-duration: 600ms, 600ms, 600ms;
          transition-duration: 600ms, 600ms, 600ms;
  -webkit-transition-timing-function: ease, ease, ease;
       -o-transition-timing-function: ease, ease, ease;
          transition-timing-function: ease, ease, ease;
}
.panel.v-centered {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.panel.right-position {
  left: 100%;
}
.panel.left-position {
  left: -100%;
}
.panel.bottom-position {
  top: 100%;
}
/* Important on each of these elements is critical to this being a universal class */
.kiosk-hidden {
  display: none;
}
.kiosk-back {
  text-align: left;
  position: absolute;
  top: 0;
  left: 0;
  background: url(https://buildassets.tsheets.com/tsheets-frontend-hashed-files/b2bf2ff3f53928ea0a878df2dfddcd08.png) 12px center no-repeat;
  width: 100%;
  cursor: pointer;
  border: none;
}
.kiosk-back.in-flow {
  position: relative;
}
.kiosk-back,
.header-item {
  height: 64px;
  line-height: 64px;
}
.header-item {
  background-color: #dadada;
  margin-bottom: 16px;
  position: relative;
  padding: 0 16px;
}
.kiosk-back {
  padding-left: 48px;
}
/* This item is so there is no drop-shadow "dimple-ing" */
.header-item:before {
  content: "";
  height: 100%;
  width: 110%;
  position: absolute;
  left: -5%;
  top: 0;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
.header-item,
.full-width,
.action-panel .kiosk-button {
  width: auto !important;
  margin-left: -16px !important;
  margin-right: -16px !important;
}
.ts-avatar {
  position: absolute;
}
.ts-select-box,
.ts-text-box,
.kiosk-notes {
  line-height: 72px;
  min-height: 72px;
  width: 100%;
  background-color: #f1f1f1;
  border: 1px solid #dadada;
  padding: 0 16px;
  margin: 4px 0 0;
  display: block;
}
.ts-select-box:focus-within {
  outline: Highlight auto 1px;
  outline: -webkit-focus-ring-color auto 1px;
}
.ts-select-box select {
  background: transparent url(https://buildassets.tsheets.com/tsheets-frontend-hashed-files/d0a25dee54d2dfaa21d50b1540384063.png) no-repeat right center;
  min-width: 44px;
  padding-right: 21px;
  border: 1px solid transparent;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  cursor: pointer;
  width: 100%;
}
.ts-select-box select::-ms-expand {
  display: none;
}
.kiosk-customfield-container {
  margin-top: 16px;
  position: relative;
}
.kiosk-customfield-container .suggest {
  font-size: 14px;
  border-bottom: 1px solid #dadada;
}
.kiosk-customfield-container .suggest > div {
  padding: 0 8px;
}
.hovered {
  background-color: #3178C6;
  color: #fff;
}
.kiosk-customfield-container:first-child {
  margin-top: 0;
}
.kiosk-notes-message,
.kiosk-customfield-input-message {
  display: none;
}
.kiosk-notes-container.highlight-required .kiosk-label,
.kiosk-customfield-container-highlight .kiosk-label {
  color: #C23A25;
}
.kiosk-notes-container.highlight-required .kiosk-notes,
.kiosk-customfield-container-highlight .ts-select-box,
.kiosk-customfield-container-highlight .ts-text-box {
  border: 2px solid #C23A25;
}
.kiosk-notes-container.highlight-required .kiosk-notes-message,
.kiosk-customfield-container-highlight .kiosk-customfield-input-message {
  display: block;
  margin-top: 4px;
  color: #C23A25;
  font-size: 14px;
}
.x-icon {
  width: 48px;
  height: 48px;
}
.happy-kiosk-select-yourself {
  background-color: #f1f1f1;
  text-align: center;
}
.happy-kiosk-select-yourself h2 {
  margin: 16px auto 50px auto;
  max-width: 300px;
}
.happy-kiosk-select-yourself p {
  margin-bottom: 50px;
}
.svg-happy-kiosk {
  display: block;
  margin: 0 auto;
  width: 307px;
  max-width: 75%;
}
.kiosk-radio-label {
  padding: 30px 30px 30px 90px;
  margin: 6px auto;
  max-width: 400px;
  display: block;
  background-color: #f1f1f1;
  overflow: hidden;
  position: relative;
  line-height: 1;
}
.kiosk-radio-label .kiosk-radio {
  position: absolute;
  left: -100%;
}
.kiosk-radio-label .review-time-open-check {
  overflow: hidden;
  left: 26px;
  top: 22px;
}
.kiosk-radio-label .no-kiosk-user-instructions {
  display: none;
}
.kiosk-radio-label .review-time-open-check svg.check-mark {
  display: none;
}
.kiosk-radio-label .kiosk-radio:checked ~ .review-time-open-check {
  border: 0 !important;
}
.kiosk-radio-label .kiosk-radio:checked ~ .review-time-open-check svg.check-mark {
  display: block;
  width: 40px;
  height: 40px;
}
.kiosk-radio-label .kiosk-radio:checked ~ .no-kiosk-user-instructions {
  display: block;
  font-weight: 200;
  line-height: 1.33;
  font-size: 18px;
  margin: 29px 0 -9px -60px;
  width: calc(100% + 64px);
}
.kiosk-radio-label .kiosk-radio:checked ~ .no-kiosk-user-instructions a {
  font-size: 16px;
}
.kiosk-radio:checked + .review-time-open-check .check-mark-circle {
  fill: #3178C6;
}
.kiosk-radio:checked + .review-time-open-check .check-mark-check {
  fill: #ffffff;
}
.know-your-role {
  height: 34px;
  color: #3178C6;
  font-size: 24px;
  font-weight: bold;
  line-height: 34px;
  text-align: center;
  margin: 0 auto 50px;
  max-width: 450px;
}
.sr-only {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.search-box {
  position: relative;
  padding: 16px 0;
}
.search-field {
  height: 72px;
  width: 100%;
  font-family: 'ClearSans', sans-serif;
  font-size: 26px;
  color: #777;
  /* padding right to match .clear-search:width */
  padding: 0 72px 0 52px;
  background: #f1f1f1 url(https://buildassets.tsheets.com/tsheets-frontend-hashed-files/99c360045175072c7546a554ab9a84f1.svg) no-repeat 10px center;
  /* must be fully specified for IE 11 */
  background-size: 32px 32px;
  border: 2px solid #dadada;
  border-radius: 2px;
}
.clear-search {
  border: 0;
  position: absolute;
  top: 0;
  right: 0;
  /* to match .search-field:padding-right */
  height: 100%;
  width: 72px;
  background: transparent url(https://buildassets.tsheets.com/tsheets-frontend-hashed-files/8d9e225929008289264ffd493d668583.png) center no-repeat;
}
/* Necessary for a touch interface so we don't inadvertently highlight stuff */
.list-container,
.list-container * {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.list-container {
  -ms-flex: 1;
  -webkit-box-flex: 1;
          flex: 1;
  padding: 0;
  margin: 0;
  overflow-y: scroll;
  /* has to be scroll, not auto for smooth scrolling in iOS */
  -webkit-overflow-scrolling: touch;
}
.web-list-container {
  overflow: auto;
  /* the above allowance for iOS makes web interfaces look bad though */
}
.list-item {
  position: relative;
  border-bottom: 1px solid #dadada;
  overflow: hidden;
  -webkit-transition-property: height, width;
  -o-transition-property: height, width;
  transition-property: height, width;
  -webkit-transition-duration: 167ms, 333ms;
       -o-transition-duration: 167ms, 333ms;
          transition-duration: 167ms, 333ms;
  /* The timing for width is to ensure that the width animation never interferes with the height */
  -webkit-transition-timing-function: ease, cubic-bezier(1, 0.03, 1, -0.115);
       -o-transition-timing-function: ease, cubic-bezier(1, 0.03, 1, -0.115);
          transition-timing-function: ease, cubic-bezier(1, 0.03, 1, -0.115);
  list-style: none;
}
.list-item.selected {
  background-color: #3178C6;
  border-bottom: 1px solid #3178C6;
  color: #fff;
}
.list-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 1px;
  padding-bottom: 4px;
  min-height: 72px;
  font-weight: 200;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}
.list-item-details {
  line-height: 1;
  font-size: 12px;
}
.list-no-results {
  height: 72px;
  text-align: center;
  line-height: 72px;
  color: #999;
  font-weight: 200;
  font-style: italic;
}
.kiosk-button,
.button-fullscreen {
  border: 0;
  padding: 0 16px;
  min-height: 72px;
  background-color: #f1f1f1;
  color: #333;
  letter-spacing: 1px;
  text-transform: capitalize;
  border-radius: 0;
}
.kiosk-button .center-container {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.kiosk-button .kiosk-button-icon svg {
  height: 72px;
  width: 72px;
}
@media (min-width: 768px) {
  .kiosk-button .kiosk-button-icon svg {
    height: 95px;
    width: 95px;
  }
}
.button-fullscreen {
  text-transform: none;
}
.kiosk-button .center-container,
.button-fullscreen .center-container {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.kiosk-button:hover,
.kiosk-button:active {
  background-color: #dadada;
}
.horizontal-button-container {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  height: 154px;
}
.horizontal-button-container .kiosk-button {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 100%;
}
.horizontal-button-container .kiosk-button.with-icon .kiosk-button-text {
  margin-top: 10px;
}
.button-fullscreen .horizontal-button-container {
  display: none;
}
.kiosk-button.wide {
  padding: 0 48px;
}
.kiosk-button.wide .center-container {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.kiosk-button.wide .kiosk-button-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: right;
  font-size: 24px;
  margin-left: 48px;
}
@media (min-width: 768px) {
  .kiosk-button.wide .kiosk-button-text {
    font-size: 32px;
  }
}
.button-subtext {
  font-size: 12px;
  text-transform: none;
}
.kiosk-break,
.kiosk-break-list,
.kiosk-end-break {
  background-color: #F7931E;
  color: #fff;
}
.kiosk-button.kiosk-break:hover,
.kiosk-button.kiosk-break-list:hover,
.kiosk-button.kiosk-end-break:hover,
.kiosk-button.kiosk-break:active,
.kiosk-button.kiosk-break-list:active,
.kiosk-button.kiosk-end-break:active {
  background: #CC6f31;
}
.kiosk-clock-in,
.kiosk-shortcut,
.kiosk-select-job,
.kiosk-select,
.kiosk-switch-list,
.kiosk-switch {
  background-color: #46A657;
  color: #fff;
}
.kiosk-button.kiosk-clock-in:hover,
.kiosk-button.kiosk-shortcut:hover,
.kiosk-button.kiosk-select-job:hover,
.kiosk-button.kiosk-select:hover,
.kiosk-button.kiosk-switch-list:hover,
.kiosk-button.kiosk-switch:hover,
.kiosk-button.kiosk-clock-in:active,
.kiosk-button.kiosk-shortcut:active,
.kiosk-button.kiosk-select-job:active,
.kiosk-button.kiosk-select:active,
.kiosk-button.kiosk-switch-list:active,
.kiosk-button.kiosk-switch:active,
.kiosk-button.kiosk-clock-in:focus,
.kiosk-button.kiosk-shortcut:focus,
.kiosk-button.kiosk-select-job:focus,
.kiosk-button.kiosk-select:focus,
.kiosk-button.kiosk-switch-list:focus,
.kiosk-button.kiosk-switch:focus {
  background-color: #3D914C;
}
.kiosk-button.kiosk-clock-in:hover[disabled],
.kiosk-button.kiosk-shortcut:hover[disabled],
.kiosk-button.kiosk-select-job:hover[disabled],
.kiosk-button.kiosk-select:hover[disabled],
.kiosk-button.kiosk-switch-list:hover[disabled],
.kiosk-button.kiosk-switch:hover[disabled],
.kiosk-button.kiosk-clock-in:active[disabled],
.kiosk-button.kiosk-shortcut:active[disabled],
.kiosk-button.kiosk-select-job:active[disabled],
.kiosk-button.kiosk-select:active[disabled],
.kiosk-button.kiosk-switch-list:active[disabled],
.kiosk-button.kiosk-switch:active[disabled],
.kiosk-button.kiosk-clock-in:focus[disabled],
.kiosk-button.kiosk-shortcut:focus[disabled],
.kiosk-button.kiosk-select-job:focus[disabled],
.kiosk-button.kiosk-select:focus[disabled],
.kiosk-button.kiosk-switch-list:focus[disabled],
.kiosk-button.kiosk-switch:focus[disabled] {
  background-color: #46A657;
}
.kiosk-clock-out {
  background-color: #DF1F26;
  color: #fff;
}
.kiosk-button.kiosk-clock-out:hover,
.kiosk-button.kiosk-clock-out:active {
  background: #d5151c;
}
.kiosk-action,
.kiosk-sign-out {
  background-color: #3178C6;
  color: #fff;
}
.kiosk-button.kiosk-action:hover,
.kiosk-button.kiosk-sign-out:hover,
.kiosk-button.kiosk-action:active,
.kiosk-button.kiosk-sign-out:active {
  background-color: #276ebc;
}
.kiosk-sign-out {
  -ms-flex-item-align: end;
      align-self: flex-end;
  width: 100%;
}
.button-count-down {
  font-size: 12px;
  padding: 2px 4px;
  border-radius: 9px;
  background-color: #fff;
  display: inline-block;
  margin-left: 1em;
  color: #3178C6;
}
.button-count-down:hover,
.button-count-down:active {
  color: #276ebc;
}
.kiosk-modal-overlay {
  z-index: 50;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(32, 32, 32, 0.45);
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.kiosk-modal-window {
  background-color: #fff;
  border-radius: 2px;
  position: relative;
  height: 268px;
  width: 384px;
  margin: 0 auto;
  -webkit-box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.22), 0 24px 24px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.22), 0 24px 24px 0 rgba(0, 0, 0, 0.3);
  text-align: center;
  color: #444;
  overflow: hidden;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.kiosk-modal-window:focus {
  outline: none;
}
.kiosk-modal-window button:not(:disabled):focus {
  text-decoration: underline;
  outline: none;
}
.kiosk-modal-body {
  position: relative;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  padding-bottom: 72px;
}
.kiosk-modal-body .horizontal-button-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 72px;
}
.kiosk-modal-window.no-buttons .kiosk-modal-body {
  padding-bottom: 0;
}
.kiosk-modal-content {
  padding: 16px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.modal-heading {
  font-size: 16px;
  font-weight: 800;
  margin: 1em 0 0.5em;
}
.button-fullscreen {
  position: fixed !important;
  z-index: 100;
  cursor: default;
}
.button-fullscreen .modal-heading {
  display: block;
  font-size: 64px;
  line-height: 1;
  font-weight: 600;
  margin: 0 auto 47px;
  width: 100%;
}
.button-fullscreen .modal-details {
  display: inline;
  width: 100%;
}
.button-fullscreen .kiosk-modal-content {
  width: 100%;
  margin: 0 auto;
  font-size: 36px;
}
.button-fullscreen .kiosk-modal-window {
  position: static;
  width: inherit;
  height: inherit;
  left: inherit;
  top: inherit;
  margin: 0;
  text-align: center;
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: transparent;
  color: #fff;
  /* Accounts for the absolutely positioned non-child .kiosk-stay-logged-in button */
  padding-bottom: 150px;
}
.button-fullscreen .kiosk-modal-body {
  padding-bottom: 0;
}
.check-mark,
.button-fullscreen .modal-check-mark {
  width: 120px;
  height: 120px;
  margin: 0 auto 32px;
  display: block;
}
.check-mark-circle {
  fill: #fff;
}
.check-mark-check {
  fill: none;
}
.kiosk-button.transparent-button {
  background: transparent;
  border: 3px solid #fff;
  font-size: 24px;
  border-radius: 2px;
  color: #fff;
}
#go_back {
  position: fixed;
  bottom: 50px;
  left: 50%;
  z-index: 101;
  cursor: pointer;
}
#go_back:hover {
  background-color: rgba(0, 0, 0, 0.2);
}
.inactivity-modal .check-mark {
  display: none;
}
.error-icon {
  width: 100px;
  height: 100px;
  fill: #DF1F26;
}
.kiosk-modal-overlay.submit-time-success .check-mark-check {
  fill: #fff;
}
#employee_panel .list-item {
  border-bottom: 0;
  padding-left: 70px;
}
#employee_panel .list-text {
  border-bottom: 1px solid #dadada;
  padding-left: 4px;
  height: 72px;
}
#employee_panel .selected .list-text {
  border-color: #3178C6;
}
#employee_panel .ts-avatar {
  left: 4px;
  top: 8px;
}
#employee_panel .ts-avatar-label {
  max-width: 32px;
  max-height: 32px;
  overflow: hidden;
}
#employee_panel .ts-avatar-status {
  width: 14px;
  height: 14px;
  margin: -6px;
}
/* Welcome message */
#employee_panel .welcome-message-container {
  max-width: 270px;
  -ms-flex-item-align: center;
      align-self: center;
  font-size: 20px;
  text-align: center;
  font-weight: 300;
  color: rgba(51, 51, 51, 0.87);
  padding: 0 0 13px 0;
  height: 158px;
  overflow: hidden;
  -webkit-transition: height 167ms ease;
  -o-transition: height 167ms ease;
  transition: height 167ms ease;
}
#employee_panel .welcome-message-container h2 {
  color: #3178C6;
  font-size: 24px;
  margin: 47px 0 11px;
  font-weight: 500;
}
#employee_panel .welcome-message-container.search-focused {
  height: 0;
}
#employee_panel .ptr-container {
  height: 0;
  overflow: hidden;
}
#employee_panel .ptr-messaging {
  display: table;
  width: 100%;
  height: 100%;
}
#employee_panel .spinner {
  display: none;
  height: 20px;
  width: 20px;
}
#employee_panel .ptr-container.refreshing {
  min-height: 72px;
}
#employee_panel .refreshing .ptr-text {
  display: none;
}
#employee_panel .refreshing .spinner {
  display: inline-block;
}
#employee_panel .ptr-items {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  font-size: 16px;
  color: #999;
  background-color: #efefef;
  -webkit-box-shadow: inset 0 -5px 15px #ccc;
          box-shadow: inset 0 -5px 15px #ccc;
}
.panel.kiosk-logged-in {
  background-color: #f1f1f1;
}
.sign-out-container.horizontal-button-container {
  position: absolute;
  bottom: 16px;
  left: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(100% - 20px);
  height: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media (min-width: 900px) {
  .sign-out-container.horizontal-button-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.kiosk-sign-out {
  background: url(https://buildassets.tsheets.com/tsheets-frontend-hashed-files/2aaec7db3f53cbd13aac3a6b078f6b16.png) 15px center no-repeat #3178C6;
  padding-left: 45px;
  border-radius: 2px;
  margin-top: 8px;
}
@media (min-width: 900px) {
  .kiosk-sign-out {
    white-space: nowrap;
    max-width: 210px;
    margin-top: 0;
    margin-right: 8px;
  }
}
.employee-login-details {
  background-color: #999;
}
.employee-login-details .ts-avatar {
  top: 32px;
  left: 50%;
  margin: 0 -36px;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
.employee-login-details .ts-avatar-status {
  width: 16px;
  height: 16px;
  margin: -13px;
}
.employee-login-details .employee-name {
  display: block;
  text-align: center;
  color: #fff;
  padding-top: 22px;
}
@media (min-width: 900px) {
  .employee-login-details .employee-name {
    padding-top: 41px;
  }
}
.employee-login-details .emp-name-container {
  line-height: 27px;
  margin: 17px 0 11px;
}
@media (min-width: 768px) {
  .employee-login-details .emp-name-container {
    margin: 17px 0 11px;
  }
}
.stats-wrapper {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 16px 16px 0;
  background-color: #F1F1F1;
}
@media (min-width: 900px) {
  .stats-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.stats-box {
  margin: 0 auto 16px;
  position: relative;
  font-size: 30px;
  padding: 6px;
  color: #333;
  text-align: center;
  -webkit-transition: font-size 167ms ease;
  -o-transition: font-size 167ms ease;
  transition: font-size 167ms ease;
  white-space: nowrap;
  width: 168px;
}
.stats-box:last-child {
  margin-bottom: 0;
}
@media (min-width: 900px) {
  .stats-box {
    margin: 0 16px 0 0;
    padding: 12px 16px;
    width: inherit;
  }
  .stats-box:last-child {
    margin-right: 0;
  }
}
@media (min-width: 1024px) {
  .stats-box {
    font-size: 32px;
  }
}
.current-ts-box {
  background-color: #fff;
  border-top: 4px solid #46A657;
  border-radius: 2px;
  font-size: 34px;
}
@media (min-width: 900px) {
  .current-ts-box {
    font-size: 44px;
    width: 216px;
  }
}
@media (min-width: 1024px) {
  .current-ts-box {
    font-size: 48px;
    width: 232px;
  }
}
@media (min-width: 900px) {
  .current-ts-box .stats-title {
    font-size: 14px;
  }
}
@media (min-width: 1024px) {
  .current-ts-box .stats-title {
    font-size: 16px;
  }
}
.stats-title {
  text-align: left;
  text-transform: uppercase;
  font-size: 12px;
  color: #666;
  font-weight: normal;
  display: block;
}
@media (min-width: 1024px) {
  .stats-title {
    font-size: 14px;
  }
}
.stats-units {
  font-size: 0.67em;
  color: #666;
}
#jobcode_list .list-item,
#breaks_list .list-item {
  padding-right: 150px;
}
#jobcode_list .list-text,
#breaks_list .list-text {
  padding-right: 4px;
}
#breaks_list .list-text {
  position: relative;
}
#jobcode_list .list-item .kiosk-button,
#breaks_list .list-item .kiosk-button {
  width: 150px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}
/* The breaks button on the jobcode_list has a fixed height, and should stretch full width. 
   We can't use the .full-width class though, because that messes up when the button goes full-screen. */
#jobcode_list .kiosk-button.kiosk-break,
#jobcode_list .kiosk-button.kiosk-break-list {
  height: 120px;
  margin-left: -16px;
  margin-right: -16px;
}
#jobcode_list .stats-box.center-container {
  line-height: 1;
  font-size: 20px;
  text-align: center;
  padding: 0;
  display: block;
  position: relative;
  text-transform: none;
}
#jobcode_list .list-item.jc-parent {
  padding-right: 7%;
  background: url(https://buildassets.tsheets.com/tsheets-frontend-hashed-files/92a2c98dc66b4ea209df1786cb5c3f94.png) 98% center no-repeat;
}
#jobcode_list .list-item.jc-parent.selected {
  background-color: #3178C6;
  border-bottom: 1px solid #3178C6;
  color: #fff;
}
#jobcode_list .list-text.favorite {
  background: url(https://buildassets.tsheets.com/tsheets-frontend-hashed-files/5229d626a2d37d8995f2b79f96e059fe.png) 4px center no-repeat;
  padding-left: 32px;
}
#jobcode_list .selected .list-text.favorite {
  background: url(https://buildassets.tsheets.com/tsheets-frontend-hashed-files/adc86f00a172fe5f901542958cfaba1e.png) 4px center no-repeat;
}
#jobcode_list_jc_outer_wrapper {
  width: 100%;
  /* So the loading overlay can show up */
  min-height: 72px;
  overflow-x: hidden;
  overflow-y: auto;
  -ms-flex: 1;
  -webkit-box-flex: 1;
          flex: 1;
}
.jc-page {
  position: relative;
}
#breaks_list .list-item-details,
#breaks_list .break-title {
  width: 100%;
  padding-right: 80px;
}
#breaks_list .break-type {
  position: absolute;
  right: 10%;
  top: 50%;
  margin: -16px 0;
  text-align: center;
  height: 32px;
  font-weight: 100;
  border-radius: 2px;
  border: 1px solid #F7931E;
  color: #F7931E;
  line-height: 30px;
  -webkit-transition: all 167ms ease;
  -o-transition: all 167ms ease;
  transition: all 167ms ease;
}
#breaks_list .paid-break {
  background-color: #F7931E;
  color: #fff;
}
#breaks_list .paid-break:before {
  content: "Paid";
}
#breaks_list .unpaid-break:before {
  content: "Unpaid";
}
#breaks_list .pagado-break {
  background-color: #F7931E;
  color: #fff;
}
#breaks_list .pagado-break:before {
  content: "Pagado";
}
#breaks_list .sin.pagar-break:before {
  content: "Sin pagar";
}
/* Don't display the breaks icon in the #breaks_list. */
#breaks_list .kiosk-button.kiosk-break .kiosk-button-icon {
  display: none;
}
.header-item .jc-path,
.ts-select-box.select-box-for-jobcodes {
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  position: relative;
}
.ts-select-box.select-box-for-jobcodes {
  margin-bottom: 16px;
  cursor: pointer;
  text-align: left;
}
.ts-select-box.select-box-for-jobcodes:after {
  content: "\203A";
  position: absolute;
  right: 16px;
  top: 50%;
  margin: -11px 0;
  border-width: 4px;
  line-height: 1;
}
.action-panel .kiosk-button {
  -ms-flex: 1;
  -webkit-box-flex: 1;
          flex: 1;
  font-size: 24px;
}
@media (min-width: 768px) {
  .action-panel .kiosk-button {
    font-size: 32px;
  }
}
.action-panel .kiosk-button.kiosk-clock-in {
  -webkit-box-flex: 4;
      -ms-flex: 4;
          flex: 4;
  border-bottom: 4px solid #fff;
  font-size: 32px;
}
.action-panel .kiosk-button.kiosk-clock-in:last-child {
  border-bottom: none;
}
.action-panel .kiosk-button.kiosk-clock-in .kiosk-button-icon svg {
  height: 132px;
  width: 132px;
}
.kiosk-notes-container {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 16px 0 0;
  position: relative;
}
.kiosk-back.cancel-back {
  text-indent: -200px;
  background-image: none;
}
.kiosk-back.cancel-back:after {
  content: "Cancel";
  margin-left: 125px;
}
.jc-container.clocked-in-box {
  -ms-flex: 1;
  -webkit-box-flex: 1;
          flex: 1;
  overflow: auto;
  padding-bottom: 16px;
  position: relative;
}
.clocked-in-shadow {
  background: transparent;
  background: -o-linear-gradient(-180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#FFFFFF));
  background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
  background: linear-gradient(-180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
  height: 72px;
  margin: -72px -16px 0 -16px;
  -webkit-transition: all 167ms ease;
  -o-transition: all 167ms ease;
  transition: all 167ms ease;
  z-index: 2;
}
.clocked-in-shadow.off {
  background: transparent;
  height: 0;
  margin: 0;
}
.kiosk-notes-save-button {
  margin-top: 16px;
  width: 144px;
  height: 72px;
  -ms-flex-item-align: end;
      align-self: flex-end;
}
.kiosk-save-message {
  font-weight: 500;
  font-size: 14px;
  text-align: right;
  position: absolute;
  top: 0;
  right: 0;
}
.kiosk-notes {
  line-height: 1.45;
  resize: none;
  height: 140px;
  padding: 4px 16px;
}
#manual_break_container {
  text-align: center;
}
#manual_break_container .break-details {
  font-size: 24px;
}
.kiosk-on-break .kiosk-button,
.kiosk-on-break .kiosk-button:hover,
.kiosk-on-break .kiosk-button:active {
  background-color: #fff;
}
.kiosk-on-break .kiosk-button.kiosk-display {
  margin-top: 50%;
}
.kiosk-on-break .kiosk-button.kiosk-end-break {
  background-color: #F7931E;
}
.break-duration-timer {
  font-size: 72px;
  font-weight: 600;
}
.break-remaining {
  font-size: 16px;
  font-weight: 200;
}
#on_clock_panel .spinner-container {
  display: block;
  height: 60px;
  margin: 16px 0 16px -100px;
  left: 50%;
  position: relative;
  width: 60px;
}
#on_clock_panel .spinner-container:after {
  content: "Loading Custom Fields";
  font-size: 14px;
  left: 120%;
  margin: -7px 0;
  position: absolute;
  top: 50%;
  width: 145px;
}
#on_clock_panel .horizontal-button-container .kiosk-button {
  border-right: 4px solid #fff;
}
#on_clock_panel .horizontal-button-container .kiosk-button:first-child {
  border-right: none;
}
.no-auth-header {
  height: 216px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 48px;
  background: #d1d1d1;
}
.no-auth-header-title {
  font-size: 48px;
  margin-left: 25px;
}
.no-auth-header-logo {
  width: 100px;
  height: 100px;
}
.no-auth-content {
  max-width: 1024px;
  margin: 0 auto;
  text-align: center;
}
.no-auth-title {
  margin: 50px auto 20px;
  max-width: 350px;
}
.no-auth-descrtiption {
  max-width: 350px;
  margin: 0 auto 32px;
}
.ts-text-box.auth-code {
  text-align: center;
  max-width: 155px;
  color: #333;
  margin: auto;
}
.auth-error-msg {
  margin: 3px auto 32px;
  color: #DF1F26;
  display: none;
}
.kiosk-button.auth-button {
  margin: 32px auto 16px;
  display: block;
}
.approval-success .check-mark-circle {
  fill: #46A657;
}
.previous-auth {
  position: fixed;
  bottom: 0;
  right: 0;
  font-size: 10px;
  font-weight: 100;
}
.kiosk-toolbar {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-transition: height 333ms ease;
  -o-transition: height 333ms ease;
  transition: height 333ms ease;
  padding: 0 16px;
  height: 0;
  overflow: hidden;
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 600;
}
.kiosk-toolbar-title {
  -ms-flex: 1;
  -webkit-box-flex: 1;
          flex: 1;
  text-align: center;
}
.kiosk-toolbar-button-right {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.kiosk-toolbar-button-left {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}
.kiosk-toolbar .kiosk-button,
.kiosk-toolbar .kiosk-back {
  background-color: rgba(255, 255, 255, 0.15);
  border: 2px solid #666;
  border-radius: 2px;
}
.kiosk-toolbar .kiosk-button.no-border {
  border: 0;
  background-color: transparent;
}
.open .kiosk-toolbar.ts-support-bar {
  height: 33px;
  color: #fff;
  background-color: #3d914c;
  font-size: 14px;
  font-weight: normal;
  text-transform: none;
}
.ts-support-bar .kiosk-button {
  color: #fff;
  border-color: #fff;
  max-height: calc(100% - 8px);
  min-height: 0;
  font-size: 14px;
}
.open .kiosk-toolbar.top-toolbar {
  background-color: #fedf88;
  height: 98px;
}
.close-reset {
  fill: #666;
}
.panel.reset-left {
  background-color: #f1f1f1;
}
.reset-left .title-text {
  display: block;
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  padding: 0 20%;
}
.reset-right .kiosk-button {
  margin: 28px auto 0;
  border-radius: 2px;
  width: 100%;
}
.reset-right .title-text {
  text-align: center;
  margin: 0;
}
.kiosk-toolbar .kiosk-back {
  min-height: 0;
  width: 120px;
  position: relative;
  font-weight: normal;
  text-transform: capitalize;
  padding-right: 16px;
  font-size: 20px;
  line-height: 65px;
}
.reset-right .center-container,
.reset-left .center-container {
  width: 70%;
  margin: 0 auto;
}
.reset-right .kiosk-submit-reset-auth {
  margin-right: 0;
  white-space: nowrap;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1em 1.5em;
}
.reset-right .kiosk-keypad-submit-button-container {
  width: 264px;
  position: relative;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.reset-right .kiosk-new-pin-submit {
  width: 144px;
  width: initial;
  margin-right: 0;
  white-space: nowrap;
  padding: 1em 1.5em;
}
.kiosk-check-phone {
  width: 223px;
  height: 327px;
  display: block;
  margin: 0 auto 24px;
}
.reset-left .body-text {
  margin: 0 auto 16px;
  text-align: center;
}
.kiosk-phone-number {
  white-space: nowrap;
}
.kiosk-button.kiosk-didnt-receive-code {
  border: 2px solid #666;
  display: block;
  margin: 0 auto;
  border-radius: 2px;
}
.kiosk-modal-overlay.pin-reset-success {
  top: 98px;
}
.kiosk-modal-overlay.pin-reset-success .kiosk-modal-body {
  padding-bottom: 0;
}
.kiosk-modal-overlay.pin-reset-success .kiosk-modal-window {
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pin-reset-success .check-mark-circle {
  fill: #3178C6;
}
.pin-reset-success .modal-heading {
  font-size: 40px;
}
.spinner-container {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 50;
  display: none;
}
.spinner {
  stroke: #4285F4;
  height: 100%;
  width: 100%;
}
.ts-network-loading {
  width: 90px;
  height: 90px;
  margin: 25px auto;
  position: relative;
}
.ts-network-loading .spinner-container {
  display: block;
}
.ts-connection-lost .modal-heading {
  font-size: 24px;
  text-transform: uppercase;
}
.kiosk-clock-panel {
  background-color: #666;
  color: #eee;
}
.kiosk-authorized-name {
  margin: 8px 0 16px 0;
  font-size: 14px;
  font-style: italic;
}
.kiosk-logged-in .kiosk-authorized-name {
  display: none;
}
.kiosk-logged-in .kiosk-panel-footer-container {
  display: none;
}
.kiosk-company-logo {
  position: absolute;
  bottom: 16px;
  left: 16px;
  width: 138px;
  height: 43px;
  background-image: url(https://buildassets.tsheets.com/tsheets-frontend-hashed-files/0fc142451efdff76f3957fbaef8c1753.png);
  background-size: 95%;
  background-repeat: no-repeat;
}
.kiosk-product-logo {
  height: 43px;
  margin-top: 20px;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
@media (min-width: 900px) {
  .kiosk-product-logo {
    -ms-flex-item-align: end;
        align-self: end;
    margin-top: 0px;
  }
}
.kiosk-panel-footer-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.kiosk-panel-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  margin-bottom: 10px;
}
@media (min-width: 900px) {
  .kiosk-panel-footer {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.clock-wrapper {
  top: 50vh;
  position: relative;
  margin: -100px 0 0 10%;
  color: #eee;
  font-size: 40px;
  line-height: 1;
}
@media (min-width: 768px) {
  .clock-wrapper {
    font-size: 50px;
  }
}
@media (min-width: 900px) {
  .clock-wrapper {
    font-size: 72px;
  }
}
.kiosk-date {
  font-size: 0.36em;
}
.clock-seconds {
  display: none;
}
.clock-box .stats-units {
  color: #fff;
}
.small-clock.panel.v-centered.kiosk-logged-in {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.small-clock .clock-wrapper {
  margin-top: 0;
  top: 0;
  background-color: #666;
  color: #fff;
  font-size: 20px;
  padding-top: 10px;
}
@media (min-width: 900px) {
  .small-clock .clock-wrapper {
    padding-top: 0;
  }
}
.small-clock .kiosk-date,
.small-clock .clock-box {
  float: left;
  width: 100%;
  text-align: center;
}
@media (min-width: 900px) {
  .small-clock .kiosk-date,
  .small-clock .clock-box {
    width: 50%;
    line-height: 64px !important;
  }
}
.small-clock .kiosk-date {
  font-size: 12px;
  line-height: 16px;
}
@media (min-width: 900px) {
  .small-clock .kiosk-date {
    font-size: 20px;
    text-align: left;
  }
}
.small-clock .clock-box {
  font-size: 20px;
  line-height: 32px;
}
@media (min-width: 900px) {
  .small-clock .clock-box {
    text-align: right;
  }
}
.kiosk-keypad {
  text-align: center;
}
.kiosk-keypad .avatar {
  position: relative;
  width: 64px;
  height: 64px;
  margin: 16px auto;
  left: 0;
  top: 0;
  -webkit-transition: all 167ms ease;
  -o-transition: all 167ms ease;
  transition: all 167ms ease;
}
.kiosk-keypad .employee-name {
  text-align: center;
  font-size: 25px;
  font-weight: 600;
  color: #3178C6;
  overflow: visible;
}
.keypad-feedback {
  text-align: center;
  font-size: 24px;
}
.keypad-feedback.error,
.kiosk-save-message.error {
  color: #DF1F26;
}
.ts-keypad {
  position: relative;
  margin: 0 auto;
  display: inline-block;
  -webkit-transition: all 167ms ease;
  -o-transition: all 167ms ease;
  transition: all 167ms ease;
  will-change: transform;
}
.numeric-keypad {
  width: 264px;
  margin: 0 auto;
  -webkit-transition: all 167ms ease;
  -o-transition: all 167ms ease;
  transition: all 167ms ease;
}
.numeric-keypad:after {
  content: "";
  display: block;
  height: 0;
  overflow: hidden;
  clear: both;
}
.key {
  border: 1px solid #ccc;
  color: #777;
  background-color: white;
  float: left;
  text-align: center;
  width: 72px;
  height: 72px;
  margin: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 167ms ease;
  -o-transition: all 167ms ease;
  transition: all 167ms ease;
}
.key:nth-child(3n + 1) {
  clear: both;
}
.key-label {
  text-align: center;
  width: 100%;
  font-size: 25px;
}
.key.function {
  border: 0;
}
.key.function .key-label {
  font-size: 18px;
  text-transform: capitalize;
  -webkit-transition: all 167ms ease;
  -o-transition: all 167ms ease;
  transition: all 167ms ease;
}
.key.number {
  border-radius: 50%;
}
.key.number:focus {
  outline: 0;
  /* Outline of 0 so that a round border can act as the focus ring */
  border: 3px solid #79b2f6;
}
.key.pressed {
  background-color: #ccc;
  color: #fff;
  font-weight: bold;
}
.dot-feedback {
  width: 208px;
  margin: 30px auto 10px;
  -webkit-transition: all 167ms ease;
  -o-transition: all 167ms ease;
  transition: all 167ms ease;
}
.dot-feedback:after {
  content: "";
  clear: both;
  display: block;
  height: 0;
}
.dot-feedback.shake {
  -webkit-animation: shake 0.85s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
          animation: shake 0.85s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
@-webkit-keyframes shake {
  10%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
            transform: translate3d(-10px, 0, 0);
  }
  20%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
            transform: translate3d(10px, 0, 0);
  }
  30%,
  50%,
  70% {
    -webkit-transform: translate3d(-5px, 0, 0);
            transform: translate3d(-5px, 0, 0);
  }
  40%,
  60% {
    -webkit-transform: translate3d(5px, 0, 0);
            transform: translate3d(5px, 0, 0);
  }
}
@keyframes shake {
  10%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
            transform: translate3d(-10px, 0, 0);
  }
  20%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
            transform: translate3d(10px, 0, 0);
  }
  30%,
  50%,
  70% {
    -webkit-transform: translate3d(-5px, 0, 0);
            transform: translate3d(-5px, 0, 0);
  }
  40%,
  60% {
    -webkit-transform: translate3d(5px, 0, 0);
            transform: translate3d(5px, 0, 0);
  }
}
.dot {
  margin: 0 12px;
  border-bottom: 1px solid #ccc;
  width: 28px;
  height: 40px;
  display: block;
  line-height: 40px;
  float: left;
}
.dot.filled:before {
  content: "\2022";
  font-size: 50px;
  color: #ccc;
}
.delete-key {
  color: #ccc;
  margin-left: 10px;
  display: none;
}
.keypad-delete-key {
  overflow: hidden;
  text-indent: -200px;
  background: url(https://buildassets.tsheets.com/tsheets-frontend-hashed-files/d97dfe993e65e3358ae4f3f71fd0f34e.png) center no-repeat;
  background-size: contain;
}
/* Intercept Modal Dialog */
.submit-time-intercept-modal .kiosk-modal-window {
  min-width: 272px;
  min-height: 350px;
}
.submit-time-intercept-modal .kiosk-modal-content {
  padding: 24px 37px 16px;
}
.submit-time-intercept-modal .submit-time-icon {
  width: 56px;
  height: 56px;
}
.submit-time-intercept-modal .modal-heading {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 24px;
  color: #D0021B;
  line-height: 24px;
  margin-top: 22px;
}
.submit-time-intercept-modal .modal-details {
  font-size: 16px;
  color: rgba(51, 51, 51, 0.87);
  line-height: 20px;
}
.submit-time-intercept-modal .kiosk-button {
  font-size: 16px;
  color: #FFFFFF;
}
.submit-time-intercept-modal .kiosk-button.kiosk-submit-time {
  background-color: #3178C6;
}
/* Main Submit Time Button */
#kiosk_submit_time {
  display: none;
  background-color: #d5d5d5;
  border-radius: 2px;
  height: 72px;
}
@media (min-width: 1024px) {
  #kiosk_submit_time {
    padding: 0 24px;
  }
}
#kiosk_submit_time .submit-time-icon {
  display: none;
}
@media (min-width: 900px) {
  #kiosk_submit_time .submit-time-icon {
    display: block;
    width: 40px;
    height: 40px;
    margin-right: 12px;
  }
}
#kiosk_submit_time .submit-button-inner-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#kiosk_submit_time .submit-time-hours-due-block {
  font-size: 10px;
  -ms-flex: 1;
  -webkit-box-flex: 1;
          flex: 1;
}
@media (min-width: 900px) {
  #kiosk_submit_time .submit-time-hours-due-block {
    text-align: right;
  }
}
#kiosk_submit_time .submit-time-hours-due-message {
  text-transform: uppercase;
  font-weight: normal;
}
#kiosk_submit_time .submit-time-text {
  font-size: 18px;
  font-weight: 500;
}
@media (min-width: 768px) {
  #kiosk_submit_time .submit-time-hours-due-message {
    font-size: 12px;
  }
  #kiosk_submit_time .submit-time-text {
    font-size: 20px;
  }
}
@media (max-height: 500px) {
  #kiosk_submit_time {
    display: none !important;
  }
}
.panel.review-time-panel {
  padding-top: 16px;
  padding-bottom: 16px;
  background-color: #f1f1f1;
}
.review-time-panel .list-container {
  background-color: #fff;
}
.review-time-panel .list-item {
  padding-left: 70px;
}
.review-time-panel .check-mark,
.review-time-open-check {
  width: 40px;
  height: 40px;
  position: absolute;
  left: 14px;
  top: 16px;
}
.review-time-open-check {
  border: 1px solid #999;
  border-radius: 40px;
}
.review-time-panel .check-mark-circle {
  fill: #DADADA;
}
.review-time-panel .review-time-open-check .check-mark {
  left: -1px;
  top: -1px;
  display: none;
}
.review-time-panel .review-time-open-check .check-mark-circle {
  fill: #3178C6;
}
.review-time-panel .list-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.review-time-panel .list-text > div {
  min-width: 100%;
  padding-right: 16px;
}
.review-time-ts-detail,
.review-time-time {
  float: right;
}
.review-time-date,
.review-time-day {
  float: left;
}
.review-time-on-clock {
  color: #46A657;
}
/* Selected items */
.review-time-panel .list-item.selected {
  background-color: #fff;
  color: #333;
  border-color: #dadada;
}
.review-time-panel .check-mark-check {
  fill: #fff;
}
.review-time-panel .selected .review-time-open-check .check-mark {
  display: block;
}
.submit-time-main-tile {
  margin: 64px 16px 24px;
  -webkit-box-shadow: 0 0 2px #ccc;
          box-shadow: 0 0 2px #ccc;
  border-radius: 2px;
  overflow: hidden;
  text-align: center;
  padding: 24px 16px 16px;
  position: relative;
}
.submit-time-main-tile:before {
  content: "";
  display: block;
  height: 8px;
  width: calc(100% + 32px);
  background-color: #666;
  position: absolute;
  top: 0;
  left: 0;
}
.submit-date-range {
  font-size: 30px;
  margin: 32px auto 0;
}
.submit-total {
  font-size: 48px;
  font-weight: 200;
  margin: 8px auto 32px;
}
.submit-time-main-tile.submit-active-timesheet:before {
  background-color: #46A657;
}
.submit-active-timesheet .submit-total,
.submit-active-timesheet .stats-units {
  color: #46A657;
}
.submit-time-panel .kiosk-button {
  -webkit-box-flex: 0;
      -ms-flex: 0;
          flex: 0;
  -ms-flex-item-align: end;
      align-self: flex-end;
  border-radius: 2px;
  font-weight: 200;
  min-width: 150px;
}
.submit-done-working-msg {
  background: #f1f1f1;
  padding: 16px 16px 16px 88px;
  text-align: left;
  font-size: 16px;
  position: relative;
}
.done-working-title {
  font-weight: 600;
  margin-bottom: 8px;
}
.svg-warning-icon {
  width: 53px;
  height: 46px;
  position: absolute;
  left: 18px;
  top: 18px;
}
.kiosk-button.kiosk-submit-time-final,
.kiosk-button.kiosk-submit-time-and-clockout-final {
  margin-right: 16px;
}
.panel.submit-time-panel {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.submit-time-panel .submit-legal {
  -webkit-box-flex: 0;
      -ms-flex: 0;
          flex: 0;
  -ms-flex-item-align: end;
      align-self: flex-end;
  font-weight: 200;
  min-width: 150px;
  max-width: 250px;
  text-align: right;
  font-size: 14px;
  font-style: italic;
  margin: 8px 16px 0 0;
}
.kiosk-modal-overlay.submit-time-success {
  top: 98px;
}
.kiosk-modal-overlay.submit-time-success .kiosk-modal-window {
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.submit-time-success .check-mark-circle {
  fill: #3178C6;
}
.submit-time-success .modal-heading {
  font-size: 40px;
  margin: 0 auto 40px;
  max-width: 500px;
}
.kiosk-modal-overlay.submit-time-success .kiosk-modal-window .horizontal-button-container {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.submit-time-success .submitted-time-done-button {
  background-color: #3178C6;
  color: #fff;
  width: 143px;
}
#submit-time-hours-due-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
#submit-time-hours-due-container .submit-time-hours-due-message-container {
  -ms-flex-item-align: center;
      align-self: center;
}
@media (min-width: 1024px) {
  #submit-time-hours-due-container .submit-time-hours-due-message-container {
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
}
#submit-time-hours-due-container .submit-time-hours-due-when {
  font-size: 12px;
  margin-left: 10px;
}
#submit-time-hours-due-container .submit-time-hours-due-when.highlight-due-when {
  color: #DF1F26;
}
@media (min-width: 768px) {
  #submit-time-hours-due-container .submit-time-hours-due-when {
    font-size: 14px;
  }
}
.letter-scroll {
  position: absolute;
  right: -16px;
  top: 0;
}
.letter-scroll-list {
  height: 80vh;
  width: 14px;
  text-align: center;
  min-height: 400px;
  max-height: 550px;
}
.has-letter-scroll {
  padding-right: 30px;
}
.panel.employee-panel .letter-scroll {
  top: 0;
  /* vh used here instead of % because of weirdness in IOS Safari */
  height: 100vh;
}
.has-letter-scroll .search-box {
  width: calc(100% - 16px);
}
.employee-panel .letter-scroll {
  right: 0;
  background-color: #f1f1f1;
  width: 30px;
  color: #999;
  font-size: 16px;
}
.employee-panel .letter-scroll-list {
  width: 30px;
}
.kiosk-panel-overlay {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.kiosk-panel-overlay.light {
  background-color: rgba(255, 255, 255, 0.7);
  color: #000;
}
.kiosk-panel-overlay.dark {
  background-color: rgba(0, 0, 0, 0.7);
  color: #FFF;
}
.kiosk-panel-overlay .center-content {
  width: 300px;
}
.kiosk-panel-overlay .submit-time-icon {
  height: 75px;
  width: 75px;
}
.kiosk-panel-overlay .panel-overlay-title {
  text-transform: uppercase;
}
.shortcut-panel .kiosk-button {
  padding: 0 48px;
}
.shortcut-panel .kiosk-button.kiosk-shortcut,
.shortcut-panel .kiosk-button.kiosk-select-job {
  -webkit-box-flex: 5;
      -ms-flex: 5;
          flex: 5;
  text-transform: none;
  border-bottom: 4px solid #fff;
}
.shortcut-panel .kiosk-button.kiosk-shortcut:last-child,
.shortcut-panel .kiosk-button.kiosk-select-job:last-child {
  border-bottom: none;
}
.shortcut-panel .kiosk-break,
.shortcut-panel .kiosk-break-list {
  -webkit-box-flex: 3;
      -ms-flex: 3;
          flex: 3;
}
.shortcut-panel :not(.button-fullscreen) .center-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.shortcut-panel .kiosk-button-text {
  -ms-flex: 1;
  -webkit-box-flex: 1;
          flex: 1;
  text-align: right;
  margin-left: 48px;
}
.shortcut-button-alert .kiosk-modal-window {
  height: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-height: 668px) {
  .shortcut-button-alert .kiosk-modal-window {
    width: 768px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.shortcut-button-alert .kiosk-modal-img {
  background: #F3F3F6;
  padding: 32px;
}
.shortcut-button-alert .kiosk-modal-content {
  padding: 44px;
}
.shortcut-button-alert .modal-heading {
  font-size: 24px;
  color: #333;
  margin: 0 0 0.5em;
}
.shortcut-button-alert .modal-details {
  font-size: 18px;
  color: #666;
}
/* camera capture callout */
.take-picture-alert {
  max-width: 272px;
  height: auto;
}
.take-picture-alert .camera-icon {
  width: 60px;
  height: 55px;
  margin: 8px auto -8px;
  fill: #333;
}
.take-picture-alert .modal-heading {
  font-size: 24px;
  color: #666;
}
.take-picture-alert .kiosk-action {
  font-weight: 200;
  padding: 0 65px;
  text-transform: none;
}
.take-picture-alert .modal-details {
  font-size: 16px;
}
/* camera capture callout */
.photo-tc-alert {
  height: 98vh;
  width: 98vw;
}
.photo-tc-alert .kiosk-modal-content {
  width: 100%;
  overflow: auto;
  position: relative;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-justify-content: flex-start;
}
.photo-tc-alert ul,
.photo-tc-alert p {
  text-align: left;
  font-size: 16px;
  max-width: 650px;
}
.photo-tc-alert li {
  margin-bottom: 1em;
}
.photo-tc-alert li:last-child {
  margin-bottom: 0;
}
.photo-tc-alert .consent-text {
  font-size: 24px;
  border: 1px solid #333;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 25vh;
}
.photo-tc-alert #close_x_containter {
  padding-top: 9px;
  padding-right: 9px;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  background-color: transparent;
  border: none;
}
.photo-tc-alert .consent-padding {
  padding-left: 80px;
  padding-right: 80px;
}
.photo-tc-alert .ts-icon {
  width: 24px;
  height: 24px;
}
.photo-tc-alert .kiosk-modal-body {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.photo-tc-alert .kiosk-modal-content {
  padding-top: 0px;
}
.photo-tc-alert .camera-icon {
  width: 0px;
  height: 55px;
  margin: 8px auto -8px;
  fill: #333;
}
.photo-tc-alert .modal-heading {
  font-size: 24px;
  color: #333333;
  font-weight: bold;
}
.photo-tc-alert .kiosk-action {
  font-weight: 200;
  padding: 0 65px;
  text-transform: none;
}
.photo-tc-alert .modal-details {
  font-size: 16px;
}
.photo-tc-alert .kiosk-modal-checkbox {
  height: 18px;
  width: 18px;
  background-color: white;
  position: absolute;
  padding-left: 7em;
  display: inline-block;
  -webkit-appearance: checkbox;
}
.photo-tc-alert .checkbox-container {
  font-size: 18px;
  line-height: 24px;
  text-align: left;
}
.photo-tc-alert .kiosk-modal-checkbox-label-container {
  text-align: left;
  margin-left: 77px;
  color: #666666;
}
.photo-tc-alert .kiosk-modal-tc-link {
  color: blue;
  cursor: hand;
  font-size: 18px;
  line-height: 24px;
}
.photo-tc-alert .kiosk-consent-text {
  visibility: hidden;
  overflow-y: scroll;
  max-height: 0px;
  text-align: left;
  line-height: 28px;
  font-size: 18px;
  color: #666666;
}
/* Class .camera-capture is added to the .kiosk-logged-in panel. See: kiosk_logged_in_panel.less */
.camera-capture .ts-avatar {
  display: none;
}
.camera-capture .employee-login-details .employee-name {
  padding-top: 16px;
}
@media (min-width: 768px) {
  .camera-capture .employee-login-details .employee-name {
    padding-top: 24px;
  }
}
@media (max-height: 668px) {
  .camera-capture .employee-login-details .employee-name {
    padding-top: 16px;
  }
  .camera-capture .employee-login-details .emp-name-container {
    margin: 0 0 8px;
  }
}
.video-frame-wrapper {
  position: relative;
  width: calc(100% - 20px);
  max-width: 114px;
  /* Corresponds to a 3:4 ratio with max height of 152px */
  margin: 0 auto;
}
@media (min-width: 768px) {
  .video-frame-wrapper {
    max-width: 167px;
    /* Corresponds to a 3:4 ratio with max height of 222px */
    width: calc(100% - 32px);
  }
}
@media (min-width: 900px) {
  .video-frame-wrapper {
    max-width: 203px;
    /* At a 4:3 aspect, makes for a max-height of 152px */
  }
}
@media (min-width: 1024px) {
  .video-frame-wrapper {
    max-width: 296px;
    /* At a 4:3 aspect, makes for a max-height of 222px */
  }
}
@media (max-height: 668px) {
  .video-frame-wrapper {
    max-width: 203px;
    /* At a 4:3 aspect, makes for a max-height of 152px */
  }
}
.video-frame-wrapper.has-error {
  max-width: 296px;
}
.submit-time-video-frame .video-frame-wrapper {
  width: 78px;
  max-width: 78px;
  /* Corresponds to a 3:4 ratio with max height of 104px */
}
@media (min-width: 768px) {
  .submit-time-video-frame .video-frame-wrapper {
    width: 78px;
    max-width: 78px;
    /* Corresponds to a 3:4 ratio with max height of 104px */
  }
}
@media (min-width: 900px) {
  .submit-time-video-frame .video-frame-wrapper {
    width: 100%;
    max-width: 100%;
    /* At a 4:3 aspect, makes for a max-height of 104px */
  }
}
@media (min-width: 1024px) {
  .submit-time-video-frame .video-frame-wrapper {
    width: 100%;
    max-width: 100%;
    /* At a 4:3 aspect, makes for a max-height of 104px */
  }
}
@media (max-height: 668px) {
  .submit-time-video-frame .video-frame-wrapper {
    width: 100%;
    max-width: 100%;
    /* At a 4:3 aspect, makes for a max-height of 104px */
  }
}
.submit-time-video-frame .video-frame-wrapper.has-error {
  width: 100%;
  max-width: 100%;
}
/* A tricky bit of CSS to be able to maintain aspect ratio on the div with CSS alone */
.video-frame-sizing {
  padding-bottom: 133.33%;
  width: 100%;
  position: relative;
}
.has-error .video-frame-sizing {
  display: none;
}
@media (min-width: 900px) {
  .video-frame-sizing {
    padding-bottom: 75%;
  }
}
.video-frame {
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 100%;
  /* Flip this item horizontally so that the image the user sees is a mirror image */
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  -webkit-filter: FlipH;
          filter: FlipH;
  -ms-filter: "FlipH";
}
/* Camera error messages */
.camera-error {
  padding: 16px;
  background-color: rgba(0, 0, 0, 0.33);
}
.camera-error .error-icon {
  display: none;
  fill: #fff;
  margin-bottom: 16px;
}
@media (min-width: 900px) {
  .camera-error .error-icon {
    display: inline;
    width: 50px;
    height: 50px;
  }
}
@media (min-width: 1024px) {
  .camera-error .error-icon {
    width: 75px;
    height: 75px;
  }
}
@media (max-height: 668px) {
  .camera-error .error-icon {
    display: none;
  }
}
.camera-error-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .camera-error-title {
    font-size: 24px;
  }
}
@media (max-height: 668px) {
  .camera-error-title {
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 4px;
  }
}
.camera-error-message {
  font-size: 12px;
}
.submit-time-video-frame .camera-error {
  padding: 14px 0;
  height: 104px;
  background: transparent;
}
.submit-time-video-frame .camera-error-title,
.submit-time-video-frame .camera-error-message {
  display: none;
}
.submit-time-video-frame .error-icon {
  display: block;
  margin: 0 auto;
  width: 74px;
  height: 74px;
}
/* Show the taken picture in leiu of the checkmark */
.action-complete-image {
  border-radius: 100%;
  border: 5px solid #fff;
  background-position: center;
  background-size: cover;
  width: 193px;
  height: 193px;
  position: relative;
}
.action-complete-image .check-mark {
  width: 69px;
  height: 69px;
  margin: 0;
  border-radius: 100%;
  -webkit-transform: rotate(45deg) translate(175px) rotate(-45deg);
  transform: rotate(45deg) translate(175px) rotate(-45deg);
}
.kiosk-clock-in .check-mark-check,
.kiosk-shortcut .check-mark-check {
  fill: #46A657;
}
.kiosk-break .check-mark-check,
.kiosk-end-break .check-mark-check {
  fill: #F7931E;
}
.kiosk-clock-out .check-mark-check {
  fill: #DF1F26;
}
/* Submit time photo capture */
.submit-time-video-frame {
  position: absolute;
  left: 16px;
  top: 8px;
  width: 139px;
  height: 104px;
  background: #666;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.19), 0 4px 4px rgba(0, 0, 0, 0.23);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.19), 0 4px 4px rgba(0, 0, 0, 0.23);
}
.bounding-box {
  position: absolute;
  z-index: 10;
  border: 2px solid #eee;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 0 2px #000;
          box-shadow: 0 0 0 2px #000;
}
#video-frame-no-show {
  position: absolute;
  max-width: 640px;
  left: -640px;
}
#kiosk_ui .ts-avatar-label {
  max-width: 32px;
  max-height: 32px;
  overflow: hidden;
}
.dashboard-terms-wrapper {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 16px 16px 0;
  background-color: #F1F1F1;
}
@media (min-width: 900px) {
  .dashboard-terms-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.account_controller_overlay_wrapper {
  font-family: AvenirNext forINTUIT, Avenir, Helvetica, Arial, sans-serif;
  position: fixed;
  z-index: 3;
  width: 100%;
  height: 100%;
  top: 0;
  background: #6B6C72;
  border: 1px solid #D4D7DC;
  -webkit-box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
}
.account_controller_overlay {
  background-color: #FFF;
  width: 600px;
  height: 590px;
  border-radius: 8px;
  border: 1px;
  margin-left: 40px;
  margin-top: 40px;
}
.account_controller_top {
  height: 152px;
  background: #E3E5E8;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
}
.account_controller_bottom {
  margin-top: 60px;
  padding: 20px;
}
.account_controller_text {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #393A3D;
  text-align: center;
}
.account_controller_team_image {
  position: relative;
  top: -468px;
  left: 200px;
}
.terms_controller_btn_done {
  font-family: AvenirNext forINTUIT, Avenir, Helvetica, Arial, sans-serif;
  background: #2CA01C;
  width: 100px;
  height: 36px;
  color: #FFFFFF;
  font-style: normal;
  font-size: 16px;
  line-height: 28px;
  border-color: #2CA01C;
  border-style: solid;
  border-radius: 4px;
  border-width: 1px;
  margin-top: 30px;
  margin-right: 10px;
}
/* CSS Adjustments for Virtual Keyboard when the height of the view is causing elements to obstruct user input. */
@media (max-height: 600px) {
  .no-auth-header {
    height: auto;
  }
  .no-auth-header:after {
    font-size: 40px;
  }
  .no-auth-header:before {
    width: 56px;
    height: 56px;
  }
  .no-auth-title {
    font-weight: 600;
    margin-top: 20px;
  }
  .no-auth-content {
    overflow-y: auto;
  }
  .no-auth-descrtiption {
    max-width: 100%;
  }
  .dot-feedback {
    margin: 10px auto 15px;
  }
  .kiosk-keypad .avatar {
    margin: 8px auto;
  }
  .numeric-keypad,
  .reset-right .kiosk-keypad-submit-button-container {
    width: 162px;
  }
  .key {
    width: 50px;
    height: 50px;
    margin: 2px;
  }
  .key.function .key-label {
    font-size: 14px;
  }
}
@media (max-height: 500px) {
  .panel.kiosk-clock-panel {
    padding-top: 32px;
  }
  .kiosk-company-logo {
    display: none;
  }
  .kiosk-check-phone {
    display: none;
  }
}
@media (max-width: 899px) {
  /* Dashboard */
  .employee-login-details .ts-avatar {
    position: relative;
    top: 16px;
  }
  /* Kiosk Auth Screen */
  .no-auth-header:after {
    font-size: 40px;
  }
  .no-auth-header:before {
    width: 56px;
    height: 56px;
  }
  /* Submit time */
  .review-time-date,
  .review-time-time {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  /* General */
  .panel {
    padding: 0 8px;
  }
  .header-item,
  .full-width,
  .action-panel .kiosk-button {
    width: auto !important;
    margin-left: -8px !important;
    margin-right: -8px !important;
  }
  /* Reset Flows */
  .reset-right .center-container,
  .reset-left .center-container {
    width: 100%;
    margin: 0 auto;
  }
  .button-fullscreen .modal-heading {
    font-size: 36px;
  }
  .button-fullscreen .kiosk-modal-content {
    font-size: 24px;
  }
  /* Breaks */
  #breaks_list .list-item-details,
  #breaks_list .break-title {
    padding-right: 58px;
  }
  #breaks_list .break-type {
    font-size: 14px;
    margin: -10px 0;
    height: 20px;
    line-height: 18px;
    width: 50px;
    right: 5%;
  }
}


/*# sourceMappingURL=kiosk-v1.19.4.css.map*/