.fila_botones
{
	justify-content: center;
	display: flex;
}
.boton_tabla
{
	background-color: rgba(255, 119, 0, 0.9);
	transition: 0.25s;

	width: 200px;
	height: auto;
	margin: 16px;

	border: 3px solid;
	border-radius: 12px;
	border-left: 4px;
	border-top: 4px;
	border-color: #922104;

	display: flex;
    flex-direction: column;
	justify-content: center;
    align-items: center;

	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	font-size: 12px;
}
.boton_tabla:hover
{
	background-color: rgba(255, 60, 0, 0.9);
}

/* Tabla de botones de buscador */
.buscador .boton_tabla .img_tabla_botones
{
	overflow: hidden;
	display:flex;
	align-items: center;

	max-height: 160px;
}
.buscador .boton_tabla
{
	height: 230px;
}

/* Tabla de botones de productos del menu principal, diferente al resto */
.productos_principal .fila_botones
{
	justify-content: center;
	display: flex;
}
.productos_principal .fila_botones .boton_tabla
{
	background-color: #a63700;
	transition: 0.25s;

	width:120px;
	height: 60px;
	margin: 16px;

	border: 3px solid;
	border-radius: 12px;
	border-left: 4px;
	border-top: 4px;
	border-color: #923101;

	display: flex;
    flex-direction: column;
    align-items: center;
	justify-content: center;

	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	font-size: 14px;
	color: white;
	font-weight: 600;
}
.productos_principal .fila_botones .boton_tabla:hover
{
	background-color: #4d0d00;
}

/* Tabla de botones mayor de productos del menu principal, diferente al resto */

.productos_mayor .fila_botones
{
	justify-content: center;
	display: flex;
}
.productos_mayor .fila_botones .boton_tabla
{
	background-color: #e75a13;
	transition: 0.25s;

	width: 600px;
	height:300px;
	margin: 16px;

	border: 3px solid;
	border-radius: 12px;
	border-left: 4px;
	border-top: 4px;
	border-color: #ff7936;

	display: flex;
    flex-direction: column;
    align-items: center;
	justify-content: center;

	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	font-size: 14px;
	color: white;
	font-weight: 600;
}
.productos_mayor .fila_botones .boton_tabla:hover
{
	background-color: #8f3305;
	border-color: #9e3f0f;
}
.productos_mayor .fila_botones .boton_tabla img
{
	width: 380px;
}