.price_tab {
	margin-bottom: 30px;
}

	.price_tab_row {
		display: flex;
		flex-direction: column;
		align-items: center;
		padding: 15px 0;
		border-radius: 6px;
	}
	
	@media screen and (min-width : 992px) {
		.price_tab_row { flex-direction: row; }
	}

	.price_tab_row:nth-child(odd) {
		background-color: rgba(219,217,218,0.3);
	}

	.price_tab_row_first {
		background-color: rgba(var(--second_rgb), 0.2)!important;
	}

		.price_name, .price_descr, .price {
			width: 100%;
			padding: 0 30px;
		}

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

		.price_label {
			font-weight: 700;
			margin-right: 5px;
		}
	
		@media screen and (min-width : 992px) {
			.price_name { width: 20%; }
			.price_descr { width: 35%; }
			.price { width: 15%; text-align: center; }
			.price_label { display: none; }
		}

		.price_tab_row_first .price_descr, .price_tab_row_first .price {
			font-weight: 700;
			letter-spacing: 1px;
			text-transform: uppercase;
			display: none;
		}
	
		@media screen and (min-width : 992px) {
			.price_tab_row_first .price_descr, .price_tab_row_first .price { display: block; }
		}