@font-face {
  font-family: 'Roboto-Black';
  src: url("../font/Roboto-Black.ttf");
}

@font-face {
  font-family: 'Roboto-Regular';
  src: url("../font/Roboto-Regular.ttf");
}

* {
  font-family: 'Roboto-Regular';
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

header {
  width: 100%;
  min-width: 320px;
  background-color: #006600;
  position: fixed;
  top: 0;
  z-index: 5;
}

header .nav-menu {
  margin: 0 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

header .nav-menu .menu-movil {
  position: relative;
}

header .nav-menu .menu-movil .diseno-menu {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  overflow: hidden;
  transition: all .5s ease-in-out;
}

header .nav-menu .menu-movil .diseno-menu .burgerLine {
  width: 30px;
  border-radius: 10px;
  height: 2px;
  background-color: #fff;
  transition: all .5s ease-in-out;
}

header .nav-menu .menu-movil .diseno-menu .burgerLine:before, header .nav-menu .menu-movil .diseno-menu .burgerLine:after  {
  content: '';
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: #fff;
  border-radius: 10px;
  transition: all .5s ease-in-out;
}

header .nav-menu .menu-movil .diseno-menu .burgerLine:before{
  transform: translateY(-10px);
}

header .nav-menu .menu-movil .diseno-menu .burgerLine:after{
  transform: translateY(10px);
}

header .nav-menu .menu-movil .diseno-menu.active .burgerLine{
  transform: translateX(-30px);
  background-color: transparent;
}

header .nav-menu .menu-movil .diseno-menu.active .burgerLine:before{
  transform: rotate(45deg) translate(20px, -20px);
}

header .nav-menu .menu-movil .diseno-menu.active .burgerLine:after{
  transform: rotate(-45deg) translate(20px, 20px);
}

ul.list-menu {
  padding: 25px;
  background-color: #408c40e6;
  position: absolute;
  top: 40px;
  left: -30px;
  width: 20vw;
  height: calc(100vh - 130px);
  -webkit-transition: .7s;
  transition: .7s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
}

.burgerLine{

}

header .nav-menu .menu-movil ul.list-menu li {
  list-style: none;
  padding: 15px 0;
  font-size: 20px;
  display: block;
  position: relative;
  width: 100%;
}

header .nav-menu .menu-movil ul.list-menu li:first-of-type{
  padding-top: 0;
}

.logoCanasta{
  background-image: url(../images/logoH.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  width: 100px;
  height: 100px;
}

header .nav-menu .menu-movil ul.list-menu li:before{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
}

header .nav-menu .menu-movil ul.list-menu li a {
  text-decoration: none;
  color: white;
  width: 100%;
  display: block;
}

ul.list-menu.active {
  top: 44px;
  left: -30px;
  -webkit-transition: .7s;
  transition: .7s;
  max-height: calc(100vh - 133px);
  text-transform: capitalize;
}

.itemFilter{
  cursor: pointer;
}

.total-price-products{
  margin-left: 5px;
}

header .nav-menu figure {
  margin: 0;
  padding: 0;
}

header .nav-menu figure img {
  width: 80px;
}

header .nav-menu .icono-home-cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .nav-menu .icono-home-cart figure svg {
  width: 30px;
  margin-right: 10px;
}

header .nav-menu .icono-home-cart figure img {
  width: 30px;
}



footer {
  background-color: #006600;
  height: auto;
  position: fixed;
  width: 100%;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  z-index: 6;
}

footer a {
  padding: 10px;
}

footer a svg {
  width: 50px;
}

main {
  margin-top: 100px;
  /* .filter-products{

    } */
}

main .card-products {
  /* padding: 0 60px; */
  /* display: -ms-grid;
  display: grid;
  gap: 1rem;
  grid-auto-flow: dense;
  grid-auto-rows: auto;
  grid-template-columns: repeat(auto-fill, minmax(17rem, 1fr));
  justify-items: center; */
  margin: 20px 0 100px;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  display: block;
  margin: 0 auto 100px;
}

/* @media (max-width: 375px) {
  main .card-products {
    -ms-grid-columns: none;
        grid-template-columns: none;
  }
} */

main .card-products .product {
  width: 18%;
  margin: 20px 1%;
  /* display: -webkit-box;
  display: -ms-flexbox; */
  /* display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; */
    /* box-shadow: 0px 0px 10px 2px #0000003b; */
    padding: 0px 0 10px;
    border-radius: 10px;
    text-align: center;
    overflow: hidden;
    transform: scale(1);
    transition: all .1s ease-in-out, width 0s, height 0s;
    
}

/* main .card-products .product:hover{
  transform: scale(1.1);
} */

main .card-products .product .ver-imagen-zoom {
  font-size: 15px;
  padding: 12px 0;
  margin-bottom: 2px;
  background-color: #006600;
  border: none;
  color: white;
  border-radius: 10px;
  width: 70%;
  margin: 10px auto;
  display: block;
}

/* .imgContainer{ */
  /* width: 100%; */
  /* overflow: hidden; */
/* } */

main .card-products .product .img-product {
  width: 180px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 20px;
  -webkit-transition: .7s;
  transition: .7s;
}

main .card-products .product .zoom {
  -webkit-transform: scale(1.3) translateY(0%);
          transform: scale(1.3) translateY(0%);
  -webkit-transition: .7s;
  transition: .7s;
}

main .card-products .product p {
  font-weight: 900;
  text-align: center;
  margin: 10px 0 0;
  font-size: 18px;
  /* width: 48%;
  display: inline-block;
  vertical-align: bottom; */
}

.title-product {
  min-height: 70px;
  vertical-align: middle;
  display: flex;
  align-items: center;
  justify-content: center;
}

main .card-products .product .add-to-cart {
  border: none;
  background-color: #006600;
  color: white;
  padding: 12px 0;
  border-radius: 10px;
  font-size: 15px;
  width: 70%;
  margin: 0 auto;
  display: block;
}

main .cart-products {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  background-color: white;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  transition: all .7s ease-in-out;
  overflow-y: auto;
}

.closeCart{
  position: absolute;
  top: 10px;
  right: 10px;
  height: 35px;
  width: 35px;
  cursor: pointer;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../images/x-mark.png);
}

main .cart-products .title-cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

main .cart-products .title-cart p {
  font-weight: bold;
  font-size: 32px;
  margin: 16px 0 32px;
}

main .cart-products .details-product-cart {
  width: 100%;
  /* border-bottom: 1px solid lightgray;
  border-top: 1px solid lightgray; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 0;
}

main .cart-products .details-product-cart .title-details-products {
    /* display: -webkit-box; */
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-between;
    width: 100%;
    padding-left: 25px;
    padding-right: 70px;
    padding-bottom: 10px;
    padding-top: 10px;
    border-bottom: 1px solid #000;
}

main .cart-products .details-product-cart .title-details-products .title-table{
  width: 33.333%;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  border-right: 1px solid #000;
}

main .cart-products .details-product-cart .title-details-products .title-table:first-of-type{
  text-align: left;
}
main .cart-products .details-product-cart .title-details-products .title-table:nth-last-of-type(2){
  border-right: none;
}

main .cart-products .details-product-cart .details-products table tbody tr:nth-child(2) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

main .cart-products .details-product-cart tr {
  display: -ms-grid;
  display: grid;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 16px 0;
}

main .cart-products .details-product-cart tr td {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

main .cart-products .details-product-cart tr td h1 {
  color: #006600;
  margin-bottom: 16px;
  text-align: center;
}

main .cart-products .details-product-cart tr td p.title-table {
  font-weight: bold;
  border-top: 1px solid lightgray;
  border-bottom: 1px solid lightgray;
}

main .cart-products .details-product-cart tr td #units-product-cart {
  width: 50px;
  height: 30px;
  background-color: lightgray;
  border: none;
  border-radius: 5px;
}

main .cart-products .details-product-cart tr td button.delete-product {
  background: lightcoral;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

main .cart-products .details-product-cart {
  margin-bottom: 24px;
}

main .cart-products .details-product-cart .details-products .details {
  text-align: center;
  margin-top: 10px;
  border-bottom: 1px solid #000;
  padding: 20px 0 20px 0;
}

.shoppingCartItemTitle{
  text-align: left;
  margin-bottom: 5px;
  margin-left: 25px;
  font-size: 16px;
  width: calc(33.3333% - 35px);
}

main .cart-products .details-product-cart .details-products .details .shoppingCartItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 25px;
  padding-right: 70px;
  width: 100%;
  position: relative;
}

main .cart-products .details-product-cart .details-products .details .shoppingCartItem img{
 width: 33.33333%;
  height: 80px;
  border-radius: 10px;
}

.productPriceCart{
 width: 33.33333%;
}

main .cart-products .details-product-cart .details-products .details .shoppingCartItem input {
  width: 70px;
  border: 3px solid #006600;
  border-radius: 10px;
  height: 40px;
  text-align: center;
  font-size: 16px;
  outline: none;
 width: 33.33333%;
}

main .cart-products .details-product-cart .details-products .details .shoppingCartItem button {
  background: transparent;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  background-image: url(../images/bin.png);
  width: 30px;
  height: 30px;
  background-size: 80%;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -15px;
}

main .cart-products .total-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 20px 0;
  font-weight: bold;
  font-size: 18px;
}

.dangerText{
  color: #f00;
  display: none;
}

.dangerText.active{
  display: block;
}

main .cart-products button.button-buy-whatsapp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 30px auto 10px;
  border: none;
  background-color: #006600;
  padding: 10px 30px;
  border-radius: 10px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  color: white;
  font-weight: bold;
  letter-spacing: 1px;
  width: 90%;
  height: 55px;
  font-size: 16px;
}



main .cart-products button.button-buy-whatsapp svg {
  width: 30px;
  margin-right: 12px;
}

main .cart-products button.button-buy-whatsapp p {
  color: white;
  margin: 0;
  font-weight: bold;
  letter-spacing: 1px;
}

main .cart-products.active {
  visibility: visible;
  opacity: 1;
}
/*# sourceMappingURL=style.css.map */


#detailProduct{
  position: fixed;
  top: 0;
  opacity: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #ffffffb2;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 10;
  padding: 70px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all .5s ease-in-out, left 0s ease 0.5s;
}

#detailProduct.active{
  opacity: 1;
  left: 0;
  transition: all .5s ease-in-out, left 0s ease 0s;
}

.closeDetail{
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background-image: url(../images/x-mark.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.innerDetailProduct{
  width: 90%;
  display: block;
  margin: 0 auto;
  max-height: 100%;
  overflow-y: auto;
}

.innerDetailProduct .product{
  width: 100%;
  overflow: hidden;
  position: relative !important;
  top: 0 !important;
  left: 0 !important;
}

.innerDetailProduct .imgContainer{
  width: 100%;
  margin-bottom: 25px;
}

.innerDetailProduct .img-product{
  width: 85%;
  margin: 0 auto;
  display: block;
  border-radius: 20px;
}

.innerDetailProduct .title-product, .innerDetailProduct .pice-product{
  font-weight: 900;
  text-align: center;
  margin: 10px 0 0;
  font-size: 22px;
  display: inline-block;
  vertical-align: middle;
  width: 48%;
}

.innerDetailProduct .ver-imagen-zoom{
  display: none;
}

.innerDetailProduct .add-to-cart{
  font-size: 20px;
    padding: 20px 0;
    margin-bottom: 2px;
    background-color: #006600;
    border: none;
    color: white;
    border-radius: 10px;
    width: 100%;
    margin: 20px auto 0;
    display: block;
}

.formData{
  width: 90%;
  margin: 10px auto;
}

.labelData{
  width: 100%;
  display: block;
  margin-bottom: 10px;
}

#city{
  width: 100%;
  padding: 15px 10px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 17px;
  border-color: #060;
  outline: none;
  appearance: none;
  color: #000;
}

.inputData{
  width: 100%;
  padding: 15px 10px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 17px;
  border-color: #060;
  outline: none;
}

.infoForm{
  font-size: 18px;
  margin-bottom: 10px;
  text-align: center;
}

.domicilio{
  text-align: center;
  margin: 30px auto 0;
}

@media only screen and (max-width: 1200px){
  main .card-products .product{
    width: 31%;
  }
}

.preloader{
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  z-index: 100;
  background-color: #006600;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  left: 0%;
  transition: all .5s ease-in-out, left .5s ease-in-out 0s;
}

.preloader.active{
  opacity: 0;
  left: -100%;
  transition: all .5s ease-in-out, left .5s ease-in-out 0.5s;
}

.innerPreloader{
  width: 50%;
}


/* @media only screen and (max-width: 1024px){
  main .card-products .product{
    width: 27%;
  }
} */

@media only screen and (max-width: 768px){

  main .card-products .product{
    width: 48%;
  }

  main .card-products .product .ver-imagen-zoom, main .card-products .product .add-to-cart{
    width: 90%;
  }
    
  ul.list-menu{
    left: -30px;
    width: 100vw;
  }
}

@media only screen and (max-width: 560px){
  main .card-products .product{
    width: 48%;
    margin: 30px 1%;
  }

  main .card-products .product .img-product{
    width: 100%;
  }
}


@media only screen and (min-width: 1200px){
  main .cart-products .details-product-cart .details-products .details .shoppingCartItem img{
    width: 180px;
    height: auto;
  }
}