#popup-comp{
	position: fixed;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.35);
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
	z-index: 1000;
	
}

#popup-comp.active{
	display: flex;
}

.popup-comp{
	width: 97%;
	max-width: 97%;
	background: #fff;
	border-radius: 5px;
	box-shadow: 0px 0px 6px #ccc;
}

.popup-comp-content{
	overflow: auto;
	min-height: 71vh;
	max-height: 71vh;
	padding: 0rem 1rem 2rem 1rem;
}

.popup-comp-content .step{
	display: none;
}

.popup-comp-content .step.active{
	display: block;
}

.flex-input{
	display: flex;
	margin-bottom: 0.75rem;
	align-items: center;
}

.flex-input.flex-input-top{
	align-items: flex-start;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid #ccc;
}

.flex-input.flex-input-top li{
	list-style: disc !important;
}

.flex-input label{
	width: 10rem;
	min-width: 10rem;
}

.flex-input input{
	width: 100%;
}

.popup-comp-header{
	padding: 0.75rem;
	border-bottom: 1px solid #ccc;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.popup-comp-header .close{
	border-radius: 50%;
	text-align: center;
	height: 2rem;
	width: 2rem;
	background: #888;
	color: #fff;
	line-height: 1.3;
	cursor: pointer;
}


.popup-comp-footer{
	border-top: 1px solid #ccc;
	display: flex;
	padding: 0.5rem;
	justify-content: flex-end;
}

.popup-comp-footer .action{
	padding: 0.75rem 1.5rem;
	background: green;
	color: #fff;
	display: inline-block;
	cursor: pointer;
	font-weight: 700;
	font-size: 0.85rem;
	border-radius: 3px;
}

.af-table{
	width: 100%;
	margin-top: 0.75rem;
}

.af-table .ada{
	width: 8rem;
}

.af-table .check{
	width: 5rem;
	text-align: center;
}

.af-table thead tr{
	border-bottom: 1px solid #bbb;
}

.af-table tbody tr{
	border-bottom: 1px solid #e5e5e5;
}

.af-table tbody td{
	padding: 0.35rem 0;
}

.custom-check{
	position: relative;
	margin: 0;
}

.custom-check input{
	display: none;
}

.custom-check input + span{
	border-radius: 50%;
	display: inline-block;
	height: 1.1rem;
	width: 1.1rem;
	box-shadow: 0px 0px 0px 3px #aaa;
	border: 3px solid #fff;
	background: #aaa;
	cursor: pointer;
}

.custom-check input:checked + span{
	background: green;
	box-shadow: 0px 0px 0px 3px green;
}

.af-table .tr-checked{
	background-color: rgba(0, 128, 0, 0.075);
}

.af-table .codice{
	width: 10rem;
	padding-right: 1rem;
}

.af-table input[type="text"]{
	background: #fff;
	padding: 5px;
	height: 35px;
}
