@charset "utf-8";
/* CSS Document */

#page-container {
  position: relative;
  min-height: 100vh;
}

#content-wrap {
  padding-bottom: 143px;    /* Footer height */
}

#footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 143px;
}


#footer a {
    color: #e94f2f;
    text-decoration: none;
    cursor: pointer;
}

.icone i {
  color:#ffc107;
  font-size:80px;
}

/* Center website */

.row {
    margin: 8px -10px;

}

/* Add padding BETWEEN each column */
.row,
.row > .column {
    padding: 8px;
}

/* Create two equal columns that floats next to each other */
.column {	
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 70%;

}

/* Clear floats after rows */ 
.row:after {
    content: "";
    display: table;
    clear: both;
}

/* Content */
.content {
    background-color: white;
    padding: 10px;
    height:auto;
}

.content:hover{
	/*color:#000!important;
	background-color:#ccc!important;
	cursor: pointer;*/
}

/*tabelle*/
.tableFixHead
 {
  overflow: auto;  
}

.tableFixHead th { background: #fff;}

.tableFixHead thead th{
  position: sticky;
  top: 0;
}

.selezionabile:hover {
  background-color: #d6e9f8;
  cursor: pointer;
}   
.disabilitata {            
  background-color: #c5c5c5;
} 

#loader {
        position: fixed;
        left: 0px;
        top: 0px;
        width: 100%;
        height: 100%;
        z-index: 9999;
        background-color: #ffffffcf;
    }
#loader img{
    position: relative;
    left: 48%;
    top: 45%;
    width: 60px;
    height: 60px;    
}
   
/* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block;  
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 300px;
  background-color: black;
  color: #fff;
  font-size: 12px;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 150%;
  left: 50%;
  margin-left: -150px;  /* per centrare il testo questo valore è pari a width:/2 */
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: black transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}
        
/*upload file con drop*/ 
.file-upload-zone {
  width: 300px;
  height: 100px;          
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #cccccc;
  border: 4px dashed #3f8fd1;
  border-radius: 10px;
}

.drop-zone__prompt{
    display: table-cell;
    cursor: pointer;
    width: 300px;
    height: 92px; 
    position: relative; 
    text-align: center;
    vertical-align: middle;
}        

.drop-zone--over {
  border-style: solid;
}

.drop-zone__input {
  display: none;
}

.drop-zone__thumb {
  width: 220px;            
  height: 50px;
  border-radius: 10px;
  overflow: hidden;
  background-color: #cccccc;
  cursor: pointer;
  position: relative;
  margin: 0 auto;
}

.drop-zone__thumb::after {
  content: attr(data-label);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 5px 0;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.75);
  font-size: 14px;
  text-align: center;
}

.divFiletoUpload{
    display: none;
    width: 285px;
    text-align: right;
    color: black;
}  


.order {
    cursor: pointer;
        
}    
.tabellaElementiBarraRicerca{
    display: inline;
}    

.tabellaBarraRicerca select {
    padding: 9px 0;
    width: 200px;
    border: none;
    border-bottom: 1px solid #ccc;
}
    
.tabellaBarraRicerca input {
    padding: 8px;
    border: 1px solid #ccc!important;
    width: 300px;
    border-bottom: 1px solid #ccc;

}

.tabellaBarraRicerca button {
  width: 40px;
  padding: 10px;  
  color: white;
  font-size: 15px;
  border: 1px solid grey;
  border-left: none; /* Prevent double borders */
  cursor: pointer;
}

.tabellaBarraRicercaBntFiltro{
    background: #2196F3;
}

.tabellaBarraRicercaBntFiltroRipristina{
    background:red;
    height: 42px;
}

.tabellaBarraRicercaBntFiltro:hover {
  background: #0b7dda;
}  

.tabellaBarraRicercaBntFiltroRipristina:hover {
  background:#C80000;
}  


.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px;
}

.btnDisabled {
    border: none;
    display: inline-block;
    padding: 8px 16px;
    vertical-align: middle;
    overflow: hidden;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    white-space: nowrap;
    background-color: #C6CBE9;
    color: white;
    pointer-events: none;
    cursor: default;    
}

.pagination>li {
    display: inline;
}

.alertInput{
        border: 1px solid red;
}

/*gestione  dropdown menù */

.dropbtn {
  background-color: #ffbca7;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content button {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  background-color: #ffbca7;
  border: 0;
}

.dropdown-content form {
  margin-block-end:0;
}
.dropdown-content button:hover {
    background-color: #ff9800;
    color: black;
    cursor: pointer;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  background-color: #ff9800;
}




/* Responsive layout - makes a two column-layout instead of four columns */
/*@media (max-width: 900px) {
    .column {
        width: 50%;
    }
}

 Responsive layout - makes the two columns stack on top of each other instead of next to each other 
@media (max-width: 600px) {
    .column {
        width: 100%;
    }

}*/

/*responsive*/
@media (max-width: 1600px) {
    .column {
        width: 80%;
    }
}

@media (max-width: 1400px) {
    .column {
        width: 90%;
    }
}

@media (max-width: 800px) {
    .column {
        width: 100%;
    }
}