body.rooms {
  background-color: #666; }

#app-canvas {
  padding-top: 48px;
  min-height: 100vh;
  background-color: #373737; }
  #app-canvas.disabled ul.rooms {
    display: none; }
  #app-canvas.confirmation-required ul.rooms {
    opacity: 0.5; }
  #app-canvas.setup-mode .code-pane.customer {
    display: block; }
  #app-canvas.setup-mode ul.rooms {
    display: none; }
  #app-canvas.setup-mode.customer-ok .code-pane.customer {
    display: none; }
  #app-canvas.setup-mode.customer-ok .code-pane.pin {
    display: block; }
  #app-canvas.setup-mode.customer-ok.pin-ok .code-pane.pin {
    display: none; }
  #app-canvas.setup-mode.signature-ok .signature-pane {
    display: none; }

#app-header {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.95);
  z-index: 20;
  padding: 2px 4px;
  display: flex;
  -webkit-display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  border-bottom: 1px solid #ebebeb; }
  #app-header p.header-message {
    vertical-align: middle;
    margin: 0px; }
  #app-header span.opens-menu {
    display: block;
    position: absolute;
    right: 0px;
    top: 0px;
    height: 48px;
    width: 48px;
    text-align: center;
    border-left: 1px solid #ebebeb;
    vertical-align: center;
    background: url("../images/mango-icon-bg.png") center center no-repeat;
    background-size: 80% 80%;
    cursor: pointer; }

ul.rooms {
  font-size: 0px;
  cursor: pointer;
  background-color: #373737;
  transition: all 0.25s, width 0s, height 0s;
  -webkit-transition: all 0.25s, width 0s, height 0s; }
  ul.rooms li {
    display: inline-block;
    touch-action: manipulation;
    width: 25vw;
    height: 25vw;
    position: relative;
    border-radius: 2px;
    border: 1px solid #373737;
    color: #fff;
    transition: all 0.88s, border 0.1s, width 0, height 0;
    -webkit-transition: all 0.88s, border 0.1s, width 0, height 0;
    font-size: 16pt; }
    @media (min-width: 960px) {
      ul.rooms li {
        width: 12.5vw;
        height: 12.5vw; } }
    @media (min-width: 1200px) {
      ul.rooms li {
        width: 10vw;
        height: 10vw; } }
    ul.rooms li:hover {
      color: #fff;
      background-color: #3f3f3f; }
    ul.rooms li:after {
      content: '';
      position: absolute;
      top: 0px;
      left: 0px;
      right: 0px;
      bottom: 0px;
      border-radius: 2px;
      border: 1px solid rgba(255, 255, 255, 0.25); }
    ul.rooms li[data-status="checked-out"] {
      background-color: #52C3D7;
      color: #000; }
    ul.rooms li[data-status="cleaning"] {
      background-color: #92658C;
      color: #000; }
    ul.rooms li[data-status="clean"] {
      background-color: #3fcf64;
      color: #000; }
    ul.rooms li[data-status="dirty"] {
      background-color: #EF684B;
      color: #000; }
    ul.rooms li[data-status="closed"] {
      background-color: #f1e260;
      color: #000; }
    ul.rooms li[data-status="prio"] {
      background-color: #6ca1fb;
      color: #000; }
    ul.rooms li.has-comment .room-label:after {
      font-family: FontAwesome;
      content: "\f0e5";
      position: absolute;
      top: 1.5em;
      left: 50%;
      font-size: 20px;
      margin-left: -10px;
      opacity: 0.25; }
      @media (min-width: 960px) {
        ul.rooms li.has-comment .room-label:after {
          font-size: 18px; } }
      @media (min-width: 1200px) {
        ul.rooms li.has-comment .room-label:after {
          top: 1.5em; } }
    ul.rooms li .room-label {
      position: absolute;
      top: 33%;
      color: #fff;
      text-shadow: 1px 1px 1px #3d3d3d;
      left: 0px;
      right: 0px;
      transform: translateY(-50%);
      text-align: center; }
      @media (min-width: 960px) {
        ul.rooms li .room-label {
          top: 24%; } }
    ul.rooms li .comment {
      display: none; }
    ul.rooms li .timestamp {
      display: none; }
      @media (min-width: 960px) {
        ul.rooms li .timestamp {
          display: block;
          position: absolute;
          bottom: 4px;
          left: 5%;
          right: 5%;
          font-size: 9pt;
          line-height: 1.25em;
          text-align: center;
          word-spacing: 9vw; } }
    ul.rooms li p.user {
      display: none; }
      @media (min-width: 960px) {
        ul.rooms li p.user {
          max-height: 1.2em;
          overflow: hidden;
          display: block;
          position: absolute;
          bottom: 30px;
          left: 5%;
          right: 5%;
          font-size: 9pt;
          text-align: center; } }
  ul.rooms.dimmed {
    opacity: 0.08; }

.popup {
  visibility: hidden;
  position: fixed;
  left: 10vw;
  right: 10vw;
  bottom: 20vh;
  max-height: 50vh;
  padding: 0px 0vw 0vw;
  background-color: #fff;
  text-align: center;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  -webkit-align-content: flex-end;
  align-content: flex-end;
  opacity: 0;
  transition: all 0.25s, opacity 0.125s;
  -webkit-transition: all 0.25s, opacity 0.125s;
  border-radius: 16px; }
  @media (min-width: 960px) {
    .popup {
      bottom: auto !important;
      border-radius: 16px;
      top: 20vh; } }
  .popup.visible {
    visibility: visible;
    opacity: 1;
    max-height: 80vh;
    left: 2vw;
    right: 2vw;
    top: auto;
    bottom: 18vh; }
    @media (min-width: 960px) {
      .popup.visible {
        top: 50%;
        transform: translateY(-50%); } }
  .popup.comment-mode .comment-container {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    max-height: 100vh; }
  .popup p.current-room-number {
    position: absolute;
    display: block;
    margin: 0px;
    bottom: 100%;
    left: 0px;
    right: 0px;
    text-align: center;
    line-height: 1em;
    padding: 0px;
    font-size: 64pt;
    font-weight: 700;
    padding: 6px 0px 12px;
    color: #fff;
    background-color: transparent;
    letter-spacing: 0.08em; }
    .popup p.current-room-number[data-status="checked-out"] {
      background-color: #52C3D7; }
    .popup p.current-room-number[data-status="dirty"] {
      background-color: #EF684B; }
    .popup p.current-room-number[data-status="cleaning"] {
      background-color: #92658C; }
    .popup p.current-room-number[data-status="clean"] {
      background-color: #3fcf64; }
    .popup p.current-room-number[data-status="closed"] {
      background-color: #f1e260; }
    .popup p.current-room-number[data-status="prio"] {
      background-color: #6ca1fb; }
    .popup p.current-room-number:before {
      position: absolute;
      top: 0px;
      left: 0px;
      font-family: FontAwesome;
      content: '\f00d';
      font-size: 24px;
      border-right: 1px solid rgba(255, 255, 255, 0.25);
      border-bottom: 1px solid rgba(255, 255, 255, 0.25);
      line-height: 50px;
      width: 64px;
      height: 64px;
      letter-spacing: 0;
      cursor: pointer;
      padding: 0.25em 1em;
      text-align: center;
      border-radius: 16px 0 16px 0;
      z-index: 21;
      color: #fff; }
  .popup span.button {
    width: 50%;
    display: block;
    padding: 1.5em 0;
    margin: 0;
    text-align: center;
    cursor: pointer;
    background-color: green;
    border: none;
    transition: background-color 0.25s;
    -webkit-transition: background-color 0.25s; }
    @media (min-width: 960px) {
      .popup span.button {
        display: inline-block;
        width: 16.6666667%;
        padding: 4em 0; } }
    .popup span.button:hover {
      cursor: pointer; }
    .popup span.button.checked-out {
      background-color: #52C3D7;
      color: #000; }
      .popup span.button.checked-out:hover {
        background-color: #7bd1e1; }
    .popup span.button.dirty {
      background-color: #EF684B;
      color: #000; }
      .popup span.button.dirty:hover {
        background-color: #f38f7a; }
    .popup span.button.cleaning {
      background-color: #92658C;
      color: #000; }
      .popup span.button.cleaning:hover {
        background-color: #a882a3; }
    .popup span.button.clean {
      background-color: #3fcf64;
      color: #000; }
      .popup span.button.clean:hover {
        background-color: #68d985; }
    .popup span.button.prio {
      background-color: #6ca1fb;
      color: #000; }
      .popup span.button.prio:hover {
        background-color: #9ec1fc; }
    .popup span.button.closed {
      background-color: #f1e260;
      color: #000; }
      .popup span.button.closed:hover {
        background-color: #f5eb8f; }
    .popup span.button.open-comment {
      width: 64px;
      background-color: transparent;
      border-left: 1px solid rgba(255, 255, 255, 0.25);
      border-bottom: 1px solid rgba(255, 255, 255, 0.25);
      position: absolute;
      top: -103px;
      right: 0px;
      border-radius: 0 16px 0 16px;
      padding: 0;
      box-sizing: border-box;
      padding-top: 20px;
      font-size: 17pt;
      height: 64px;
      color: #fff;
      cursor: pointer; }
      .popup span.button.open-comment.hidden {
        display: none; }
  .popup .comment-container {
    width: 100%;
    top: 100%;
    max-height: 0px;
    position: absolute;
    top: 0px;
    right: 0px;
    left: 0px;
    bottom: 0px;
    background-color: #fff;
    overflow: hidden; }
    .popup .comment-container .comment-container-inner {
      width: 100%;
      height: 100%;
      position: relative; }
    .popup .comment-container textarea {
      width: 100%;
      border-radius: 0;
      border: none;
      display: block;
      position: absolute;
      top: 0px;
      left: 0px;
      right: 0px;
      bottom: 4em;
      padding: 1em;
      -webkit-appearance: none; }
      .popup .comment-container textarea.loading {
        opacity: 0.25; }
    .popup .comment-container span.button {
      position: absolute;
      width: 100%;
      display: inline-block;
      border: none;
      left: 0px;
      top: 6em;
      right: 0px;
      bottom: 0px;
      background-color: #ebebeb; }
      @media (min-width: 960px) {
        .popup .comment-container span.button {
          top: auto;
          padding-top: 12px;
          padding-bottom: 12px; } }
      .popup .comment-container span.button:hover {
        background-color: #ebebeb; }

.code-pane {
  display: none;
  position: fixed;
  top: 10vh;
  left: 5vw;
  right: 5vw;
  bottom: 10vw;
  font-size: 0px; }
  @media (min-width: 960px) {
    .code-pane {
      max-width: 480px;
      left: 30vw;
      right: 30vw; }
      .code-pane span.button {
        width: 30% !important; } }
  .code-pane p.current-code {
    font-size: 40pt;
    height: 1.5em;
    text-align: center;
    width: 100%;
    color: #fff;
    font-weight: bold;
    letter-spacing: 0.25em;
    margin-bottom: 0.25em; }
  .code-pane span.button {
    display: inline-block;
    width: 30vw;
    height: 15%;
    font-size: 16pt;
    padding: 0;
    position: relative;
    border: 1px solid #373737;
    background-color: #3f3f3f; }
    .code-pane span.button.active {
      background-color: #999; }
    .code-pane span.button.confirm {
      background-color: #3fcf64; }
      .code-pane span.button.confirm.active {
        background-color: #279b45; }
    .code-pane span.button span.label {
      position: absolute;
      top: 50%;
      width: 100%;
      transform: translateY(-50%);
      text-align: center;
      color: #ebebeb; }

.signature-pane {
  display: none;
  position: fixed;
  top: 10vh;
  left: 5vw;
  right: 5vw;
  bottom: 10vw;
  font-size: 0px; }
  .signature-pane.visible {
    display: block; }
  .signature-pane input[type=text] {
    font-size: 16pt;
    width: 100%;
    text-align: center;
    padding: 1em; }
    .signature-pane input[type=text]:focus {
      outline: none; }
  .signature-pane span.button {
    display: block;
    background-color: #3fcf64;
    font-size: 16pt;
    padding: 1em 0;
    text-align: center;
    color: #fff; }

.menu {
  position: fixed;
  left: 0px;
  right: 0px;
  bottom: 0px;
  top: 100vh;
  overflow: hidden;
  z-index: 21; }
  .menu.visible {
    top: 48px;
    background-color: rgba(0, 0, 0, 0.5); }
    .menu.visible span.button {
      margin: 1em auto;
      opacity: 1; }
  .menu .menu-buttons {
    position: absolute;
    top: 0px;
    right: 0px;
    left: 0px; }
  .menu span.button {
    width: 90%;
    text-align: center;
    padding: 1em;
    display: block;
    background-color: #fff;
    margin: -0.5em auto;
    transition: all 0.25s;
    -webkit-transition: all 0.25s;
    border-radius: 5px;
    opacity: 0; }
    .menu span.button:active {
      transition: all 0s;
      -webkit-transition: all 0s;
      outline: 1px solid #fff; }

.modal {
  opacity: 0;
  transition: all 0.25s;
  -webkit-transition: all 0.25s;
  position: fixed;
  top: 100%;
  bottom: -90vh;
  left: 0px;
  right: 0px;
  background-color: rgba(0, 0, 0, 0.5); }
  .modal .modal-inner {
    position: absolute;
    margin-top: 48px;
    top: 10vh;
    bottom: 10vh;
    left: 10vw;
    right: 10vw;
    background-color: #fff;
    display: flex;
    display: -webkit-flex;
    -webkit-align-items: center;
    align-items: center; }
    .modal .modal-inner .header {
      position: absolute;
      top: 0px;
      left: 0px;
      right: 0px;
      font-size: 22pt;
      padding-top: 0.5em;
      padding-bottom: 0.5em;
      font-weight: bold;
      display: block;
      text-align: center; }
    .modal .modal-inner .message {
      text-align: center;
      width: 80%;
      margin: 0 10%; }
    .modal .modal-inner .button {
      position: absolute;
      bottom: 0px;
      left: 0px;
      right: 0px;
      border: 0px;
      background-color: #3fcf64;
      color: #fff;
      padding: 1em 0;
      text-align: center;
      cursor: pointer; }
  .modal[data-class="error"] .header {
    color: red; }

#app-canvas.modal-visible .modal {
  top: 0px;
  bottom: 0px;
  opacity: 1; }

/*# sourceMappingURL=rooms.css.map */