#sectorContenido{
    text-align: center;
}
#contenedorProductos{
    width:100%;
    display:grid;
    grid-template-columns:  1fr 400px;
    grid-template-rows: 130px 1fr;
}
#sectorTitulo{
    width:100%;
    line-height: 130px;
    text-align: left;
    text-indent: 10%;
    font-size: 20px;
    color:black;

    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start:1;
    grid-row-end:1;
}

#listaProductos{
    width:90%;
    display:flex;
    flex-wrap: wrap;
    align-items: center;
    /*align-items: stretch;*/
    flex-direction: row;
    margin:0 auto;
    justify-content: center;

    grid-column-start: 1;
    grid-column-end: 1;
    grid-row-start:2;
    grid-row-end:2;

}
.clsCajaProducto{
    width:307px;
    min-height: 253px;
    margin:33px;
   /* background: yellow;*/
   position: relative;
}
.clsCajaImagen{
   /* width:299px;*/
    width:100%;
  height: 187px;
  /*height: 100%;*/
   /* background: orange;*/
    border:4px solid black;
}
a img{
    width: 100%;
    height: 100%;
}
.clsPieProducto{
    width:100%;
    height: 58px;

}
.clsNombreProducto{
    width:100%;
    min-height: 50px;
    background: #C6AD5D;
    color:black;
    line-height: 50px;
    font-size: 14px;
    text-align: left;
    text-indent: 10px;
    text-transform: uppercase;
}
.clsBotonComprar{
    width:113px;
    height: 58px;
    background: #507122;
    position: absolute;
    float: right;
    margin-top: -50px;
    margin-left: 194px;
    color:white;
    font-size: 14px;
    
    border-bottom: 60px solid #507122;
   /* border-left: 25px solid #C6AD5D;*/
     border-left: 9px solid #C6AD5D;
  /*  border-right: 25px solid transparent;*/
  /*  height: 0;*/
   /* width: 100px;*/
    cursor:pointer;
}

.clsSectorPresentaciones {
    width: 232px;
    display: none;
    min-height: 340px;
    /* opacity: 0.5; */
    opacity: 0.8;
  /*  z-index: 10;*/
    z-index: 5;
    position: absolute;
    top: 0;
    left: 0;
    /* background-color: yellow; */
    background-color: white;
}
.clsBtnCerrarPresentaciones {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background-color: #507122;
    border-radius: 5px;
    color: white;
    line-height: 30px;
    vertical-align: middle;
    text-align: center;
    font-weight: bold;
    z-index: 20;
    /* opacity: 1; */
    cursor: pointer;
}

#sectorCarritoInternas{
   /* background: yellow;*/
}


.clsCajaPresentacion{
    display:flex;
    flex-direction: column;

}
.clsTituloPresentacion, .clsPrecioPresentacion {
    width: 100%;
    height: 20px;
    line-height: 20px;
    vertical-align: middle;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    text-align: left;
    text-indent: 20px;
}
#sectorCantidadYBoton {
    display:flex;
    flex-direction: row;
}
#sectorCantidad {
    width: 106px;
    height: 35px;
    display: inline-block;
}
.botonMas, .botonMenos {
    width: 27px;
    height: 35px;
    border: 1px solid #DFDDDD;
    display: inline-block;
    line-height: 35px;
    vertical-align: middle;
    text-align: center;
    margin: 0;
    padding: 0;
    cursor: pointer;
    font-size: 20px;
    background-color: #E0E0E0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}
.sectorInputCantidad {
    width: 40px;
    height: 35px;
    border-top: 1px solid #DFDDDD;
    border-bottom: 1px solid #DFDDDD;
    display: inline-block;
    margin: 0;
    padding: 0;
}
.sectorInputCantidad input{
    text-align: center;
    width: 40px;
    border: 0;
    line-height: 32px;
}
.botonAgregarPresentacionAlCarrito {
    /* width: 153px; */
    /* width: 144px; */
    width: 84px;
    /* height: 32px; */
    height: 37px;
    cursor: pointer;
    text-align: center;
    /* line-height: 32px; */
    line-height: 37px;
    /* vertical-align: middle; */
    vertical-align: top;
    background-color: #507122;
    color: white;
    display: inline-block;
    font-size: 14px;
}