.flatpickr-day.special {
  background-color: #ffb587; }
  .flatpickr-day.special.selected {
    background-color: #569ff7; }

.flatpickr-day .special__info {
  position: absolute;
  background-color: green;
  top: -33%;
  right: -33%;
  color: white;
  border-radius: 50%;
  height: 75%;
  width: 75%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  opacity: 0.7;
  transition: opacity 300ms ease; }
  .flatpickr-day .special__info:hover {
    opacity: 1; }

html, body, * {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none; }

body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #f5ce8b;
  background-size: cover;
  image-rendering: pixelated;
  font-family: monospace;
  font-size: 16px;
  touch-action: manipulation; }
  body.racing .racetrack {
    display: block; }
  body.racing .room {
    display: none; }
  body.radio-playing .zombie {
    display: inline-flex; }
  body.dresser .barber {
    display: block; }
  body.dresser .room {
    display: none; }
  body.boxing-match .boxing {
    display: block; }
  body.boxing-match .room {
    display: none; }
  body.soccer-match .soccer {
    display: block; }
  body.soccer-match .room {
    display: none; }

button {
  font-family: monospace;
  white-space: nowrap;
  font-size: 16px; }

.assets {
  opacity: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  position: fixed;
  top: -100vh; }

button {
  background-color: #2d4341;
  outline: 3px solid black;
  border-top: 2px solid rgba(85, 151, 148, 0.567);
  line-height: 24px;
  color: #ffde4c;
  cursor: pointer;
  font-weight: bold;
  border: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  padding: 0.5rem; }
  button img {
    filter: drop-shadow(0px -2px 0px white); }
  button.js-dialog-confirm[disabled] {
    opacity: 0.5; }
  button.js-dialog-confirm.holding {
    opacity: 0.5;
    filter: grayscale(1); }
    button.js-dialog-confirm.holding .submit-hold-indicator {
      background-color: green;
      width: 100%;
      transition: 2000ms width linear; }
  button.js-dialog-confirm.holdingStart {
    filter: grayscale(0);
    opacity: 1;
    transition: 2000ms filter linear, 2000ms opacity linear; }
  button.js-dialog-confirm label {
    pointer-events: none; }
  button.js-dialog-confirm .submit-hold-indicator {
    background-color: grey;
    box-shadow: 0 0 5px #424242;
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 8px;
    height: 0.5rem; }

:root {
  --colorOutline: #b7dd68;
  --colorBg: #6f5b50;
  --colorBorder: #252525;
  --colorDayBorder: #2f2f2f;
  --colorDayBorderHover: #656565;
  --colorDayBg: #25611c;
  --colorSpecialBg: #c0cca6;
  --colorSpecialBgNoBook: rgb(183, 226, 255);
  --colorText: #a6ff00;
  --colorDaySelectedText: black;
  --colorRestricted: red; }

.input-date[data-view="week"] .js-input {
  display: none; }

.input-date .calendar-week {
  background-color: var(--colorBg);
  position: relative;
  color: var(--colorText);
  font-weight: bold; }
  .input-date .calendar-week__month-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    padding: 1rem; }
  .input-date .calendar-week__day-nav {
    position: absolute;
    top: 48px;
    top: 3rem;
    right: 0;
    z-index: 1;
    display: flex;
    padding: 4.8px 0;
    padding: 0.3rem 0; }
    .input-date .calendar-week__day-nav button {
      opacity: 0.5;
      margin: 3.2px;
      margin: 0.2rem; }
      .input-date .calendar-week__day-nav button:hover {
        opacity: 1; }
  .input-date .calendar-week__side {
    position: absolute;
    top: 48px;
    top: 3rem;
    left: 0;
    display: flex;
    flex-direction: column; }
  .input-date .calendar-week__side-option {
    border-left: 2px solid var(--colorBorder);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 4.8px;
    margin: 0.3rem;
    margin-left: 0;
    width: 41.6px;
    width: 2.6rem;
    height: 32px;
    height: 2rem;
    padding: 4.8px;
    padding: 0.3rem;
    text-align: center;
    font-size: 12.8px;
    font-size: 0.8rem;
    transition: 150ms all ease;
    position: relative;
    margin-bottom: 0;
    padding-bottom: 0;
    padding-top: 0;
    margin-top: 0;
    border-bottom: 0;
    border-top: 0; }
    .input-date .calendar-week__side-option.day-hover {
      border-left: 2px solid var(--colorOutline);
      box-shadow: inset 0 0 9px 3px var(--colorOutline); }
    .input-date .calendar-week__side-option.day-selected {
      border-left: 2px solid var(--colorOutline);
      box-shadow: inset 0 0 20px var(--colorOutline); }
      .input-date .calendar-week__side-option.day-selected .gradient-mask {
        opacity: 1;
        width: 100%; }
    .input-date .calendar-week__side-option .gradient-mask {
      position: absolute;
      height: 100%;
      width: 0;
      top: 0;
      left: 0;
      z-index: -1;
      transition: 300ms all ease;
      opacity: 0;
      background: linear-gradient(90deg, var(--colorOutline) 0%, transparent 75%); }
  .input-date .calendar-week__content-container {
    position: relative;
    padding-left: 52.8px;
    padding-left: 3.3rem; }
  .input-date .calendar-week__content {
    display: flex;
    overflow: auto;
    padding-top: 48px;
    padding-top: 3rem;
    box-shadow: inset 0 0 3px 2px var(--colorBorder); }
  .input-date .calendar-week__day-col {
    display: flex;
    flex-direction: column;
    min-width: calc(100%/7);
    position: relative; }
    .input-date .calendar-week__day-col:hover .calendar-week__day-head {
      border: 2px solid var(--colorOutline); }
      .input-date .calendar-week__day-col:hover .calendar-week__day-head.day-selected {
        border: 2px solid var(--colorOutline); }
    @media (max-width: 768px) {
      .input-date .calendar-week__day-col {
        min-width: calc(100%/5); } }
    @media (max-width: 514px) {
      .input-date .calendar-week__day-col {
        min-width: calc(100%/3); } }
    .input-date .calendar-week__day-col.disabled .calendar-week__day {
      opacity: 0.5;
      pointer-events: none;
      font-size: 0; }
    .input-date .calendar-week__day-col.special .calendar-week__day {
      background-color: var(--colorSpecialBg); }
      .input-date .calendar-week__day-col.special .calendar-week__day.selected {
        background-color: var(--colorOutline);
        box-shadow: 0 0 5px var(--colorOutline); }
    .input-date .calendar-week__day-col.special-nobook .calendar-week__day {
      background-color: var(--colorSpecialBgNoBook);
      cursor: initial; }
      .input-date .calendar-week__day-col.special-nobook .calendar-week__day:hover {
        border: 1px solid var(--colorDayBorder);
        box-shadow: unset; }
  .input-date .calendar-week__day-head {
    border: 2px solid transparent;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 100%;
    text-align: center;
    height: 48px;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: 300ms all ease; }
    .input-date .calendar-week__day-head.day-selected {
      border: 2px solid var(--colorOutline);
      box-shadow: inset 0 0 10px var(--colorOutline); }
  .input-date .calendar-week__day-head-name {
    font-size: 9.6px;
    font-size: 0.6rem; }
  .input-date .calendar-week__day {
    border: 1px solid var(--colorDayBorder);
    background-color: var(--colorDayBg);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4.8px;
    padding: 0.3rem;
    margin: 4.8px;
    margin: 0.3rem;
    height: 32px;
    height: 2rem;
    font-size: 12.8px;
    font-size: 0.8rem;
    text-align: center;
    transition: 300ms all ease;
    margin-bottom: 0;
    padding-bottom: 0;
    padding-top: 0;
    margin-top: 0;
    border-bottom: 0;
    border-top: 0; }
    .input-date .calendar-week__day:hover {
      box-shadow: 0 0 3px 3px var(--colorOutline); }
    .input-date .calendar-week__day.selected {
      background-color: var(--colorOutline);
      box-shadow: 0 0 3px 3px var(--colorOutline);
      color: var(--colorDaySelectedText); }
    .input-date .calendar-week__day.selected-sibling {
      background-color: var(--colorOutline);
      box-shadow: 0 0 3px 3px var(--colorOutline);
      color: var(--colorDaySelectedText); }
    .input-date .calendar-week__day.selected-hover {
      background-color: var(--colorOutline);
      box-shadow: 0 0 3px 3px var(--colorOutline);
      color: var(--colorDaySelectedText); }
    .input-date .calendar-week__day.sibling-restrict {
      box-shadow: 0 0 3px 3px var(--colorRestricted);
      color: var(--colorDaySelectedText); }
    .input-date .calendar-week__day.disabled {
      opacity: 0.5;
      pointer-events: none;
      font-size: 0; }

.input {
  width: 100%;
  padding: 4.8px;
  padding: 0.3rem;
  font-family: monospace;
  font-size: 16px;
  font-family: var(--FontBody);
  background-color: white;
  border-radius: 2px;
  border: 1px solid black;
  color: black; }
  .input[type=checkbox] {
    width: auto; }
  .input.error {
    border: 2px solid red; }
  .input.success {
    border: 2px solid green; }
  .input.hidden {
    display: none; }
  .input__icon {
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    pointer-events: none;
    position: absolute;
    height: 100%;
    width: 16px;
    width: 1rem;
    right: 0;
    bottom: -5px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4.8px;
    padding: 0.3rem;
    margin: 0 4.8px;
    margin: 0 0.3rem; }
    .input__icon img {
      width: 100%; }
  .input__icon-container {
    position: relative; }

textarea {
  min-height: 160px;
  min-height: 10rem;
  width: 100%;
  resize: vertical; }

.input-select {
  position: relative; }
  .input-select.focus .input-select__items {
    display: block; }
  .input-select .js-input-select-filter:focus + .input-select__items {
    display: block; }
  .input-select__items {
    background-color: lightgrey;
    display: none;
    left: 0;
    max-height: 320px;
    max-height: 20rem;
    overflow: auto;
    position: absolute;
    z-index: 1;
    top: 100%;
    width: 100%; }
  .input-select__item {
    cursor: pointer;
    height: 100%;
    padding: 8px;
    padding: 0.5rem; }
    .input-select__item:hover {
      background-color: lightblue; }
    .input-select__item.selected {
      background-color: lightgreen; }

.input-select {
  position: relative; }
  .input-select.focus .input-select__items {
    display: block; }
  .input-select.focus .input__icon img {
    content: url(../svg/arrowhead-up-clean.svg); }
  .input-select[data-disabled="1"] .js-input-select-filter {
    background: transparent;
    border: none; }
    .input-select[data-disabled="1"] .js-input-select-filter[disabled="disabled"] {
      position: relative;
      z-index: -1; }
  .input-select[data-disabled="1"] .input__icon {
    display: none; }
  .input-select .js-input-select-filter {
    border: 1px solid; }
    .input-select .js-input-select-filter:focus + .input-select__items {
      display: block; }
    .input-select .js-input-select-filter[disabled="disabled"] {
      position: relative;
      z-index: -1; }
  .input-select__items {
    background-color: lightgrey;
    display: none;
    left: 0;
    max-height: 320px;
    max-height: 20rem;
    overflow: auto;
    position: absolute;
    z-index: 1;
    top: 100%;
    width: 100%; }
  .input-select__item {
    color: black;
    cursor: pointer !important;
    height: 100% !important;
    padding: 8px !important;
    padding: 0.5rem !important;
    display: flex !important;
    align-items: center !important;
    font-size: 16px !important;
    margin: 0 !important; }
    .input-select__item img {
      width: 24px;
      width: 1.5rem; }
    .input-select__item:hover {
      background-color: lightblue; }
    .input-select__item.selected {
      background-color: lightgreen; }
    .input-select__item.hidden {
      display: none !important; }
    .input-select__item[data-disabled="1"] {
      opacity: 0.5; }

.input-multiselect {
  position: relative; }
  .input-multiselect.focus .input-multiselect__items {
    display: block; }
  .input-multiselect.focus .input__icon img {
    content: url(../svg/arrowhead-up-hd.svg); }
  .input-multiselect .js-input-multiselect-filter {
    background-color: #efefef;
    border: 0px;
    border-top: 1px solid;
    box-sizing: border-box; }
    .input-multiselect .js-input-multiselect-filter:focus + .input-multiselect__items {
      display: block; }
  .input-multiselect__selected-container {
    border: 1px solid; }
  .input-multiselect__selected-item {
    align-items: center;
    display: inline-flex;
    padding: 8px;
    padding: 0.5rem;
    border: 1px solid;
    border-radius: 20px;
    margin: 8px;
    margin: 0.5rem; }
    .input-multiselect__selected-item img {
      width: 24px;
      width: 1.5rem; }
  .input-multiselect__selected-item__delete {
    font-weight: bold;
    cursor: pointer;
    margin: 0 8px;
    margin: 0 0.5rem; }
  .input-multiselect__items {
    background-color: lightgrey;
    display: none;
    left: 0;
    max-height: 320px;
    max-height: 20rem;
    overflow: auto;
    position: absolute;
    z-index: 1;
    top: 100%;
    width: 100%; }
  .input-multiselect__item {
    color: black;
    cursor: pointer;
    height: 100%;
    padding: 8px;
    padding: 0.5rem; }
    .input-multiselect__item:hover {
      background-color: lightblue; }
    .input-multiselect__item.selected {
      background-color: lightgreen; }

.input-multiselect {
  position: relative; }
  .input-multiselect.focus .input-multiselect__items {
    display: block; }
  .input-multiselect.focus .input__icon img {
    content: url(../svg/arrowhead-up-hd.svg); }
  .input-multiselect .js-input-multiselect-filter {
    background-color: #efefef;
    border: 0px;
    border-top: 1px solid;
    box-sizing: border-box; }
    .input-multiselect .js-input-multiselect-filter:focus + .input-multiselect__items {
      display: block; }
  .input-multiselect__selected-container {
    border: 1px solid; }
  .input-multiselect__selected-item {
    align-items: center;
    display: inline-flex;
    padding: 8px;
    padding: 0.5rem;
    border: 1px solid;
    border-radius: 20px;
    margin: 8px;
    margin: 0.5rem; }
    .input-multiselect__selected-item img {
      width: 24px;
      width: 1.5rem; }
  .input-multiselect__selected-item__delete {
    font-weight: bold;
    cursor: pointer;
    margin: 0 8px;
    margin: 0 0.5rem; }
  .input-multiselect__items {
    background-color: lightgrey;
    display: none;
    left: 0;
    max-height: 320px;
    max-height: 20rem;
    overflow: auto;
    position: absolute;
    z-index: 1;
    top: 100%;
    width: 100%; }
  .input-multiselect__item {
    color: black;
    cursor: pointer;
    height: 100%;
    padding: 8px;
    padding: 0.5rem; }
    .input-multiselect__item:hover {
      background-color: lightblue; }
    .input-multiselect__item.selected {
      background-color: lightgreen; }

.input-select {
  position: relative; }
  .input-select.focus .input-select__items {
    display: block; }
  .input-select.focus .input__icon img {
    content: url(../svg/arrowhead-up-clean.svg); }
  .input-select[data-disabled="1"] .js-input-select-filter {
    background: transparent;
    border: none; }
    .input-select[data-disabled="1"] .js-input-select-filter[disabled="disabled"] {
      position: relative;
      z-index: -1; }
  .input-select[data-disabled="1"] .input__icon {
    display: none; }
  .input-select .js-input-select-filter {
    border: 1px solid; }
    .input-select .js-input-select-filter:focus + .input-select__items {
      display: block; }
    .input-select .js-input-select-filter[disabled="disabled"] {
      position: relative;
      z-index: -1; }
  .input-select__items {
    background-color: lightgrey;
    display: none;
    left: 0;
    max-height: 320px;
    max-height: 20rem;
    overflow: auto;
    position: absolute;
    z-index: 1;
    top: 100%;
    width: 100%; }
  .input-select__item {
    color: black;
    cursor: pointer !important;
    height: 100% !important;
    padding: 8px !important;
    padding: 0.5rem !important;
    display: flex !important;
    align-items: center !important;
    font-size: 16px !important;
    margin: 0 !important; }
    .input-select__item img {
      width: 24px;
      width: 1.5rem; }
    .input-select__item:hover {
      background-color: lightblue; }
    .input-select__item.selected {
      background-color: lightgreen; }
    .input-select__item.hidden {
      display: none !important; }
    .input-select__item[data-disabled="1"] {
      opacity: 0.5; }

.notifications {
  background-color: transparent;
  position: fixed;
  top: var(--DyHeaderHeight);
  left: 0;
  z-index: 999; }
  .notifications .notification {
    opacity: 0;
    background-color: white;
    transition: 300ms opacity ease, 300ms max-height ease;
    overflow: hidden; }
    .notifications .notification.show {
      opacity: 1; }
    .notifications .notification__content {
      color: var(--DyHeaderTextColor);
      background: var(--DyHeaderBackgroundColor);
      -webkit-backdrop-filter: var(--DyHeaderBackgroundBlur);
              backdrop-filter: var(--DyHeaderBackgroundBlur);
      padding: 8px 16px;
      padding: 0.5rem 1rem;
      border-radius: 5px;
      margin: 8px 16px;
      margin: 0.5rem 1rem;
      box-shadow: 0 0 7px #a6a6a6;
      display: inline-flex;
      position: relative;
      transition: 300ms top ease; }

.room {
  position: fixed;
  height: 1000px;
  width: 1000px;
  bottom: 0;
  right: 0;
  transition: 80ms all ease; }
  .room .background {
    background-image: url(../img/wasteland-3.jpg);
    background-size: 20%;
    position: absolute;
    height: 200%;
    width: 200%;
    left: -50%;
    top: -50%;
    z-index: -1; }
  .room .background2 {
    background-image: url(../img/boxing-bg.jpg);
    background-size: 20%;
    background-position: bottom;
    background-repeat: repeat-x;
    background-color: #64d4cc;
    position: absolute;
    height: 80%;
    width: 200%;
    left: -50%;
    top: -30%;
    z-index: -1;
    opacity: 0.7; }
  .room .asphalt {
    background-image: url(../img/floor-tile-concrete.jpg);
    background-size: 20%;
    position: absolute;
    height: 125%;
    width: 110%;
    left: -5%;
    top: -15%;
    z-index: -1;
    opacity: 0.9;
    box-shadow: inset 0 0 6px black; }
  .room .road {
    background-image: url(../img/asphalt.jpg);
    background-size: 100px;
    position: absolute;
    height: 200px;
    width: 200%;
    left: -50%;
    top: 110%;
    z-index: -1;
    opacity: 0.9;
    box-shadow: inset 0 0 6px black; }
  .room .car {
    background-image: url(../img/car.png);
    background-size: cover;
    position: absolute;
    height: 130px;
    width: 170px;
    left: 1140px;
    top: calc(110% + -770px);
    z-index: -1;
    opacity: 0.9; }
  .room .car2 {
    background-image: url(../img/car4.png);
    background-size: cover;
    position: absolute;
    height: 140px;
    width: 290px;
    left: 230px;
    top: calc(110% + -40px);
    z-index: -1;
    opacity: 0.9; }
  .room .car3 {
    background-image: url(../img/car3.png);
    background-size: cover;
    position: absolute;
    height: 180px;
    width: 150px;
    left: -170px;
    top: calc(110% + -160px);
    z-index: -1;
    opacity: 0.9; }

.barrel {
  position: absolute;
  display: inline-flex;
  background-image: url(../img/barrel.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  right: 300px;
  bottom: -90px;
  z-index: 12;
  height: 60px;
  width: 40px;
  transition: 80ms all ease;
  filter: drop-shadow(-3px -2px 1px #3b3b3b); }

.stranded-rat {
  animation: 300ms infinite alternate knife;
  position: absolute;
  display: inline-flex;
  background-image: url(../svg/stranded-rat.svg);
  background-repeat: no-repeat;
  background-position: bottom;
  right: -55px;
  bottom: -90px;
  z-index: 12;
  height: 110px;
  width: 60px;
  transition: 80ms all ease;
  filter: drop-shadow(-3px -2px 1px #3b3b3b); }

@keyframes knife {
  25% {
    background-image: url(../svg/stranded-rat-knife.svg); }
  50% {
    background-image: url(../svg/stranded-rat-knife-2.svg); }
  75% {
    background-image: url(../svg/stranded-rat-knife-3.svg); }
  100% {
    background-image: url(../svg/stranded-rat.svg); } }

.floor {
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: lightgrey;
  background-repeat: repeat;
  z-index: 0; }

.booking-desk {
  background-image: url(../img/booking-desk.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  height: 150px;
  width: 220px;
  position: absolute;
  z-index: 1;
  left: 600px;
  bottom: 450px;
  filter: drop-shadow(3px -3px 1px #3b3b3b); }
  .booking-desk.character-interaction {
    background-image: url(../img/booking-desk-on.png); }
    .booking-desk.character-interaction .screen-bubble {
      display: flex; }
  .booking-desk .screen-bubble {
    display: none;
    position: absolute;
    bottom: 100px;
    left: 90px; }
    .booking-desk .screen-bubble button {
      background: transparent;
      cursor: pointer;
      padding: 0;
      opacity: 0; }

.workstation {
  background-image: url(../img/workstation.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  height: 130px;
  width: 170px;
  position: absolute;
  z-index: 1;
  left: 20px;
  bottom: 120px;
  filter: drop-shadow(-6px -3px 1px #3b3b3b); }

.wall {
  position: absolute;
  width: 20px;
  background: #d7d7d7;
  height: 100%;
  bottom: 0;
  z-index: 11; }
  .wall--left {
    right: 0;
    filter: drop-shadow(-3px 0px 0px #3b3b3b); }
  .wall--right {
    right: calc(100% - 20px);
    filter: drop-shadow(3px 0px 0px #3b3b3b); }
  .wall--bottom {
    left: 0;
    width: 100%;
    height: 80px;
    bottom: -60px;
    background: transparent;
    background-image: url(../img/stone-wall-2.jpg);
    background-size: 60%;
    filter: drop-shadow(0px 3px 0px black); }
    .wall--bottom .door {
      position: absolute;
      right: 210px;
      bottom: 0;
      height: 85%;
      width: 60px;
      background-color: #351f17; }

.wood {
  background-image: url(../img/stone-wall-2.jpg);
  background-repeat: repeat;
  background-size: 100%;
  height: 500px;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  opacity: 0.7;
  filter: drop-shadow(0px 3px 0px black); }
  .wood .logo {
    background-image: url(../img/logo-transparent-smaller.png);
    background-repeat: repeat;
    background-size: 100%;
    height: 250px;
    width: 250px;
    position: absolute;
    left: 590px;
    bottom: 60px;
    z-index: 0;
    filter: drop-shadow(0px -3px 0px black); }
  .wood .jameson {
    animation: 420ms infinite alternate flicker;
    background-image: url(../img/jameson.png);
    background-repeat: repeat;
    background-size: contain;
    height: 65px;
    width: 250px;
    position: absolute;
    left: 590px;
    bottom: 140px;
    z-index: 0;
    filter: drop-shadow(0px 3px 1px black);
    display: none; }

@keyframes flicker {
  from {
    background-image: url(../img/jameson.png); }
  to {
    background-image: url(../img/jameson-light.png); } }

.concrete {
  background-image: url(../img/floor-tile-wood.jpg);
  background-repeat: repeat;
  background-size: 10%;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  opacity: 0.7; }

.boxing-bag {
  background-image: url(../img/boxing-bag.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  height: 110px;
  width: 110px;
  position: absolute;
  z-index: 11;
  left: 420px;
  bottom: 40px;
  filter: drop-shadow(-3px 4px 1px #3b3b3b); }

.flower {
  background-image: url(../img/flower.png);
  background-size: contain;
  background-repeat: repeat;
  height: 50px;
  width: 50px;
  position: absolute;
  left: 810px;
  bottom: 470px; }

.plant {
  background-image: url(../img/plant.png);
  background-size: contain;
  background-repeat: repeat;
  height: 80px;
  width: 80px;
  position: absolute;
  left: 30px;
  bottom: 300px; }

.cabinet {
  background-image: url(../img/cabinet.png);
  background-size: contain;
  background-repeat: no-repeat;
  height: 100px;
  width: 70px;
  position: absolute;
  left: 480px;
  bottom: 160px;
  z-index: 1; }

.radio {
  background-image: url(../img/radio.png);
  background-size: contain;
  background-repeat: repeat;
  height: 50px;
  width: 50px;
  position: absolute;
  left: 490px;
  bottom: 240px;
  z-index: 11; }

.carpet {
  background-image: url(../img/floor-tile-ai-px-smaller.jpg);
  background-repeat: repeat;
  height: 220px;
  width: 140px;
  position: absolute;
  left: 310px;
  bottom: 260px;
  z-index: 1;
  transform: rotateZ(90deg);
  filter: drop-shadow(0px 0px 2px #3b3b3b); }

.carpet2 {
  background-image: url(../img/floor-tile-ai-3.jpg);
  background-repeat: repeat;
  background-size: 100%;
  height: 200px;
  width: 200px;
  position: absolute;
  left: 570px;
  bottom: 90px;
  z-index: 1;
  opacity: 0.7;
  filter: drop-shadow(0px 0px 2px #3b3b3b); }

.table-soccer {
  background-image: url(../img/soccer-4.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  height: 100px;
  width: 150px;
  position: absolute;
  z-index: 1;
  left: 310px;
  bottom: 330px;
  filter: drop-shadow(-3px 6px 6px #3b3b3b); }

.floor-lamp {
  background-image: url(../img/floor-lamp.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  height: 130px;
  width: 113px;
  position: absolute;
  z-index: 1;
  left: 20px;
  bottom: 450px;
  filter: drop-shadow(-7px -4px 1px #3b3b3b); }

.armchair {
  background-image: url(../img/armchair.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  height: 100px;
  width: 90px;
  position: absolute;
  z-index: 1;
  left: 110px;
  bottom: 450px;
  filter: drop-shadow(-7px -4px 1px #3b3b3b); }

.motorcycle {
  position: absolute;
  z-index: 1;
  display: flex;
  flex-direction: column;
  left: 830px;
  bottom: 160px;
  filter: drop-shadow(5px -4px 1px #3b3b3b); }
  .motorcycle-1 {
    background-image: url(../img/motorcycle-2.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    height: 100px;
    width: 150px; }
  .motorcycle-2 {
    background-image: url(../img/motorcycle-3.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    height: 100px;
    width: 150px;
    margin-top: -20px; }

.racetrack {
  display: none;
  background: grey;
  position: fixed;
  height: 60vh;
  width: 23000px;
  bottom: 0;
  right: 0;
  transition: 80ms all ease;
  z-index: 1; }
  .racetrack[data-count="0"] .countdown {
    display: none; }
  .racetrack[data-count="0"] .gear-up {
    pointer-events: initial;
    opacity: 1; }
  .racetrack[data-count="0"] .gear-down {
    pointer-events: initial;
    opacity: 1; }
  .racetrack .background {
    background-image: url(../img/wasteland-3.jpg);
    background-size: 260px;
    position: absolute;
    height: 200%;
    width: 200%;
    left: -50%;
    top: -50%;
    z-index: -1; }
  .racetrack .end-racing {
    position: fixed;
    right: 50px;
    top: 50px;
    z-index: 10; }
    .racetrack .end-racing button {
      background-color: #2d4341;
      outline: 3px solid black;
      border-top: 2px solid rgba(85, 151, 148, 0.567);
      line-height: 24px;
      color: #ffde4c;
      cursor: pointer;
      font-weight: bold;
      border: transparent; }
  .racetrack .reset-racing {
    position: fixed;
    right: 50px;
    top: 90px;
    z-index: 10; }
    .racetrack .reset-racing button {
      background-color: #2d4341;
      outline: 3px solid black;
      border-top: 2px solid rgba(85, 151, 148, 0.567);
      line-height: 24px;
      color: #ffde4c;
      cursor: pointer;
      font-weight: bold;
      border: transparent; }
  .racetrack .countdown {
    position: fixed;
    left: 40%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 200px;
    width: 200px;
    background-color: #ffffff99;
    z-index: 1;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center; }
    .racetrack .countdown .countdown-nr {
      font-size: 32px;
      font-weight: bold; }
  .racetrack .start {
    position: absolute;
    right: 200px;
    bottom: -20px;
    height: 100%;
    width: 20px;
    background: #9fa8fe;
    z-index: 1;
    box-shadow: -2px 0px 3px black;
    border-top: 20px solid #b5b5b5;
    border-bottom: 20px solid #b5b5b5; }
  .racetrack .finish {
    position: absolute;
    left: 2000px;
    bottom: 0;
    height: 100%;
    width: 500px;
    border-right: 20px solid white;
    z-index: 1; }
  .racetrack .surface {
    background-image: url(../img/floor-tile-concrete.jpg);
    background-size: 100px;
    position: absolute;
    height: 100%;
    width: 100%;
    right: 0;
    z-index: 1; }
  .racetrack .track {
    background-image: url(../img/asphalt.jpg);
    background-size: 100px;
    position: absolute;
    height: 40%;
    width: 100%;
    right: 0;
    filter: drop-shadow(0px 6px 3px #3b3b3b);
    box-shadow: inset 0 0 10px black; }
    .racetrack .track--top {
      top: 5%; }
    .racetrack .track--bottom {
      bottom: 5%; }
  .racetrack .rat-racer {
    position: absolute;
    display: inline-flex;
    background-image: url(../img/rat-racer.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    right: 0;
    top: 50%;
    transform: translateY(-65%);
    z-index: 1;
    height: 110px;
    width: 130px;
    transition: 80ms all ease;
    filter: drop-shadow(-3px -3px 1px #3b3b3b);
    z-index: 1;
    margin-right: 80px; }
  .racetrack .character-racer {
    position: absolute;
    display: inline-flex;
    background-image: url(../img/character-racer.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    right: 0;
    top: 50%;
    transform: translateY(-65%);
    z-index: 1;
    height: 110px;
    width: 130px;
    transition: 80ms all ease;
    filter: drop-shadow(-3px -3px 1px #3b3b3b);
    z-index: 1;
    margin-right: 80px; }
  .racetrack .barrel {
    position: absolute;
    background-image: url(../img/barrel.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    right: 3045px;
    bottom: -70px;
    z-index: 10;
    height: 70px;
    width: 50px;
    transition: 80ms all ease;
    filter: drop-shadow(-3px -2px 1px #3b3b3b); }
  .racetrack .oil-spill {
    position: absolute;
    background-image: url(../img/oil-spill.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    right: 3065px;
    bottom: -100px;
    z-index: 0;
    height: 70px;
    width: 70px;
    transition: 80ms all ease; }
  .racetrack .scull {
    position: absolute;
    background-image: url(../img/scull.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    right: 3470px;
    bottom: -160px;
    z-index: 0;
    height: 200px;
    width: 30px;
    transition: 80ms all ease; }
  .racetrack .bone {
    position: absolute;
    background-image: url(../img/bone.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    right: 3495px;
    bottom: -110px;
    z-index: 0;
    height: 30px;
    width: 40px;
    transition: 80ms all ease; }
  .racetrack .bone2 {
    position: absolute;
    background-image: url(../img/bone2.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    right: 3580px;
    bottom: -100px;
    z-index: 0;
    height: 30px;
    width: 40px;
    transition: 80ms all ease; }
  .racetrack .bone3 {
    position: absolute;
    background-image: url(../img/bone3.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    right: 3525px;
    bottom: -120px;
    z-index: 0;
    height: 30px;
    width: 40px;
    transition: 80ms all ease; }
  .racetrack .stranded-rat {
    animation: 300ms infinite alternate knife;
    position: absolute;
    display: inline-flex;
    background-image: url(../svg/stranded-rat.svg);
    background-repeat: no-repeat;
    background-position: bottom;
    right: 3000px;
    bottom: -50px;
    z-index: 10;
    height: 225px;
    width: 60px;
    transition: 80ms all ease;
    filter: drop-shadow(-3px -2px 1px #3b3b3b); }
    .racetrack .stranded-rat.character-interaction .talk-bubble {
      display: flex; }
    .racetrack .stranded-rat .talk-bubble {
      display: none;
      position: absolute;
      bottom: 100px;
      padding: 11.2px;
      padding: 0.7rem;
      left: 100%;
      background-color: #ffffff;
      border-radius: 3px; }
      .racetrack .stranded-rat .talk-bubble:before {
        content: ' ';
        position: absolute;
        width: 0;
        height: 0;
        left: 0px;
        right: auto;
        top: auto;
        bottom: -20px;
        border: 20px solid;
        border-color: transparent transparent transparent #fff;
        z-index: -1; }
    .racetrack .stranded-rat button {
      background-color: #2d4341;
      outline: 3px solid black;
      border-top: 2px solid rgba(85, 151, 148, 0.567);
      line-height: 24px;
      color: #ffde4c;
      cursor: pointer;
      font-weight: bold;
      border: transparent; }

@keyframes knife {
  25% {
    background-image: url(../svg/stranded-rat-knife.svg); }
  50% {
    background-image: url(../svg/stranded-rat-knife-2.svg); }
  75% {
    background-image: url(../svg/stranded-rat-knife-3.svg); }
  100% {
    background-image: url(../svg/stranded-rat.svg); } }
  .racetrack .rev-container {
    background-color: #ffffff99;
    border: 2px solid;
    position: fixed;
    width: 130px;
    height: 30px;
    right: 80px;
    bottom: 60px;
    z-index: 10;
    border-radius: 23px; }
  .racetrack .rev {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 10%;
    height: 100%;
    background-color: green;
    border-radius: 23px; }
  .racetrack .gear-up {
    position: absolute;
    opacity: 0.7;
    right: 100%;
    margin-right: 5px;
    bottom: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #2d4341;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    cursor: pointer;
    color: white; }
  .racetrack .gear-down {
    position: absolute;
    opacity: 0.7;
    left: 100%;
    margin-left: 5px;
    bottom: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #598f8a;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    cursor: pointer;
    color: white; }
  .racetrack .time-container {
    position: fixed;
    left: 50px;
    top: 50px;
    z-index: 10; }
    .racetrack .time-container .time {
      background-color: #ffffff;
      margin: 8px;
      margin: 0.5rem;
      padding: 3.2px;
      padding: 0.2rem;
      font-weight: bold; }
      .racetrack .time-container .time:first-child {
        margin-top: 0; }
      .racetrack .time-container .time.js-time-rat {
        border: 2px solid orange; }
      .racetrack .time-container .time.js-time-character {
        border: 2px solid blue; }

.barber {
  display: none;
  background-image: url(../img/wasteland-3.jpg);
  background-size: 300px;
  position: fixed;
  height: 100vh;
  width: 100vw;
  bottom: 0;
  right: 0;
  transition: 80ms all ease;
  z-index: 2;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none; }
  .barber * {
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none; }
  @media (max-width: 768px) {
    .barber {
      overflow: auto; }
      .barber .barber__content {
        position: relative;
        z-index: 1;
        display: flex;
        justify-content: center;
        top: initial;
        transform: unset;
        background: #ffffffd9;
        /* margin: 0 auto; */
        max-width: 35rem;
        padding: 1rem;
        border-radius: 14px;
        /* overflow: auto; */
        /* height: 100%; */
        overflow: auto;
        padding-bottom: 40rem;
        padding-top: 5rem; } }
  .barber__content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffffe3;
    margin: 0 auto;
    max-width: 560px;
    max-width: 35rem;
    padding: 16px;
    padding: 1rem;
    border-radius: 14px; }
  .barber__background {
    background-image: url(../img/boxing-bg.jpg);
    background-size: contain;
    background-position: bottom;
    background-repeat: repeat-x;
    background-color: #64d4cc;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0px;
    z-index: 0;
    opacity: 0.7; }
  .barber .end-barber {
    position: fixed;
    right: 50px;
    top: 90px;
    z-index: 10; }
    .barber .end-barber button {
      background-color: #2d4341;
      outline: 3px solid black;
      border-top: 2px solid rgba(85, 151, 148, 0.567);
      line-height: 24px;
      color: #ffde4c;
      cursor: pointer;
      font-weight: bold;
      border: transparent;
      -webkit-user-select: none;
         -moz-user-select: none;
              user-select: none; }
  .barber .reset-barber {
    position: fixed;
    right: 50px;
    top: 130px;
    z-index: 10; }
    .barber .reset-barber button {
      background-color: #2d4341;
      outline: 3px solid black;
      border-top: 2px solid rgba(85, 151, 148, 0.567);
      line-height: 24px;
      color: #ffde4c;
      cursor: pointer;
      font-weight: bold;
      border: transparent;
      -webkit-user-select: none;
         -moz-user-select: none;
              user-select: none; }

.dresser {
  display: flex;
  flex-flow: row wrap;
  -moz-column-gap: 5rem;
       column-gap: 5rem;
  row-gap: 32px;
  row-gap: 2rem;
  justify-content: center;
  align-items: center;
  text-align: right;
  max-width: 640px;
  max-width: 40rem; }
  .dresser__controls {
    display: flex;
    flex-direction: column;
    max-width: 192px;
    max-width: 12rem;
    align-items: center; }
  .dresser svg {
    filter: drop-shadow(darkgrey 0px 0px 1px); }
  .dresser__canvas {
    border-radius: 20px;
    background-image: url(../../assets/img/mirror.png);
    overflow: hidden;
    padding: 81.6px 40px;
    padding: 5.1rem 2.5rem;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 110%; }
    .dresser__canvas > svg {
      position: relative;
      top: 41.6px;
      top: 2.6rem; }

.boxing {
  display: none;
  background-image: url(../img/wasteland-3.jpg);
  background-size: 300px;
  position: fixed;
  height: 100vh;
  width: 100vw;
  bottom: 0;
  right: 0;
  transition: 80ms all ease;
  z-index: 2;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none; }
  .boxing * {
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none; }
  .boxing[data-count="0"] .countdown {
    display: none; }
  .boxing__health {
    position: fixed;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 80vw;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center; }
    .boxing__health .rat-health, .boxing__health .character-health {
      height: 100%;
      width: 40%;
      position: absolute;
      border: 2px solid black; }
      .boxing__health .rat-health .health-meter, .boxing__health .character-health .health-meter {
        position: absolute;
        top: 0;
        background-color: red;
        width: 100%;
        height: 20px; }
    .boxing__health .rat-health {
      left: 0; }
      .boxing__health .rat-health .health-meter {
        left: 0; }
    .boxing__health .character-health {
      right: 0; }
      .boxing__health .character-health .health-meter {
        right: 0; }
  .boxing__background {
    background-image: url(../img/boxing-bg.jpg);
    background-size: contain;
    background-position: bottom;
    background-repeat: repeat-x;
    background-color: #64d4cc;
    height: 70%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0px;
    z-index: 0;
    opacity: 0.7; }
  .boxing__ground {
    position: absolute;
    height: 30vh;
    width: 100%;
    bottom: 70px;
    left: 0; }
    .boxing__ground .character-boxing {
      position: absolute;
      display: inline-flex;
      background-size: 90px;
      background-repeat: no-repeat;
      background-position: center;
      left: calc(50% - 50px);
      bottom: 50px;
      z-index: 1;
      height: 200px;
      width: 140px;
      transition: 80ms all ease;
      filter: drop-shadow(-3px -3px 1px #3b3b3b); }
      .boxing__ground .character-boxing img {
        width: 100%; }
    .boxing__ground .rat-boxing {
      position: absolute;
      display: inline-flex;
      background-size: 90px;
      background-repeat: no-repeat;
      background-position: center;
      right: calc(50% - 50px);
      bottom: 50px;
      z-index: 1;
      height: 200px;
      width: 140px;
      transition: 80ms all ease;
      filter: drop-shadow(-3px -3px 1px #3b3b3b); }
      .boxing__ground .rat-boxing img {
        width: 100%; }
  .boxing__controls {
    position: fixed;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    width: 200px;
    align-items: center;
    justify-content: space-between; }
    .boxing__controls .hit {
      border-radius: 50%;
      background: #5bc023;
      height: 50px;
      width: 50px;
      border: 2px solid black;
      -webkit-user-select: none;
         -moz-user-select: none;
              user-select: none; }
    .boxing__controls .defense {
      border-radius: 50%;
      background: white;
      height: 50px;
      width: 50px;
      border: 2px solid black;
      -webkit-user-select: none;
         -moz-user-select: none;
              user-select: none; }
  .boxing .end-boxing {
    position: fixed;
    right: 50px;
    top: 90px;
    z-index: 10; }
    .boxing .end-boxing button {
      background-color: #2d4341;
      outline: 3px solid black;
      border-top: 2px solid rgba(85, 151, 148, 0.567);
      line-height: 24px;
      color: #ffde4c;
      cursor: pointer;
      font-weight: bold;
      border: transparent;
      -webkit-user-select: none;
         -moz-user-select: none;
              user-select: none; }
  .boxing .reset-boxing {
    position: fixed;
    right: 50px;
    top: 130px;
    z-index: 10; }
    .boxing .reset-boxing button {
      background-color: #2d4341;
      outline: 3px solid black;
      border-top: 2px solid rgba(85, 151, 148, 0.567);
      line-height: 24px;
      color: #ffde4c;
      cursor: pointer;
      font-weight: bold;
      border: transparent;
      -webkit-user-select: none;
         -moz-user-select: none;
              user-select: none; }
  .boxing .countdown {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 200px;
    width: 200px;
    background-color: #ffffff99;
    z-index: 1;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center; }
    .boxing .countdown .countdown-nr {
      font-size: 32px;
      font-weight: bold; }

.soccer {
  display: none;
  background-image: url(../img/wasteland-3.jpg);
  background-size: 300px;
  position: fixed;
  height: 100vh;
  width: 100vw;
  bottom: 0;
  right: 0;
  transition: 80ms all ease;
  z-index: 2;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none; }
  .soccer * {
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none; }
  .soccer[data-count="0"] .countdown {
    display: none; }
  .soccer__points {
    position: fixed;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 80vw;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center; }
    .soccer__points .rat-points, .soccer__points .character-points {
      height: 48px;
      height: 3rem;
      width: 48px;
      width: 3rem;
      position: absolute;
      border: 2px solid black;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 21px;
      background: #ffffffd6; }
    .soccer__points .rat-points {
      border: 2px solid red;
      left: 0; }
    .soccer__points .character-points {
      border: 2px solid green;
      right: 0; }
  .soccer__background {
    background-image: url(../img/boxing-bg.jpg);
    background-size: contain;
    background-position: bottom;
    background-repeat: repeat-x;
    background-color: #64d4cc;
    height: 70%;
    width: 100%;
    position: absolute;
    left: 0;
    top: -130px;
    z-index: 0;
    opacity: 0.7; }
  .soccer__ground {
    position: absolute;
    height: 30vh;
    width: 100%;
    bottom: 70px;
    left: 0; }
    .soccer__ground .character-soccer {
      position: absolute;
      display: inline-flex;
      background-size: 90px;
      background-repeat: no-repeat;
      background-position: center;
      left: calc(50% - 70px);
      bottom: -70px;
      z-index: 3;
      height: 200px;
      width: 140px;
      transition: 80ms all ease;
      filter: drop-shadow(-3px -3px 1px #3b3b3b); }
      .soccer__ground .character-soccer img {
        width: 100%; }
    .soccer__ground .rat-soccer {
      position: absolute;
      display: inline-flex;
      background-size: 90px;
      background-repeat: no-repeat;
      background-position: center;
      right: calc(50% - 50px);
      bottom: 140px;
      z-index: 1;
      height: 160px;
      width: 100px;
      transition: 80ms all ease;
      filter: drop-shadow(-3px -3px 1px #3b3b3b); }
      .soccer__ground .rat-soccer img {
        width: 100%; }
  .soccer__controls {
    position: fixed;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    width: 200px;
    align-items: center;
    justify-content: space-between;
    z-index: 4; }
    .soccer__controls .defense-left {
      border-radius: 50%;
      background: white;
      height: 50px;
      width: 50px;
      border: 2px solid black;
      -webkit-user-select: none;
         -moz-user-select: none;
              user-select: none; }
    .soccer__controls .defense-right {
      border-radius: 50%;
      background: white;
      height: 50px;
      width: 50px;
      border: 2px solid black;
      -webkit-user-select: none;
         -moz-user-select: none;
              user-select: none; }
  .soccer__ball-track {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 250px;
    z-index: 2; }
    .soccer__ball-track .football {
      background-image: url(../img/football.png);
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
      height: 48px;
      height: 3rem;
      width: 48px;
      width: 3rem;
      position: absolute;
      z-index: 1;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      transition: 80ms all ease-out; }
      .soccer__ball-track .football[data-hit=left] {
        transition: 1000ms all ease-out;
        top: 100% !important;
        left: 0 !important; }
      .soccer__ball-track .football[data-hit=right] {
        transition: 1000ms all ease-out;
        top: 100% !important;
        left: calc(100% - 1rem) !important; }
      .soccer__ball-track .football[data-hit=left-catch] {
        transition: 1000ms all ease-out;
        top: 0% !important;
        left: 20% !important; }
      .soccer__ball-track .football[data-hit=right-catch] {
        transition: 1000ms all ease-out;
        top: 0% !important;
        left: 80% !important; }
  .soccer .countdown {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 200px;
    width: 200px;
    background-color: #ffffff99;
    z-index: 1;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center; }
    .soccer .countdown .countdown-nr {
      font-size: 32px;
      font-weight: bold; }
  .soccer .end-soccer {
    position: fixed;
    right: 50px;
    top: 90px;
    z-index: 10; }
  .soccer .reset-soccer {
    position: fixed;
    right: 50px;
    top: 130px;
    z-index: 10; }

@keyframes soccer-idle {
  0% {
    background-image: url(../svg/soccer-rat-idle.svg); }
  25% {
    background-image: url(../svg/soccer-rat-idle-left.svg); }
  50% {
    background-image: url(../svg/soccer-rat-idle.svg); }
  100% {
    background-image: url(../svg/soccer-rat-idle-right.svg); } }

.js-character {
  position: absolute;
  display: inline-flex;
  background-image: url(../svg/character.svg);
  background-repeat: no-repeat;
  background-position: center;
  left: 500px;
  bottom: 270px;
  z-index: 10;
  height: 100px;
  width: 50px;
  text-align: center;
  transition: 80ms all ease;
  filter: drop-shadow(2px -2px 1px #3b3b3b); }
  .js-character.scratch {
    animation: 220ms infinite alternate scratch; }

@keyframes scratch {
  from {
    background-image: url(../svg/character-scratch-2.svg); }
  to {
    background-image: url(../svg/character-scratch-1.svg); } }

.booking-rat {
  animation: 260ms infinite alternate idle;
  position: absolute;
  display: inline-flex;
  background-image: url(../svg/booking-rat.svg);
  background-repeat: no-repeat;
  background-position: center;
  left: -35px;
  bottom: -10px;
  z-index: 10;
  height: 110px;
  width: 50px;
  transition: 80ms all ease; }
  .booking-rat.character-interaction .talk-bubble {
    display: flex; }
  .booking-rat .talk-bubble {
    display: none;
    position: absolute;
    bottom: 100%;
    padding: 11.2px;
    padding: 0.7rem;
    left: 100%;
    background-color: #ffffff;
    border-radius: 3px; }
    .booking-rat .talk-bubble:before {
      content: ' ';
      position: absolute;
      width: 0;
      height: 0;
      left: 0px;
      right: auto;
      top: auto;
      bottom: -20px;
      border: 20px solid;
      border-color: transparent transparent transparent #fff;
      z-index: -1; }
    .booking-rat .talk-bubble button {
      background-color: #2d4341;
      outline: 3px solid black;
      border-top: 2px solid rgba(85, 151, 148, 0.567);
      line-height: 24px;
      color: #ffde4c;
      cursor: pointer;
      font-weight: bold;
      border: transparent; }

@keyframes idle {
  from {
    background-image: url(../svg/booking-rat-neck.svg); }
  to {
    background-image: url(../svg/booking-rat.svg); } }

.moto-rat {
  animation: 200ms infinite alternate foot;
  position: absolute;
  display: inline-flex;
  background-image: url(../svg/moto-rat.svg);
  background-repeat: no-repeat;
  background-position: center;
  left: -25px;
  bottom: 50px;
  z-index: 10;
  height: 110px;
  width: 50px;
  transition: 80ms all ease; }
  .moto-rat.character-interaction {
    animation: none; }
    .moto-rat.character-interaction .talk-bubble {
      display: flex; }
  .moto-rat .talk-bubble {
    display: none;
    position: absolute;
    bottom: 100%;
    padding: 11.2px;
    padding: 0.7rem;
    left: 100%;
    background-color: #ffffff;
    border-radius: 3px; }
    .moto-rat .talk-bubble:before {
      content: ' ';
      position: absolute;
      width: 0;
      height: 0;
      left: 0px;
      right: auto;
      top: auto;
      bottom: -20px;
      border: 20px solid;
      border-color: transparent transparent transparent #fff;
      z-index: -1; }
    .moto-rat .talk-bubble button {
      background-color: #2d4341;
      outline: 3px solid black;
      border-top: 2px solid rgba(85, 151, 148, 0.567);
      line-height: 24px;
      color: #ffde4c;
      cursor: pointer;
      font-weight: bold;
      border: transparent; }

@keyframes foot {
  from {
    background-image: url(../svg/moto-rat-foot.svg); }
  to {
    background-image: url(../svg/moto-rat.svg); } }

.book-rat {
  animation: 1200ms infinite alternate read;
  position: absolute;
  display: inline-flex;
  background-image: url(../svg/book-rat.svg);
  background-repeat: no-repeat;
  background-position: center;
  left: 19px;
  bottom: 0px;
  z-index: 10;
  height: 90px;
  width: 55px;
  transition: 80ms all ease; }
  .book-rat.character-interaction .talk-bubble {
    display: flex; }
  .book-rat .talk-bubble {
    display: none;
    position: absolute;
    bottom: 100%;
    padding: 11.2px;
    padding: 0.7rem;
    left: 100%;
    background-color: #ffffff;
    border-radius: 3px; }
    .book-rat .talk-bubble:before {
      content: ' ';
      position: absolute;
      width: 0;
      height: 0;
      left: 0px;
      right: auto;
      top: auto;
      bottom: -20px;
      border: 20px solid;
      border-color: transparent transparent transparent #fff;
      z-index: -1; }
    .book-rat .talk-bubble button {
      background-color: #2d4341;
      outline: 3px solid black;
      border-top: 2px solid rgba(85, 151, 148, 0.567);
      line-height: 24px;
      color: #ffde4c;
      cursor: pointer;
      font-weight: bold;
      border: transparent; }

@keyframes read {
  0% {
    background-image: url(../svg/book-rat-page-2.svg); }
  50% {
    background-image: url(../svg/book-rat-page.svg); }
  100% {
    background-image: url(../svg/book-rat.svg); } }

.working-rat {
  animation: 360ms infinite alternate idle-mop;
  position: absolute;
  display: inline-flex;
  background-image: url(../svg/working-rat.svg);
  background-repeat: no-repeat;
  background-position: center;
  right: -50px;
  bottom: -20px;
  z-index: 10;
  height: 110px;
  width: 90px;
  transition: 80ms all ease; }
  .working-rat.character-interaction {
    animation: none;
    background-image: url(../svg/working-rat-talk.svg); }
    .working-rat.character-interaction .talk-bubble {
      display: flex; }
  .working-rat .talk-bubble {
    display: none;
    position: absolute;
    bottom: 100%;
    padding: 11.2px;
    padding: 0.7rem;
    left: calc(100% - 30px);
    background-color: white;
    border-radius: 3px; }
    .working-rat .talk-bubble:before {
      content: ' ';
      position: absolute;
      width: 0;
      height: 0;
      left: 0px;
      right: auto;
      top: auto;
      bottom: -20px;
      border: 20px solid;
      border-color: transparent transparent transparent #fff;
      z-index: -1; }
    .working-rat .talk-bubble button {
      background-color: #2d4341;
      outline: 3px solid black;
      border-top: 2px solid rgba(85, 151, 148, 0.567);
      line-height: 24px;
      color: #ffde4c;
      cursor: pointer;
      font-weight: bold;
      border: transparent; }

@keyframes idle-mop {
  from {
    background-image: url(../svg/working-rat-mop.svg); }
  to {
    background-image: url(../svg/working-rat.svg); } }

.room .boxing-rat {
  animation: 1000ms infinite alternate room-boxing-idle;
  position: absolute;
  display: inline-flex;
  background-image: url(../svg/boxing-rat-hit-Copy.svg);
  background-repeat: no-repeat;
  background-position: center;
  left: -5px;
  bottom: -55px;
  z-index: 10;
  height: 110px;
  width: 50px;
  transition: 80ms all ease; }
  .room .boxing-rat.character-interaction .talk-bubble {
    display: flex; }
  .room .boxing-rat .talk-bubble {
    display: none;
    position: absolute;
    bottom: 100%;
    padding: 11.2px;
    padding: 0.7rem;
    left: 100%;
    background-color: #ffffff;
    border-radius: 3px; }
    .room .boxing-rat .talk-bubble:before {
      content: ' ';
      position: absolute;
      width: 0;
      height: 0;
      left: 0px;
      right: auto;
      top: auto;
      bottom: -20px;
      border: 20px solid;
      border-color: transparent transparent transparent #fff;
      z-index: -1; }
    .room .boxing-rat .talk-bubble button {
      background-color: #2d4341;
      outline: 3px solid black;
      border-top: 2px solid rgba(85, 151, 148, 0.567);
      line-height: 24px;
      color: #ffde4c;
      cursor: pointer;
      font-weight: bold;
      border: transparent; }

@keyframes room-boxing-idle {
  0% {
    background-image: url(../svg/boxing-rat-idle-Copy.svg); }
  25% {
    background-image: url(../svg/boxing-rat-hit-Copy.svg); }
  50% {
    background-image: url(../svg/boxing-rat-idle-Copy.svg); }
  100% {
    background-image: url(../svg/boxing-rat-hit-Copy.svg); } }

.room .soccer-rat {
  animation: 1000ms infinite alternate room-soccer-idle;
  position: absolute;
  display: inline-flex;
  background-image: url(../svg/soccer-rat-idle.svg);
  background-repeat: no-repeat;
  background-position: center top;
  left: 355px;
  bottom: 360px;
  z-index: 12;
  height: 120px;
  width: 60px;
  transition: 80ms all ease; }
  .room .soccer-rat.character-interaction .talk-bubble {
    display: flex; }
  .room .soccer-rat .talk-bubble {
    display: none;
    position: absolute;
    bottom: 100%;
    padding: 11.2px;
    padding: 0.7rem;
    left: 100%;
    background-color: #ffffff;
    border-radius: 3px; }
    .room .soccer-rat .talk-bubble:before {
      content: ' ';
      position: absolute;
      width: 0;
      height: 0;
      left: 0px;
      right: auto;
      top: auto;
      bottom: -20px;
      border: 20px solid;
      border-color: transparent transparent transparent #fff;
      z-index: -1; }
    .room .soccer-rat .talk-bubble button {
      background-color: #2d4341;
      outline: 3px solid black;
      border-top: 2px solid rgba(85, 151, 148, 0.567);
      line-height: 24px;
      color: #ffde4c;
      cursor: pointer;
      font-weight: bold;
      border: transparent; }

@keyframes room-soccer-idle {
  0% {
    background-image: url(../svg/soccer-rat-idle.svg); }
  25% {
    background-image: url(../svg/soccer-rat-idle-left.svg); }
  50% {
    background-image: url(../svg/soccer-rat-idle.svg); }
  100% {
    background-image: url(../svg/soccer-rat-idle-right.svg); } }

.client-rat {
  box-shadow: inset 0 0 14px #888888;
  border-radius: 50%;
  padding: 32px;
  padding: 2rem;
  width: 112px;
  width: 7rem;
  height: 112px;
  height: 7rem;
  background-color: #ffffff6b;
  overflow: hidden; }
  .client-rat svg {
    width: 100%;
    position: relative;
    bottom: -7px; }
    .client-rat svg path {
      transition: 150ms all ease; }

.dialog {
  border: 30px solid pink;
  width: 100%;
  max-width: 60vw;
  max-height: 70vh;
  overflow: auto;
  margin: 16px;
  margin: 1rem;
  -o-border-image: url(../svg/px-border.png);
     border-image: url(../svg/px-border.png);
  border-image-slice: 20 fill;
  border-image-width: 20px;
  border-image-repeat: repeat;
  background: #d8dd83;
  border-color: transparent;
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 10px -10px 1px #4749446e; }
  @media (max-width: 768px) {
    .dialog {
      max-width: 100%; } }
  .dialog .nota {
    margin-bottom: 8px;
    margin-bottom: 0.5rem; }
  .dialog h2 {
    margin-top: 0; }
  .dialog button {
    background-color: #2d4341;
    outline: 3px solid black;
    border-top: 2px solid rgba(85, 151, 148, 0.567);
    line-height: 24px;
    color: #ffde4c;
    cursor: pointer;
    font-weight: bold;
    border: transparent;
    display: flex;
    align-items: center;
    justify-content: center; }
    .dialog button img, .dialog button svg {
      max-height: 100%;
      max-width: 100%;
      width: 100%;
      -webkit-user-select: none;
         -moz-user-select: none;
              user-select: none;
      max-height: 32px;
      max-height: 2rem;
      width: auto;
      max-width: 16px;
      max-width: 1rem; }
  .dialog .form-item {
    margin: 16px 0;
    margin: 1rem 0; }
    .dialog .form-item.externally-controlled {
      display: none; }
    .dialog .form-item__header {
      margin-bottom: 8px;
      margin-bottom: 0.5rem;
      font-weight: bold;
      font-size: 21px; }
  .dialog__nav {
    display: flex;
    align-items: center;
    justify-content: space-between; }

.dialog__backdrop {
  background: rgba(52, 70, 69, 0.567);
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 0; }

.dialogs {
  position: fixed;
  z-index: 11;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none; }
  .dialogs.open {
    display: flex; }

.zombie {
  position: absolute;
  display: none;
  left: 625px;
  bottom: 330px;
  z-index: 10;
  height: 144px;
  width: 100px;
  transition: 80ms all ease; }
  .zombie svg {
    filter: drop-shadow(-1px -1px 1px #636363); }
    .zombie svg path {
      transition: 200ms all ease;
      opacity: 1; }

.nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1; }
  .nav:focus .nav__burger, .nav.focus .nav__burger {
    box-shadow: 0px 0px 16px 7px rgba(170, 196, 68, 0);
    border-image-width: 7px; }
    .nav:focus .nav__burger span, .nav.focus .nav__burger span {
      box-shadow: 0px 0px 10px 7px #9f9d34;
      width: 100%;
      height: 100%; }
  .nav:focus .nav__content, .nav.focus .nav__content {
    display: flex;
    height: 100%;
    z-index: 1; }
  .nav:focus .nav__content-wrapper, .nav.focus .nav__content-wrapper {
    overflow: auto; }
  .nav__burger {
    cursor: pointer;
    box-shadow: 0px 0px 16px 7px #ffffff;
    -o-border-image: url(../svg/px-border.png);
       border-image: url(../svg/px-border.png);
    border-image-slice: 20 fill;
    border-image-width: 20px;
    border-image-repeat: repeat;
    margin: 16px;
    margin: 1rem;
    padding: 3.2px;
    padding: 0.2rem;
    font-size: 12px;
    position: fixed;
    bottom: 0;
    right: 0;
    height: 32px;
    height: 2rem;
    width: 32px;
    width: 2rem;
    background: #086408;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 300ms all ease; }
    .nav__burger span {
      box-shadow: 0px 0px 24px 14px #6e349f;
      transition: 300ms all ease;
      width: 0;
      height: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px; }
  .nav__content {
    max-width: calc(100vw - 2rem);
    -o-border-image: url(../svg/px-border.png);
       border-image: url(../svg/px-border.png);
    border-image-slice: 20 fill;
    border-image-width: 20px;
    border-image-repeat: repeat;
    display: none;
    display: flex;
    z-index: -1;
    overflow: hidden;
    position: fixed;
    bottom: 48px;
    bottom: 3rem;
    margin: 16px;
    margin: 1rem;
    right: 0;
    max-height: calc(70vh - 5rem);
    height: 0;
    width: 320px;
    width: 20rem;
    transition: 300ms all ease;
    background: #086408; }
    .nav__content > div > p {
      padding: 8px;
      padding: 0.5rem;
      margin: 0; }
  .nav__content-wrapper {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    margin: 16px;
    margin: 1rem;
    background-color: #ffffff6e; }
  .nav__contact {
    text-align: center;
    margin-bottom: 112px;
    margin-bottom: 7rem; }
  .nav__booking {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 0;
    padding: 1rem 0;
    margin-top: 32px;
    margin-top: 2rem; }
  .nav__buttons {
    display: flex;
    flex-flow: row wrap;
    justify-content: center; }
    .nav__buttons button {
      margin: 16px;
      margin: 1rem; }

.gallery {
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 13;
  background: #181818f0; }
  .gallery.show {
    display: flex; }
  .gallery.one-picture .gallery__previous, .gallery.one-picture .gallery__next {
    display: none; }
  .gallery[data-view_type="video"] .gallery__video {
    display: block; }
  .gallery[data-view_type="video"] .gallery__audio {
    display: none; }
  .gallery[data-view_type="video"] .gallery__image {
    display: none; }
  .gallery[data-view_type="audio"] .gallery__audio {
    display: block; }
  .gallery[data-view_type="audio"] .gallery__video {
    display: none; }
  .gallery[data-view_type="audio"] .gallery__image {
    display: none; }
  .gallery[data-view_type="image"] .gallery__audio {
    display: none; }
  .gallery[data-view_type="image"] .gallery__video {
    display: none; }
  .gallery[data-view_type="image"] .gallery__image {
    display: block; }
  .gallery__content {
    background-color: white;
    max-height: 80vh;
    max-width: 80%;
    position: relative;
    z-index: 1; }
  .gallery__close {
    position: absolute;
    top: 0;
    right: 0;
    margin: 48px;
    margin: 3rem;
    z-index: 2; }
  .gallery__background-close {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    z-index: 0; }
  .gallery__image, .gallery__video {
    max-height: 80vh;
    max-width: 100%;
    height: auto;
    width: auto;
    position: relative;
    display: block; }
  .gallery__video, .gallery__audio {
    display: none; }
  .gallery__previous {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    margin: 48px;
    margin: 3rem;
    z-index: 1; }
  .gallery__next {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    margin: 48px;
    margin: 3rem;
    z-index: 1; }

.gallery-preview {
  display: flex;
  width: 100%;
  overflow: auto; }
  .gallery-preview__item {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.3;
    transition: 300ms opacity ease;
    cursor: pointer;
    height: 32px;
    height: 2rem;
    margin-left: 8px;
    margin-left: 0.5rem;
    margin-bottom: 8px;
    margin-bottom: 0.5rem;
    width: 32px;
    width: 2rem;
    border-radius: 5px;
    box-shadow: 0 0 6px #626262;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; }
    .gallery-preview__item.autoplay-active {
      opacity: 1; }
    .gallery-preview__item:hover {
      opacity: 1; }
      .gallery-preview__item:hover .gallery-preview__item-play {
        background-color: white; }
    .gallery-preview__item:last-child {
      margin-right: 8px;
      margin-right: 0.5rem; }
  .gallery-preview__item-play {
    background-color: #ffffff8a;
    border-radius: 5px;
    font-size: 0;
    padding: 3.2px;
    padding: 0.2rem;
    transition: 300ms background-color ease, 300ms opacity ease;
    pointer-events: none; }
    .gallery-preview__item-play img {
      max-width: 11.2px;
      max-width: 0.7rem; }
  @media (max-width: 640px) {
    .gallery-preview .gallery-preview__item {
      height: 2.5rem;
      width: 2.5rem;
      margin-left: 0.2rem;
      margin-bottom: 0.2rem; }
      .gallery-preview .gallery-preview__item:last-child {
        margin-right: 0.2rem; }
    .gallery-preview .gallery-preview__item-play img {
      max-width: 0.7rem; } }

.pic-wall {
  position: absolute;
  top: 280px;
  left: 250px;
  display: flex;
  flex-flow: row wrap;
  width: 260px;
  justify-content: center;
  align-items: center; }
  .pic-wall .photo {
    margin: 16px;
    margin: 1rem;
    width: 32px;
    width: 2rem;
    height: 48px;
    height: 3rem;
    background-image: url();
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    transform: rotate(13deg); }

.booking-form {
  text-align: center; }
  .booking-form img.rat-profile {
    max-width: 112px;
    max-width: 7rem;
    padding: 16px;
    padding: 1rem;
    -o-border-image: url(../svg/px-border.png);
       border-image: url(../svg/px-border.png);
    border-image-slice: 20 fill;
    border-image-width: 20px;
    border-image-repeat: repeat; }
  .booking-form .input-date {
    box-shadow: 0 0 110px 19px #ffeac0; }
  .booking-form .js-input {
    padding: 8px;
    padding: 0.5rem;
    width: 90%; }
  .booking-form .form-item {
    text-align: left; }
/*# sourceMappingURL=app.css.map */