/* Estilos para el widget Ingredientes */

.ingredientes-widget {
	width: 100%;
	overflow-x: auto;
}

.ingredientes-titulo {
	margin: 0 0 20px 0;
	font-size: 24px;
	font-weight: 700;
	color: #333333;
}

.ingredientes-table {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0;
	font-family: inherit;
	table-layout: fixed;
}

.ingredientes-table thead {
	border-bottom: 2px solid #333333;
}

.ingredientes-table th {
	padding: 15px;
	text-align: left;
	font-weight: 600;
	border: none;
	color: #333333;
	word-wrap: break-word;
}

.ingredientes-table th:first-child {
	width: 70%;
}

.ingredientes-table th:last-child {
	width: 30%;
}

.ingredientes-table th:not(:last-child) {
	padding-right: 30px;
}

.ingredientes-table td {
	padding: 15px 15px;
	border: none;
	color: #555555;
	word-wrap: break-word;
}



.ingredientes-table td:last-child {
	width: 30%;
}

.ingredientes-table td:not(:last-child) {
    margin-right: 30px !important;
    display: block;
}

.ingredientes-table tbody tr {
	background-color: transparent;
}

.ingredientes-table tbody tr:hover {
	background-color: transparent;
	transition: none;
}

.ingredientes-table tbody td {
	vertical-align: middle;
}
table.ingredientes-table td {
    border-bottom: 1px solid #8BB7FA !important;
    font-size: 20px;   
    color: #001859  !important;
}
/* Responsive */
@media (max-width: 768px) {
	.ingredientes-widget {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.ingredientes-titulo {
		font-size: 20px;
	}

	.ingredientes-table {
		font-size: 14px;
		min-width: 100%;
	}

	.ingredientes-table th,
	.ingredientes-table td {
		padding: 10px;
		font-size: 13px;
	}
}

@media (max-width: 480px) {
	.ingredientes-table th,
	.ingredientes-table td {
		padding: 8px;
		font-size: 12px;
	}

	.ingredientes-titulo {
		font-size: 18px;
	}
}
