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

	.info_tab_box {
		width: 100%;
		background-color: rgba(var(--second_rgb), 0.2);
		padding: 30px;
		border-radius: 6px;
	}
	
	@media screen and (min-width : 992px) {
		.info_tab_box { width: 50%; }
	}

		.info_tab_title {
			font-weight: 700;
			text-transform: uppercase;
			letter-spacing: 1px;
			font-size: 15px;
			margin-bottom: 30px;
		}

		.sale_row {
			display: flex;
			padding: 15px 0;
			border-bottom: 1px solid rgba(var(--first_rgb), 0.2);
		}

			.sale_row div {
				width: calc(100% / 3);
			}

			.sale_row:first-child {
				font-weight: 700;
			}

			#sale_row_first {
				padding-top: 0;
				font-weight: 700;
				text-transform: uppercase;
				letter-spacing: 1px;
				font-size: 15px;
				color: var(--second_color);
			}

			.sale_row:last-child {
				padding-bottom: 0;
				border-bottom: 0;
				font-weight: 700;
				color: var(--second_color);
			}

			.sale_nome {
				font-weight: 700;
				text-transform: uppercase;
				letter-spacing: 1px;
				font-size: 15px;
			}

			.sale_posti {
				text-align: center;
			}

			.sale_stalli {
				text-align: right;
			}

			.info_tab_box li { 
				display: flex;
				align-items: center;
				padding: 15px 0;
				border-bottom: 1px solid rgba(var(--first_rgb), 0.2);
			}

			.info_tab_box li:last-child {
				padding-bottom: 0;
				border-bottom: 0;
			}

			ul li .fi { 
				margin-right: 10px;
				font-size: 24px;
				color: var(--second_color);
			}

			#info_box {
				margin-top: 60px;
			}

				#info_box ul { 
					margin-top: 30px;
				}

				#info_box li { 
					display: flex;
					align-items: center;
					padding: 10px 0;
				}