* {
    margin: 0;
    padding: 0;
    
}
/*
   .menu {
            width: 25%;
            float: left;
            padding: 15px;
        }
  */

.menu {
    width: 15%;
    float: left;
    padding: 15px;
    box-sizing: border-box;
}      
        .main {
            width: 75%;
            float: left;
            padding: 30px;
        }
body {
    background: #ffffff;
    font-family: 'Open Sans', sans-serif;
}

.wrap {
    max-width: 100px;
    width: 90%;
    margin: auto;
}

.wrap>h1 {
    color: #494B4D;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    text-align: center;
    margin: 15px 0px;
}

.wrap>h1:after {
    content: '';
    width: 100%;
    height: 1px;
    background: #C7C7C7;
    margin: 20px 0;
}

.store-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.category_list {
    display: flex;
    flex-direction: column;
   /* width: 18%; */
}

.category_list .category_item {
    display: block;
    width: 90%;
    padding: 15px 0;
    margin-bottom: 20px;
    background: #e6e3d2;
    text-align: center;
    text-decoration: none;
    color: #3f3c35;
}

.category_list .ct_item-active {
    background: #d2cdb5;
}


/* PRODUCTOS ============*/

.products-list {

     display: contents;
width: 30%;
}

.products-list .product-item {
    width: 14%;
    display: inline-block;
    margin: 5px;
    /* float: left; */
}

.products-list .product-item img {
    width: 100%;
}






/* RESPONSIVE */

@media screen and (max-width: 1100px) {
    .products-list .product-item {
        width: 30.3%;
    }
}

@media screen and (max-width: 900px) {
    .category_list,
    .products-list {
        width: 100%;
    }
    .category_list {
      /*  flex-direction: row;*/
        justify-content: space-between;
    }
    .category_list .category_item {
        align-self: flex-start;
        width: 15%;
        font-size: 14px;
    }
    .products-list .product-item {
        margin-left: 4.5%;
    }
    .products-list .product-item:nth-child(3n+1) {
        margin-left: 0px;
    }
}

@media screen and (max-width: 700px) {
    .category_list {
        flex-direction: column;
    }
    .category_list .category_item {
        width: 100%;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 600px) {
    .products-list .product-item {
        width: 47.5%;
    }
    .products-list .product-item:nth-child(3n+1) {
        margin-left: 4.5%;
    }
    .products-list .product-item:nth-child(2n+1) {
        margin-left: 0px;
    }
}

@media screen and (max-width: 350px) {
    .products-list .product_item {
        width: 100%;
        margin-left: 0px;
    }
}


.texte-bajo {
    text-align: left;
    display: block;
    margin: 0 2em;
}

/*List Selector*/

.custom-select {
    position: relative;
    font-family: Arial;
    background-color: #e6e3d2;
}

.custom-select select {
    display: none;
    background-color: #e6e3d2;
    /*hide original SELECT element:*/
}

.select-selected {
    background-color: #e6e3d2;
}


/*style the arrow inside the select element:*/

.select-selected:after {
    position: absolute;
    content: "";
    top: 14px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #e6e3d2 transparent transparent transparent;
}


/*point the arrow upwards when the select box is open (active):*/

.select-selected.select-arrow-active:after {
    border-color: transparent transparent #e6e3d2 transparent;
    top: 7px;
}


/*style the items (options), including the selected item:*/

.select-items div,
.select-selected {
    color: #3f3c35;
    padding: 8px 16px;
    border: 1px solid transparent;
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    cursor: pointer;
    user-select: none;
}


/*style items (options):*/

.select-items {
    position: absolute;
    background-color: #e6e3d2;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
}


/*hide the items when the select box is closed:*/

.select-hide {
    display: none;
}

.select-items div:hover,
.same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
}

.btn-outline-primary
{
    font-size: 10px;
}

.btn btn-outline-success
{
    font-size: 10px;
}

.btn-outline-danger {
    font-size: 10px;
}
