/* vers 2.0*/

.nascosto{
	display:none;
}
.tastiera {
  padding: 8px;
  border-radius: 4px;
  border: 2px solid #AAA;
  background-color: #F9F9F9;
  position: fixed;
  left: 20px;
  top: 80px;
  width: 170px;
  text-align: center;
  z-index: 999;
  box-shadow: 0 1px 10px #56565654;
}
.tastiera>div:last-child {
  border-top: 1px solid #DDD;
  margin-top: 5px;
  padding-top: 5px;
}
.tastiera .numero {
  font-size: 18px;
  text-align: center;
  padding: 2px;
  border: 1px solid #DDD;
  margin: 25px 6px 10px 6px;
  height: 38px;
  line-height: 1.8em;
  display: block;
}
.tastiera>div>.num {
  display: inline-block;
  width: 38px;
  height: 38px;
  border: 1px solid #DDD;
  border-radius: 8px;
  text-align: center;
  font-size: 28px;
  line-height: 45px;
  margin: 6px;
  line-height: 37px;
  text-shadow: 1px 1px 1px #6d6d6d8c;
  box-shadow: inset 0px -1px 3px #6d6d6d33;
  cursor: pointer;
}
.tastiera>div>.ok {
  font-size: 22px;
  width: 90%;
  /* font-weight: bold; */
  margin: 8px 0;
}
.tastiera>div:first-child {
  text-align: right;
}
.tastiera>div>.num:active {
  background-color: #DDD;
}
.tastiera>div>.num.chiudi:active {
  color: #888;
  background-color: inherit;
}
.tastiera>div>.chiudi {
  width: 25px;
  height: 25px;
  line-height: 26px;
  border: none;
  font-size: 20px;
  position: absolute;
  right: 4px;
  top: 0px;
  box-shadow: none;
  color: #444;
}
.tastiera>div>.chiudi::before {
	content:"✖";
	font-size: 95%;
}
/*
.tastiera>div>.chiudi, .tastiera>div>.backspace {
  font-family: Icona-Solid;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-weight: initial;
  text-shadow: none;
}
*/
.tastiera>div>.backspace:before {
  font-size: 18px;
  text-shadow: 1px 1px 1px #6d6d6d8c;
  margin-left: 4px;
  position: relative;
  top: -2px;
}


/*Campi input*/

div.input {
  padding: 3px;
  text-align: center;
  font-weight: initial;
  border: 0;
  background: #0000 none;
  border-color: #b7b7b7;
  color: #333;
  border-width: 1px;
  border-style: solid;
  background-clip: padding-box;
  border-radius: 3px;
  max-width: 70px;
  position: relative;
  margin: auto;
}
div.input:not(.disabilitato,.inattivo):hover {
	background: #e9e9e9;
}
.ui-shadow-inset, div.input {
  text-shadow: none;
  background-color: #fff;
}
.ui-input-text, .ui-input-search, div.input {
  line-height: 24px;
  min-width: 75px;
  vertical-align: middle;
  cursor: pointer;
  height: 32px;
}
.ui-input-text input, .ui-input-search input, textarea.ui-input-text {
  padding: 2px 7px;
  min-height: 30px;
}
div.input.inEditing {
  border-color: #7b7b7b7a;
  background-color: #d4d4d4;
}
div.input.disabilitato {
  opacity: 0.6;
  cursor: unset;
}
div.input.inattivo {
  border-color: rgba(0, 0, 0, 0);
  box-shadow: initial;
  background-color: initial;
  cursor: unset;
  padding-left:0;
  padding-right:0;
}
div.input.perc {
    padding-right: 0;
    padding-left: 0;
}
div.input.perc:after {
	content: "%";
	margin-left: 3px;
}
div.input.euro:after {
	content: "€";
	margin-left: 3px;
}
div.input.min:after,
div.input.ore:after {
	margin-left: 2px;
	font-size:85%;
}
div.input.min:after {
	content: "m";
}
div.input.ore:after {
	content: "h";
}
div.input.mcg:after,
div.input.UI:after,
div.input.euro-mg:after,
div.input.euro-mcg:after,
div.input.euro-UI:after{
	position: absolute;
    right: -40px;
    display: inline-block;
    width: 35px;
    text-align: left;
}
div.input.mcg:after {
	content: "mcg";
}
div.input.UI:after {
	content: "UI";
}
div.input.euro-mg:after {
	content: "€/mg";
}
div.input.euro-mcg:after {
	content: "€/mcg";
}
div.input.euro-UI:after {
	content: "€/UI";
}
div.input.input.mcg,
div.input.input.UI,
div.input.input.euro-mg,
div.input.input.euro-mcg,
div.input.input.euro-UI{
	margin-right: 35px;
}