

/**** NAVEGADOR */

.navegador {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    display: none;
    flex-wrap: wrap;
    background-color: transparent;
    z-index: 99;
    box-shadow: none;
}

.navegador-scroll {
    height: 60px;
    background-color: #fff;
    box-shadow: 0px 0px 4px 2px #cecece;
}

.logo-navegador {
    position: absolute;
    top: 0;
    left: calc(50% - 35px);
    width: 70px;
    height: 70px;
    background-image: url('../img/logo.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: 1s ease;
    -webkit-transition: 1s ease;
    -moz-transition: 1s ease;
    -ms-transition: 1s ease;
    -o-transition: 1s ease;
}

.logo-navegador-scroll {
    left: 20px;
    width: 60px;
    height: 60px;
    cursor: pointer;
}

.opciones-navegador {
    position: absolute;
    right: 50px;
    width: 50%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    transition: 1s ease;
    -webkit-transition: 1s ease;
    -moz-transition: 1s ease;
    -ms-transition: 1s ease;
    -o-transition: 1s ease;
}

.opciones-navegador-scroll {
    opacity: 1;
}

.opcion-navegador {
    position: relative;
    color: #5b5b5b;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    cursor: pointer;
    padding-bottom: 10px;
}

.sub-opciones-navegador {
    position: absolute;
    top: 20px;
    left: 0;
    width: 150px;
    height: auto;
    background-color: #fff;
    box-shadow: 0px 0px 4px 2px #cecece;
    display: none;
    flex-wrap: wrap;
}

.sub-opcion-navegador {
    width: 90%;
    height: auto;
    margin: 15px auto;
    border-bottom: 1px solid #f1c40f;
    color: #5b5b5b;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    cursor: pointer;
}

/**** NAVEGADOR MOBILE */

.navegador-mobile {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    display: none;
    flex-wrap: wrap;
    background-color: transparent;
    z-index: 99;
    box-shadow: none;
}

.navegador-mobile-scroll {
    height: 60px;
    background-color: #fff;
    box-shadow: 0px 0px 4px 2px #cecece;
}

.logo-navegador-mobile {
    position: absolute;
    top: 0;
    left: calc(50% - 35px);
    width: 70px;
    height: 70px;
    background-image: url('../img/logo.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: 1s ease;
    -webkit-transition: 1s ease;
    -moz-transition: 1s ease;
    -ms-transition: 1s ease;
    -o-transition: 1s ease;
}

.logo-navegador-mobile-scroll {
    left: 20px;
    width: 60px;
    height: 60px;
}

.ham-navegador-mobile {
    position: absolute;
    right: 5px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 20px;
    color: #5b5b5b;
    opacity: 0;
    transition: 1s ease;
    -webkit-transition: 1s ease;
    -moz-transition: 1s ease;
    -ms-transition: 1s ease;
    -o-transition: 1s ease;
}

.ham-navegador-mobile-scroll {
    opacity: 1;
}

.close-navegador-mobile {
    position: absolute;
    right: 5px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 20px;
    color: #5b5b5b;
    display: none;
}

.contenedor-opciones-navegador-mobile {
    position: fixed;
    top: 60px;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    transition: 1s ease-in-out;
    -webkit-transition: 1s ease-in-out;
    -moz-transition: 1s ease-in-out;
    -ms-transition: 1s ease-in-out;
    -o-transition: 1s ease-in-out;
}

.opciones-navegador-mobile {
    width: 100%;
    height: 80vh;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    z-index: 98;
    overflow-y: scroll;
}

.opcion-navegador-mobile {
    position: relative;
    width: 70%;
    height: auto;
    margin: 20px auto;
    text-align: center;
    color: #5b5b5b;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
}

.icono-opciones-navegador {
    position: absolute;
    top: 0;
    right: 30px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    color: #f1c40f;
    font-size: 12px;
    outline: none;
}

.separador-opcion-navegador-mobile {
    width: 200px;
    height: 1px;
    border-width:0;
    background-color: #f1c40f;
    color: #f1c40f;
}

.sub-opciones-navegador-mobile {
    width: 100%;
    height: auto;
    margin-top: 10px;
    display: none;
    flex-wrap: wrap;
}

.sub-opcion-navegador-mobile {
    width: 100%;
    height: auto;
    margin: 5px auto;
    font-size: 12px;
}

.separador-sub-opcion-navegador-mobile {
    width: 150px;
    height: 1px;
    border-width:0;
    background-color: #cecece;
    color: #cecece;
}

/**** MEDIA QUERIES  */
@media (max-width: 999px) {
    .navegador-mobile {
        display: flex;
    }
}

@media (min-width: 1000px) {
    .navegador {
        display: flex;
    }
}