/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 16-sep-2014, 4:15:10
    Author     : Javier
*/

/*
 * Base structure
*/
input.uppercase { text-transform: uppercase; }
.navbar-inverse .navbar-collapse {
background:  #428bca;
}
.navbar-inverse .navbar-nav>li>a {
color: #FFF;
}
/* Move down content because we have a fixed navbar that is 50px tall */
body {
    /*padding-top: 50px;*/
}

@media (min-width: 768px) {
.nopadding {
    padding: 0 !important;
    margin: 0 !important;
}
}

@media (max-width: 767px) {
.nopadding {
    margin-bottom: 5px;
}
}

.background-ericsson{

    background: #428bca;

}

.bold{
    
    font-weight: bold;
    font-size:10pt;
}

.text-center{
    
    text-align: center;
}

.font-white {
    
    color: #FFF;
}
/*
 * Global add-ons
*/

.sub-header {
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

/*
 * Top navigation
 * Hide default border to remove 1px line.
*/
.navbar-fixed-top {
    border: 0;
}

/*
 * Sidebar
*/

/* Hide for mobile, show later */
.nav-side-menu {
    display: none;
}
.navbar-inverse .navbar-brand {
    color: #FFF;
}

@media (max-width: 450px){
    .nav-side-menu {
       top: 0px;
       }
 }

@media (max-width: 767px) {
    #menuTop{
        /*margin-top: 60px;*/
    }
}
 
@media (min-width: 768px) {
    .nav-side-menu {
        position: fixed;
        width: 100px;
        top: 50px;
        bottom: 0;
        left: 0;
        z-index: 1000;
        display: block;
       // padding: 20px;
        overflow-x: hidden;
        overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
        background-color: #f5f5f5;
       // border-right: 1px solid #eee;
    }

    #menuTop{
        /*margin-top: 40px;*/
    }
    
    #search-ticket{

        margin-top: 5px;
        border-radius:5px;
        border: 1px solid #D3D3D3;


    }
    #search-ticket > div{


        text-align: center;
        font-weight: bold;
        font-size: 8pt;
    }
    #search-ticket label{

        font-size: 7.5pt;
    }

    #search-ticket  div > input {

        font-weight: normal;
        font-size: small;


    }
}

/* Sidebar navigation */
.nav-sidebar {
    margin-right: -21px; /* 20px padding + 1px border */
    margin-bottom: 20px;
    margin-left: -20px;
}
.nav-sidebar > li > a {
    padding-right: 20px;
    padding-left: 20px;
}
.nav-sidebar > .active > a,
.nav-sidebar > .active > a:hover,
.nav-sidebar > .active > a:focus {
    color: #fff;
    background-color: #428bca;
}

#menuTop  a:hover,
#menuTop  a:focus
{
    color: #fff;
    background-color: #428bca;
}

.btn-default:active, .btn-default.active{
    
    color: #fff;
    background-color: #428bca;
    
}

/*
 * Main content
*/

.main {
    padding: 20px;
}

@media (max-width: 767px) {
    .main {
        margin-top: 0px;
        padding: 20px 0;
    }
}

@media (min-width: 768px) {
    .main {
        padding-right: 40px;
        padding-left: 40px;
        width: 100%;
    }
}

.main .page-header {
    margin-top: 0;
}


/*
 * Placeholder dashboard ideas
*/

.placeholders {
    margin-bottom: 30px;
    text-align: center;
}
.placeholders h4 {
    margin-bottom: 0;
}
.placeholder {
    margin-bottom: 20px;
}
.placeholder img {
    display: inline-block;
    border-radius: 50%;
}

.error{
    background-color: #BC1010;
    padding: 6px 12px;
    border-radius: 4px;
    color: white;
    font-weight: bold;
    margin-left: 16px;
    margin-top: 6px;
    position: absolute;
}

.error:before{ /* Este es un truco para crear una flechita */
    content: '';
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid #BC1010;
    border-left: 8px solid transparent;
    left: -16px;
    position: absolute;
    top: 5px;
}