/*----------------- BARRA DE NAVEGACION -----------------*/

.barraNavegacion {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px;
    background-color: #191919;
    border: 2px solid silver;
    border-radius: 10px;
    box-shadow: 0px 10px 17px -7px #191919, 5px 5px 15px 5px rgba(0, 0, 0, 0);
}

.contenedorFavicono {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 10px 10px 60px;
    /* border: 2px solid silver; */
    border-radius: 10px;
    overflow: hidden;
    padding: 0;
    /* transition: border-radius 1s; */
}

.contenedorFavicono:hover {
    border-radius: 20px;
}

.favicono {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    filter: sepia(15%) grayscale(15%);
    transition: filter 1s;
}

.favicono:hover {
    filter: saturate(200%);
}

.colmado7 {
    display: flex;
    align-items: center;
    justify-content: center;
    color: silver;
    text-decoration: none;
    font-family: chiller-mdl;
    font-weight: normal;
    font-size: 30px;
}

.colmado7:hover {
    color: gray;
}

.contenedorListaMenuPrincipal {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-right: 60px;
}

.listaMenuPrincipal {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-right: 10px;
    list-style: none;
}

.separadorMenu {
    color: gray;
    font-size: 12px;
    font-family: Oswald-Light;
}

.articulosMenuPrincipal {
    padding: 10px;
    color: silver;
    font-size: 12px;
    letter-spacing: 1px;
    font-family: Oswald-Light;
    margin: auto;
    position: relative;
    /* POSITION RELATIVE LO USO PARA EL EFECTO DE LAS LINEAS */
}

.articulosMenuPrincipal:hover {
    /* PARTE 1 EFECTO LINEAS CRUZADAS */
    color: gray;
}

.articulosMenuPrincipal::after {
    /* PARTE 2 EFECTO LINEAS CRUZADAS */
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    background: gray;
    transition: width 1s;
    bottom: 25px;
    left: 0;
}

.articulosMenuPrincipal::before {
    /* PARTE 3 EFECTO LINEAS CRUZADAS */
    content: "";
    display: block;
    position: absolute;
    width: 0;
    height: 1px;
    background: gray;
    transition: width 1s;
    top: 26px;
    right: 0;
}

.articulosMenuPrincipal:hover::after,
.articulosMenuPrincipal:hover::before {
    /* PARTE 4 EFECTO LINEAS CRUZADAS */
    width: 100%;
}

.botonMenuResponsivo {
    display: none;
}


/*----------------- BOTON DE BUSQUEDA. -----------------*/

.contenedorBusqueda {
    margin-right: 60px;
}

::-webkit-input-placeholder,
 :-moz-placeholder,
 ::-moz-placeholder,
 :-ms-input-placeholder {
    /* ESTO ES PARA QUE FUNCIONE EN LOS DISTINTOS NAVEGADORES */
    text-align: center;
}

.barraBusqueda {
    width: 40px;
    background: silver url('../ICO/lupa.ico') no-repeat center;
    background-size: 20px 20px;
    padding: 9px 10px 9px 32px;
    border-radius: 10px;
    -webkit-transition: all 1s;
    /* transición de .5seg a todos los elementos para chrome*/
    -moz-transition: all 1s;
    /* transición de .5seg a todos los elementos para mozilla*/
    -o-transition: all 1s;
    /* transición de .5seg a todos los elementos para ophera*/
    transition: all 1s;
    /* transición de .5seg a todos los elementos*/
    outline: none;
    /* ocultar el fucos automático de los input */
    padding-left: 50px;
}

.barraBusqueda:focus {
    width: 200px;
    /*tamaño del boton buscar al hacer click*/
    /* padding-right: 100px; espacio entre el icono lupa y el placeholder */
    color: #191919;
    background: #FFF url('../ICO/lupa2.png') no-repeat left;
    /*icono lupa*/
    padding-left: 35px;
    margin-left: 10px;
    background-size: 20px 20px;
}

.activa {
    color: darkorange;
}

.contenedorCarritoCompras {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background-color: silver;
    border: 2px solid gray;
    margin-right: 60px;
    transition: background-color 1s;
}

.contenedorCarritoCompras:hover {
    background-color: #f5f5f5;
}

.contenedorCarritoCompras img {
    width: 30px;
    height: auto;
}

.cantidadProductosCarrito {
    font-family: Oswald-Light;
    font-size: 13px;
    color: #191919;
    padding: 4px;
    border: 2px solid silver;
    border-radius: 5px;
    background-color: orange;
}


/*----------------- RESPONSIVE -----------------*/

@media (max-width: 1280px) {
    .contenedorBarraNavegacion {
        margin: 10px;
    }
    .barraNavegacion {
        display: block;
        align-items: center;
        justify-content: center;
        text-align: center;
        margin: auto;
    }
    .contenedorFavicono {
        margin: auto;
        margin-top: 15px;
        margin-bottom: 10px;
    }
    .favicono {
        width: 45px;
        height: 45px;
    }
    .colmado7 {
        margin-top: 10px;
        margin-bottom: 10px;
        font-size: 25px;
    }
    .contenedorBusqueda {
        margin: auto;
        margin-bottom: 15px;
    }
    .contenedorCarritoCompras {
        margin: auto;
    }
    .contenedorCarritoCompras img {
        width: 20px;
    }
    .contenedorListaMenuPrincipal {
        position: absolute;
        right: 0;
        left: 0;
        margin-top: 140px;
        margin-left: 45vw;
        margin-right: 45vw;
    }
    .listaMenuPrincipal {
        flex-direction: column;
        border: 3px solid silver;
        border-radius: 10px;
        background-color: #191919;
        clip-path: circle(0%);
        transition: all 1.0s ease-in-out;
    }
    .listaMenuPrincipal.open {
        /* Atributo .open Creado Para Utilizarlo En El Archivo .js */
        clip-path: circle(100%);
    }
    .listaArticulo {
        display: flex;
    }
    .separadorMenu {
        display: none;
    }
    .botonMenuResponsivo {
        display: block;
        margin: auto;
        border: 2px solid gray;
        border-radius: 5px;
        width: 30px;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .botonMenuResponsivo:hover {
        background-color: gray;
    }
    .lineaHamberguer {
        height: 1px;
        background-color: silver;
        margin: 5px;
    }
    .barraBusqueda {
        height: 25px;
    }
}