.box1 {
	border: 1px solid gray;
}

.container {
	width: 960px;
	margin: auto;
	padding: 40px 0 0 0;
}

.box_categorie {
	float: left;
	width: 450px;
	height: 420px;
	display: flex;
	flex-direction: column;
}

.box_zone {
	float: right;
	width: 440px;
	height: 420px;
	display: flex;
	flex-direction: column;
}

.box_totale_titolo {
	clear: both;
	width: 220px;
	height: 32px;
	margin: auto;
	border-bottom: 0;
	line-height: 32px;
	text-align: center;
	font-weight: bold;
	background: #f1d06e;
}
.box_totale {
	clear: both;
	width: 220px;
	height: 54px;
	margin: auto;
	padding: 6px 0;
	background-color: #FFF;
}
.digits-box .digit {
  float: left;
  margin: 0px 8px;
}
.digit .line {
  background-color: #737373;
}

.box_richiesta {
	clear: both;
	width: 460px;
	height: 200px;
	margin: auto;
	display: flex;
	flex-direction: column;
}


.box_titolo {
	flex-shrink: 0;
	width: 100%;
	height: 32px;
	border-bottom: 1px solid gray;
	line-height: 32px;
	font-weight: bold;
	text-align: center;
	background: #f5d576;
}

.box_cerca {
	flex-shrink: 0;
	width: 100%;
	height: 32px;
	border-bottom: 1px solid gray;
}
.box_cerca input[type='text'] {
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	padding: 0 4px 0 4px;
	border: 0;
	background-color: #fcfcfc;
}

.box_candidati {
	flex-grow: 1;
	box-sizing: border-box;
	width: 100%;
	overflow-y: scroll;
	padding: 1px 0 1px 0;
}
.box_candidati ul li {
	height: 24px;
	cursor: pointer;
}
.box_candidati ul li:nth-child(even) {
	background-color: #DDD;
}
.box_candidati ul li span {
	color: #000;
	line-height: 24px;
	font-size: 12px;
}
.box_candidati ul li .add {
	float: left;
	width: 30px;
	height: 24px;
	background: url(/images/add.png) center center no-repeat;
}

.box_selezione{
	flex-shrink: 0;
	box-sizing: border-box;
	width: 100%;
	height: 160px;
	overflow-y: scroll;
	border-top: 1px solid gray;
	padding: 4px 0 4px 0;
}
.box_selezione ul li {
	height: 26px;
	cursor: pointer;
}
.box_selezione ul li span {
	color: #000;
	line-height: 26px;
	font-size: 12px;
}
.box_selezione ul li .del {
	float: left;
	width: 30px;
	height: 26px;
	background: url(/images/del.png) center center no-repeat;
}

.box_testo_richiesta {
	position: relative;
	width: 100%;
	flex-grow: 1;
}
.box_testo_richiesta textarea {
	position: absolute;
	width: 100%;
	top: 8px;
	bottom: 8px;
	border: 0;
	box-sizing: border-box;
	padding: 0 4px 0 4px;
	resize: none;
	overflow-y: scroll;
}



