body {
	font-family: Montserrat;
}

.container {
	max-width: 1400px;
	padding: 0 40px;
	box-sizing: border-box;
	width: 100%;
	position: relative;
	margin: 0 auto;
}

.separatore {
}

.filtri {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-content: center;
	justify-content: center;
	align-items: center;
	margin: 10px 0;
}

	.filtri .item {
		position: relative;
		border-bottom: solid 1px #ccc;
		margin: 5px 15px;
	}

		.filtri .item .select-mask {
			position: relative;
			height: 40px;
			width: 265px;
		}

			.filtri .item .select-mask select {
				position: absolute;
				left: 0;
				top: 0;
				bottom: 0;
				right: 0;
				border: none;
			}
/**/
.list {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-evenly;
	align-items: stretch;
	align-content: stretch;
}

	.list .item {
		width: calc(96%/4);
		flex: 0 1 calc(96%/4);
		display: flex;
		flex-direction: column;
		flex-wrap: wrap;
		align-content: center;
		justify-content: flex-start;
		align-items: center;
		box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.24);
		box-sizing: border-box;
		transition: 0.5s ease-in-out;
		margin: 15px auto;
	}

		.list .item:hover {
			box-shadow: 0px 2px 8px 0px rgba(0,0,0,0.35);
		}

		.list .item .rata_container {
			/*display: flex;
			flex-wrap: wrap;
			justify-content: space-evenly;*/
			align-items: center;
			padding: 20px 10px;
		}

			.list .item .rata_container .title {
				flex: 0 1 48%; margin: 5px 0; font-size: 15px;
			}

			.list .item .rata_container .separatore {
				flex: 0;
				margin: 0;
				height: unset;
			}

		.list .item .title {
			flex: 0 1 calc(100%/2);
			font-size: 16px;
			margin: 10px auto;
			text-align: center;
		}

			.list .item .title b {
				color: #f95b1a;
				font-weight: 600;
			}

			.list .item .title span {
				color: #000;
			}

			.list .item .title i {
				font-size: 11px;
			}

		.list .item .image {
			aspect-ratio: 4/3;
			display: flex;
			align-content: center;
			justify-content: center;
			align-items: center;
			overflow: hidden;
			position: relative;
		}

			.list .item .image .data {
				position: absolute;
				bottom: 10px;
				left: 50%;
				transform: translateX(-50%);
				font-size: 12px;
				z-index: 2;
				color: #fff;
				background-color: #f95b1aBF;
				padding: 5px;
				border-radius: 10px;
				width: 90%;
				display: flex;
				flex-wrap: wrap;
				justify-content: space-evenly;
				align-items: center;
			}

			.list .item .image img {
				max-width: 100%;
				max-height: 100%;
				z-index: 1;
			}
			/*blurred bg*/
			.list .item .image .blurred-bg {
				position: absolute;
				left: 0;
				right: 0;
				bottom: 0;
				top: 0;
				z-index: -1;
				filter: blur(5px);
			}

				.list .item .image .blurred-bg img {
					width: 100%;
					height: 100%;
				}

.dataNoleggio {
	position: absolute;
	bottom: 20%;
	left: 30%;
	font-size: 12px;
	z-index: 2;
	color: #fff;
	background-color: #f95b1aBF;
	padding: 5px;
	border-radius: 10px;
}

.titleNoleggio {
	padding: 8px;
	font-size: 16px;
}

	.titleNoleggio b {
		color: #f95b1a;
		font-weight: 600;
	}

	.titleNoleggio span {
		font-weight: 600;
	}

	.titleNoleggio i {
		font-size: 11px;
	}
/**/
@media screen and (max-width: 950px) {
	.container {
		max-width: 100%;
		padding: 0px 10px;
		box-sizing: border-box;
		width: 100%;
		position: relative;
		margin: 0 auto;
		min-width: unset !important;
	}

	.filtri {
		flex-direction: column;
		flex-wrap: wrap;
	}

		.filtri .item .select-mask {
			position: relative;
			height: 40px;
			width: 300px;
		}

	.list {
		display: flex;
		flex-direction: column;
		flex-wrap: nowrap;
	}

		.list .item {
			width: 100%;
			margin: 10px 0;
		}

		.list .item a{
			width:100%;
		}
}
