      .section-products {
          padding: 5px 0 5px;
      }

      .section-products .header {
          margin-bottom: 50px;
      }

      .section-products .header h3 {
          font-size: 1rem;
          color: #fe302f;
          font-weight: 500;
      }

      .section-products .header h2 {
          font-size: 2.2rem;
          font-weight: 400;
          color: #444444; 
      }

      .section-products .single-product {
          /*margin-bottom: 26px;*/
          margin-bottom: 15px;
          background-color: white;
          padding: 15px;
          box-shadow: 0px 0px 8px 6px rgb(0 0 0 / 2%);
      }

      .section-products .single-product .part-1 {
          position: relative;
          height: 290px;
          max-height: 290px;
          margin-bottom: 20px;
          overflow: hidden;
          cursor: pointer;
      }

      .section-products .single-product .part-1::before {
          position: absolute;
          content: "";
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          z-index: -1;
          transition: all 0.3s;
      }

      .section-products .single-product:hover .part-1::before {
          transform: scale(1.2,1.2) rotate(5deg);
      }


      .section-products .single-product .part-1 .discount,
      .section-products .single-product .part-1 .new {
          position: absolute;
          top: 15px;
          left: 20px;
          color: #ffffff;
          background-color: #fe302f;
          padding: 2px 8px;
          text-transform: uppercase;
          font-size: 0.85rem;
          z-index: 3;
      }

      .section-products .single-product .part-1 .new {
          left: 0;
          background-color: #444444;
      }

      .section-products .single-product .part-1 ul {
          position: absolute;
          bottom: -41px;
          left: 20px;
          margin: 0;
          padding: 0;
          list-style: none;
          opacity: 0;
          transition: bottom 0.5s, opacity 0.5s;
           z-index: 2
      }

      .section-products .single-product:hover .part-1 ul {
          bottom: 30px;
          opacity: 1;
      }

      .section-products .single-product .part-1 ul li {
          display: inline-block;
          margin-right: 4px;
      }

      .section-products .single-product .part-1 ul li a {
          display: inline-block;
          width: 40px;
          height: 40px;
          line-height: 40px;
          background-color: #3292b3;
          border-radius: 5px;
          color: #1e2628;
          text-align: center;
          box-shadow: 0 2px 20px rgb(50 50 50 / 10%);
          transition: color 0.2s;
          /*display: inline-block;
          width: 40px;
          height: 40px;
          line-height: 40px;
          background-color: #ffffff;
          color: #444444;
          text-align: center;
          box-shadow: 0 2px 20px rgb(50 50 50 / 10%);
          transition: color 0.2s;*/
      }

      .section-products .single-product .part-1 ul li a:hover {
          /*color: #03a9f4;*/
              color: #ffffff;
      }

      .section-products .single-product .part-2 .product-title {
          font-size: 1rem;
      }

      .section-products .single-product .part-2 h4 {
          display: inline-block;
          font-size: 1rem;
      }

      .section-products .single-product .part-2 .product-old-price {
          position: relative;
          padding: 0 7px;
          margin-right: 2px;
          opacity: 0.6;
      }

      .section-products .single-product .part-2 .product-old-price::after {
          position: absolute;
          content: "";
          top: 50%;
          left: 0;
          width: 100%;
          height: 1px;
          background-color: #444444;
          transform: translateY(-50%);
      }


      .badge-whatsapp {
        color: #fff;
        background-color: #00a884;
        border: 1px solid #00a884;
    }

      .btn-whatsapp {
            margin-top: 8px;
          color: #fff;
          background-color: #00a884;
          border-color: #14aa75;
      }

      .btn-whatsapp:hover {
          color: #fff;
          background-color: #15b67d;
          border-color: #14aa75;
      }

       .badge {
            border-radius: 0.25rem;
            font-size: 13px;
            font-weight: initial;
            line-height: 1;
            padding: 4px 6px;
            font-family: "poppins", sans-serif;
            /* font-weight: 600; */
            letter-spacing: 0.04rem;
        }

        /*.alert.alert-primary {
            padding: 9px;
        }*/

        .badge-primaryX {
            /* border: 1px
        px
         solid #2196f3; */
            color: #2196f3;
        }


            nav.navbar.horizontal-layout.col-lg-12.col-12.p-0 {
        /*    position: fixed;
            padding-bottom: 25px;
             margin-bottom: 25px!important; 
            z-index: 19;*/
        }

      /* Boton Flotante */
      .btn-flotante {
        font-size: 14px; /* Cambiar el tamaño de la tipografia */
        text-transform: uppercase; /* Texto en mayusculas */
        font-weight: bold; /* Fuente en negrita o bold */
        color: #ffffff; /* Color del texto */
        border-radius: 5px; /* Borde del boton */
        letter-spacing: 2px; /* Espacio entre letras */
        background-color: #009688; /* Color de fondo */
        /*background-color: #E91E63;*/ /* Color de fondo */
        /*padding: 18px 30px;*/ /* Relleno del boton */
        position: fixed;
        bottom: 40px;
        right: 40px;
        transition: all 300ms ease 0ms;
        box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
        z-index: 99;
      }

      .btn-flotante i.mdi.mdi-tune {
        font-size: 20px;

      }
      .btn-flotante:hover {
        background-color: #0404FC; /* Color de fondo al pasar el cursor */
        box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.3);
        transform: translateY(-7px);
      }
      @media only screen and (max-width: 600px) {
        .btn-flotante {
          font-size: 12px;
          padding: 12px 20px;
          bottom: 20px;
          right: 20px;
        }
      } 

    .fondoLoader {
      background-color: #f0f8ff00;
      cursor: progress;
    }
    .box-loader{
      
      height: 200px;
    }


  .list .list-item:nth-of-type(even) {
   /* background-color: #f3f4fa;*/
   background-color:#02027e08;
  }


  .list .list-item {
    padding: 10px;
    border-radius: 5px;
  }

  .jq-toast-wrap .jq-icon-success {
    background-color: #4caf50;
  }

  .icon-xg {
      font-size: 1.5rem!important;
      margin-top: -5px!important;
      margin-left: -3px!important;
  }

  .cardCarrito {
    font-size: 1rem;
    font-weight: 300;
}


.subscribe-overview-card .nav-tabs {
   display: flex;
   border-bottom: none;
}
 .subscribe-overview-card .nav-tabs .nav-item {
   display: flex;
   border-radius: 2px;
   box-shadow: 0 4px 8px 0 rgba(42, 55, 71, 0.15);
   margin: 5px;
   width: calc(100% / 3 - 7px);
}
 .subscribe-overview-card .nav-tabs .nav-item .nav-link {
   display: flex;
   flex-direction: column;
   border: none;
   padding: 15px 0px;
   border-radius: 2px;
   width: 100%;
}
 .subscribe-overview-card .nav-tabs .nav-item .nav-link i {
   text-align: center;
   margin-right: 0px;
   margin-left: 0px;
   margin-bottom: 5px;
}
 .subscribe-overview-card .nav-tabs .nav-item .nav-link.active {
   background: #2196f3;
   color: #fff;
}
 .subscribe-overview-card .nav-tabs .nav-item:last-child {
   margin-right: 0px;
}
 .subscribe-overview-card .nav-tabs .nav-item:first-child {
   margin-left: 0px;
}
 .subscribe-overview-card .tab-content .tab-pane {
   position: relative;
}
 .subscribe-overview-card .tab-content .tab-pane .badge-group {
   display: flex;
   justify-content: space-between;
   position: absolute;
   bottom: 0px;
   right: 5px;
   left: 15px;
   margin-bottom: 15px;
}
 .subscribe-overview-card .tab-content .tab-pane .badge-group .badge {
   color: #fff;
   background: #fff;
   border-radius: 4px;
   margin-right: 10px;
   padding: 8px 10px;
   box-shadow: 0 4px 8px 0 rgba(42, 55, 71, 0.15);
   transition: 0.3s ease;
}
 .subscribe-overview-card .tab-content .tab-pane .badge-group .badge.active {
   color: #fff;
   background: #2196f3;
}


