#scheda {
	display: flex;
	flex-direction: column;
	row-gap: 60px;
}
	
@media screen and (min-width : 768px) {
	#scheda { flex-direction: row; column-gap: 60px; }
}

	#boxLocandina, #boxLocandina img {
		width: 223px;
		height: 323px;
		position: relative;
	}
	
	#info_film, #preno {
			width: 100%;
		}
	
		@media screen and (min-width : 992px) {
			#info_film, #preno { width: 50%; }
		}
		
		#info_film {
			color: rgba(255,255,255,.6);
		}

		#info_film div {
			margin-bottom: 3px;
		}
		
			#info_film .label {
				color: var(--first_color);
			}
			
			#info_film .titolo {
				color: var(--second_color);
				margin-bottom: 30px;
			}
		
		#trama {
			margin-top: 30px;
			line-height: 22px;
		}
			
		.btt_trailer {
			display: flex;
			align-items: center;
			font-size: 14px;
			font-weight: 500;
			letter-spacing: 1px;
			text-transform: uppercase;
			color: var(--second_color);
			margin-top: 30px;
			transition: color 0.3s linear;
			-webkit-transition: color 0.3s linear;
			-moz-transition: color 0.3s linear;
		}
		
		.btt_trailer:hover {
			color: var(--first_color);
		}
		
			.btt_trailer .fi {
				font-size: 25px;
				margin-right: 10px;
				color: var(--second_color);
			}
			
		#preno .title {
			margin-bottom: 30px;
			line-height: 30px;
		}

			#prenoRapidoScheda {
				display: none;
			}
			
			#prenoRapidoScheda select {
				width: 100%;
				margin-bottom: 30px;
				background: #191919;
				border-radius: 8px;
				border: 0;
				height: 50px;
				padding: 0 20px;
				color: var(--first_color);
				font-family: 'Nunito', sans-serif;
				font-size: 16px;
				font-weight: 300;
			}
		
			.hours {
				position:relative;
				width:100%;
				height:auto;
				margin-top: 20px;
			}
			
			.hours:first-child {
				margin-top: 0;
			}
			
				.dayName {
					font-weight: 600;
					letter-spacing: 2px;
					text-transform: uppercase;
					margin-bottom: 10px;
				}
			
				.orari_cont {
					width: 100%;
					display: flex;
					flex-wrap: wrap;
					column-gap: 15px;
					row-gap: 15px;
				}
	
				@media screen and (min-width : 992px) {
					.orari_cont { column-gap: 20px; row-gap: 20px; }
				}
				
					.orario {
						width: 80px;
						background: rgba(241,158,56,.2);
						border-radius: 8px;
						font-size: 14px;
						letter-spacing: 2px;
						text-transform: uppercase;
						padding: 10px 15px;
						cursor: pointer;
						text-align: center;
					}
					
						.orario a {
							color: var(--first_color);
							transition: color 0.3s linear;
							-webkit-transition: color 0.3s linear;
							-moz-transition: color 0.3s linear;
						}
					
						.orario a:hover {
							color: var(--second_color);
						}

						.nomesala {
							font-family: 'Sofia Sans Extra Condensed';
							font-weight: 200;
						}
					
						.versione {
							font-family: 'Sofia Sans Extra Condensed', sans-serif;
							font-size: 15px;
							font-weight: 200;
							line-height: 16px;
							text-transform: uppercase;
							color: var(--second_color);
						}