/********* NAVEGADOR */

.navegador {
    width: 100%;
    height: 50px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    display: flex;
    align-items: flex-end;
    align-content: flex-end;
    justify-content: flex-end;
    background-color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid #CFCFCF;
}

.navegador.active {
    background-color: rgba(0, 0, 0, 0.75);
    border-bottom: 1px solid #000;
}

.logo-navegador {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 5px;
    left: 10px;
    background-image: url('../img/icono.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}

.contenido-navegador {
    width: auto;
    height: 50px;
    margin: 0;
    display: flex;
    margin-right: 10px;
}

.opciones-navegador {
    width: auto;
    height: 50px;
    display: flex;
    flex-wrap: wrap;
}

.opcion-navegador {
    width: auto;
    height: 50px;
    line-height: 50px;
    text-align: left;
    margin-right: 20px;
    cursor: pointer;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: #0A0A0A;
}

.opcion-navegador.active {
    color: #fafafa;
}

.opcion-navegador:hover {
    color: #DBBC6D;
}

.opcion-navegador.alt {
    font-size: 16px;
}

.boton-navegador {
    width: 30px;
    height: 50px;
    line-height: 50px;
    margin-left: 10px;
    text-align: center;
    font-size: 18px;
    color: #0A0A0A;
    cursor: pointer;
    position: relative;
}

.boton-navegador.active {
    color: #fafafa;
}

#barras-navegador {
    display: none;
}

.indicador-carrito-navegador {
    width: 10px;
    height: 10px;
    line-height: 10px;
    text-align: center;
    background-color: #DBBC6D;
    border: 1px solid #999999;
    border-radius: 1000px;
    position: absolute;
    top: 10px;
    right: 0;
    display: none;
}

.opciones-movil-navegador {
    width: 100%;
    height: calc(100vh - 50px);
    z-index: 9997;
    background-color: rgba(235, 235, 235, 0.95);
    position: fixed;
    top: 50px;
    right: -100vw;
    opacity: 0;
    filter: blur(0);
    -webkit-filter: blur(12px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    transition: 0.6s all ease-out;
    -webkit-transition: 0.6s all ease-out;
}

.opciones-movil-navegador.active {
    right: 0;
    opacity: 1;
    filter: blur(0);
    -webkit-filter: blur(0);
}

.opcion-movil-navegador {
    width: 90%;
    height: 40px;
    line-height: 40px;
    text-align: right;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #0A0A0A;
    cursor: pointer;
}

@media(max-width: 1100px) {
    .opciones-navegador {
        display: none;
    }

    #barras-navegador {
        display: block;
    }
}