.ventModal
{
  position: absolute;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  z-index: 200; /* No más de 200 sino tapa los datepicker de jqueryui para firefox */
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.28);
}

.ventModalInvisible
{
  position: absolute;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100vh;
  z-index: 190; /* No más de 200 sino tapa los datepicker de jqueryui para firefox */
  left: 0;
  top: 0;
}

.ventana
{
  width: 500px;
  background: #fff;
  position: relative;
  margin: 10% auto;
  padding: 20px;
  -moz-border-radius: 7px;
  border-radius: 7px;
  -webkit-box-shadow: 0 3px 20px rgba(0,0,0,0.9);
  -moz-box-shadow: 0 3px 20px rgba(0,0,0,0.9);
  box-shadow: 0 3px 20px rgba(0,0,0,0.9);
  background: -moz-linear-gradient(#fff, #ccc);
  background: -webkit-gradient(linear, right bottom, right top, color-stop(1, rgb(255,255,255)), color-stop(0.57, rgb(230,230,230)));
  text-shadow: 0 1px 0 #fff;
  font-family: "Helvetica Neue", Helvetica, sans-serif;
}

.ventana h2 {
  font-size: 18px;
  padding: 0 0 12px;
  color: #4D6672;
  font-family: "Helvetica Neue", Helvetica, sans-serif;   
}

.ventana a[href="#close"] {
  position: absolute;
  right: 0;
  top: 0;
  color: transparent;
}

.ventana a[href="#close"]:focus {
  outline: none;
}

.ventana a[href="#close"]:after {
  content: 'X';
  position: absolute;
  right: -15px;
  top: -15px;
  display: inline-block;
  color: #fff;
  background-color: #7498AB;
  height: 25px;
  width: 25px;
  line-height: 27px;
  text-decoration: none;
  text-shadow: none;
  text-align: center;
  font-weight: bold;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.5);
  transition: all .3s ease;
  font-size: 12px;
}

.ventana a[href="#close"]:focus:after,
.ventana a[href="#close"]:hover:after {
  -webkit-transform: scale(1.1,1.1);
  -moz-transform: scale(1.1,1.1);
}


.espera {
  width: 300px;
  background: #fff;
  position: relative;
  margin: 10% auto;
  padding: 20px;
  -moz-border-radius: 7px;
  border-radius: 7px;
  -webkit-box-shadow: 0 3px 20px rgba(0,0,0,0.9);
  -moz-box-shadow: 0 3px 20px rgba(0,0,0,0.9);
  box-shadow: 0 3px 20px rgba(0,0,0,0.9);
  background: -moz-linear-gradient(#fff, #ccc);
  background: -webkit-gradient(linear, right bottom, right top, color-stop(1, rgb(255,255,255)), color-stop(0.57, rgb(230,230,230)));
  text-shadow: 0 1px 0 #fff;
  font-family: "Helvetica Neue", Helvetica, sans-serif;          
  text-align: center;
}
.ventana .VentanaBotonera{
    display:flex;    
    justify-content: center;
    gap:10px;
}
.ventana .VentanaBotonera button{
    padding: 4px 8px;
    font-weight: 600;
    border-radius: 50px;
    min-width:70px;
	margin-top:8px;
}