/*** Sitio: Morasol ***/
.ventana {
  background-color: #fff;
  border: 1px solid #eee;
  box-shadow: 0 2px 8px 2px rgba(0,0,0,.50);
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 40px);
  max-width: 600px;
  position: fixed;
  top: 50px;
  width: 80%;
  z-index: 5;
  left: calc(50vw - 300px);
  font-family: var(--fuente-corporativa);
}
.ventana .head {
  align-items: center;
  display: flex;
  flex: 0 0 50px;
  justify-content: space-between;
  padding: 0 1rem;
  background-color: var(--color-corporativo);
  color: var(--blanco);
}
.ventana .head .title {
  display: inline-block;
  font-family: var(--fuente-corporativa);
  font-size: 1.2em;
  font-weight: 500;
  text-transform: uppercase;
}
.ventana .head .close {
  cursor: pointer;
  font-family: var(--fuente-corporativa);
  font-size: 2rem;
  font-weight: bold;
  position: relative;
  top: -0.2rem;
}
.ventana .body {
  flex: 1;
  padding: 1rem;
  overflow: auto;
  text-align: justify;
}
.ventana .body h2 {
  font-family: var(--fuente-corporativa);
  font-weight: 400;
text-transform: uppercase;
}
.ventana .body p {
  font-family: var(--fuente-corporativa);
  font-size: 15px;
  margin-top: 25px;
}
.ventana .foot {
  align-items: center;
  /*border-top: 2px solid #48508e;*/
  display: flex;
  flex: 0 0 2.5rem;
  justify-content: flex-start;
  padding: 0 1rem;
  font-size: 0.8rem;
}
.ventana .foot .btn { margin-left: 10px; }

.ventana:has(.modal-info) {
    width: unset;
    background-color: #edd0cf;
}
.ventana.oculta {
    display: none;
}