/* http://meyerweb.com/eric/tools/css/reset/ 
	v2.0 | 20110126
	License: none (public domain)
	Updated: David Valle 13/06/2016
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, main, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote, q {
  quotes: none; }
  blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

html {
  box-sizing: border-box;
  overflow-x: hidden;
  height: 100%; }

*, *:before, *:after {
  box-sizing: inherit; }

.flex, .flex-center, .flex-around, .flex-between, .flex-end, .flex-start {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap; }

.flex-center {
  -webkit-justify-content: center;
  justify-content: center; }

.flex-around {
  -webkit-justify-content: space-around;
  justify-content: space-around; }

.flex-between {
  -webkit-justify-content: space-between;
  justify-content: space-between; }

.flex-end {
  -webkit-justify-content: flex-end;
  justify-content: flex-end; }

.flex-start {
  -webkit-justify-content: flex-start;
  justify-content: flex-start; }

.flex-row {
  -webkit-flex-direction: row;
  flex-direction: row; }

.flex-row-reverse {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse; }

.strong {
  font-weight: bold; }

.full-width {
  width: 100%; }

.hamburger {
  padding: 8px 6px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.2s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible; }

.hamburger-box {
  width: 34px;
  height: 24px;
  display: inline-block;
  position: relative; }

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px; }
  .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 34px;
    height: 4px;
    background-color: #aa0000;
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease; }
  .hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block; }
  .hamburger-inner::before {
    top: -10px; }
  .hamburger-inner::after {
    bottom: -10px; }

.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spin .hamburger-inner::before {
    transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in; }
  .hamburger--spin .hamburger-inner::after {
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

input#menu-toggle:checked ~ .hamburger--spin .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  input#menu-toggle:checked ~ .hamburger--spin .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out; }
  input#menu-toggle:checked ~ .hamburger--spin .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

@media only screen and (min-width: 1000px) {
  .mobile {
    display: none !important; } }

@media only screen and (max-width: 1000px) {
  .desktop {
    display: none !important; } }

.wrapper {
  position: relative;
  margin: 0 auto;
  padding-left: 20px !important;
  padding-right: 20px !important; }
  @media only screen and (min-width: 1000px) {
    .wrapper {
      width: 1000px !important; } }
  @media only screen and (max-width: 1000px) {
    .wrapper {
      min-width: 360px !important;
      padding-left: 10px !important;
      padding-right: 10px !important; } }

.wrapper-narrow {
  position: relative;
  margin: 0 auto;
  padding-left: 20px !important;
  padding-right: 20px !important; }
  @media only screen and (min-width: 1000px) {
    .wrapper-narrow {
      width: 640px !important; } }
  @media only screen and (max-width: 1000px) {
    .wrapper-narrow {
      min-width: 360px !important;
      padding-left: 10px !important;
      padding-right: 10px !important; } }

h1 {
  font-weight: bold;
  text-align: center;
  letter-spacing: 2px; }
  @media only screen and (min-width: 1000px) {
    h1 {
      font-size: 34px;
      line-height: 40px; } }
  @media only screen and (max-width: 1000px) {
    h1 {
      font-size: 24px;
      line-height: 28px; } }

h2 {
  font-weight: bold;
  text-align: center; }
  @media only screen and (min-width: 1000px) {
    h2 {
      font-size: 22px;
      line-height: 28px; } }
  @media only screen and (max-width: 1000px) {
    h2 {
      font-size: 18px;
      line-height: 24px; } }

h3 {
  text-align: center; }
  @media only screen and (min-width: 1000px) {
    h3 {
      font-size: 16px;
      line-height: 22px; } }
  @media only screen and (max-width: 1000px) {
    h3 {
      font-size: 14px;
      line-height: 20px; } }

@media only screen and (min-width: 1000px) {
  p {
    font-size: 16px;
    line-height: 22px; } }
@media only screen and (max-width: 1000px) {
  p {
    font-size: 14px;
    line-height: 18px; } }

a {
  text-decoration: none;
  color: #444;
  cursor: pointer; }
  a:hover {
    color: #e0e40e; }

.left {
  text-align: left !important; }

.right {
  text-align: right !important; }

.center {
  text-align: center !important; }

.bold {
  font-weight: bold; }

.underline {
  text-decoration: underline; }

html {
  overflow-x: hidden;
  height: 100%; }

body {
  min-width: 360px;
  margin: 0 auto;
  height: 100%;
  font-family: 'Lato', sans-serif;
  background: #fafafa no-repeat center center;
  background-size: cover;
  overflow-x: hidden; }

div.site-wrapper {
  position: relative;
  overflow-x: hidden; }

header {
  position: relative;
  width: 100%;
  background: #fff;
  color: #444;
  z-index: 10;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2); }
  @media only screen and (min-width: 1000px) {
    header {
      height: 60px;
      padding: 5px 0; } }
  @media only screen and (max-width: 1000px) {
    header {
      position: fixed;
      top: 0;
      left: 0;
      height: 50px;
      padding: 5px 0; } }
  header.admin {
    background: #ffd700; }
  header.draft {
    background: #888; }
  header .wrapper {
    max-width: 100%; }
  header a#logo {
    display: block;
    background: url("../img/logo.png") no-repeat; }
    @media only screen and (min-width: 1000px) {
      header a#logo {
        width: 200px;
        height: 50px;
        background-size: 200px 50px; } }
    @media only screen and (max-width: 1000px) {
      header a#logo {
        margin: 0 auto;
        width: 160px;
        height: 40px;
        background-size: 160px 40px; } }
  header input#menu-toggle:checked ~ div#menu {
    right: 0;
    -webkit-transition: right 0.2s;
    -moz-transition: right 0.2s;
    -ms-transition: right 0.2s;
    -o-transition: right 0.2s;
    transition: right 0.2s;
    box-shadow: -4px 8px 20px -5px rgba(0, 0, 0, 0.2);
    z-index: 10; }
  @media only screen and (max-width: 1000px) {
    header div#menu {
      position: fixed;
      top: 50px;
      right: -260px;
      width: 260px;
      height: auto;
      background: #fff;
      border-left: 2px solid #ccc;
      border-bottom: 2px solid #ccc; } }
  header div#menu ul.main_links {
    height: 25px;
    margin-top: 25px; }
    @media only screen and (max-width: 1000px) {
      header div#menu ul.main_links {
        width: 100%;
        height: initial;
        margin-top: 0; } }
    header div#menu ul.main_links li {
      position: relative;
      padding: 0 10px; }
      @media only screen and (max-width: 1000px) {
        header div#menu ul.main_links li {
          display: block;
          width: 100%;
          margin-right: 0;
          border-top: 1px solid #ddd; } }
      header div#menu ul.main_links li a {
        display: inline-block;
        position: relative;
        line-height: 25px;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px; }
        @media only screen and (max-width: 1000px) {
          header div#menu ul.main_links li a {
            display: block;
            width: 100%;
            padding: 10px 15px;
            text-align: right; } }
      header div#menu ul.main_links li:hover div.submenu {
        display: block; }
      header div#menu ul.main_links li.active {
        background: #fff; }
        header div#menu ul.main_links li.active a {
          text-decoration: underline; }
      header div#menu ul.main_links li.admin a {
        color: red; }
    @media only screen and (min-width: 1000px) {
      header div#menu ul.main_links div.submenu {
        display: none;
        position: absolute;
        top: 25px;
        left: 0; } }
    header div#menu ul.main_links div.submenu ul {
      width: 200px;
      padding: 10px;
      background: #fff; }
      @media only screen and (max-width: 1000px) {
        header div#menu ul.main_links div.submenu ul {
          width: inherit;
          margin: 0 20px 10px 0;
          padding: 0; } }
      header div#menu ul.main_links div.submenu ul li {
        margin-bottom: 10px;
        padding: 0; }
        @media only screen and (max-width: 1000px) {
          header div#menu ul.main_links div.submenu ul li {
            margin-bottom: 0;
            border-top: 0 solid #ddd; } }
        header div#menu ul.main_links div.submenu ul li:last-child {
          margin-bottom: 0; }
        @media only screen and (max-width: 1000px) {
          header div#menu ul.main_links div.submenu ul li a {
            padding: 8px; } }

h2.month_selector {
  text-transform: capitalize;
  margin: 5px auto 0; }
  @media only screen and (max-width: 1000px) {
    h2.month_selector {
      margin: 5px auto; } }
  h2.month_selector span {
    display: inline-block;
    width: 200px; }
    @media only screen and (max-width: 1000px) {
      h2.month_selector span {
        width: 160px; } }
  h2.month_selector img.image-arrow:hover {
    border: 1px solid #000; }

div.middle-container,
div.middle-container-scroll,
div.middle-container-count {
  max-width: calc(100vw - 280px);
  overflow-x: scroll;
  overflow-y: hidden; }
  @media only screen and (max-width: 1000px) {
    div.middle-container,
    div.middle-container-scroll,
    div.middle-container-count {
      max-width: calc(100vw - 125px); } }
  div.middle-container.rrhh,
  div.middle-container-scroll.rrhh,
  div.middle-container-count.rrhh {
    max-width: calc(100vw - 50px);
    margin-top: 22px; }
    @media only screen and (max-width: 1000px) {
      div.middle-container.rrhh,
      div.middle-container-scroll.rrhh,
      div.middle-container-count.rrhh {
        margin-top: 2px; } }
  div.middle-container > .days-28,
  div.middle-container-scroll > .days-28,
  div.middle-container-count > .days-28 {
    width: 1800px; }
  div.middle-container > .days-29,
  div.middle-container-scroll > .days-29,
  div.middle-container-count > .days-29 {
    width: 1850px; }
  div.middle-container > .days-30,
  div.middle-container-scroll > .days-30,
  div.middle-container-count > .days-30 {
    width: 1900px; }
  div.middle-container > .days-31,
  div.middle-container-scroll > .days-31,
  div.middle-container-count > .days-31 {
    width: 1950px; }
  div.middle-container > .days-rrhh-28,
  div.middle-container-scroll > .days-rrhh-28,
  div.middle-container-count > .days-rrhh-28 {
    width: 1400px; }
  div.middle-container > .days-rrhh-29,
  div.middle-container-scroll > .days-rrhh-29,
  div.middle-container-count > .days-rrhh-29 {
    width: 1450px; }
  div.middle-container > .days-rrhh-30,
  div.middle-container-scroll > .days-rrhh-30,
  div.middle-container-count > .days-rrhh-30 {
    width: 1500px; }
  div.middle-container > .days-rrhh-31,
  div.middle-container-scroll > .days-rrhh-31,
  div.middle-container-count > .days-rrhh-31 {
    width: 1550px; }

div.middle-container {
  border: 2px solid #000;
  background: #fff; }

div.middle-container-scroll {
  height: 20px; }
  div.middle-container-scroll div {
    height: 20px; }

div.middle-container-count {
  border: 2px solid #000; }
  div.middle-container-count table {
    min-width: 1600px; }
    div.middle-container-count table th {
      border-left: 1px solid #ccc; }

table.turnero-left,
table.turnero-right {
  margin-top: 22px;
  margin-bottom: 18px; }
  @media only screen and (max-width: 1000px) {
    table.turnero-left,
    table.turnero-right {
      margin-top: 2px; } }

table.turnero-left-count,
table.turnero-right-count {
  margin-top: 2px; }

table.turnero-left tbody {
  border-top: 2px solid #444;
  border-bottom: 2px solid #444;
  border-left: 2px solid #444;
  background: #fff; }

table.turnero-right tbody {
  border-top: 2px solid #444;
  border-bottom: 2px solid #444;
  border-right: 2px solid #444;
  background: #fff; }

main#turnero table.turnero-right thead th,
main#borrador table.turnero-right thead th {
  vertical-align: bottom; }
main#turnero table.turnero-left thead th,
main#turnero table.turnero-right thead th,
main#borrador table.turnero-left thead th,
main#borrador table.turnero-right thead th {
  height: 80px; }
main#turnero.rrhh table.turnero-left thead th,
main#turnero.rrhh table.turnero-right thead th,
main#borrador.rrhh table.turnero-left thead th,
main#borrador.rrhh table.turnero-right thead th {
  height: 34px; }

main#borrador {
  background: #ccc; }

table.turnero-admin thead th {
  height: 80px; }

/* Shift color coding */
.color-M, .color-M1, .color-Mi, .color-Mev, .color-Mcas, .color-Meco, .color-M1ins, .color-Mins {
  color: #000;
  background: #ffd966; }
  .color-M.outer-month, .color-M1.outer-month, .color-Mi.outer-month, .color-Mev.outer-month, .color-Mcas.outer-month, .color-Meco.outer-month, .color-M1ins.outer-month, .color-Mins.outer-month {
    color: #666; }

.color-im, .color-cand-M, .color-cand-Mv, .color-cand-Mo, .color-cand-M1, .color-cand-M1v, .color-cand-M1o {
  color: #000;
  background: #ffd966aa; }
  .color-im.outer-month, .color-cand-M.outer-month, .color-cand-Mv.outer-month, .color-cand-Mo.outer-month, .color-cand-M1.outer-month, .color-cand-M1v.outer-month, .color-cand-M1o.outer-month {
    color: #666; }

.color-T, .color-Ti, .color-Tev, .color-Tcas, .color-Teco, .color-Tins {
  color: #000;
  background: #e06666; }
  .color-T.outer-month, .color-Ti.outer-month, .color-Tev.outer-month, .color-Tcas.outer-month, .color-Teco.outer-month, .color-Tins.outer-month {
    color: #666; }

.color-it, .color-cand-T, .color-cand-Tv, .color-cand-To {
  color: #000;
  background: #e06666aa; }
  .color-it.outer-month, .color-cand-T.outer-month, .color-cand-Tv.outer-month, .color-cand-To.outer-month {
    color: #666; }

.color-N {
  color: #fff;
  background: #434343; }
  .color-N.outer-month {
    color: #ccc; }

.color-in, .color-cand-N {
  color: #fff;
  background: #434343aa; }
  .color-in.outer-month, .color-cand-N.outer-month {
    color: #ccc; }

.color-M1v, .color-Mv, .color-Mvev, .color-Mvcas, .color-M1o, .color-Mo, .color-ima, .color-CEvM1, .color-CEvM, .color-CEM1, .color-CEM {
  color: #fff;
  background: #e0b231; }
  .color-M1v.outer-month, .color-Mv.outer-month, .color-Mvev.outer-month, .color-Mvcas.outer-month, .color-M1o.outer-month, .color-Mo.outer-month, .color-ima.outer-month, .color-CEvM1.outer-month, .color-CEvM.outer-month, .color-CEM1.outer-month, .color-CEM.outer-month {
    color: #ccc; }

.color-Tv, .color-Tvev, .color-Tvcas, .color-To, .color-ita, .color-CEvT, .color-CET {
  color: #fff;
  background: #cc3838; }
  .color-Tv.outer-month, .color-Tvev.outer-month, .color-Tvcas.outer-month, .color-To.outer-month, .color-ita.outer-month, .color-CEvT.outer-month, .color-CET.outer-month {
    color: #ccc; }

.color-Nv, .color-No, .color-ina, .color-CEvN, .color-CEN {
  color: #fff;
  background: #1d1d1d; }
  .color-Nv.outer-month, .color-No.outer-month, .color-ina.outer-month, .color-CEvN.outer-month, .color-CEN.outer-month {
    color: #ccc; }

.color-V, .color-w, .color-Va {
  color: #fff;
  background: #9fc5e8; }
  .color-V.outer-month, .color-w.outer-month, .color-Va.outer-month {
    color: #ddd; }

.color-P, .color-B, .color-RJ, .color-AAPP, .color-HHSS, .color-CS, .color-EX {
  color: #000;
  background: #ddd; }
  .color-P.outer-month, .color-B.outer-month, .color-RJ.outer-month, .color-AAPP.outer-month, .color-HHSS.outer-month, .color-CS.outer-month, .color-EX.outer-month {
    color: #aaa; }

.color-O {
  color: #fff;
  background: #eda534; }
  .color-O.outer-month {
    color: #ddd; }

.color-Ov {
  color: #fff;
  background: #eda534;
  background: #e0b231; }
  .color-Ov.outer-month {
    color: #ccc; }

.color-F {
  color: #fff;
  background: #9c77d7; }
  .color-F.outer-month {
    color: #ddd; }

.color-R {
  color: #fff;
  background: #c199ff; }
  .color-R.outer-month {
    color: #ddd; }

.color-hhee {
  font-weight: bold;
  color: #fff;
  background: #43d643; }
  .color-hhee.outer-month {
    color: #ddd; }

.color-cos {
  font-weight: bold;
  color: #fff;
  background: #27aa27; }
  .color-cos.outer-month {
    color: #ddd; }

.color-hhvv {
  font-weight: bold;
  color: #fff;
  background: #3194ec; }
  .color-hhvv.outer-month {
    color: #ddd; }

.hhee-orange {
  color: #fff;
  background: #ffa94c !important; }

.hhee-pink {
  color: #fff;
  background: #ff6cf6 !important; }

.hhee-red {
  color: #fff;
  background: #ff4c4c !important; }

.cos-purple {
  color: #fff;
  background: #800088 !important; }

.cos-black {
  color: #fff;
  background: #260028 !important; }

.inactive-color {
  color: #bbb; }

table.turnero {
  display: table;
  table-layout: fixed; }
  table.turnero th, table.turnero td {
    text-align: center;
    vertical-align: middle;
    height: 26px; }
    table.turnero th.left, table.turnero td.left {
      text-align: left; }
    table.turnero th.right, table.turnero td.right {
      text-align: right; }
    table.turnero th.total, table.turnero td.total {
      border-left: 2px solid #000;
      color: #fff !important;
      font-weight: bold; }
    table.turnero th.subtotal, table.turnero td.subtotal {
      border-left: 2px solid #000;
      border-right: 2px solid #000;
      font-weight: bold; }
    table.turnero th.sup, table.turnero td.sup {
      border-left: 1px solid #000;
      border-right: 1px solid #000;
      font-weight: bold; }
  table.turnero th.shift {
    background: #ddd; }
  table.turnero th.total {
    background: #666; }
  table.turnero th.subtotal {
    color: #fff !important;
    background: #999; }
  table.turnero th.sup {
    color: #000 !important;
    background: #ddb; }
  table.turnero th.hours {
    width: 24px; }
  table.turnero td.total {
    background: #999; }
  table.turnero td.subtotal {
    color: #000;
    background: #ddd; }
  table.turnero td.sup {
    color: #000 !important;
    background: #ddb; }
  table.turnero td.hours {
    width: 24px;
    text-align: right; }
  table.turnero tr {
    z-index: -2; }
    table.turnero tr.even-row {
      background: #eee; }
  table.turnero thead tr {
    font-weight: bold; }
  table.turnero thead th {
    position: relative;
    font-weight: bold;
    padding: 0 2px; }
    table.turnero thead th.calendar {
      height: 34px; }
    table.turnero thead th.distribution {
      height: 46px;
      padding-left: 10px;
      text-align: left;
      font-weight: normal; }
    table.turnero thead th.personal {
      height: 26px;
      font-size: 12px; }
    table.turnero thead th.team {
      width: 25px; }
    table.turnero thead th.name {
      width: 40px; }
    table.turnero thead th.position {
      width: 40px; }
    table.turnero thead th.day {
      width: 50px;
      border-bottom: 1px solid #bbb;
      border-right: 1px solid #bbb; }
      table.turnero thead th.day:hover {
        background: #666; }
    table.turnero thead th.shift {
      width: 50px;
      color: #000;
      border-bottom: 1px solid #aaa; }
    table.turnero thead th.hours {
      width: 50px; }
      table.turnero thead th.hours button {
        width: 50px; }
    table.turnero thead th.MCO {
      width: 50px; }
      @media only screen and (max-width: 1000px) {
        table.turnero thead th.MCO {
          display: none; } }
      table.turnero thead th.MCO button {
        width: 50px; }
    table.turnero thead th.week-S, table.turnero thead th.week-D {
      background: #ddd; }
    table.turnero thead th.today {
      border-left: 2px solid #666;
      border-right: 2px solid #666;
      background: #222;
      color: #fff; }
    table.turnero thead th.sup-left {
      color: #fff;
      background-color: #444 !important; }
    table.turnero thead th.separator-left {
      border-left: 2px solid #000; }
    table.turnero thead th.separator-right {
      border-right: 2px solid #000; }
    table.turnero thead th.outer-month {
      color: #bbb; }
    table.turnero thead th.sort_by {
      height: 30px; }
    table.turnero thead th.sort_by:hover {
      cursor: pointer; }
    table.turnero thead th span.sorted_by {
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translate(-50%, 0%); }
  table.turnero tbody tr.newteam {
    border-top: 2px solid #888; }
  table.turnero tbody tr.team-hidden {
    display: none; }
  table.turnero tbody tr.team-I {
    background: #bbb; }
  table.turnero tbody tr:first-of-type {
    border-top: 2px solid #444; }
  table.turnero tbody tr:last-of-type {
    border-bottom: 2px solid #444; }
  table.turnero tbody td {
    position: relative;
    border-bottom: 1px solid #ccc;
    border-left: 1px solid #ccc; }
    table.turnero tbody td.team {
      width: 25px;
      background-color: #ddd;
      border-right: 2px solid #ccc; }
    table.turnero tbody td.name {
      width: 40px;
      font-weight: bold; }
      table.turnero tbody td.name.no-usca {
        color: #aaa; }
    table.turnero tbody td.position {
      width: 40px;
      font-size: 12px;
      border-left: 2px solid #888; }
    table.turnero tbody td.day {
      font-size: 12px; }
      table.turnero tbody td.day.actionable:hover, table.turnero tbody td.day.supervisable:hover, table.turnero tbody td.day.instructable:hover {
        background-color: #fff;
        color: #000;
        text-decoration: underline;
        cursor: pointer; }
      table.turnero tbody td.day.initial {
        background: #bbb;
        color: #fff; }
    table.turnero tbody td.today {
      border-left: 2px solid #666;
      border-right: 2px solid #666; }
    table.turnero tbody td.today-annual {
      border: 2px solid #000; }
    table.turnero tbody td.hours {
      width: 50px;
      padding-right: 5px;
      text-align: right;
      font-size: 12px; }
      table.turnero tbody td.hours.warning {
        color: #f00; }
      table.turnero tbody td.hours.overloaded {
        background: #f00;
        color: #fff; }
    table.turnero tbody td.MCO {
      width: 50px;
      padding-right: 5px;
      text-align: right;
      font-size: 12px; }
      @media only screen and (max-width: 1000px) {
        table.turnero tbody td.MCO {
          display: none; } }
      table.turnero tbody td.MCO.MCO_green {
        background: #00a10099 !important;
        color: #fff !important; }
      table.turnero tbody td.MCO.MCO_yellow {
        background: #ffbe0099 !important;
        color: #000 !important; }
      table.turnero tbody td.MCO.MCO_orange {
        background: #ff470099 !important;
        color: #000 !important; }
      table.turnero tbody td.MCO.MCO_red {
        background: #d9000099 !important;
        color: #fff !important; }
    table.turnero tbody td.month {
      width: 40px;
      font-weight: bold;
      text-transform: capitalize; }
    table.turnero tbody td.double-col {
      height: 52px; }
    table.turnero tbody td.no-day {
      background: #fff; }
    table.turnero tbody td.week-S, table.turnero tbody td.week-D {
      background: #999 !important; }
    table.turnero tbody td.self-hovered {
      background: #fff;
      color: #000; }
    table.turnero tbody td.separator-left {
      border-left: 2px solid #000; }
    table.turnero tbody td.separator-right {
      border-right: 2px solid #000; }
    table.turnero tbody td.percentage {
      font-size: 12px;
      text-align: left;
      padding-left: 5px; }
    table.turnero tbody td.stats {
      font-size: 12px; }
  table.turnero tbody tr.self td.name,
  table.turnero tbody tr.self td.position,
  table.turnero tbody tr.self td.hours {
    background-color: #666;
    color: #fff; }
  table.turnero tbody tr.self-coloured {
    border-top: 2px solid #444;
    border-bottom: 2px solid #444;
    background: #ccc; }
  table.turnero tbody tr.self-stats {
    border-top: 2px solid #444;
    border-bottom: 2px solid #444;
    background: #ccc; }
  table.turnero tfoot tr:first-of-type td {
    height: 30px; }
    table.turnero tfoot tr:first-of-type td.day {
      font-weight: bold; }
    table.turnero tfoot tr:first-of-type td.shift {
      background: transparent;
      border: 0 solid #bbb; }
    table.turnero tfoot tr:first-of-type td.today {
      color: #fff;
      background: #222; }
  table.turnero tfoot tr:nth-of-type(2) td.shift, table.turnero tfoot tr:nth-of-type(2) td.day {
    border-top: 2px solid #444; }
  table.turnero tfoot tr.im td.shift, table.turnero tfoot tr.im td.day, table.turnero tfoot tr.it td.shift, table.turnero tfoot tr.it td.day {
    border-bottom: 2px solid #888; }
  table.turnero tfoot td {
    height: 22px;
    position: relative; }
    table.turnero tfoot td.shift {
      background-color: #fff;
      border: 1px solid #bbb;
      border-left: 2px solid #444;
      font-weight: bold; }
    table.turnero tfoot td.day {
      background-color: #fff;
      border-bottom: 1px solid #bbb;
      border-right: 1px solid #bbb; }
    table.turnero tfoot td.today {
      border-left: 2px solid #666;
      border-right: 2px solid #666; }
    table.turnero tfoot td.week-S, table.turnero tfoot td.week-D {
      background: #ddd; }
    table.turnero tfoot td.separator-left {
      border-left: 2px solid #000; }
    table.turnero tfoot td.separator-right {
      border-right: 2px solid #000; }
    table.turnero tfoot td.outer-month {
      color: #bbb; }

div.comments_box {
  width: fit-content;
  margin: -10px 5px 5px 5px;
  border: 1px solid #888;
  padding: 10px; }
  @media only screen and (max-width: 1000px) {
    div.comments_box {
      margin: 0px 5px 5px 5px;
      padding: 5px; } }
  div.comments_box div.comments_show,
  div.comments_box div.comments_hide {
    text-align: center; }
    div.comments_box div.comments_show span:first-of-type,
    div.comments_box div.comments_hide span:first-of-type {
      text-decoration: underline;
      cursor: pointer; }
  div.comments_box div.comments_info,
  div.comments_box div.comments_hide {
    display: none; }
  div.comments_box div.comments_info span,
  div.comments_box div.comments_info input {
    font-family: monospace;
    white-space: pre-wrap; }
    div.comments_box div.comments_info span span,
    div.comments_box div.comments_info input span {
      font-weight: bold; }
  div.comments_box div.comments_info input {
    width: 300px; }
    @media only screen and (max-width: 1000px) {
      div.comments_box div.comments_info input {
        width: 250px; } }

div.bottom-panel {
  margin-top: 10px;
  margin-bottom: 30px;
  border: 1px solid #000; }
  div.bottom-panel div.element {
    margin: 5px;
    padding: 5px;
    text-align: center; }
    div.bottom-panel div.element a {
      line-height: 16px; }

div.captions {
  margin: 20px 0; }

div.turnero-captions {
  margin: 20px 0; }

table.turnero-captions th.code {
  width: 60px; }
table.turnero-captions td {
  padding: 3px; }

div#list_exchanges table {
  display: table;
  table-layout: fixed;
  overflow: hidden; }
  div#list_exchanges table tr {
    height: 20px; }
  div#list_exchanges table th {
    font-weight: bold; }
  div#list_exchanges table th.day {
    width: 30px; }
  div#list_exchanges table th.day-long {
    width: 80px; }
  div#list_exchanges table th.atco {
    width: 40px; }
  div#list_exchanges table th.shift {
    width: 50px; }
  div#list_exchanges table th.exchange {
    width: 20px; }
  div#list_exchanges table th.sent {
    width: 100px; }
  div#list_exchanges table th.sent-long {
    width: 115px; }
  div#list_exchanges table th.sent_by {
    width: 50px; }
  div#list_exchanges table td {
    text-align: center; }

div#links_docs h1 {
  margin-bottom: 20px; }
div#links_docs ul {
  margin-bottom: 10px; }
  div#links_docs ul li {
    padding: 5px; }
    div#links_docs ul li img {
      margin-right: 5px; }
    div#links_docs ul li a * {
      vertical-align: middle; }

table.atcos {
  display: table;
  margin: 0 20px 5px;
  border: 1px solid #888; }
  table.atcos th, table.atcos td {
    padding: 5px;
    text-align: center;
    vertical-align: middle; }
    table.atcos th.last_date, table.atcos td.last_date {
      font-size: 12px; }
  table.atcos thead tr {
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    font-weight: bold; }
  table.atcos thead th {
    font-weight: bold; }
    table.atcos thead th.id {
      width: 30px; }
    table.atcos thead th.team {
      width: 50px; }
    table.atcos thead th.name {
      width: 50px; }
    table.atcos thead th.email {
      width: 50px; }
    table.atcos thead th.fullname {
      width: 200px; }
    table.atcos thead th.position {
      width: 50px; }
    table.atcos thead th.balance {
      width: 50px; }
    table.atcos thead th.hhee {
      width: 60px; }
    table.atcos thead th.total {
      width: 70px; }
    table.atcos thead th.total_comp {
      width: 80px;
      background: #444; }
    table.atcos thead th.head-hhee {
      color: #fff;
      background: #43d643; }
    table.atcos thead th.head-cos {
      background: #147e14; }
    table.atcos thead th.head-hhvv {
      background: #3194ec; }
  table.atcos tbody tr {
    border-bottom: 1px solid #ccc;
    background-color: rgba(255, 255, 255, 0.9); }
    table.atcos tbody tr:nth-child(even) {
      background-color: rgba(238, 238, 238, 0.9); }
    table.atcos tbody tr:hover {
      background: rgba(200, 200, 200, 0.9); }
    table.atcos tbody tr.debtor {
      background-color: rgba(255, 167, 167, 0.9); }
    table.atcos tbody tr.creditor {
      background-color: rgba(202, 255, 167, 0.9); }
  table.atcos tbody tr:hover {
    background: rgba(200, 200, 200, 0.9); }
  table.atcos tbody td.total {
    border-left: 1px solid #888;
    border-right: 1px solid #888; }
  table.atcos tbody td.total_comp {
    position: relative;
    color: #fff;
    background: #222;
    font-weight: bold;
    padding: 5px 10px; }
    @media only screen and (max-width: 1000px) {
      table.atcos tbody td.total_comp {
        padding: 5px; } }
  table.atcos tbody td.hhee {
    color: #fff;
    background: #43d643; }
  table.atcos tbody td.cos {
    color: #fff;
    background: #147e14; }
  table.atcos tbody td.hhvv {
    color: #fff;
    background: #3194ec; }

div.standings {
  min-height: 720px;
  width: 600px; }
  @media only screen and (max-width: 1000px) {
    div.standings {
      width: 100%; } }

div.seniority {
  min-height: 1800px;
  width: 1000px; }
  @media only screen and (max-width: 1000px) {
    div.seniority {
      width: 100%; } }

main {
  width: 100%;
  font-size: 14px;
  color: #444;
  min-height: 100%; }
  @media only screen and (max-width: 1000px) {
    main {
      padding-top: 50px; } }
  main section {
    width: 100%; }
    @media only screen and (min-width: 1000px) {
      main section {
        padding: 20px 0; } }
    @media only screen and (max-width: 1000px) {
      main section {
        padding: 10px 0; } }

main#personal div.middle-container,
main#personal div.middle-container-scroll {
  max-width: calc(100vw - 150px); }
  @media only screen and (max-width: 1000px) {
    main#personal div.middle-container,
    main#personal div.middle-container-scroll {
      max-width: calc(100vw - 50px); } }
main#personal section.personal_info {
  margin: 0 auto; }
  @media only screen and (min-width: 1000px) {
    main#personal section.personal_info {
      width: 30%; } }
  main#personal section.personal_info div {
    margin: 5px; }

main#extras div.boxed {
  margin: 10px;
  padding: 20px;
  background: #fff;
  border: 1px solid #bbb; }
main#extras div#assign_extras,
main#extras div#unassign_extras {
  width: 300px; }
  @media only screen and (max-width: 1000px) {
    main#extras div#assign_extras,
    main#extras div#unassign_extras {
      width: 100%; } }
main#extras div#search_extras {
  width: 300px; }
  @media only screen and (max-width: 1000px) {
    main#extras div#search_extras {
      width: 100%; } }
main#extras div#search_result {
  width: 400px; }
  @media only screen and (max-width: 1000px) {
    main#extras div#search_result {
      width: 100%; } }
  main#extras div#search_result > div > div {
    margin: 10px; }
main#extras table.atcos tfoot {
  max-width: 550px; }

main#stats h2 span,
main#seniority h2 span {
  display: inline-block;
  width: 100px; }
main#stats div.middle-container-count,
main#seniority div.middle-container-count {
  max-width: calc(100vw - 120px); }
  @media only screen and (max-width: 1000px) {
    main#stats div.middle-container-count,
    main#seniority div.middle-container-count {
      max-width: calc(100vw - 50px); } }
main#stats a.seniority_section,
main#seniority a.seniority_section {
  padding: 10px;
  border: 2px solid #444;
  margin: 5px; }
main#stats a.active,
main#seniority a.active {
  background: #444;
  color: #fff; }

form {
  margin: 10px auto; }
  form input:not([type=checkbox]):not([type=radio]) {
    display: block;
    width: 100%;
    margin: 5px 0 10px;
    padding: 5px; }
  form select {
    width: 100%;
    margin: 5px 0 10px;
    padding: 5px; }
  form span#fail {
    display: none;
    margin: 20px 0 5px;
    color: red; }
  form a.forgot {
    margin-top: 10px;
    text-decoration: underline; }
  form textarea {
    width: 100%;
    min-height: 50px;
    margin: 5px 0 10px; }
  form input#bolsa_check {
    margin: 10px 0; }
  form inputp[type="submit"] {
    display: block;
    margin-top: 10px;
    padding: 5px;
    font-weight: bold;
    font-size: 16px; }
  form input[type="number"] {
    width: 60px;
    padding: 5px; }

.exchanged-shift:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  display: block;
  border-left: 5px solid transparent;
  border-top: 5px solid #f00; }

.tooltip .tooltiptext {
  visibility: hidden;
  padding: 5px 10px;
  text-align: left;
  line-height: 14px;
  border-radius: 3px;
  background-color: #fafafa;
  border: 2px solid #aaa;
  color: #444;
  font-weight: normal;
  font-size: 12px;
  width: max-content;
  /* Position the tooltip */
  position: absolute;
  top: 40%;
  z-index: 1; }
  .tooltip .tooltiptext.tooltipright {
    left: 70%; }
  .tooltip .tooltiptext.tooltipleft {
    right: 70%; }

.tooltip:hover .tooltiptext {
  visibility: visible; }

.tooltip-head .tooltiptext {
  top: 60%; }

.tooltip-foot .tooltiptext {
  bottom: 60%;
  top: inherit; }

table.hours-report tbody {
  border: 0 !important; }
table.hours-report tr {
  border: 0 !important; }
table.hours-report th {
  height: 24px !important; }
table.hours-report td {
  border: 0 !important;
  padding: 0 2px;
  height: 20px; }

div#printable-area > section {
  padding: 0; }

div.admin-selector {
  width: 100%;
  margin-bottom: 10px; }
  div.admin-selector a.admin-menu {
    display: block;
    width: 200px;
    padding: 15px 10px;
    margin: 5px;
    background: #aaa;
    color: #fff;
    text-align: center; }
    @media only screen and (max-width: 1000px) {
      div.admin-selector a.admin-menu {
        width: 47%;
        padding: 10px 0;
        margin: 3px; } }
    div.admin-selector a.admin-menu:hover {
      background: #ccc;
      color: #fff; }
    div.admin-selector a.admin-menu.active {
      background: #666;
      color: #fff; }
  div.admin-selector a.red_level {
    background: #a00a; }
    div.admin-selector a.red_level:hover {
      background: #a00c; }
    div.admin-selector a.red_level.active {
      background: #a00;
      color: #fff; }

div#admin-section {
  width: 100%;
  overflow-x: scroll; }

div.modify-controls {
  width: 100%;
  margin: 10px 0; }
  div.modify-controls input#modify_submit {
    padding: 5px; }

#popup_bg {
  display: none;
  position: fixed;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(20, 20, 20, 0.6);
  z-index: 10; }
  #popup_bg:hover {
    cursor: pointer; }
  #popup_bg #popup_container {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: fit-content;
    height: fit-content;
    margin: auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.5); }
    @media only screen and (max-width: 1000px) {
      #popup_bg #popup_container {
        min-width: 320px;
        max-width: 90%;
        padding: 15px; } }
    #popup_bg #popup_container:hover {
      cursor: default; }
    #popup_bg #popup_container .close {
      position: absolute;
      top: 10px;
      right: 20px;
      transition: all 300ms;
      font-size: 30px;
      font-weight: bold;
      text-decoration: none;
      color: #888; }
      @media only screen and (max-width: 1000px) {
        #popup_bg #popup_container .close {
          top: 5px;
          right: 10px; } }
    #popup_bg #popup_container #popup {
      max-height: 80vh;
      overflow-y: auto;
      padding: 20px; }
      @media only screen and (max-width: 1000px) {
        #popup_bg #popup_container #popup {
          padding: 0; } }

button.shift_action {
  width: 200px;
  padding: 5px;
  margin: 10px 0 5px;
  font-weight: bold; }
  button.shift_action:hover {
    cursor: pointer; }
  button.shift_action::disabled {
    cursor: normal; }

span.msg1001 {
  color: red; }

span.DND span {
  display: inline-block; }
  span.DND span sup,
  span.DND span sub {
    position: relative;
    display: block; }

span.DND-shift {
  position: absolute;
  top: 0;
  right: 2px; }

div#readonly_selector {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 107px;
  height: 37px;
  background: #fff;
  border: 1px solid #cccccc;
  border-radius: 5px 0 0 0;
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.2);
  z-index: 9; }
  div#readonly_selector a {
    display: block;
    padding: 5px; }
  div#readonly_selector img {
    display: block; }

div#messages_access {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 37.5px;
  height: 30px; }
  @media only screen and (max-width: 1000px) {
    div#messages_access {
      top: 10px;
      right: 65px; } }
  div#messages_access a {
    display: block; }
  div#messages_access img {
    display: block; }

div#list_messages {
  max-width: 600px; }
  div#list_messages div.message {
    margin-top: 20px;
    padding: 8px;
    border: 2px solid #bbb;
    background-color: #eee; }
    @media only screen and (max-width: 1000px) {
      div#list_messages div.message {
        margin-top: 10px; } }
    div#list_messages div.message.msg_unseen {
      border: 2px solid #888;
      background-color: #bbb; }
    div#list_messages div.message span {
      display: inline-block; }
    div#list_messages div.message span.message_title {
      font-weight: bold;
      font-size: 17px; }
      @media only screen and (max-width: 1000px) {
        div#list_messages div.message span.message_title {
          font-size: 15px; } }
    div#list_messages div.message p.message_text {
      margin: 5px 0;
      white-space: pre-wrap; }
    div#list_messages div.message span.message_published {
      font-style: italic;
      font-size: 14px; }
      @media only screen and (max-width: 1000px) {
        div#list_messages div.message span.message_published {
          font-size: 12px; } }

/*# sourceMappingURL=style.css.map */
