/* N A V I G A T I O N
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

#navegacion{
    width: 100%;
    display: flex;
}

#navegacion input{
    background-image: linear-gradient(to right, rgb(197,197,197), rgb(170,170,170));
    margin: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 20px;
    padding-left: 20px;
    color: #535fb5;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    border: none;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    outline: none;
    height: 38px;
}

#navegacion input:hover{
    background: linear-gradient(to right, rgb(228,217,204), rgb(206,187,166));
}

#navegacion input.selected{
    background: rgba(0,102,102,0.1);
    cursor: default;
    font-size: 18px;
    padding-top: 8px;
    padding-bottom: 8px;
    border-top: 1px solid #ccb;
    margin-top: -1px;
    height: 39px;    
}

#navegacion input.disabled{
    cursor: default;
    color: #dddddd;
}

#navegacion input.disabled:hover{
    background-image: linear-gradient(to right, rgb(197,197,197), rgb(170,170,170));
}

#navegacion input:focus {
    background: linear-gradient(to right, rgb(228,217,204), rgb(206,187,166));
}