/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

  /* The Modal (background) */
.fvbd-modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 99999999999999999; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.fvbd-modal-content {
  background-color: #fefefe;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 10px;
  border: 1px solid #888;
  width: 90%; 			/* Could be more or less, depending on screen size */
  max-width: 500px;

}

.fvbd-modal-content-medium {
  background-color: #fefefe;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 10px;
  border: 1px solid #888;
  width: 90%; 			/* Could be more or less, depending on screen size */
  max-width: 800px;
}


/* The Close Button */
.fvbd-close-modal {
  color: #000;
  float: right;
  font-size: 14px;
  font-weight: bold;
}

.fvbd-close-modal:hover,
.fvbd-close-modal:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}


.fvbd-tabella
{
	display: table;
	width:80%;
	margin-bottom: 15px;
}

.fvbd-riga
{
	display: table-row;
}

.fvbd-cella
{
	width: 60px;
	height: 60px;
	line-height: 60px;
	border: 1px solid #888;
	text-align:center;
	display: table-cell;
}

.fvbd-tabella-corpo {
	display: table-row-group;
}

.fvbd-bordo {
    border-width: 1px 1px 1px 1px !important;
    border-color: #eaeaea !important;
    border-radius: 0px !important;
}


.nowrap {
  white-space: nowrap;
}



#fvbd-finestra-modale-gara{
  position: fixed;
  inset: 0;
  z-index: 99999999999999999;
  background: rgba(0,0,0,.55);
  display: none;

  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

#fvbd-finestra-modale-gara .fvbd-modal-content,
#fvbd-finestra-modale-gara .fvbd-modal-content-medium{
  position: relative;
  width: 90%;
  max-width: 1100px;
  max-height: 90vh;
  overflow: auto;
  background: #fff;
  border-radius: 8px;
  padding: 20px;
}

#fvbd-finestra-modale-help-ricerca{
  position: fixed;
  inset: 0;
  z-index: 99999999999999999;
  background: rgba(0,0,0,.55);
  display: none;
  overflow: auto;
}

#fvbd-finestra-modale-help-ricerca .fvbd-modal-content-medium{
  position: relative;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  overflow: auto;
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  margin: 5vh auto;
}




/*
  PARTE DI CODICE NECESSARIA ALLA STAMPA DI UNA MODALE


@media screen {
  #printSection {
      display: none;
  }
}

@media print {
  body * {
    visibility:hidden;
  }

  #printSection, #printSection * {
    visibility:visible;
  }
  #printSection {
    position:absolute;
    left:0;
    top:0;
  }
}

*/