/* Modal Content */
.bloque-modal {
  display: none;
  position: absolute; /* Stay in place */
  top:50px;
  right:5%;
  width: 150px;
  height: 80px;
  
  color: cornsilk;
  cursor: pointer;
  border-radius: 10px;
  flex-direction: column;
}
.modalText{
    height:70%;
    align-items: center;
    justify-content: center;
}
.modal_x{
    height:30%;
    align-items: center;
    justify-content: center;
    
}
/* The Close Button */
.cerrar-bloque {
  color: #000000;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.cerrar-bloque:hover,
.cerrar-bloque:focus {
  color: #000;
  text-decoration: none;
  
}

.modal-carga{
    position:fixed;
    top: 0;
    right: 0;
    width: 100%; 
    height: 100%;
    background-color: rgba(25, 25, 25, .5);
    z-index: -1;
}
.modal-centro{
    margin: 100px 5% 0 25%;
    width: 60%; 
    height: 60%;
    background-color:#ffe58f;
    border-style:dashed;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}
.modal-centroE{
    margin: 0 0 0 0;
    width: 100vw; 
    height: 100vh;
    background-color:white;
    border-style:solid;
    
}
.modal-zona{
    position:fixed;
    top: 0;
    right: 5%;
    width: 250px; 
    height: 90%;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:flex-end;
    z-index: -1;
}
.modal-base{
    animation-name: desaparecer;
    animation-duration: 5s;
    background-color:#ffe58f;
    border-style:dashed;
    width: 100%;
}
@keyframes desaparecer {
  from {opacity: 1;}
  to {opacity: .3;}
}