/*============================================================================================================================ Menu  */
.menu_venta {
	height:30px; 
	width:100%;
	display: grid;
	grid-template-columns:  10px  auto      1fr  auto     20px  40px   auto       40px   1fr  80px       80px      40px   40px    10px;
    grid-template-areas: "  .     v_titulo  .    v_fecha  .     minus  v_periodo  plus   .    v_factura  v_boleta  v_ple  v_home  .";
	background:#FFF8DC; 
}


.v_titulo {
	grid-area: v_titulo;
	display: grid;
}
a.v_titulo:link, a.v_titulo:visited {
    justify-items: start;
    align-items: center;
	font-size:22px;
	font-weight: bold;
	text-decoration: none;
	color:#512C10;
}
.v_fecha  { 
    grid-area: v_fecha;
    width: 100%;
    font-size:16px; 
    color:#d7e7bf;
    display: grid;
    justify-items: center;
    align-items: center;
}
.v_fecha input {
    border: 0;
    height: 27px;
    background:#FFF8DC; 
    font-weight: 300;
    font-size: 17px;
    text-align: right;
	font-weight: 400;
}
.v_periodo {
	grid-area: v_periodo;
    width: 100%;
	color:#800000;
	font-weight: 600;
	font-size:18px; 
	line-height:150%;
	text-decoration: none;
	display: grid;
    justify-items: center;
    align-items: center;
}
.minus {
	grid-area: minus;
	display: grid;
    justify-items: center;
    align-items: center;
}
.minus img { height: 18px; width: 15px; }
.plus {
	grid-area: plus;
	display: grid;
    justify-items: center;
    align-items: center;
}
.plus img { height: 18px; width: 15px;}
.v_factura {
	grid-area: v_factura;
	display: grid;
    font-size: 18px;
    text-decoration: none;
    justify-self: center;
    align-self: center;
    color: #800000;
}
a.v_factura:link, a.v_factura:visited {
    justify-items: start;
    align-items: center;
	font-size:18px;
	text-decoration: none;
	color: #800000;
}
.v_boleta {
	grid-area: v_boleta;
	display: grid;
    font-size: 18px;
    text-decoration: none;
    justify-self: center;
    align-self: center;
    color: #800000;
}
a.v_boleta:link, a.v_boleta:visited {
    justify-items: start;
    align-items: center;
	font-size:18px;
	text-decoration: none;
	color: #800000;
}
.v_ple {
	grid-area: v_ple;
	display: grid;
    justify-items: center;
    align-items: center;
}
.v_ple img  { height: 22px; }
.v_home {
	grid-area: v_home;
	display: grid;
    justify-items: center;
    align-items: center;
}
.v_home img { height: 20px; }
@media screen and (max-width: 790px) {
	/*---------------------------------------------------- MENU */
	.menu_ventas {
		height:60px; 
		width:100%;
		display: grid;
		grid-template-rows:  30px  30px;
		grid-template-columns:  8px  auto      1fr  40px   auto     40px;
		grid-template-areas: "  .    v_titulo  .    v_factura  v_ple    v_home"
							 "  .    v_fecha   .    minus      v_periodo  plus";
	}
	.v_titulo {
		font-family: Roboto;
		font-size:20px;
		font-weight: bold;
		letter-spacing: 0px;
	}
}
