.dialog-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.dialog {
  position: fixed;
  background: white;
  border: 1px solid #ccc;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  resize: both;
  overflow: hidden;
  min-width: 150px;
  min-height: 100px;
  display: none;
}

.dialog-titlebar {
  background-color: var(--encabezados); 
  color:#fff;
  height:25px;
  padding: 5px 10px;
  cursor: move;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.dialog-titlebar .title {
  font-weight: bold;
}

.dialog-titlebar .btn-cerrar {
	float:right;
	font-size: 20px;
    font-weight: 200;
	margin-top:0;
	margin-right:5px;
	cursor:pointer;
  /*cursor: pointer;
  font-weight: bold;*/
}

.dialog-content {
   overflow-y: auto; 
  padding: 0px;
  box-sizing: border-box;
  height: calc(100% - 30px); /* remaining space below titlebar */
}


.cerrar_ventana {
	
}