.cortina{
	width: 100vw;
    height: 94vh;
    position: absolute;
    z-index: 9999;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background: #081E02;
    background: #04182b;
    background: linear-gradient(90deg,rgba(4, 24, 43, 1) 0%, rgba(12, 43, 64, 1) 35%, rgba(10, 82, 112, 1) 100%);
    display: none;
    }
.contieneCortina{
	width: 100%;
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
    justify-content: center;
}    
.centrar{
	width: 50%;
	height: 50%;
	display: flex;
    flex-wrap: wrap;
	align-content: center;
    justify-content: center;
}
.centrar h1{
	margin-bottom: 0;
    text-align: center;
    color: white;
    width: 100%;
    font-family: "Archivo Black", sans-serif;
    font-size: 1rem;
    margin-top: 15px;
    color: orange;
	
}
.centrar p{
	margin-bottom: 0;
	text-align: center;
	color: white;
	width: 100%;
	font-weight: 300;
}
.contieneSpinner{
	width: 100%;
	height: fit-content;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
    justify-content: center;
}


.loader {
  width: 96px;
  height: 24px;
  display: inline-block;
  background-color: #FFF;
  border: 1px solid #FFF;
  border-radius: 4px;
  background: linear-gradient(45deg, transparent 49%, #FFF 50%, #FFF 50%, transparent 51%, transparent), linear-gradient(-45deg, transparent 49%, #FFF 50%, #FFF 50%, transparent 51%, transparent);
  font-size: 15px;
  background-size: 1em 1em;
  box-sizing: border-box;
  animation: barStripe 0.6s linear infinite;
}

@keyframes barStripe {
  0% {
    background-position: 1em 0;
  }
  100% {
    background-position: 0 0;
  }
}