

.grilla{
    display: grid;
    grid-template-areas:
    "header header"
    "banner banner"
    "rrss rrss"
    "menu_button menu_button"
    "publicidad detalle"
    "secciones secciones"
    "footer footer"
    "footer_desarrollado footer_desarrollado";

    grid-template-rows: auto;
    grid-template-columns: 25% auto;
}

.border {
    border: 1px solid black;
}
header{
    grid-area: header;
}
section#banner{
    grid-area: banner;
}

section#rrss{
    grid-area: rrss;
}

section#menu_button{
    grid-area: menu_button;
    margin: auto;
    width: 100%;
    font-family: Arial,Helvetica,sans-serif;
    font-size: 2.2vw;
}



section#publicidad{
    grid-area: publicidad;
}
section#detalle{
    grid-area: detalle;
}

section#secciones{
    grid-area: secciones;
}

footer{
    grid-area: footer;
}
section#footer_desarrollado{
    grid-area: footer_desarrollado;
}


html, body {
    margin: 0;
    padding: 10px 0px 10px 0px;
    width: 100%;
    height: 100%;
    background: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
}

a{
    text-decoration: none;
}




.nav_menu li{
    flex-grow: 1;
    border-right: 1px solid #ffffff;
}

.nav_menu ul{
    margin: 0;
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    background-color: #F6921B;
}
.nav_menu li:hover{
    background: #d95333;
}

.nav_menu li a{
    display: block;
    padding: 10px 15px;
    color: #055160;
    text-decoration: none;
    font-family: Andale Mono, monospace, bold;
    font-weight: bolder;
}

.nav_menu > li{
    list-style: none;
    float: inside;
}
.contenedor_img{
    position: relative;
}
#triangle-topleft {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 0;
    height: 0;
    border-top: 100px solid #ff0000;
    border-right: 100px solid transparent;
}

.text-block {
    color: #ffffff;
    position: relative;
    top: -60px;
    left: 15px;
    font-weight: bolder;
    padding:5px;
    transform: rotate(-45deg);
}

.menuVertical li{
    margin: 0;
    padding: 5px;
    list-style: none;
}
.menuVertical li ul{
    margin: 0;
    padding: 3px;
    width: 100%;
}

.menuVertical li ul a{
    display: block;
    border-style: solid;
    border-radius: 3px;
    text-align: center;
    color: #64758D;
    border: 1px solid #13A1C8;
    font-size: 2.2vw;
}

.menuVertical  li ul a:hover{
    background: #F6921B;
    color: #ffffff;
}


.table_producto {
    width: 100%;
    border-spacing: 10px;
    border-collapse: separate;
    border: 1px solid #000000;
    padding: 2px;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 15px;

}


.td_estilo_descripcion{
    padding:10px;
    line-height:normal;
    padding-top:5px;
    vertical-align:top;
    height:90px;
}

.desc_producto{
    height:60px;
    font-size:18px;
    color: #ffffff;
    text-decoration:none;
    font-weight:normal;
}

.nom_producto{
    height:4rem;
    font-size:20px;
    color: #1a8ac9;
    text-decoration:none;
    font-weight:bolder;
}

.precio_normal{
    font-size:1.8rem;
    color: #406e87;
    font-weight:bolder;
}

.precio_descuento{
    font-size:1.8rem;
    color: #fc0404;
}
.precio_antiguo{
    font-size:1.4rem;
    text-decoration:line-through;
    color: #c4c1c1;
}

.img_product{
    width: 200px;
    height: 300;
}