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;
}

@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);
  }
}


.lds-spinner,
.lds-spinner div,
.lds-spinner div:after {
  box-sizing: border-box;
}
.lds-spinner {
  color: rgb(80, 173, 243);
  display: inline-block;
  position: relative;
  width: 70px;
  height: 70px;
}
.lds-spinner div {
  transform-origin: 40px 40px;
  animation: lds-spinner 1.2s linear infinite;
}
.lds-spinner div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 3.2px;
  left: 36.8px;
  width: 6.4px;
  height: 17.6px;
  border-radius: 20%;
  background: currentColor;
}
.lds-spinner div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}
.lds-spinner div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}
.lds-spinner div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}
.lds-spinner div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}
.lds-spinner div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}
.lds-spinner div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}
.lds-spinner div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}
.lds-spinner div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}
.lds-spinner div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}
.lds-spinner div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}
.lds-spinner div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}
.lds-spinner div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}
@keyframes lds-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

