.barraSuperiorFalsa
{
    display: block;
    position: relative;
    height: 500px;
    box-shadow: 0px 0px 3px #c0c0c0;
    box-sizing: border-box;
}

.barraSuperior
{
    display: flex;
    position: fixed;
    width: 100%;
    height: 40px;
    background: rgb(39, 93, 75);
    padding: 0 15%;
    box-sizing: border-box;
    align-items: center;
    font-size: 13px;
    z-index: 3002;
}

/* Icono menu para width menor a 900*/
.bs_opcionAbrirMenu, .bs_opcionAbrirMenu_abierto {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    height: 33px;
    width: 40px;
    user-select: none;
}

.bs_oam_lineas {
    position: relative;
    height: 4px;
    width: 100%;
    left: 0;
    top:0;
    background-color:rgb(150, 205, 181);
    transition: all 0.3s;
}

.bs_opcionAbrirMenu_abierto .bs_oam_lineas:nth-child(1)
{
    transform: translateY(15px) rotate(45deg);
}

.bs_opcionAbrirMenu_abierto .bs_oam_lineas:nth-child(2)
{
    opacity: 0;
    width: 0;
    left: 50%;
}

.bs_opcionAbrirMenu_abierto .bs_oam_lineas:nth-child(3)
{
    transform: translateY(-14px) rotate(-45deg);
}


/* Fin menu para width menor a 900 */

.bs_conIconosRedes
{
    display: flex;
    min-width: 80px;
    justify-content: space-between;
    user-select: none;
}

.bs_info
{
    display: flex;
    min-width: 315px;
    padding: 0 0 0 10px;
    color: rgb(150, 205, 181);
    font-weight: bold;
    box-sizing: border-box;
}




/*-------------------------*/

.bs_cambiar_idioma
{
    display: flex;
    min-width: 101px;
    user-select: none;
    margin-left: auto;
    width: 25%;
    color: rgb(150, 205, 181);
    padding-right: 32px;
    font-weight: bold;
    justify-content: center;
    box-sizing: border-box;
    align-items: center;
}

.bs_cambiar_idioma > span
{
    display: flex;
    align-items: center;
    cursor: pointer;
}

.bs_cambiar_idioma > span > div
{
    display: flex;
    height: 16px;
    align-items: center;
}

.bs_cambiar_idioma > span > div > img
{
    display: block;
}


/*-------------------------*/




.bs_infoUsuario
{
    display: flex;
    position: relative;
    right: 0;
    color: rgb(150, 205, 181);
    font-weight: bold;
    margin-left: auto;
    align-items: center;
    justify-content: flex-end;
    cursor: pointer;
    user-select: none;
    min-width: 50px;
    max-width: 75%;
    height: 20px;
}

.bs_infoUsuario_activo
{
    color:rgb(236, 105, 83);
}

.bs_infoUsuario_activo > span[class^="bs_icono"]
{
    background-color: rgb(236, 105, 83);
}


.bs_acceso_a_usuario
{
    display: block;
    width: min-content;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 100%;
    padding: 0 3px;
}




.bs_pedido
{
    display: flex;
    position: relative;
    right: 0;
    color: rgb(150, 205, 181);
    font-weight: bold;
    align-items: center;
    justify-content: space-between;
    margin-left: 1%;
    cursor: pointer;
    user-select: none;
}

.bs_pedido_pendiente
{
    display: none;
    position: absolute;
    top: -1px;
    left: -2px;
    width: 20px;
    height: 20px;
    border: 1px solid rgb(39, 93, 75, 0.5);
    border-radius: 50%;
    background-color: rgb(236, 105, 83,01);
    color: #fff;
    justify-content: center;
    align-items: center;
    font-weight: 500;
}

.bs_icono
{
    display: flex;
    position: relative;
    min-width: 20px;
    height: 20px;
    background: rgb(150, 205, 181);
    color:rgb(39, 93, 75);
    border-radius: 50%;
    font-size: 13px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
}

.bs_infoUsuario > .bs_icono
{
    position: absolute;
    left:-25px;
}

.icon-user-o::before
{
    width: 11px;
}

.bs_icono:hover
{
    background: rgb(236, 105, 83);
}

/* Icono gussi */

.icono_gussi
{
    top: 85px;
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    width: 190px;
    margin: 0 auto;
}


/* Menu de opciones */

.bs_con_menuOpciones
{
    top: 30px;
    left: 0;
    width: 100%;
    height: 0;
    display: flex;
    position: absolute;
    background: rgb(39, 93, 75);
    z-index: 2999;
    transition: height 0.3s;
    user-select: none;
}

.bs_menuOpciones
{
    display: flex;
    position: absolute;
    top:220px;
    left: 0;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    color: rgb(39, 93, 75);
    font-weight: bold;
    font-size: 16px;
    letter-spacing:1px;
    justify-content: center;
}

.bs_menuOpciones > span:hover
{
    color: rgb(236, 105, 83);
}

.bs_menuOpciones > span
{
    display: flex;
    padding: 0 15px;
    cursor: pointer;
    cursor: pointer;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}



/* Parte del buscador */

.bs_con_buscador
{
    background: rgb(236, 105, 83);
    display: flex;
    position: absolute;
    top:350px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 90%;
    height: 45px;
    border-radius: 20px;
    padding: 10px 20px 10px 35px;
    box-sizing: border-box;
}

.bs_con_buscador > input
{
    border: 0;
    width: 100%;
    background-color: transparent;
    outline: 0;
    color:#fff;
    font-size: 16px;
    height: 25px;
    padding-right: 5px;
    box-sizing: border-box;
}

.bs_con_buscador > input::placeholder
{
    color:#fff;
    letter-spacing: 1px;
}

.bs_con_buscador > span
{
    position: relative;
    color: #fff;
    padding: 5px 15px;
    cursor: pointer;
}

.bs_con_buscador > span::after
{
    content:"";
    color: #fff;
    border-left:2px solid #fff;
    position: absolute;
    left: 0px;
    top:0;
    height: 100%;
}






.bs_pass_icon_change_type_input
{
    right: 27px;
    height: 15px;
    width: 15px;
    font-size: 13px;
}

.bs_pass_icon_change_type_input:hover
{
    border:1px solid #fff;
}

.bs_conLogin_con > span:nth-child(2) > input:nth-child(2)
{
    padding-right: 25px;
}



/*=========================================================================================*/
/*=========================================================================================*/
/*=========================================================================================*/
/* Cambios en el menu  cuando esta en modo scroll */

.bs_activarMenuScroll
{
    background: #fff;
    display: flex;
    position: fixed;
    height: 45px;
    width: 100%;
    top:0px;
    left: 0;
    box-shadow: 0px 0px 3px #c0c0c0;
    box-sizing: border-box;
    align-items: center;
    justify-content: space-between;
    transition: top 0.5s;
    padding: 0 15%;
    box-sizing: border-box;
    z-index: 2997;
}


/*moddificando opciones menu*/
.bs_activarMenuScroll > .bs_con_menuOpciones
{
    top:0;
    width: 100%;
    height: 80px;
    position: relative;
}

.bs_activarMenuScroll > .bs_con_menuOpciones > .bs_menuOpciones
{
    top:-8px;
}

.bs_activarMenuScroll > .bs_con_menuOpciones > .bs_menuOpciones > span
{
    padding: 0px 3% -1px 0px;
}

/*modificando buscador*/
.bs_activarMenuScroll > .bs_con_buscador
{
    background:#fff;
    top:0px;
    width: 100%;
    padding: 0;
    height: 25px;
    position: relative;
    border-radius: 0;
}

.bs_activarMenuScroll > .bs_con_buscador > input
{
    background: #fff;
    color: rgb(39, 93, 75);
    position: relative;
    top:1px;
    width: 100%;
    right: 0;
    z-index: 2998;
}

.bs_activarMenuScroll > .bs_con_buscador > input::placeholder
{
    color: rgb(39, 93, 75);
}

.bs_activarMenuScroll > .bs_con_buscador > span
{
    color: rgb(39, 93, 75);
}

.bs_activarMenuScroll > .bs_con_buscador > span::after
{
    border-color: rgb(39, 93, 75);
}





/*=========================================================================================*/
/*=========================================================================================*/
/*=========================================================================================*/
/* Arrancando con las correcciones para width menor a 1050 */
@media (max-width: 1050px)
{
    .bs_activarMenuScroll
    {
        padding: 0 5%;
    }
}



/*=========================================================================================*/
/*=========================================================================================*/
/*=========================================================================================*/
/* Arrancando con las correcciones para width menor a 900 */
@media (max-width: 1181px)
{
    .bs_icono
    {
        font-size: 20px;
        width: 35px;
        height: 35px;
    }

    .icon-user-o::before
    {
        width: 18px;
    }
    
    .bs_con_menuOpciones 
    {
        position: fixed;
        overflow: auto;
        padding: 0 15%;
        box-sizing: border-box;
    }

    .bs_menuOpciones
    {
        position: relative;
        top:100px;
        height: 500px;
        flex-direction: column;
        color:rgb(150, 205, 181);
        font-size: 30px;
        justify-content: initial;
    }

    .bs_menuOpciones > span
    {
        padding: 30px 0;
    }

    .bs_conIconosRedes
    {
        min-width: 130px;
        margin-left: auto;
    }

    .bs_activarMenuScroll {top: 70px !important;}
    .bs_con_menuOpciones {top:30px !important; left: 0px !important; height: 0 !important; position: fixed !important;display: flex !important;}
    .bs_menuOpciones {top:100px !important}

    .barraSuperiorFalsa {height: 400px;}
    .barraSuperior {height: 70px;}
    .icono_gussi {top: 110px;}
    .bs_con_buscador {top: 290px;}
    .bs_opcionAbrirMenu, .bs_opcionAbrirMenu_abierto {display: flex;}
    .bs_info {display: none;}
    .bs_infoUsuario > span:not(.bs_icono) {display: none;}
    .bs_pedido > span:not(.bs_icono) {display: none;}
    .bs_infoUsuario {width: 0px;min-width: 0;}
    .bs_pedido {width: 35px;margin-left: 4%;}
    .bs_pedido_pendiente {top:19px; left: 19px}
}

@media (min-width: 1181px)
{
    .bs_con_menuOpciones {max-height: 0;}

    .bs_activarMenuScroll > .bs_con_buscador {width: 100px !important;}
    /*.bs_activarMenuScroll > .bs_con_buscador > input {position: absolute !important; width: 0 !important;z-index: 3000;left: -650px !important;padding: 0 !important;}*/
}


/*=========================================================================================*/
/*=========================================================================================*/
/*=========================================================================================*/
/* Contenedor login */

.bs_conLogin_capaOscura
{
    display: flex;
    position: fixed;
    width:100%;
    height: 0;
    background-color: #000;
    opacity: 0.3;
    top:0;
    left: 0;
    z-index: 5;
    transition: height 0.5s;
}

.bs_conLogin
{
    display: flex;
    position: absolute;
    top:100%;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgb(236, 105, 83);
    transition: height 0.5s;
    overflow: hidden;
}

.bs_conLogin_con
{
    display: flex;
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 150px;
    padding: 0 10%;
    box-sizing: border-box;
}

.bs_conLogin_con > span
{
    display: flex;
    width:100%;
    height: 100%;
    flex-direction: column;
    padding: 20px;
    box-sizing: border-box;
    color: #fff;
}

.bs_conLogin_con > span:nth-child(1)
{
    justify-content: flex-end;
}

.bs_conLogin_con > span:nth-child(2)
{
    justify-content: center;
    align-items: flex-end;
    position: relative;
}

.bs_conLogin_con > span:nth-child(2) > input
{
    border:1px solid #fff;
    padding: 5px 10px;
    outline: none;
    margin-bottom: 10px;
    width: 250px;
    text-align: right;
    background: transparent;
    color:#fff;
    box-sizing: border-box;
}

.bs_conLogin_con > span:nth-child(2) > input::placeholder
{
    color:#fff;
}

.bs_recuperar_pass
{
    display: inline-block;
    margin-top: 19px;
    padding: 3px;
    font-weight: 400;
    text-align: center;
    border-radius: 20px;
    cursor: pointer;
    transition: font-weight 0.3s, box-shadow 0.3s;
}

.bs_recuperar_pass:hover
{
    font-weight: 500;
    box-shadow: 0px 2px 5px -2px #fff;
}

/*=========================================================================================*/
/*=========================================================================================*/
/*=========================================================================================*/
/*=========================================================================================*/
/*=========================================================================================*/
/*=========================================================================================*/
/*=========================================================================================*/
/*=========================================================================================*/
/*=========================================================================================*/
/*=========================================================================================*/
/*=========================================================================================*/
/*=========================================================================================*/
/*=========================================================================================*/
/*=========================================================================================*/
/*=========================================================================================*/
/*=========================================================================================*/
/*=========================================================================================*/
/*=========================================================================================*/
/*=========================================================================================*/
/*=========================================================================================*/
/*=========================================================================================*/
/*=========================================================================================*/
/*=========================================================================================*/
/* Contenedor traductor */

.class_traductor_capa_oscura
{
    display: flex;
    position: fixed;
    top:0;
    left:0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(50, 50, 50, 0.7);
    z-index: 4000;
}

.class_traductor_cont
{
    display: flex;
    position: fixed;
    top:50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40%;
    min-height: 200px;
    background-color: rgb(39, 93, 75);
    color:rgb(150, 205, 181);
    align-items: center;
    flex-direction: column;
    z-index: 4001;
    padding: 10px 10px;
    border-radius: 10px;
}

.class_traductor_cont > div:nth-child(1)
{
    font-size: 28px;
    font-weight: bold;
    margin-top: 15px;
    margin-bottom: 20px;
}

.tr_msg_advertencia
{
    display: flex;
    position: block;
    justify-content: center;
    align-items: flex-end;
    bottom:15px;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    height: 40px;
    padding-bottom: 5px;
}


.tr_tabla
{
    display: flex;
    width: 90%;
    background-color: rgb(150, 205, 181);
    flex-direction: column;
    color:rgb(39, 93, 75);
}

.tr_filas
{
    display: flex;
    position: relative;
    align-items: center;
    width: 100%;
    padding:25px 20px;
    box-sizing: border-box;
    cursor:pointer;
}

.tr_filas:hover
{
    background-color: rgb(136, 191, 167);
}

.tr_filas_selected::before
{
    content: "";
    display: block;
    position: absolute;
    left: -1px;
    top:50%;
    transform: translate(0, -9px);
    width:0px;
    height:0px;
    border-bottom:10px solid transparent;  /* izquierda flecha */
    border-top:10px solid transparent; /* derecha flecha */
    border-left:13px solid rgb(39, 93, 75); /* base flecha y color*/
    font-size:0px;
    line-height:0px;
}

.tr_filas > span:nth-child(1)
{
    font-size: 15px;
    font-weight: 550;
}

/*=========================================================================================*/
/*=========================================================================================*/
/*=========================================================================================*/
/* Arrancando con las correcciones para width menor a 900 */
@media (max-width: 1181px)
{
    .class_traductor_cont
    {
        width: 68%;
    }
}