textarea:focus, input:focus, button:focus, select:focus, option:focus{
  /* informacion */
    outline: none; 
}

/* Estilos generales */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: rgb(244, 244, 244);
    color: #333;
}

/* Estilos adicionales para el encabezado */
header {
    background-color: #0daa41;
    color: #fff;
    text-align: center;
    padding: 0px 0px;
}

header .logo img {
    max-width: 140px;
    border-radius: 70px;
    border: 2px solid #fff; /* Borde blanco alrededor del logo */
}

header h1 {
    font-size: 36px;
    margin: 10px 0;
}

nav {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
}

nav li {
    margin-right: 20px;
}

nav a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
}

nav a i {
    margin-right: 5px;
    font-size: 24px;
}

/* Estilo cuando se pasa el ratón sobre el enlace */
nav a:hover {
    color: #ffd700; /* Color amarillo al pasar el ratón */
}

/* Secciones */
section {
    padding: 50px 0;
    text-align: center;
}

section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #0daa41;
}

section p {
    font-size: 18px;
    line-height: 1.6;
}

/* Pie de página */
footer {
    background-color: #0daa41;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

.ContendorSemiModal{
    display: block; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.ContendorSemiModal2{
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.textopredifinido{
    position: relative;
    float: left;
    width: 50%;
    left: 25%;
    font-size: 20px;
    background-color: green;
    border: 2px solid white;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    color: white;
    text-align: center;
}

.ImagenCarga{
    width: 100px;
    height: 90px;
}

/* Estilos para la lista de categorías de productos */
.categorias-lista {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 30px; /* Espacio adicional arriba de la lista */
}

.categorias-lista li {
    width: 30%;
    margin-bottom: 20px;
    text-align: center;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden; /* Evita que las esquinas redondeadas afecten el contenido */
    transition: transform 0.2s ease-in-out;
}

.categorias-lista li:hover {
    transform: scale(1.05);
}

.categorias-lista a {
    display: block;
    text-decoration: none;
    color: #333;
}

.categorias-lista img {
    max-width: 100%;
    height: auto;
    border-bottom: 2px solid #0daa41; /* Línea verde en la parte inferior */
    border-radius: 10px 10px 0 0; /* Esquinas redondeadas solo en la parte superior */
}

.categorias-lista h3 {
    font-size: 18px;
    margin: 10px 0;
    color: #0daa41;
}

.categorias-lista p {
    font-size: 14px;
    margin: 0;
    padding: 10px;
}

/* Estilos adicionales, como fondo y espaciado */
#catalogo {
    background-color: #f4f4f4;
    padding: 40px 0;
    text-align: center;
}

#catalogo h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #0daa41;
}

/* Estilos para la lista de subcategorías */
.subcategorias-lista {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: space-around;
    background-color: #f4f4f4;
    margin: 0;
    padding: 10px 0;
}

.subcategorias-lista li {
    flex: 1;
    text-align: center;
}

.subcategorias-lista a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.3s;
}

.subcategorias-lista a:hover {
    color: #0daa41;
}

/* Estilos para la lista de productos */
.productos-lista {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.productos-lista li {
    width: calc(50% - 20px);
    margin: 10px;
    padding: 15px;
    background-color: #fff;
    border: 1px solid #ddd;
    text-align: center;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease-in-out;
}

.productos-lista li:hover {
    transform: scale(1.05);
}

.productos-lista img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.productos-lista h4 {
    font-size: 16px;
    margin: 5px 0;
}

.productos-lista p {
    font-size: 14px;
    margin: 0;
    padding: 5px 0;
}

.productos-lista button {
    background-color: #0daa41;
    color: #fff;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.productos-lista button:hover {
    background-color: #0c9438;
}

/* Estilos para el carrito de compras */
#carrito {
    background-color: #fff;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
}

#carrito h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #0daa41;
}

.carrito-lista {
    list-style: none;
    padding: 0;
    text-align: left;
}

.carrito-lista li {
    font-size: 14px;
    margin-bottom: 5px;
}

#total {
    font-weight: bold;
    font-size: 16px;
}

#vaciar-carrito {
    background-color: #f44336;
    color: #fff;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#vaciar-carrito:hover {
    background-color: #d32f2a;
}

/* Estilos para la sección de pedidos */
#pedidos {
    padding: 50px 0;
    text-align: center;
    background-color: #f4f4f4;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    margin: 20px;
}

#pedidos h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #0daa41;
}

#pedidos form {
    max-width: 400px;
    margin: 0 auto;
}

#pedidos label {
    display: block;
    text-align: left;
    margin-bottom: 5px;
    font-weight: bold;
}

#pedidos input[type="text"],
#pedidos input[type="tel"],
#pedidos input[type="number"],
#pedidos select {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

#pedidos small {
    color: #777;
    font-size: 12px;
}

#pedidos button[type="submit"] {
    background-color: #0daa41;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

#pedidos button[type="submit"]:hover {
    background-color: #0c9438;
}





/* Estilos del scrollbar en webkit (Chrome, Safari) */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-thumb {
    background-color: #0daa41; /* Color del thumb (barra de desplazamiento) */
    border-radius: 10px; /* Esquinas redondeadas del thumb */
}

::-webkit-scrollbar-track {
    background-color: #f4f4f4; /* Color del track (fondo del scrollbar) */
}

/* Estilos del scrollbar en Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #0daa41 #f4f4f4; /* Color del thumb y del track */
}

/* Estilos del scrollbar en Microsoft Edge e Internet Explorer */
*::-ms-scrollbar {
    width: 12px;
}

*::-ms-scrollbar-thumb {
    background-color: #0daa41; /* Color del thumb (barra de desplazamiento) */
    border-radius: 10px; /* Esquinas redondeadas del thumb */
}

*::-ms-scrollbar-track {
    background-color: #f4f4f4; /* Color del track (fondo del scrollbar) */
}

  /* ------------- style add on 21/02/2024 ----------------  */

  .ContenedorFiltros{
    position: relative;
    float: left;
    width: 20%;
    left: 1%;
    height: auto;
  }

  .ContenedorOpciones{
    position: relative;
    float: left;
    width: 95%;
    left: 2.5%;
    height: auto;
    margin-bottom: 10px;
  }

  .Contenedor50{
    position: relative;
    float: left;
    width: 42.5%;
    margin-left: 2.5%;
    height: auto;
    margin-bottom: 10px;
  }

  .Contenedor100{
    position: relative;
    float: left;
    width: 87.5%;
    margin-left: 2.5%;
    height: auto;
    margin-bottom: 10px;
  }

  .ContenedorOpcionesNombre{
    position: relative;
    float: left;
    width: 100%;
    height: auto;
  }

  .ContenedorOpcionesNombre2{
    position: relative;
    font-size: 18x;
    float: left;
    width: 100%;
    height: auto;
  }

  .ContenedorOpcionesCampo1{
    position: relative;
    float: left;
    width: 100%;
    height: auto;
  }

  .SelectContenedor{
    position: relative;
    width: 100%;
    height: 25px;
    font-size: 17px;
  }

  .numberoption{
    position: relative;
    float: left;
    width: 46%;
    height: 20px;
    font-size: 17px;
    text-align: right;
  }

  .buttonSearch{
    position: relative;
    float: left;
    width: 100%;
    height: 30px;
    top: 15px;
  }

  .ContenedorProductos{
    position: relative;
    float: left;
    width: 75%;
    min-height: 10px;
    left: 2%;
    background-color: rgb(244, 244, 244);
  }

  .ContenedorCuerpo{
    position: relative;
    float: left;
    height: auto;
    width: 100%;
  }

  .CuadroProducto{
    position: relative;
    float: left;
    width: 45%;
    height: 430px;
    background-color: white;
    margin: 2.5%;
    box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
  }

  .CuadroImg{
    position: relative;
    float: left;
    width: 90%;
    height: 265px;
    left: 5%;
    top: 15px;
  }

  .imagenProducto{
    position: relative;
    float: left;
    width: 100%;
    height: 100%;
  }

  .ProdDetalle{
    position: relative;
    float: left;
    width: 90%;
    height: 80px;
    left: 5%;
    top: 15px;
  }

  .ProdBoton{
    position: relative;
    float: left;
    width: 90%;
    height: 50px;
    left: 5%;
    top: 15px;
  }

  .BotonCarrito{
    position:relative;
    float: left;
    width:80%;
    left:10%;
    height: 90%;
    top: 5%;
    background-color: green;
    color: white;
    font-size: 17px;
    border: 0px;
    border-radius: 10px;
  }

  .ContenedorTablaCarro{
    position: relative;
    float: left;
    width: 90%;
    left: 5%;
    min-height: 250px;
    max-height: auto;
  }

    .txt_camp{
        position: relative;
        float: left;
        width: 100%;
        height: 30px;
        border-radius: 5px;
        border: solid black 0.5px;
        font-size: 18px;
    }

    .ContenedorTablaCarro1{
        position: relative;
        float: left;
        width: 90%;
        left: 5%;
        min-height: 150px;
        display: none;
        max-height: auto;
    }

    table{
      width: 100%;
      border-collapse: collapse;
      overflow-x: scroll;
    }

    tr{
      border-bottom: 1px solid black;
      height: 30px;
    }

    th{
      background-color: green;
      color: white;
      max-height: 30px;
      min-width: 80px;
    }

    .td_izquierda{
      text-align: left;
      font-size: 15px;
    }

    .td_derecha{
      text-align: right;
      font-size: 15px;
    }

    .td_derecha_min{
      text-align: right;
      font-size: 15px;
    }

    .td_centro{
      text-align: center;
      font-size: 15px;
    }

    .td_centro_min{
      text-align: center;
      font-size: 15px;
    }

    .ContenedorBotones{
        position: relative;
        float: left;
        width: 90%;
        left: 5%;
        height: 30px;
        margin-bottom: 10px;
        border-bottom: 1px solid black;
    }

    .Btn_Pest{
        position: relative;
        float: left;
        width: 150px;
        height: 30px;
        background-color: green;
        color: white;
        border: green;
    }

    .Btn_Pest1{
        position: relative;
        float: left;
        width: 150px;
        height: 30px;
        background-color: transparent;
        border: transparent;
    }

    .Btn_Pest1:hover{
        position: relative;
        float: left;
        width: 150px;
        height: 30px;
        background-color: green;
        color: white;
        border: transparent;
    }

    .txt_area{
        position: relative;
        float: left;
        width: 100%;
        height: 50px;
        resize: none;
    }

    .txt_area2{
        position: relative;
        float: left;
        width: 100%;
        height: 50px;
        resize: none;
        display: none;
    }

    .Btn_Envio{
        margin-top: 3px;
        height: 30px;
        width: 180px;
        font-size: 18px;
    }

    .PiePagina{
        position: relative;
        float: left;
        width: 100%;
        min-height: 120px;
        max-height: auto;
        background-color: #0daa41;
    }

    .ContenedorInfoPie{
        position: relative;
        float: left;
        width: 90%;
        left: 5%;
        height: auto;
        border-top: 2px solid white;
        margin-bottom: 1px;
    }

    .ContenedorOpcionesPie{
        position: relative;
        float: left;
        width: 90%;
        left: 5%;
    }

    .ListaOpcionPie{
        list-style: none;
        text-align: left;
        font-size: 16px;
    }

    .logopie{
        position: relative;
        float: left;
        width: 70%;
        height: 72px;
        left: 15%;
        margin-bottom: 2px;
    }

    .ContenedorRedes{
        position: relative;
        float: left;
        width: 100%;
        min-height: 10px;
        max-height: auto;
        top: 3px;
        border-top: 2px solid white;
    }

    .Btn_Redes{
        margin-top: 5px;
        margin-left: 5px;
        width: 40px;
        height: 40px;
        font-size: 20px;
        border: 2px solid white;
        background-color: transparent;
        color: white;
        border-radius: 20px;
    }

    .Btn_Redes:hover{
        margin-top: 5px;
        margin-left: 5px;
        width: 40px;
        height: 40px;
        font-size: 20px;
        border: 2px solid rgb(193,154,87);
        background-color: white;
        color: #0daa41;
        border-radius: 20px;
    }

    .UrlLista{
        color: white;
        text-decoration: none;
    }

    /*.UrlLista:hover{
        color: green;
        text-decoration: none;
    }*/

    .RecuadroMinDiv1{
        position: relative;
        float: left;
        width: 100%;
        margin: 0%;
        min-height: 20px;
        max-height: auto;
        display: none;
    }

    .RecuadroMinDiv2{
        position: relative;
        float: left;
        width: 29%;
        margin: 2%;
        min-height: 20px;
        max-height: auto;
    }

    .ContenedorPieLogotipo{
        position: relative;
        float: left;
        width: 90%;
        left: 35%;
        min-height: 30px;
        max-height: auto;
    }

    .IconoFooter{
        position: relative;
        float: left;
        width: 100px;
        height: 100px;
    }

    .Iconfoot{
        width: 100%;
        height: 100%;
    }

    .NombreEmpresaFoot{
        position: relative;
        float: left;
        width: 60%;
        height: 60px;
        top: 10px;
        left: 2px;
    }

    .Farmacia1Pie{
        position: relative;
        float: left;
        width: 100%;
        height: 25px;
        text-align: left;
        font-size: 20px;
        font-weight: bold;
    }

    .Farmacia2Pie{
        position: relative;
        float: left;
        width: 100%;
        height: 35px;
        text-align: left;
        font-size: 27px;
        font-weight: bold;
    }

    .RecuadroMinDiv3{
        position: relative;
        float: left;
        width: 29%;
        margin: 2%;
        min-height: 20px;
        max-height: auto;
    }

    .framemap{
        height: 350px;
        width: 90%;
        left: 5%;
        border: 0px;
    }

    .hrdiv{
        width: 90%;
        left: 5%;
        border-color: white;
    }

    .ContenedorCarrusel{
        position: relative;
        float: left;
        width: 100%;
        height: 500px;
        margin-bottom: 10px;
    }

    .CarruselDiv0{
        position: relative;
        float: left;
        width: 100%;
        height: 100%;
        display: none;
        background-size: 100% 100%;
    }

    .CarruselDiv1{
        position: relative;
        float: left;
        width: 100%;
        height: 100%;
        background-image: url(Carrusel1.jpg);
        background-size: 100% 100%;
    }

    .TxtValue1{
        position: relative;
        float: left;
        width: 80%;
        height: 20%;
        left: 10%;
        top: 75%;
        text-align: center;
        border-radius: 5px;
        background-color: rgba(13,170,65, 0.8);
        color: white;
    }

    .TxtValueMino{
        position: relative;
        float: left;
        width: 90%;
        height: auto;
        left: 5%;
    }

    .ItsValue{
        font-size: 20px;
    }

    .CarruselDiv2{
        position: relative;
        float: left;
        width: 100%;
        height: 100%;
        background-image: url(Carrusel2.jpg);
        background-size: 100% 100%;
    }

    .CarruselDiv3{
        position: relative;
        float: left;
        width: 100%;
        height: 100%;
        background-image: url(Carrusel3.jpg);
        background-size: 100% 100%;
    }

    .BtnSup1{
        position: absolute;
        float: left;
        width: 50px;
        height: 10%;
        left: 10px;
        top: 40%;
        z-index: 1;
    }

    .BtnSup2{
        position: absolute;
        float: right;
        width: 50px;
        left: 95%;
        height: 10%;
        top: 40%;
        z-index: 1;
    }

    .btn_OpcionesMov{
        position: relative;
        float: left;
        width: 100%;
        height: 100%;
        font-size: 18px;
        font-weight: bold;
        border-radius: 50%;
        background-color: rgba(250, 250, 250, 0.7);
        border: transparent 3px solid;
        color: green;
    }

    .btn_OpcionesMov:hover{
        position: relative;
        float: left;
        width: 100%;
        height: 100%;
        font-size: 18px;
        font-weight: bold;
        border-radius: 50%;
        background-color: green;
        border: green 3px solid;
        color: white;
    }

/* ------------- Estilo de cabecera > ----------------  */

.Siguenos{
    position: relative;
    float: left;
    width: 100%;
    height: 30px;
    margin-top: 0px;
    background-color: green;
}

.Contenedor1Cabecera{
    position: relative;
    float: left;
    width: 40%;
    left: 2.5%;
    height: 20px;
    top: 5px;
    text-align: left;
}

.Btn_RedesCabecera{
    width: 30px;
    height: 20px;
    background-color: transparent;
    color: white;
    border: 0px;
}

.Btn_RedesCabecera:hover{
    width: 30px;
    height: 20px;
    background-color: #0daa41;
    color: white;
    border: 0px;
    border-radius: 17px;
}

.Contenedor2Cabecera{
    position: relative;
    float: right;
    width: 50%;
    right: 2.5%;
    height: 15px;
    top: 7.5px;
    text-align: right;
    font-size: 13px;
}

.ContenedorSuperior{
    position: relative;
    float: left;
    width: 100%;
    height: 110px;
    background-color: #0daa41;
}

.LogoCabecera{
    position: relative;
    float: left;
    width: 23%;
    height: 80px;
    top: 5px;
    left:15%;
}

.IconoCabecera{
    position: relative;
    float: left;
    width: 100px;
    height: 100px;
}

.IconHead{
    width: 100%;
    height: 100%;
}

.NombreEmpresa{
    position: relative;
    float: left;
    width: 60%;
    height: 60px;
    top: 10px;
    left: 2px;
}

.Farmacia1{
    position: relative;
    float: left;
    width: 100%;
    height: 25px;
    text-align: left;
    font-size: 20px;
    font-weight: bold;
}

.Farmacia2{
    position: relative;
    float: left;
    width: 100%;
    height: 35px;
    text-align: left;
    font-size: 27px;
    font-weight: bold;
}

.BusquedaCabecera{
    position: relative;
    float: left;
    width: 50%;
    height: 30px;
    top: 30px;
    left: 7%;
    border: 2px solid green;
    border-radius: 10px;
}

.ContenedorSearch1{
    position: relative;
    float: left;
    width: 90%;
    height: 100%;
    background-color: white;
    border-top-left-radius: 7px;
    border-bottom-left-radius: 7px;
}

.inp_search{
    position: relative;
    float: left;
    width: 97%;
    height: 28px;
    left: 2.5%;
    border: 0px;
}

.ContenedorSearch2{
    position: relative;
    float: left;
    width: 10%;
    height: 100%;
    background-color: green;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.btn_searching{
    width: 80%;
    height: 100%;
    border: 0px;
    background-color: green;
    color: white;
}

.IconosCabecera{
    position: relative;
    float: left;
    width: 15%;
    height: 25px;
    top: 32.5px;
    left: 8%;
    text-align: right;
}

.BtnLogin{
    height: 100%;
    width: auto;
    font-size: 15px;
    border: 0px;
    border-radius: 10px;
    background-color: transparent;
    color: white;
    font-weight: bold;
}

.BtnLogin:hover{
    height: 100%;
    width: auto;
    font-size: 15px;
    border: 0px;
    border-radius: 10px;
    background-color: green;
    color: white;
    font-weight: bold;
}

.ContenedorMenu{
    position: relative;
    float: left;
    width: 100%;
    height: 40px;
    background-color: #0daa41;
    border-top: 1px solid white;
}

.ContMenuPlay{
    position: relative;
    float: left;
    width: 90%;
    left: 5%;
    height: 100%;
}

.BtnMenuCabecera{
    position: relative;
    float: left;
    width: 25%;
    height: 100%;
    font-size: 20px;
    background-color: transparent;
    color: white;
    border: 0px;
}

.BtnMenuCabecera2{
    position: relative;
    float: left;
    width: 25%;
    height: 100%;
    font-size: 20px;
    background-color: transparent;
    color: white;
    border: 0px;
}

.BtnMenuCabecera3{
    position: relative;
    float: left;
    width: 25%;
    height: 100%;
    font-size: 20px;
    background-color: transparent;
    color: white;
    border: 0px;
    display: none;
}

.BtnMenuCabecera:hover{
    position: relative;
    float: left;
    width: 25%;
    height: 100%;
    font-size: 20px;
    background-color: green;
    color: white;
    border: 0px;
}

.ContenedorCatalogos{
    position: relative;
    float: left;
    width: 100%;
    min-height: 50px;
    max-height: auto;
    background-color: rgb(67,71,90);
}

.ContenedorCatalogosOculto{
    position: relative;
    float: left;
    display: none;
}

.BtnCatalogoOpcion{
    position: relative;
    float: left;
    width: 20%;
    height: 35px;
    font-size: 18px;
    background-color: rgb(67,71,90);
    border: 0px;
    color: white;
    font-weight: bold;
}

.BtnCatalogoOpcion:hover{
    position: relative;
    float: left;
    width: 20%;
    height: 35px;
    font-size: 18px;
    background-color: green;
    border: 0px;
    color: white;
    font-weight: bold;
}

/* -------------  < Estilo de cabecera ----------------  */

@media (max-width: 1124px) {

    .ContenedorFiltros{
        position: relative;
        float: left;
        width: 90%;
        left: 5%;
        height: auto;
        margin-bottom: 15px;
    }

    .ContenedorProductos{
        position: relative;
        float: left;
        width: 90%;
        min-height: 10px;
        max-height: auto;
        left: 5%;
        background-color: rgb(244, 244, 244);
    }

    .ProdDetalle{
        position: relative;
        float: left;
        width: 90%;
        height: 80px;
        left: 5%;
        top: 15px;
        font-size: 15px;
    }

    .ContenedorOpcionesPie{
        position: relative;
        float: left;
        width: 90%;
        left: 5%;
    }
}


@media (max-width: 736px) {

    .ContenedorFiltros{
        position: relative;
        float: left;
        width: 90%;
        left: 5%;
        height: auto;
        margin-bottom: 15px;
    }

    .inp_search{
        position: relative;
        float: left;
        width: 97%;
        height: 36px;
        left: 2.5%;
        border: 0px;
        font-size: 16px;
    }

    .ContenedorProductos{
        position: relative;
        float: left;
        width: 90%;
        min-height: 10px;
        max-height: auto;
        left: 5%;
        background-color: rgb(244, 244, 244);
    }

    .CuadroProducto{
        position: relative;
        float: left;
        width: 90%;
        height: 450px;
        background-color: white;
        margin: 5%;
        box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
    }

    .ContenedorTablaCarro{
        position: relative;
        float: left;
        width: 95%;
        left: 2.5%;
        min-height: 250px;
        max-height: auto;
    }

    .td_centro_min{
      text-align: center;
      font-size: 15px;
      display: none;
    }

    .td_derecha_min{
      text-align: right;
      font-size: 15px;
      display: none;
    }

    .ContenedorOpcionesPie{
        position: relative;
        float: left;
        width: 95%;
        left: 2.5%;
    }

    .RecuadroMinDiv1{
        position: relative;
        float: right;
        width: 100%;
        margin: 0%;
        min-height: 20px;
        max-height: auto;
        display: block;
        margin-bottom: 15px;
    }

    .RecuadroMinDiv2{
        position: relative;
        float: right;
        width: 100%;
        margin: 0%;
        min-height: 20px;
        max-height: auto;
        display: none;
    }

    .ContenedorPieLogotipo{
        position: relative;
        float: left;
        width: 50%;
        left: 40%;
        min-height: 40px;
        max-height: auto;
        justify-content: center;
    }

    .RecuadroMinDiv3{
        position: relative;
        float: left;
        width: 45%;
        margin: 0%;
        min-height: 20px;
        max-height: auto;
        font-size: 15px;
    }

    .logopie{
        position: relative;
        float: left;
        width: 75%;
        height: 70px;
        left: 12.5%;
        margin-bottom: 2px;
    }

    .BtnCatalogoOpcion{
        position: relative;
        float: left;
        width: 100%;
        height: 35px;
        font-size: 18px;
        background-color: rgb(67,71,90);
        border: 0px;
        color: white;
        font-weight: bold;
    }

    .BtnCatalogoOpcion:hover{
        position: relative;
        float: left;
        width: 100%;
        height: 35px;
        font-size: 18px;
        background-color: green;
        border: 0px;
        color: white;
        font-weight: bold;
    }

    .TxtValue1{
        position: relative;
        float: left;
        width: 80%;
        height: 40%;
        left: 10%;
        top: 55%;
        text-align: center;
        border-radius: 5px;
        background-color: rgba(13,170,65, 0.8);
        color: white;
    }

    .BtnSup1{
        position: absolute;
        float: left;
        width: 50px;
        height: 10%;
        left: 10px;
        top: 40%;
        z-index: 1;
    }

    .BtnSup2{
        position: absolute;
        float: right;
        width: 50px;
        left: 85%;
        height: 10%;
        top: 40%;
        z-index: 1;
    }

    li.liContendor{
        width: 90%;
        left: 2.5%;
        margin-bottom: 5px;
    }

    .ContenedorCatalogos{
        position: relative;
        float: left;
        width: 100%;
        min-height: 50px;
        max-height: auto;
        top: -60px;
        background-color: rgb(67,71,90);
    }


    /* ----- estilo cabecera ------ */

    .Siguenos{
        position: relative;
        float: left;
        width: 100%;
        height: 40px;
        margin-top: 0px;
        background-color: green;
        font-size: 21px;
    }

    .Contenedor1Cabecera{
        position: relative;
        float: left;
        width: 100%;
        left: 0%;
        height: 20px;
        top: 5px;
        text-align: center;
    }

    .Contenedor2Cabecera{
        position: relative;
        float: right;
        width: 10%;
        right: 2.5%;
        height: 15px;
        top: 7.5px;
        text-align: right;
        font-size: 13px;
        display: none;
    }

    .ContenedorSuperior{
        position: relative;
        float: left;
        width: 100%;
        height: 170px;
        background-color: #0daa41;
    }

    .LogoCabecera{
        position: relative;
        float: left;
        width: 50%;
        height: 80px;
        top: 5px;
        left: 40%;
    }

    .BusquedaCabecera{
        position: relative;
        float: left;
        width: 90%;
        height: 40px;
        top: 30px;
        left: 5%;
        border: 2px solid green;
        border-radius: 10px;
    }

    .IconosCabecera{
        position: relative;
        float: left;
        width: 15%;
        height: 25px;
        top: 32.5px;
        left: 8%;
        text-align: right;
        display: none;
    }

    .ContenedorMenu{
        position: relative;
        float: left;
        width: 100%;
        height: auto;
        background-color: #0daa41;
        border-top: 1px solid white;
    }

    .ContMenuPlay{
        position: relative;
        float: left;
        width: 100%;
        left: 0%;
        height: auto;
    }

    .BtnMenuCabecera{
        position: relative;
        float: left;
        width: 100%;
        height: 30px;
        font-size: 20px;
        color: white;
        border: 0px;
        display: none;
    }

    .BtnMenuCabecera2{
        position: relative;
        float: left;
        width: 100%;
        height: 30px;
        font-size: 20px;
        background-color: transparent;
        color: white;
        border: 0px;
    }

    .BtnMenuCabecera3{
        position: relative;
        float: left;
        width: 100%;
        height: 30px;
        font-size: 20px;
        color: white;
        border: 0px;
        display: block;
        text-align: left;
    }

    /* ----- estilo cabecera ------ */

}