/*
    GAMA DE COLORES
    Marron: 750d2b
    Orange: f47c06
    Light Gray: e6e8ea
    Dark Gray: 333333
    Balck: 000000
*/


/* CUSTOM */
    .bg-marron  { background-color: #750d2b; }
    .bg-orange  { background-color: #f47c06; }
    .bg-light   { background-color: #e6e8ea; }
    .bg-dark    { background-color: #333333; }
    .bg-black   { background-color: #000000; }


/* MENU */
    #navbar_up, #navbar_down {
        border-radius: 0;
        border-width: 0;
    }

    #navbar_up {
        margin-bottom: 0px;
        background-color: #e6e8ea;
    }
    #navbar_down {
        background-color: #333333;
    }

    #navbar_down .navbar-right > li > a {
        color: #ffffff;
    }

    #navbar_down .navbar-right li.dropdown.open > a {
        background-color: #f47c06;
    }

    .dropdown-menu > li > a {
        padding: 10px 20px;
    }

    #navbar_down > li.dropdown-menu > li > a:focus,
    .dropdown-menu > li > a:hover {
        background-color: #f47c06;
        color: #ffffff;
    }

    #navbar_down .navbar-right .dropdown.open ul.dropdown-menu li a:hover {
        background-color: #f47c06;
        color: #ffffff;
    }

    #navbar_up .navbar-brand img {
        max-width: 120px;
    }


/* FORM */
    /* Date-Picker */
    .form-control-date {
        display: inline-block;
        width: calc(100% - 32px);;
        margin-right: 0px;
        border-top-right-radius: 0px;
        border-bottom-right-radius: 0px;
        border-right: none;
    }
    .ui-datepicker-trigger {
        width: 32px;
        vertical-align: top;
        cursor: pointer;
        -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
        filter: grayscale(100%);
        transition: all ease 0.2s;
    }
    .ui-datepicker-trigger:hover {
        -webkit-filter: grayscale(0%); /* Safari 6.0 - 9.0 */
        filter: grayscale(0%);
    }


/* TABLAS */
    .table thead tr th {
        color: #ffffff;
        text-align: center;
        vertical-align: middle;
    }

    .table thead tr th a {
        color: #f47c06;
    }


/* LISTADOS */
#divDealersList {
    margin-bottom: 10px;
    max-height: 500px;
    width: auto;

    overflow-y: auto;
    overflow-x: hidden;
}


/* FOOTER */
    #footer_container {
        color: #ffffff;
        padding: 25px 30px;
    }

    @media (max-width: 768px) {
        #footer_container .row .col-sm-6 {
            text-align: center;
        }
    }


/* COMERCIAL */
#precio_ponderado {
    position: fixed;
    display: block;
    top: 205px;
    right: 15px;
    margin: -100px 0 0 0;
    width: 370px;
    background-color: #ffffff;
    border: solid 1px #333333;
    border-radius: 5px;
    padding: 5px 10px;
    opacity: 0.3;
    transition: ease all 0.2s;
}

#precio_ponderado:hover {
    opacity: 1;
}


#precio_ponderado strong {
    margin-top: 10px;
    font-size: 18px;
    text-align: right;
}

#precio_ponderado div {
    margin-top: 10px;
    font-size: 24px;
    text-align: right;
}