:root {
  --amarillo: #F8C925;
  --gris: rgb(131, 131, 131);
  --blanco: #fafafa;
}


body {
  background: #252525;
  font-family: sans-serif;
}

.tachado {
  text-decoration: line-through;
  color: var(--gris) !important;
}

p {
  margin-bottom: 0px;
  color: var(--blanco);
}


.index {
  width: 100vw;
  height: 100vh;
}

a {
  text-decoration: none;
  color: black;
}

.cajita {
  border: 3px var(--amarillo) solid;
  color: var(--amarillo);
  padding: 1em;
  border-radius: 10px;
  background: linear-gradient(rgba(56, 65, 73, 0.99), rgba(32, 34, 38, 0.7));
  opacity: 0.85;
}

.cajita_disabled {
  color: whitesmoke;
  border: 2px #656152 solid;
  background: linear-gradient(rgba(190, 194, 198, 0.99), rgba(140, 142, 145, 0.7));
}

.cajita_disabled h3 {
  color: whitesmoke;
}

.cajita:hover {
  opacity: 1;
}

/* .cajita h1,h2,h3,h4,h5 {
  color: var(--amarillo);
} */

.cajita_disabled h3 {
  color: var(--gris);
}

.cajita p {
  color: whitesmoke;
}

.cajita h1,
h2,
h3 {
  color: var(--amarillo);
}

.fondo {
  color: rgb(163, 166, 185);
  width: 100%;
  background: linear-gradient(rgba(2, 19, 34, 0.6), rgba(31, 32, 34, 0.6)), url('/img/policescene3.jpg');
  background-size: cover;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  -o-background-size: cover;
  background-attachment: fixed;
}

.avatar {
  border: 1px solid var(--amarillo);
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}

.avatar-xs {
  height: 32px;
  width: 32px;
}

.avatar-s {
  height: 64px;
  width: 64px;
}

.avatar-m {
  height: 96px;
  width: 96px;
}

.avatar-l {
  height: 256px;
  width: 256px;
}

.footer {
  margin: 0px;
  padding: 0px;
  height: 40px;
  color: white;
}

.footer div {
  margin: 0px 10px;
}

.footer p {
  margin: 0px;
}

.footer a {
  margin: 5px;
  height: 40px;
  color: white;
}

.copyleft {
  display: inline-block;
  transform: rotate(180deg);
}


.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Sit on top */
  padding-top: 10em;
  /* Location of the box */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 30%;
}

.centrado {
  text-align: center;
}

/* The Close Button */
.close {
  color: #4d4d4d;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.hazard-background {
  height: 40px;
  margin: 10px 0px 10px 0px;
  color: white;
  padding: 5px;
  background-image: repeating-linear-gradient(-55deg,
      #000,
      #000 20px,
      var(--amarillo) 20px,
      var(--amarillo) 40px);
}

.hazard-border {
  border: 10px solid pink;
  border-image: repeating-linear-gradient(-55deg,
      #000,
      #000 20px,
      var(--amarillo) 20px,
      var(--amarillo) 40px) 10;
}

.btn-style {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  font-size: small;
  color: #e8e8e8;
  background-color: #252525;
  border: 1px solid #e8e8e8;
  font-weight: 800;
}

.btn-style>div>:nth-child(2) {
  font-size: xx-small;
  font-weight: 100;
}

.btn-style>:first-child {
  transform: scaleX(-1);
}

@media (min-width: 992px) {}

/* //INPUTS */
.inputBox {
  position: relative;
}

.inputBox input {
  padding: 10px 15px;
  outline: none;
  background: transparent;
  border-radius: 5px;
  color: #e8e8e8;
  border: 1px solid var(--amarillo);
  font-size: 1em;
}

.inputBox span {
  position: absolute;
  left: 0;

  transform: translateX(14px) translateY(-17.5px);
  padding: 0 6px 1px 5px;
  border-radius: 2px;
  background: #212121;
  letter-spacing: 1px;
  border: 1px solid var(--amarillo);
  color: #e8e8e8;
}

/* // FIN INPUTS */


.donate-button-container {
  position: fixed;
  bottom: 3rem;
  right: 1rem;

  margin: 10px;
  z-index: 10;
  pointer-events: none;
  /* Allow clicking through the container */
}

.donate-button-container img {
  height: 50px;
}

#donate-button {
  background-color: transparent;
  color: white;
  border: none;
  font-size: 18px;
  font-weight: bold;
  border-radius: 50px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  pointer-events: auto;
  /* Enable clicking on the button */
}

#donate-button:hover {
  background-color: var(--amarillo);
  transform: translateY(-2px);
}

#donate-button:active {
  background-color: var(--amarillo);
  transform: translateY(0);
}

.alert-flash {
  z-index: 100;
}

#floating-wa {
  position: fixed;
  bottom: 0.4rem;
  right: 0.4rem;
  margin: 10px;
  z-index: 10;
}

#floating-wa img {
  height: 5rem;
  width: 10rem;
}

  .muerte-container {
      position: relative;
      display: inline-block;
      background: #111;
      padding: 10px;
      border: 5px solid #8b0000;
      border-radius: 10px;
      box-shadow: 0 0 20px #8b0000;
    }

    .muerte-img {
      filter: grayscale(100%) brightness(60%) contrast(90%);
      display: block;
      max-width: 100%;
      height: auto;
      border-radius: 5px;
    }

    .gota {
      position: absolute;
      width: 15px;
      height: 30px;
      background-color: #8b0000;
      border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
      animation: gotear 2s infinite ease-in;
      opacity: 0.8;
    }

    /* Puedes duplicar más gotas con diferentes posiciones y retrasos */
    .gota:nth-child(2) {
      left: 20%;
      top: 10%;
      animation-delay: 0s;
    }

    .gota:nth-child(3) {
      left: 50%;
      top: 0%;
      animation-delay: 0.8s;
    }

    .gota:nth-child(4) {
      left: 75%;
      top: 30%;
      animation-delay: 1.6s;
    }

      .gota:nth-child(5) {
      left: 66%;
      top: 50%;
      animation-delay: 1.6s;
    }
      .gota:nth-child(6) {
      left: 33%;
      top: 60%;
      animation-delay: 1.6s;
    }

    @keyframes gotear {
      0% {
        transform: translateY(0) scaleY(1);
        opacity: 1;
      }
      70% {
        transform: translateY(80px) scaleY(1.2);
        opacity: 0.9;
      }
      100% {
        transform: translateY(100px) scaleY(0.8);
        opacity: 0;
      }
    }
.darkened {
  filter: grayscale(100%) brightness(60%) contrast(90%);
}