/*
  colori in uso
 #ffcc00
 #fff2bd
 #fffbeb
 
 colori base 
 #015697
 #879cc8
 #d9ddef
 
 colori interapp
 #018997
 #87c8c8
 #d9ebef
 
 */

div.testo100
 {
     
   	width: 100%;
    color: black;
}

table.table100
{
	width: 60%;
}

div.grafici
{
	padding-bottom: 0px;
}

div.spazio
{
	padding-bottom: 100px;
}

.gradient {
          color: black;
          background-color: #efeff5;
      }
      
td.info
{ background-color: #fff2bd;
  } 
  
td.header
{ font-weight: bold;
background-color: #ffcc00;
color:white;}

button.pulsante{
	min-width:100%;
    background-color: #fff2bd; 
    border-color: #fff2bd;
    border-radius: 6px;
    color: black;
    padding: 4px 4px;
}

button.pulsante:hover {
	border-color: #ffcc00;
    background-color: #ffcc00;
    color: white;
   }
   
input[type=text] {
    
    border: 1px solid #ffffff;
    border-radius: 4px;
}

input[type=field] {
    
    border: 1px solid #ffcc00;
    border-radius: 4px;
}


select {
  color:  #000000;
  background-color: #ffffff;
   border: 1px solid white;
}
select option{
        background: #ffcc00;
        color: #ffffff;
        border-radius: 4px;
       }
      
 select[type=selectfield] {
    
   color:  #000000;
   background-color: #ffffff;
   border: 1px solid #ffcc00;
   border-radius: 4px;
} 
 
 select[type=selectfield1] {
    
   color:  #000000;
   background-color: #ffffff;
   border: 1px solid #ffcc00;
   border-radius: 4px;
} 


 .mystyle{
   
  }
  
 .mystyle:hover {
    background-color: #fffbeb;
}


.tooltip {
    position: relative;
    display: inline-block;
    opacity: 1; 
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 250px;
    background-color: #e07f00;
    color: black;
    text-align: center;
    padding: 10px 10px;
    border-radius: 6px;
    position: absolute;
    z-index: 1;
    bottom: 150%;
    left: 50%;
    margin-left: -60px;
}


.tooltip:hover .tooltiptext {
    visibility: visible;
}

p.testotool {
    color:#e07f00;
}

button:hover {
  position: relative;
}

button[commenti]:hover:after {
  content: attr(commenti);
  width: 250px;
    background-color: #e07f00;
    text-align: center;
    padding: 10px 10px;
    position: absolute;
    z-index: 1;
    bottom: 150%;
    left: 0;
    border-radius: 6px;
    margin-left: -60px;
}

/*css per checkbox */
.container_1 {
    /*display: block;*/
    position: relative;
    padding-left: 35px;
    margin-bottom: 1px;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.container_1 input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: red;
    border-radius: 100%;
}

/* On mouse-over, add a grey background color */
.container_1:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container_1 input:checked ~ .checkmark {
    background-color: green;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.container_1 input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.container_1 .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}


 /* fine css per checkbox*/


.buttontool {
    background-color: #e07f00;
    color: black;
    border-color: black;
    padding: 5px 5px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    
}


