/*
 * File Browser System for eli.gift
 * Author: Jeffrey Epstein
 * Date: 01/18/2025
 * License: ISC
 * Copyright (c) 2025 The Jeffrey Epstein VI Foundation
 */

.garbage {
  display: block;
  width: 100%;
  height: calc(100% - 80px);
  background: transparent;
  background-color: white;
  position: relative;
}

body.cia-blue .garbage {
  box-shadow: 0 0 10px rgba(0, 0, 255, 0.7);
  border: 2px solid #00f;
}

body.cia-blue .lain-title {
  color: #00f;
}

body.cia-red .garbage {
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.7);
  border: 2px solid #f00;
}

body.cia-red .lain-title {
  color: #f00;
}

.lain-title {
  text-align: center;
  font-size: 20px;
  font-family: loveletter;
}

.lain-title .mini {
  font-size: 10px;
}

.garbage .content {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.captcha {
  display: none;
  position: absolute;
  background-color: #000d;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity ease-in-out;
  padding: 50px;
  box-sizing: border-box;
  color: white;
}

.captcha .warning {
  font-size: 25px;
  font-weight: 500;
  font-family: loveletter;
  line-height: 40px;
  margin: 0 auto;
}

.captcha .warning .icon {
  height: 1em;
  vertical-align: middle;
}

.captcha .msg {
  text-align: center;
  font-size: 23px;
  font-family: whitespace;
}

.garbage.lock .content {
  filter: blur(10px);
  pointer-events: none;
}

.garbage.lock .captcha {
  display: flex;
  flex-direction: column;
}

.fatass {
  position: absolute;
  border-radius: 10px;
  bottom: 30px;
  right: 2vw;
  opacity: 0.2;
  pointer-events: none;
  z-index: 100;
  perspective: 1000px;
  animation: fatass-fucking-spin 11s linear infinite;
}

@keyframes fatass-fucking-spin {
  0% {
    transform: rotateX(20deg) rotateY(0deg);
  }
  100% {
    transform: rotateX(20deg) rotateY(360deg);
  }
}
