.containerLista {
	border-radius: 10px;
	border: solid 2px white;
	margin: 50px;

}


@media (max-width: 992px) {
	.visualTable {
		padding-right: 0rem !important;
		padding-left: 0rem !important;
		padding-top: 25px;
	}
}


@media (max-width: 420px) {
	.fa-plus {
		display: none;
	}

	.fa-minus {
		display: none;
	}

}

.fa-plus {
	padding-right: 5px;
}

tr td img {
	border-radius: 5%;
}

.scrittaFiltri {
	margin-right: 20px;
}

$number-of-options: 3;

#form-wrapper {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.form1 {
	width: 90%;
	max-width: 500px;

	#debt-amount-slider {
		display: flex;
		flex-direction: row;
		align-content: stretch;
		position: relative;
		width: 100%;
		height: 50px;
		user-select: none;

		&::before {
			content: " ";
			position: absolute;
			height: 2px;
			width: 100%;
			/* width: calc(100% * (#{$number-of-options - 1} / #{$number-of-options})); */
			top: 50%;
			left: 50%;
			transform: translate(-50%, -50%);
			background: #000;
		}

		input,
		label {
			box-sizing: border-box;
			flex: 1;
			user-select: none;
			cursor: pointer;
		}

		label {
			display: inline-block;
			position: relative;
			width: 20%;
			height: 100%;
			user-select: none;

			&::before {
				content: attr(data-debt-amount);
				position: absolute;
				left: 50%;
				padding-top: 10px;
				transform: translate(-50%, 45px);
				font-size: 11px;
				letter-spacing: 0.4px;
				font-weight: 400;
				white-space: nowrap;
				opacity: 0.85;
				transition: all 0.15s ease-in-out;
			}

			&::after {
				content: " ";
				position: absolute;
				left: 50%;
				top: 50%;
				transform: translate(-50%, -50%);
				width: 30px;
				height: 30px;
				border: 2px solid #000;
				background: #FAAD06;
				border-radius: 50%;
				pointer-events: none;
				user-select: none;
				z-index: 1;
				cursor: pointer;
				transition: all 0.15s ease-in-out;
			}

			&:hover::after {
				transform: translate(-50%, -50%) scale(1.25);
			}
		}

		input {
			display: none;

			&:checked {
				+label::before {
					font-weight: 800;
					opacity: 1;
				}

				+label::after {
					border-width: 4px;
					transform: translate(-50%, -50%) scale(0.75);
				}

				~#debt-amount-pos {
					opacity: 1;
				}

			}
		}
	}

	#debt-amount-pos {
		display: block;
		position: absolute;
		top: 50%;
		width: 8px;
		height: 8px;
		background: #000;
		border-radius: 50%;
		transition: all 0.15s ease-in-out;
		transform: translate(-50%, -50%);
		border: 2px solid #fff;
		opacity: 0;
		z-index: 2;
	}
}

&:valid {
	#debt-amount-slider {
		input {
			+label::before {
				transform: translate(-50%, 45px) scale(0.9);
				transition: all 0.15s linear;
			}

			&:checked+label::before {
				transform: translate(-50%, 45px) scale(1.1);
				transition: all 0.15s linear;
			}
		}
	}
}



th {
	border: solid 1px black !important;
	background-color: rgba(128, 128, 128, 0.33) !important;
	vertical-align: middle;

}

td {
	border: solid 1px black !important;
	vertical-align: middle;

}