body {
  margin: 0;
  color: #333;
  background-color: #ddd;
  background-image: url("data:image/svg+xml,%3Csvg width='42' height='44' viewBox='0 0 42 44' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='Page-1' fill='none' fill-rule='evenodd'%3E%3Cg id='brick-wall' fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M0 0h42v44H0V0zm1 1h40v20H1V1zM0 23h20v20H0V23zm22 0h20v20H22V23z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.color-grd {
  color: #0a408a;
}

.bg-grd {
  background-color: #0a408a;
}
.color-blanco {
  color: white !important;
}

/*
main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}
*/
.dropZone {
  display: grid;
  place-items: center;
  max-width: 700px;
  width: 100%;
  height: 30vh;
  border: 2px solid #0a408a;
  border-radius: 15px;
  margin: 0 auto;
}

.p_interno {
  font-size: 18px;
  animation: sombraTexto 3s infinite;
}

.dropZone.is-active {
  border: 2px dashed #fff;
  background-color: #0a408a;
  animation: contenidoInterno 3s infinite;
  animation-timing-function: linear;
}

.select-status {
  cursor: pointer;
}

.pointer {
  cursor: pointer;
}
@keyframes sombraTexto {
  0% {
    font-size: 20px;
    text-shadow: 1px 5px 15px #0a408a;
  }

  50% {
    font-size: 21px;
    text-shadow: 1px 5px 15px #0a408a, 1px 5px 15px #0a408a;
  }

  100% {
    font-size: 20px;
    text-shadow: 1px 5px 15px #0a408a, 1px 5px 15px#0a408a, 1px 5px 15px#0a408a;
  }
}

@keyframes contenidoInterno {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1.1);
  }
}
