/*
Fruit Pick!
Styles for info windows, loggers, and some overlays
© Devignia 2025
*/
   #status {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     padding: 10% 0;
     text-align: center;
     z-index: 1000;
   }
   
   body {
     font-family: monospace;
     margin: 0;
     position: relative;
   }
   
.heading {
  font-family: 'Passion One', display;
  color: purple;
}
.p-min {
  padding: 0.48em;
}
   #logger {
     position: absolute;
     bottom: 1em;
     left: 0;
     color: white;
     z-index: 1000;
     padding: 0.24em 0.48em;
   }
.ulreset{
  position: relative;
}
.ulreset, .ulreset li {
  list-style: none;
  margin: 0;
  padding: 0;
}
   
   #points {
     position: absolute;
     z-index: 1001;
     bottom: 1.48em;
     right: 0.48em;
     color: white;
     font-weight: bold;
     font-size: 1.25em;
     background: #cd0934;
     padding: 0.25em 0.5em;
     border-radius: 25em;
     border: 0.15em solid white;
   }
   
   .arjs-loader {
     height: 20%;
     width: 80%;
     position: absolute;
     top: 10%;
     left: 10%;
     background-color: rgba(0, 0, 0, 0.8);
     z-index: 10;
     display: flex;
     justify-content: center;
     align-items: center;
   }
   
   .arjs-loader div {
     text-align: center;
     font-size: 1.25em;
     color: white !important;
   }
   
   .arjs-loader.ready {
     height: 0 !important;
   }
.arjs-loader.ready div {
  display: none;
}
.big-emoji {
  font-size: 5em;
}

/* logger messages list transitions */
.log {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.log .item {
  box-sizing: border-box;
  height: 20px;
}
.log-move,
.log-enter-active,
.log-leave-active {
  transition: all 1.2s easeInOutQuad;
}

.log-enter-from,
.log-leave-to {
  opacity: 0;
  /*transform: scaleY(0.01) translateX(30px);*/
}

.log-leave-active {
  position: absolute;
}

@keyframes bouncy-text {
  0% {
    transform: scale(1);
  }
  
  50% {
    transform: scale(1.25);
  }
  
  100% {
    transform: scale(1);
  }
}
.bouncy-text {
  animation: bouncy-text 0.5s;
}

.a-loader-title {
   height: 20%;
   width: 80%;
   position: fixed !important;
   top: 40% !important;
   left: 10% !important;
   background-color: transparent !important;
  color: white;
  font-weight: bold !important;
  font-size: 1.2em !important;
}

footer.privacy {
  position: absolute;
  z-index: 100;
  bottom: 0;
  left: 0;
  width: 100%;
  font-size: 0.9em;
  text-align: center;
  opacity: 0.48;
  padding: 0.24em;
}
footer.privacy,
footer.privacy a {
  color: white;
}

.nw-status.online,
.nw-status.offline {
  display: block;
  position: absolute;
  z-index: 100;
  border-radius: 10em;
  top: 0.12em;
  left: 0.48em;
  color: white;
  padding: 0.48em;
  opacity: 0.75;
}
.nw-status span {
  font-size: 0.85em;
  display: block;
}
.nw-status.online {
  background-color: green;
}
.nw-status.offline {
  background-color: red;
}

#installer {
  background: transparent;
  margin-right: 1em;
  border: 0;
  outline: 0;
  color: white;
  font-family: monospace;
  font-size: 1em;
}