@media print {
    div.nav,
    div.subnav,
    div.navbar-inner,
    div.ocultar {
        display: none;
    }
}

@media (max-width: 979px) {
    .navbar {
        position: fixed;
        z-index: 2000;
    }
    .navbar .navbar-inner .brand {
        padding-left: 10px;
    }
    .subnav.subnav-fixed {
        position: absolute;
        top: 53px;
    }
    body > .container {
        margin-top: 60px;
    }
}
body {
    font-size: 12px;
    line-height: 18px;
    position: relative;
}
.navbar {
    margin-bottom: 18px;
    z-index: 1500;
}
.navbar .nav > li > a {
    padding: 9px 9px 11px;
}
.navbar .nav > li > a:hover {
    color: #000;
    background: #eee;
}

.navbar .nav > .li-25 > a:hover {
    color: #ffffff;
    background-image: -moz-linear-gradient(center top, #acacac, #909090);
    filter: progid:dximagetransform.microsoft.gradient(startColorstr='#acacac', endColorstr='#909090', GradientType=0);

    background-color: #acacac;
    background-image: -moz-linear-gradient(top, #acacac, #909090);
    background-image: -ms-linear-gradient(top, #acacac, #909090);
    background-image: -webkit-gradient(
        linear,
        0 0,
        0 100%,
        from(#acacac),
        to(#909090)
    );
    background-image: -webkit-linear-gradient(top, #acacac, #909090);
    background-image: -o-linear-gradient(top, #acacac, #909090);
    background-image: linear-gradient(top, #acacac, #909090);
    background-repeat: repeat-x;
    filter: progid:dximagetransform.microsoft.gradient(startColorstr='#acacac', endColorstr='#909090', GradientType=0);
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
    font-size: 13px;
    padding: 4px 3px;
}
label,
input,
button,
select,
textarea {
    font-size: 13px;
}
.well {
    margin-bottom: 10px;
    padding: 15px;
}
div.page-title > h3 {
    line-height: 15px;
}
/* Subnav */
.subnav {
    width: 100%;
    height: 36px;
    background-color: #eeeeee; /* Old browsers */
    background-repeat: repeat-x; /* Repeat the gradient */
    background-image: -moz-linear-gradient(
        top,
        #f5f5f5 0%,
        #eeeeee 100%
    ); /* FF3.6+ */
    background-image: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0%, #f5f5f5),
        color-stop(100%, #eeeeee)
    ); /* Chrome,Safari4+ */
    background-image: -webkit-linear-gradient(
        top,
        #f5f5f5 0%,
        #eeeeee 100%
    ); /* Chrome 10+,Safari 5.1+ */
    background-image: -ms-linear-gradient(
        top,
        #f5f5f5 0%,
        #eeeeee 100%
    ); /* IE10+ */
    background-image: -o-linear-gradient(
        top,
        #f5f5f5 0%,
        #eeeeee 100%
    ); /* Opera 11.10+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f5f5f5', endColorstr='#eeeeee',GradientType=0 ); /* IE6-9 */
    background-image: linear-gradient(top, #f5f5f5 0%, #eeeeee 100%); /* W3C */
    border: 1px solid #e5e5e5;
}
.subnav .nav {
    margin-bottom: 0;
}
.subnav .nav > li > a {
    margin: 0;
    padding-top: 11px;
    padding-bottom: 11px;
    border-left: 1px solid #f5f5f5;
    border-right: 1px solid #e5e5e5;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}
.subnav .nav > .active > a,
.subnav .nav > .active > a:hover {
    padding-left: 13px;
    color: #777;
    background-color: #e9e9e9;
    border-right-color: #ddd;
    border-left: 0;
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.05);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.05);
}
.subnav .nav > .active > a .caret,
.subnav .nav > .active > a:hover .caret {
    border-top-color: #777;
}
.subnav .nav > li:first-child > a,
.subnav .nav > li:first-child > a:hover {
    border-left: 0;
    padding-left: 12px;
    -webkit-border-radius: 4px 0 0 4px;
    -moz-border-radius: 4px 0 0 4px;
    border-radius: 4px 0 0 4px;
}
.subnav .nav > li:last-child > a {
    border-right: 0;
}
.subnav .dropdown-menu {
    -webkit-border-radius: 0 0 4px 4px;
    -moz-border-radius: 0 0 4px 4px;
    border-radius: 0 0 4px 4px;
}

/* Fixed subnav on scroll, but only for 980px and up (sorry IE!) */
@media (min-width: 980px) {
    .subnav-fixed {
        position: fixed;
        top: 40px;
        left: 0;
        right: 0;
        z-index: 1480; /* 10 less than .navbar-fixed to prevent any overlap */
        border-color: #d5d5d5;
        border-width: 0 0 1px; /* drop the border on the fixed edges */
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        border-radius: 0;
        -webkit-box-shadow: inset 0 1px 0 #fff, 0 1px 5px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: inset 0 1px 0 #fff, 0 1px 5px rgba(0, 0, 0, 0.1);
        box-shadow: inset 0 1px 0 #fff, 0 1px 5px rgba(0, 0, 0, 0.1);
        filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); /* IE6-9 */
    }
    .subnav-fixed .nav {
        width: 938px;
        margin: 0 auto;
        padding: 0 1px;
    }
    .subnav .nav > li:first-child > a,
    .subnav .nav > li:first-child > a:hover {
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        border-radius: 0;
    }
}

.subnav-fixed {
    position/*\**/: fixed;
    top/*\**/: 40px;
    left/*\**/: 0;
    right/*\**/: 0;
    z-index/*\**/: 1480;
    filter/*\**/: progid:DXImageTransform.Microsoft.gradient(enabled=false); /* IE6-9 */
}

thead tr,
tfoot tr {
    background-color: #dbeaf9;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 4px 4px 4px 4px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05) inset;
}

div.message {
    width: 100%;
    position: fixed;
    top: 77px;
}

div.message_lider {
    width: 100%;
    position: fixed;
    top: 77px;
    z-index: 10000;
}

#modal_dialog div.message,
#modal_dialog div.message_lider {
    width: 100%;
    position: static;
}

div.inline div.input {
    float: left;
    margin-right: 5px;
}

div.inline div.checkbox-parent-with-label {
    margin-top: 30px;
}

/* CSS Tree menu styles */
div.tree ol.tree {
    padding: 0 0 0 30px;
    width: 300px;
}
div.tree li {
    position: relative;
    margin-left: -15px;
    list-style: none;
}
div.tree li.file {
    margin-left: -1px !important;
}
div.tree li.file a {
    background: url(document.png) 0 0 no-repeat;
    color: #fff;
    padding-left: 21px;
    text-decoration: none;
    display: block;
}
li.file a[href*=".pdf"] {
    background: url(document.png) 0 0 no-repeat;
}
li.file a[href*=".html"] {
    background: url(document.png) 0 0 no-repeat;
}
li.file a[href$=".css"] {
    background: url(document.png) 0 0 no-repeat;
}
li.file a[href$=".js"] {
    background: url(document.png) 0 0 no-repeat;
}
div.tree li input {
    position: absolute;
    left: 0;
    margin-left: 0;
    opacity: 0;
    z-index: 2;
    cursor: pointer;
    height: 1em;
    width: 1em;
    top: 0;
}
div.tree li input + ol {
    background: url(toggle-small-expand.png) 40px 0 no-repeat;
    margin: -0.938em 0 0 -44px; /* 15px */
    height: 1em;
}
div.tree li input + ol > li {
    display: none;
    margin-left: -14px !important;
    padding-left: 1px;
}
div.tree li label {
    background: url(folder-horizontal.png) 15px 1px no-repeat;
    cursor: pointer;
    display: block;
    padding-left: 37px;
}

div.tree li input:checked + ol {
    background: url(toggle-small.png) 40px 5px no-repeat;
    margin: -1.25em 0 0 -44px; /* 20px */
    padding: 1.563em 0 0 80px;
    height: auto;
}
div.tree li input:checked + ol > li {
    display: block;
    margin: 0 0 0.125em; /* 2px */
}
div.tree li input:checked + ol > li:last-child {
    margin: 0 0 0.063em; /* 1px */
}

span.actions-tree {
    float: right;
}
div.tree {
    margin-top: 20px;
}
div.tree label.titulo {
    font-weight: bold;
}
div.tree li {
    border-top: 1px solid #ccc;
}
div.tree span {
    line-height: 35px;
}
div.actionbar-right {
    text-align: right;
    padding-bottom: 10px;
}

.ui-dialog {
    top: 100px !important;
}

/* Debug */
.cake-debug {
    white-space: pre;
}

/* Gerenciar Cliente Produto Servico */
table.cliente-produto tbody tr.produto-servico td.first,
table.cliente-produto tbody tr.produto-servico-sem-detalhe td.first {
    padding-left: 28px;
    line-height: 16px;
}
table.cliente-produto tbody tr.produto-servico-detalhe td.first {
    padding-left: 48px;
}
table.cliente-produto tbody tr.produto td.first {
    padding: 8px 12px;
    line-height: 16px;
}
table.cliente-produto tbody tr.expand {
    cursor: pointer;
}
table.cliente-produto tr td .ui-icon {
    float: left;
}

table.cliente-produto input {
    display: none;
}
table.cliente-produto tr th.acoes {
    width: 82px;
}

.row-fluid span.span-right a {
    float: right;
}

div.text-group label {
    float: left;
}
div.text-group label.title {
    font-weight: bold;
    margin: 0 5px 0 15px;
}

/* Logo buonny */
.navbar .brand {
    color: #ffffff;
    font-family: Times;
    font-size: 20px;
    font-weight: bold;
    padding-left: 0;
    padding-right: 13px;
    margin-left: 5%;
}

a.validation-error {
    background: #fdd;
}

div.navbar-inner.enviroment-color {
    font-weight: bold;
}

div.navbar-inner.dbprod-color {
    font-weight: bold;
    background-color: #fff;
}

/* Classe green-bar e red-bar definida e utilizada para mudar a cor da barra no portal TST */
div.navbar-inner.green-bar {
    background: #aed362!important;
}

.navbar .nav .active > a.green-bar, .navbar .nav .active > a.green-bar:hover {
    background-color: #91b150!important;
}

.navbar .nav > li > a.green-bar {
    text-shadow: none!important;
}

.navbar .nav > li > a.green-bar:hover {
    background: #91b150!important;
}

div.navbar-inner.red-bar {
    background: #df5656!important;
}

.navbar .nav .active > a.red-bar, .navbar .nav .active > a.red-bar:hover {
    background-color: #bb4949!important;
}

.navbar .nav > li > a.red-bar {
    text-shadow: none!important;
}

.navbar .nav > li > a.red-bar:hover {
    background: #bb4949!important;
}

div.navbar-inner.guialog-color {
    background-image: -moz-linear-gradient(center top, #5b5b5b, #7b7b7b);
    filter: progid:dximagetransform.microsoft.gradient(startColorstr='#5b5b5b', endColorstr='#7b7b7b', GradientType=0);

    background-color: #5b5b5b;
    background-image: -moz-linear-gradient(top, #5b5b5b, #7b7b7b);
    background-image: -ms-linear-gradient(top, #5b5b5b, #7b7b7b);
    background-image: -webkit-gradient(
        linear,
        0 0,
        0 100%,
        from(#5b5b5b),
        to(#7b7b7b)
    );
    background-image: -webkit-linear-gradient(top, #5b5b5b, #7b7b7b);
    background-image: -o-linear-gradient(top, #5b5b5b, #7b7b7b);
    background-image: linear-gradient(top, #5b5b5b, #7b7b7b);
    background-repeat: repeat-x;
    filter: progid:dximagetransform.microsoft.gradient(startColorstr='#5b5b5b', endColorstr='#7b7b7b', GradientType=0);
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

div.navbar-inner.guialog-enviroment-color {
    background-image: -moz-linear-gradient(center top, #aaaa00, #aaaa00);
    filter: progid:dximagetransform.microsoft.gradient(startColorstr='#AAAA00', endColorstr='#AAAA00', GradientType=0);

    background-color: #aaaa00;
    background-image: -moz-linear-gradient(top, #aaaa00, #aaaa00);
    background-image: -ms-linear-gradient(top, #aaaa00, #aaaa00);
    background-image: -webkit-gradient(
        linear,
        0 0,
        0 100%,
        from(#aaaa00),
        to(#aaaa00)
    );
    background-image: -webkit-linear-gradient(top, #aaaa00, #aaaa00);
    background-image: -o-linear-gradient(top, #aaaa00, #aaaa00);
    background-image: linear-gradient(top, #aaaa00, #aaaa00);
    background-repeat: repeat-x;
    filter: progid:dximagetransform.microsoft.gradient(startColorstr='#AAAA00', endColorstr='#AAAA00', GradientType=0);
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

div.navbar-inner.guialog-dbprod-color {
    font-weight: bold;
    background-image: -moz-linear-gradient(center top, #ff0000, #ff0000);
    filter: progid:dximagetransform.microsoft.gradient(startColorstr='#FF0000', endColorstr='#FF0000', GradientType=0);

    background-color: #ff0000;
    background-image: -moz-linear-gradient(top, #ff0000, #ff0000);
    background-image: -ms-linear-gradient(top, #ff0000, #ff0000);
    background-image: -webkit-gradient(
        linear,
        0 0,
        0 100%,
        from(#ff0000),
        to(#ff0000)
    );
    background-image: -webkit-linear-gradient(top, #ff0000, #ff0000);
    background-image: -o-linear-gradient(top, #ff0000, #ff0000);
    background-image: linear-gradient(top, #ff0000, #ff0000);
    background-repeat: repeat-x;
    filter: progid:dximagetransform.microsoft.gradient(startColorstr='#FF0000', endColorstr='#FF0000', GradientType=0);
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}
.navbar .nav {
    margin: 0 !important;
}

.navbar .nav > li > a {
    color: #000;
}

.navbar .nav .active > a,
.navbar .nav .active > a:hover {
    color: #000;
    background-color: #eee;
}

.navbar .nav .active-gray > a,
.navbar .nav .active-gray > a:hover {
    color: #fff;
    background-image: -moz-linear-gradient(center top, #acacac, #909090);
    filter: progid:dximagetransform.microsoft.gradient(startColorstr='#acacac', endColorstr='#909090', GradientType=0);

    background-color: #acacac;
    background-image: -moz-linear-gradient(top, #acacac, #909090);
    background-image: -ms-linear-gradient(top, #acacac, #909090);
    background-image: -webkit-gradient(
        linear,
        0 0,
        0 100%,
        from(#acacac),
        to(#909090)
    );
    background-image: -webkit-linear-gradient(top, #acacac, #909090);
    background-image: -o-linear-gradient(top, #acacac, #909090);
    background-image: linear-gradient(top, #acacac, #909090);
    background-repeat: repeat-x;
    filter: progid:dximagetransform.microsoft.gradient(startColorstr='#acacac', endColorstr='#909090', GradientType=0);
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.checkbox.inline + .checkbox.inline {
    margin-left: 0px;
}

.table-striped tbody tr:nth-child(odd) td,
.table-striped tbody tr:nth-child(odd) th {
    background-color: #eee;
}

.table tbody tr:hover td,
.table tbody tr:hover th {
    background-color: #f5f5f5;
}

div#login h1 {
    font-size: 5em;
}

div#login img {
    position: absolute;
    z-index: -1;
    margin-left: -25px;
    margin-top: 20px;
}

div#login form {
    background: #efefff;
    border: 5px solid #ccddff;
    padding: 20px 40px;
    float: left;
    margin: 50px 0;
}

div#login form label {
    font-weight: bold;
}

.numeric,
td.numeric,
th.numeric {
    text-align: right;
}

table.tablesorter th.numeric.header {
    padding-right: 21px;
}

ul.indent-unstyled {
    list-style: none;
}

div.marca-dagua {
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
    min-height: 600px;
    /* IE */
    height: auto !important;
    height: 600px;
}

div.marca-dagua.buonny {
    background-image: url("../img/logotipo_buonny.jpg");
}

div.marca-dagua.sgi {
    background-image: url("../img/marca-dagua-sgi.jpg");
}

table .action-icon {
    width: 14px;
    text-align: center;
}

.placeholder {
    color: #aaa;
}

small.preto {
    color: #000;
}

.pagination-centered {
    text-align: center !important;
}

/*cor diferen�a varlores*/
.negative_value {
    color: #c00;
}

tbody.line-selector tr:hover {
    cursor: pointer;
}

.window-gadget {
    min-height: 100px !important;
    margin-bottom: 5px;
}

.gadget {
    min-width: 400px;
    height: 250px;
    margin: 0 auto 50px;
}

.nowrap-text {
    white-space: nowrap;
    overflow: hidden;
}

/* Sidenav for Docs
-------------------------------------------------- */

.bs-docs-sidenav {
    width: 228px;
    margin: 30px 0 0;
    padding: 0;
    background-color: #fff;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
    -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
}
.bs-docs-sidenav > li > a {
    display: block;
    *width: 190px;
    margin: 0 0 -1px;
    padding: 8px 14px;
    border: 1px solid #e5e5e5;
}
.bs-docs-sidenav > li:first-child > a {
    -webkit-border-radius: 6px 6px 0 0;
    -moz-border-radius: 6px 6px 0 0;
    border-radius: 6px 6px 0 0;
}
.bs-docs-sidenav > li:last-child > a {
    -webkit-border-radius: 0 0 6px 6px;
    -moz-border-radius: 0 0 6px 6px;
    border-radius: 0 0 6px 6px;
}
.bs-docs-sidenav > .active > a {
    position: relative;
    z-index: 2;
    padding: 9px 15px;
    border: 0;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.1),
        inset -1px 0 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.1),
        inset -1px 0 0 rgba(0, 0, 0, 0.1);
    box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.1),
        inset -1px 0 0 rgba(0, 0, 0, 0.1);
}
/* Chevrons */
.bs-docs-sidenav .icon-chevron-right {
    float: right;
    margin-top: 2px;
    margin-right: -6px;
    opacity: 0.25;
}
.bs-docs-sidenav > li > a:hover {
    background-color: #f5f5f5;
}
.bs-docs-sidenav a:hover .icon-chevron-right {
    opacity: 0.5;
}
.bs-docs-sidenav .active .icon-chevron-right,
.bs-docs-sidenav .active a:hover .icon-chevron-right {
    background-image: url(../img/glyphicons-halflings-white.png);
    opacity: 1;
}
.bs-docs-sidenav.affix {
    top: 80px;
}
.bs-docs-sidenav.affix-bottom {
    position: absolute;
    top: auto;
    bottom: 270px;
}

/* Sections
-------------------------------------------------- */

/* padding for in-page bookmarks and fixed navbar */
section {
    padding-top: 80px;
    margin-bottom: -80px;
}
section > .page-header,
section > .lead {
    color: #5a5a5a;
}
section > ul li {
    margin-bottom: 5px;
}

/* Separators (hr) */
.bs-docs-separator {
    margin: 40px 0 39px;
}

/* Faded out hr */
hr.soften {
    height: 1px;
    margin: 70px 0;
    background-image: -webkit-linear-gradient(
        left,
        rgba(0, 0, 0, 0),
        rgba(0, 0, 0, 0.1),
        rgba(0, 0, 0, 0)
    );
    background-image: -moz-linear-gradient(
        left,
        rgba(0, 0, 0, 0),
        rgba(0, 0, 0, 0.1),
        rgba(0, 0, 0, 0)
    );
    background-image: -ms-linear-gradient(
        left,
        rgba(0, 0, 0, 0),
        rgba(0, 0, 0, 0.1),
        rgba(0, 0, 0, 0)
    );
    background-image: -o-linear-gradient(
        left,
        rgba(0, 0, 0, 0),
        rgba(0, 0, 0, 0.1),
        rgba(0, 0, 0, 0)
    );
    border: 0;
}

.tablerow-input input,
.tablerow-input div {
    margin-bottom: 0;
}

.btn-contratos {
    position: relative;
    top: 25px;
    left: 0px;
}

.uppercase {
    text-transform: uppercase;
}

.table-striped tbody tr.falha:nth-child(2n + 1) td,
.table-striped tbody tr.falha:hover td,
tr.falha td {
    background: #ff9090;
}

.table-striped tbody tr.destak:nth-child(2n + 1) td,
.table-striped tbody tr.destak:hover td,
tr.destak td {
    background: #ffffff;
    border-bottom: solid 1px #cccccc;
}

table.table input {
    margin: 0;
}

[class^="icon-"],
[class*=" icon-"] {
    background-image: url("/portal/img/twiter/glyphicons-halflings.png");
}

.icon-white,
.nav-pills > .active > a > [class^="icon-"],
.nav-pills > .active > a > [class*=" icon-"],
.nav-list > .active > a > [class^="icon-"],
.nav-list > .active > a > [class*=" icon-"],
.navbar-inverse .nav > .active > a > [class^="icon-"],
.navbar-inverse .nav > .active > a > [class*=" icon-"],
.dropdown-menu > li > a:hover > [class^="icon-"],
.dropdown-menu > li > a:hover > [class*=" icon-"],
.dropdown-menu > .active > a > [class^="icon-"],
.dropdown-menu > .active > a > [class*=" icon-"],
.dropdown-submenu:hover > a > [class^="icon-"],
.dropdown-submenu:hover > a > [class*=" icon-"] {
    background-image: url("/portal/img/twiter/glyphicons-halflings-white.png"); /* /portal/img/twiter/glyphicons-halflings-gray.png*/
}

.icon-gray,
.nav-pills > .active > a > [class^="icon-"],
.nav-pills > .active > a > [class*=" icon-"],
.nav-list > .active > a > [class^="icon-"],
.nav-list > .active > a > [class*=" icon-"],
.navbar-inverse .nav > .active > a > [class^="icon-"],
.navbar-inverse .nav > .active > a > [class*=" icon-"],
.dropdown-menu > li > a:hover > [class^="icon-"],
.dropdown-menu > li > a:hover > [class*=" icon-"],
.dropdown-menu > .active > a > [class^="icon-"],
.dropdown-menu > .active > a > [class*=" icon-"],
.dropdown-submenu:hover > a > [class^="icon-"],
.dropdown-submenu:hover > a > [class*=" icon-"] {
    background-image: url("/portal/img/twiter/glyphicons-halflings-gray.png"); /* /portal/img/twiter/glyphicons-halflings-gray.png*/
}

.badge-empty {
    min-height: 14px\9;
}

.badge-empty:empty {
    display: inline;
}

.ui-autocomplete-loading {
    background-image: url("/portal/img/loading.gif");
    background-repeat: no-repeat;
    background-position: center right;
}

.lMap table {
    border-collapse: separate;
    border-spacing: 2px;
    border-color: gray;
}

.checkbox-tabela {
    padding-bottom: 0px !important;
    vertical-align: bottom !important;
}

.lista-cds .qtd-veiculos {
    color: #b94a48;
    margin-left: 5px;
}

.lista-cds.control-group .checkbox {
    color: #000;
}

li a.load-modelo {
    display: inline-block;
}

.input-micro {
    width: 35px;
}

.ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.btn-search-ellipsis {
    padding: 4px 4px;
    margin-bottom: 10px;
}

td.text-right,
th.text-right {
    text-align: right;
}
.numeracao-itinerario-rota {
    font-size: 17px;
    font-weight: bold;
    padding-top: 7px;
}

.radio.inline.status_item_checklist {
    width: 110px;
}

.radio.inline + .radio.inline.status_item_checklist {
    margin-left: 0;
}

.icon-share-dir {
    background-image: url("/portal/img/icon-share-dir.png");
    background-position: 0px 0px;
    background-repeat: no-repeat;
}

.icon-share-ger {
    background-image: url("/portal/img/icon-share-ger.png");
    background-position: 0px 0px;
    background-repeat: no-repeat;
}

.icon-duplicate {
    background-image: url("/portal/img/glyphicons-511-duplicate.png");
    background-position: 0px 0px;
    background-repeat: no-repeat;
}

.icon-cancel-form {
    background-image: url("/portal/img/icon-cancel-form.png");
    background-position: 0px 0px;
    background-repeat: no-repeat;
}

.icon-contact-edit {
    background-image: url("/portal/img/edit-contato.png");
    background-position: 0px 0px;
    background-repeat: no-repeat;
    width: 14px;
}

.inline-block {
    display: inline-block;
}

.icon-phone {
    background-image: url("/portal/img/phone.png");
    background-position: 0px 0px;
    background-repeat: no-repeat;
}

.icon-money {
    background-image: url("/portal/img/money.png");
    background-position: 0px 0px;
    background-repeat: no-repeat;
    width: 14px;
}

.label-darkblue,
.badge-darkblue {
    background-color: #003366;
}

.label-orange,
.badge-orange {
    background-color: #eca711;
}

.label-darkblue[href],
.badge-darkblue[href] {
    background-color: #002244;
}

.label-yellow,
.badge-yellow {
    background-color: #cccc22;
}

.label-yellow[href],
.badge-yellow[href] {
    background-color: #cccc22;
}

.label-brown,
.badge-brown {
    background-color: #664422;
}

.label-brown[href],
.badge-brown[href] {
    background-color: #664422;
}

.label-pink,
.badge-pink {
    background-color: #cc2266;
}

.label-pink[href],
.badge-pink[href] {
    background-color: #cc2266;
}

.label-lightgreen,
.badge-lightgreen {
    background-color: #46cc47;
}

.label-lightgreen[href],
.badge-lightgreen[href] {
    background-color: #46cc47;
}

.loading-bottom {
    background-image: url(../img/loading.gif);
    background-repeat: no-repeat;
    background-position: bottom center;
    padding-bottom: 20px;
}

tr.destaque_tr {
    background-color: #eee;
}

.loading_tbl {
    width: 100%;
    height: 100%;
    position: absolute !important;
    display: none;
}
.lista-contatos {
    position: relative;
}

.loading_tbl .blockElement {
    position: relative !important;
    left: 0px !important;
    top: 40% !important;
    margin: 0 auto !important;
}

div.campo_exibicao {
    display: inline-block;
    line-height: 26px;
}

div.legenda {
    width: 220px;
    display: inline-block;
    zoom: 1;
    *display: inline;
    white-space: nowrap;
}
ul.legenda {
    list-style: none;
    margin: 0 0 0px 0px;
}
li.legenda {
    line-height: 25px;
    float: left;
    margin: 0 5px;
}
li.legenda img {
    margin-right: 3px;
}
li.legenda div {
    margin-right: 3px;
}

div.requerido input,
div.requerido select {
    font-size: 15px;
    background: #fffae5;
    border: 1px solid #ffcc00;
}

div.requerido label:after {
    content: " *";
    display: inline;
    color: #b94a48;
}

div.requerido label {
    font-weight: bold;
}

.well2 {
    margin-bottom: 10px;
    padding: 15px;
    min-height: 20px;
    background-color: #f5f5f5 !important;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}
#ulLegenda {
    list-style: none;
    margin-bottom: 2.8rem;
}
#ulLegenda li {
    float: left;
    margin-left: 0.6rem;
}
#divLegenda {
    margin-top: 0.6rem;
}
.blink_me {
    color: #e91e63;
    font-size: 140%;
    font-weight: bold;
    padding: 0 20px 0 0;
    animation: blinker 1s linear infinite;
}
@keyframes blinker {
    50% {
        opacity: 0.4;
    }
}

.log_history {
    padding: 10px;
}

.log_history hr {
    margin: 5px 0px !important;
}

.sub-tab td {
    background-color: #fff !important;
    font-style: italic;
    border-top: 0px;
    font-size: 14px;
}

.log_history .log_antigo {
    color: red;
    font-weight: lighter;
}
.log_history .log_novo {
    color: green;
    font-weight: lighter;
    text-decoration: underline;
}
.div_lista {
    min-height: 40px;
}
.div_lista .blockMsg {
    left: 45% !important;
}
.orange_color {
    color: orange !important;
}

.margin-bottom-5 {
    margin-bottom: 5px !important;
}

.label-inline {
    display: inline-block;
    padding: 5px 5px 5px 0px;
    margin: 5px 0px;
    float: left;
}

.icon-remove {
    margin-top: 0px !important;
}

.btn-success,
.btn-primary {
    color: #fff !important;
}
.recordset {
    margin-bottom: 25px;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 15px;
}

.div-icone-after {
    display: inline-block;
    height: 100%;
    vertical-align: bottom;
    position: relative;
    width: 20px;
}

.div-icone-after .icone-after {
    vertical-align: bottom;
    margin-bottom: 10px;
    height: 22px;
    position: absolute;
    bottom: 0px;
}

tr.no-border td {
    border: 0px;
}

.no-padding-top {
    padding-top: 0px !important;
}

.no-label-margin label {
    margin-bottom: 0px !important;
}

.no-label-margin input[type="checkbox"] {
    margin-top: 0px !important;
}

.table-minor {
    font-size: 12px;
}
.table-minor td {
    line-height: 17px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 5px;
    padding-right: 5px;
}
.table-minor td {
    line-height: 17px;
}
.table-minor .badge {
    line-height: 12px;
}

.logo-module {
    width: 30%;
    height: 37px;
    float: left;
    display: flex;
    align-items: center;
    /*justify-content: flex-end;*/
    margin-right: 10px;
}
@media (max-width: 1920px) {
    .logo-module {
        width: 12.5%;
        margin-left: 5%;
    }
}

.menu-principal {
    min-width: 1170px !important;
    max-width: 1345px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: auto !important;
}


/* Inicio style usuario_download */
.notification {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 40px;
    right: 5%;
}

.exclamation {
    position: relative;
    top: 43%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-color: red;
    border-radius: 50%;
    color: white;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 1s infinite;
}

.loading {
    position: relative;
    top: 43%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-color: red;
    border-radius: 50%;
    color: white;
    border: 3px solid #ccc;
    border-top-color: #666;
    animation: rotate 1s linear infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

@keyframes rotate {
    0% {
    transform: translate(-50%, -50%) rotate(0);
    }
    100% {
    transform: translate(-50%, -50%) rotate(360deg);
    }
}

.notification i {
    position: relative;
    bottom: 3%;
    left: 4%;
}

[data-tooltip] {
    position: relative;
    cursor: help;

    &:hover::before {
        transform: translate(0);
        opacity: 1;
    }
    
    &::before {
        top: 90%;
        transform: translateY(-20px);
        content: attr(data-tooltip);
        position: absolute;
        display: block;
        background: #FFF;
        padding: 10px;
        box-shadow: 0px 2px 5px #0000008c;
        border-radius: 3px;
        text-align: center;
        left: 0;
        z-index: 1;
        opacity: 0;
        pointer-events: none;
        transition: all .3s cubic-bezier(.4, 0, .2, 1);
    }
}

/* Fim style usuario_download */