.finestra-nascosta {
  display: none;
}

.finestra-container {
  position: fixed;
  
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.finestra {
  background-color: white;
  padding: 0px;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  width: 50%;
  max-width: 500px;
}

.finestra-header {
  display: flex;
  color: white;
  background-color: rgba(51,51,51,0.5);
  justify-content: space-between;
  align-items: center;
  border-bottom: 0px solid #eee;
  margin-bottom: 0px;
  padding-bottom: 0px;
}

.finestra-header h3 {
  margin: 50;
  font-size: 19px;
  text-shadow:
	1px 1px 0 rgba(0,0,0, 0.5),
	-1px 1px 0 rgba(0,0,0, 0.5),
	-1px -1px 0 rgba(0,0,0, 0.5),
	1px -1px 0 rgba(0,0,0, 0.5);
	
}

.chiudi-btn {
	  text-shadow:
	1px 1px 0 rgba(0,0,0, 0.5),
	-1px 1px 0 rgba(0,0,0, 0.5),
	-1px -1px 0 rgba(0,0,0, 0.5),
	1px -1px 0 rgba(0,0,0, 0.5);
	color: white;
  background: none;
  border: none;
  font-size: 40px;
  cursor: pointer;
}

.finestra-body {
  text-align: center;
}
