html,
body {
    height: 100%;
    min-height: 100%;
}


/*
Convertendo dos os campos de 
formulários em caixa lata
*/

input.uppercase,
select.uppercase,
textarea.uppercase,
.uppercase option,
.uppercase optgroup,
.uppercase {
    text-transform: uppercase;
}


/*
Efeito onFocus sem javascript
 */


input:focus, textarea:focus{
	background: #dadada;
}

/*
#pagina_inteira{
	/*text-align: center;*/


}
.dropdown-menu-right {
    right: 0 !important;
}
.header .navbar {
    margin-bottom: 0 !important;
}
.navbar-default {
    background-color: #2c3e50;
    border-color: transparent;
    color: #fff;
}
.header a,
.header a:hover,
.header a:active,
.header a:focus {
    font-size: 15px;
}
.header a.navbar-brand {
    font-size: 16px;
    padding: 0 15px;
    letter-spacing: -1px;
    line-height: 50px;
}
.header a.navbar-brand img {
    display: inline-block;
    height: 36px;
    margin-top: -2px;
}
.header .navbar .current-user-info li {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: 400;
    line-height: 1.42857143;
    color: #333;
    white-space: nowrap;
    font-size: 11px;
    font-weight: bold;
}
.header .navbar .current-user-info li span {
    font-weight: normal;
    font-size: 14px;
    display: block;
}
.header .ln-pm .badge {
    position: absolute;
    top: 26px;
    padding: 3px;
    background-color: red;
    left: 24px;
    font-size: 9px;
}
.header .trocar-empresa a.dropdown-toggle {
    line-height: 20px;
    color: #fff;
    padding: 0;
    margin-top: 14px;
}
.dropdown-menu .header {
    padding: 0 20px 6px;
    color: #333;
    font-weight: bold;
    border-bottom: 1px solid #ccc;
    text-transform: uppercase;
    font-size: 11px;
}
.main {
    position: relative;
}
.content {
    margin-left: 250px;
}
.sidebar {
    background: #ececec;
    height: 100%;
    min-height: 100%;
    width: 250px;
    position: absolute;
    padding-top: 20px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 20px;
}
.sidebar ul {
    margin: 0;
    padding: 0;
    list-style: none;
    /*width: 300px;*/
}
.sidebar>ul {}
.sidebar>ul>li {
    border-bottom: 1px solid #dedede;
}
.sidebar li,
.sidebar li a {
    margin: 0;
    padding: 0;
    display: block;
}
.sidebar li ul {
    display: none;
    padding-bottom: 20px;
}
.sidebar li a {
    color: #888;
    font-weight: bold;
    padding: 15px 10px 15px 20px;
    text-decoration: none;
}
.sidebar>ul>li>a:hover {
    background: #dedede;
}
.sidebar li li a {
    font-weight: normal;
    padding: 8px 5px 8px 30px;
}
.sidebar li li a:hover {
    color: #555;
}
.sidebar li li li a {
    color: #999;
    padding: 8px 5px 8px 40px;
}

/**
 * CSS necessário ao funcionamento do menu com subníveis
 * 
 * Menu Wrapper
 */
.menu-principal {
    /* background: #222 url('../../images/header_black.png'); */
    
    background-color: #696969;
    height: 30px;
    font-size: 11px;
    z-index: 100;
    position: relative;
}

/**
 * Primeiro nível do menu
 */
.menu-principal ul {
    list-style: none;
    display: block;
    margin: 0;
    padding: 0;
}
.menu-principal ul li {
    position: relative;
}
.menu-principal>ul>li {
    float: left;
}

/**
 * Definição básica dos links
 */
.menu-principal ul li,
.menu-principal ul li a {
    display: block;
    line-height: 1.4;
    margin: 0;
    padding: 0;
    color: #444;
    text-decoration: none;
    color: #333;
}

/**
 * Definição específica para o primeiro nível do menu
 */
.menu-principal>ul>li>a {
    line-height: 30px;
    color: #fff;
    padding: 0 8px;
}

/**
 * Definição específica para os subníveis do menu
 */
.menu-principal li ul a {
    padding: 8px;
}
.menu-principal li ul a:hover {}
.menu-principal li ul {
    /**
	 * Largura dos subníveis do menu
	 */
    
    width: 240px;
    position: absolute;
    display: none;
    /**
	 * Cantos inferiores arredondados
	 */
    
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    box-shadow: 0px 1px 3px #888;
}

/**
 * Exibindo os submenus ao evento mouseover nos lis
 */
/* .menu-principal ul li:hover>ul {
    display: block; 
} */
.menu-principal>ul>li:hover>a {
    background: #eee;
    color: #444;
}

/**
 * Definições específicas do segundo nível do menu
 */
.menu-principal ul ul {
    /**
	 * Posicionando o segundo nível do menu 
	 * abaixo do primeiro e a sua esquerda
	 */
    
    top: 30px;
    left: 0;
    background: #eee;
    border-top: 0 none;
}
.menu-principal ul ul a:hover {
    background: #ddd;
}

/**
 * Definições específicas do terceiro nível do menu
 */
.menu-principal ul ul ul {
    top: 0;
    /**
	 * Posicionando o terceiro nível a direta do segundo
	 */
    
    left: 100%;
    background: #F9F9F9;
    max-height: 500px;
    overflow-y: auto;
    overflow-x: hidden;
    /**
	 * Neste nível também é arredondado o canto superior direito
	 */
    
    border-top-right-radius: 3px;
}
.menu-principal ul ul ul a:hover {
    background: #E6E6E6;
}
@media screen and (max-width: 1024px) {
    .menu-principal {
        font-size: 10px;
    }
    
    .menu-principal li ul {
        width: 180px;
    }
    
    .menu-principal>ul>li>a {
        padding: 0 5px;
    }
    
    .menu-principal li ul a {
        padding: 5px;
    }
    
    .headerEmpresa {
        font-size: 10px;
    }
    
    #header .menuAcoes img {
        width: 15px;
        height: 15px;
    }
}

/**
 * OGG
 */
.content {
    margin-left: 0;
}
.sidebar {
    left: -100%;
    z-index: 2000;
}
.sidebar-action {
    margin: 0 15px 0 -15px;
}
.sidebar-action a,
.sidebar-action a:active,
.sidebar-action a:focus,
.sidebar-action a:link,
.sidebar-action a:visited {
    color: #fff;
    border-radius: 0;
    margin: -1px 0;
}
.sidebar-action a i {
    width: 20px;
}
.sidebar-action a .fa-angle-double-left {
    display: none;
}
body .active .exibir-sidebar {
    background: #ececec !important;
    color: #444 !important;
}
body .active .exibir-sidebar .fa-bars {
    display: none;
}
body .active .exibir-sidebar .fa-angle-double-left {
    display: inline-block;
}
.executable {
    width: 250px;
    position: relative;
    padding-right: 20px;
}
.executable input {
    padding: 5px 10px;
    height: 35px;
    line-height: 35px;
    float: right;
    margin-top: 8px;
}
.margin-top {
    margin-top: 20px;
}
.margin-bottom {
    margin-bottom: 20px;
}
.padding-top {
    padding-top: 20px;
}
.content>.padding-top {
    padding-top: 15px;
}
.padding-5 {
    padding: 5px !important;
}
.padding-10 {
    padding: 10px !important;
}
.padding-15 {
    padding: 15px !important;
}
.padding-20 {
    padding: 20px !important;
}
.padding-bottom {
    padding-bottom: 20px;
}
.barra-programa {
    /* background: #555 url('../img/header_black.png'); */
    
    background-color: #696969;
    color: #ccc;
    padding-left: 15px;
}
.barra-programa ul {
    margin: 0;
    padding: 0;
    list-style: none;
    float: right;
    padding: 0 7px 0 0;
}
.barra-programa li {
    float: left;
}
.barra-programa li,
.barra-programa li a,
.barra-programa li a img {
    display: block;
}
.barra-programa li.oculta {
    display: none;
}
.barra-programa li a {
    padding: 8px;
}
.barra-programa li a img {
    width: 14px;
    height: 14px;
}
.barra-programa .current {
    font-size: 12px;
    font-weight: bold;
    line-height: 30px;
}
.barra-programa .current i {
    margin-right: 10px;
}
.autocomplete-suggestions-executable {
    top: 42px;
    margin-left: 0px;
}
.autocomplete-suggestions {
    border: 1px solid #EFEFEF;
    background: #FFF;
    overflow: auto;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}
.autocomplete-suggestion {
    padding: 10px 6px;
    white-space: nowrap;
    overflow: hidden;
}
.autocomplete-suggestion:hover {
    cursor: pointer;
}
.autocomplete-selected {
    background: #f7f7f7;
}
.autocomplete-suggestions strong {
    font-weight: normal;
    color: #3399FF;
}
.autocomplete-group {
    padding: 5px;
}
.autocomplete-group strong {
    display: block;
    border-bottom: 1px solid #f0f0f0;
}
.fancybox-frame .header,
.fancybox-frame .sidebar {
    display: none !important;
}
.fancybox-frame .main .content {
    margin-left: 0 !important;
}
.clear {
    clear: both;
}
.botoes-navegacao {
    margin-top: 20px;
    text-align: center;
    display: block !important;
}
.botoes-navegacao ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-block;
}
.botoes-navegacao li {
    float: left;
    display: inline-block;
    padding: 0 1px;
    margin-bottom: 30px;
}
.botoes-navegacao li a {
    display: block;
}
.botoes-navegacao li a {}
.datagrid-filters form {
    padding-bottom: 5px;
}
.datagrid form .input-group-addon {
    padding: 0;
}
.datagrid form .input-group-addon .btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    padding: 6px 16px;
    border: 0 none;
}
.datagrid-filters-wrapper {
    height: 143px;
}
.datagrid-filters .title {
    padding: 5px 10px;
    margin: 0;
    border-bottom: 1px solid #C2C2C2;
    /*#B7B7B7;*/
    
    margin-bottom: 5px;
    text-align: left;
}
.datagrid-filters-menu {
    text-align: left;
}
.btn.incluir {
    margin-left: 50px;
}
.datagrid-filters .row-fluid .col {
    padding-bottom: 2px;
}
.datagrid-filters .row-fluid .col label,
.datagrid-filters .row-fluid .col input,
.datagrid-filters .row-fluid .col select,
.datagrid-filters .row-fluid .col a {
    float: left;
    display: inline-block;
    font-weight: normal;
    margin: 0;
}
.datagrid-filters .column_name {
    width: 30%;
}
.datagrid-filters label.column_name {
    text-align: right;
    padding-right: 3px;
    line-height: 26px;
}
.datagrid-filters .column_ate {
    width: 5%;
    text-align: center;
    line-height: 26px;
}
.datagrid-filters input,
.datagrid-filters select {
    border-radius: 4px;
    padding: 0 5px !important;
    width: 63%;
    display: inline-block !important;
    height: 26px;
    font-size: 12px;
}
.datagrid-filters .two-inputs input,
.datagrid-filters .two-inputs select {
    width: 29%;
}
.datagrid-filters .limpar-campo-filtro {
    color: red;
    margin-left: 3px !important;
    font-size: 14px;
    padding: 4px 0 2px;
}
.datagrid table {
    margin: 0 !important;
}
.datagrid table th {
    text-align: left;
    color: #555;
    /*min-width: 100px;*/
    
    background-color: #eeeeee;
    height: 25px;
}
.datagrid table th,
.datagrid table td {
    vertical-align: middle !important;
    padding: 4px 8px !important;
    white-space: nowrap;
}
.datagrid table td .btn-xs {
    padding: 5px;
    height: inherit;
}
.datagrid table th:hover,
.datagrid table th.sorted {
    cursor: pointer;
    color: #000333;
}
.datagrid table th i {
    margin-right: 5px;
}
.datagrid .datagrid-actions-menu {
    width: 5% !important;
    text-align: center;
}
.datagrid .hidden-print {
    text-align: center;
}
.datagrid .copiar-registro-empresa-atual {
    margin-right: 5px;
}
form {
    margin: 0 !important;
}
.invalid-field {
    border: 1px solid #a94442;
    background-color: #f2dede;
}
.datagrid-table {
    width: 98%;
    overflow: auto;
    position: relative;
}

/*.datagrid .overlay,*/
.datagrid .loader {
    position: absolute;
    left: 50%;
    top: 0;
    width: 300px;
    margin-left: -65px;
    display: none;
    text-align: center;
}
.datagrid .overlay {
    background: #000;
    opacity: 0.4;
}
.datagrid .loading {
    margin: 0 auto 0;
    border-radius: 5px;
    background: #fff;
    width: 300px;
    padding: 30px;
    color: #333;
    font-size: 20px;
    text-align: center;
    display: inline-block;
}

/**
 * Painel de mensagens
 */
#menuStatusUsuario {
    display: none;
}
.pm {
    position: relative;
    background: #f7f7f7;
}
.pm .pm-sidebar {
    position: absolute;
    left: 0;
    top: 0;
    width: 260px;
    min-height: 100%;
    padding: 10px 10px 0;
    background: #f7f7f7;
    border-right: 1px solid #ccc;
}
.pm .pm-sidebar ul {
    list-style: none;
    padding: 10px 0 0;
}
.pm .pm-sidebar li,
.pm .pm-sidebar li a {
    display: block;
    line-height: 30px;
}
.pm .pm-sidebar li a {
    text-decoration: none;
}
.pm .pm-sidebar li a i {
    margin: 0 5px;
}
.pm .pm-sidebar li a.active {
    font-weight: bold;
}
.pm .pm-search {
    padding: 10px;
}
.pm .pm-view {
    margin-left: 260px;
}
.pm .pm-table {
    position: relative;
}
.pm .pm-table .from {
    width: 28% !important;
}
.pm .pm-table .subject {
    width: 50% !important;
}
.pm .pm-table .date {
    width: 20% !important;
}
.pm .pm-table .actions {
    width: 2% !important;
}
.pm .t-subject {
    display: inline-block;
    padding-left: 20px;
}
.pm tr.has_unread td {
    font-weight: bold;
}
.pm tr.has_read td {}
.pm tr:hover {
    cursor: pointer;
}

/**
 * Sub-Menu programa atual
 */
.submenu-programa {
    height: 26px;
    background: #BBB;
}
.submenu-programa ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.submenu-programa li {
    float: left;
}
.submenu-programa a {
    font-size: 10px;
    padding: 0 5px !important;
    line-height: 30px;
    text-decoration: none;
    color: #eee;
    line-height: 26px;
    height: 26px;
    display: block;
}
.submenu-programa img {
    max-width: 16px;
    max-height: 16px;
    margin-right: 5px;
}
.submenu-programa a:hover {
    color: #fff;
    background: #656565;
}

/**
 * Novas abas
 */
.etabs {
    height: 30px;
    margin: 5px 0;
}
.etabs ul {
    list-style: none;
}
.etabs ul,
.etabs li,
.etabs a {
    padding: 0;
    margin: 0;
}
.etabs li,
.etabs a {
    display: block;
}
.etabs li {
    float: left;
    width: 11%;
}
.etabs a {
    font-family: 'Lato', Calibri, Arial, sans-serif;
    font-size: 14px;
    font-weight: normal;
    color: #333;
    background-color: #EEEEE0;
    height: 30px;
    line-height: 30px;
    border: 1px solid #696969;
    border-top-left-radius: 1em;
    border-top-right-radius: 1em;
    cursor: pointer;
    text-align: center;
    margin-right: -1px;
    text-decoration: none;
}
.etabs a.active,
.etabs a.menu-sel {
    background-color: #EEEED1;
    border-bottom: 0 none;
}

/*
.menu, .menu-sel{
    font-family: 'Lato', Calibri, Arial, sans-serif;
    font-size: 14px;
    font-weight: normal;
    color: #333;
    background-color: #EEEEE0;
    float: left;
    width: 11%;
    height: 30px;
    line-height: 28px;
    border: 1px solid #696969;
    border-top-left-radius: 1em;
    border-top-right-radius: 1em;
    cursor: pointer;
    text-align: center;
}
.menu-sel{
   background-color: #EEEED1;
   border-bottom: 0 none; 
}
 */
@media print {
    .content {
        margin-left: 0;
    }
    
    .barra-programa {
        padding-left: 0;
        border-bottom: 1px solid #000;
    }
    
    .datagrid-table {
        height: auto !important;
    }
    .botoes-navegacao{
        display: none !important;
    }
    .footer{
        display: none !important;
    }
    #plugin{
        display: none !important;
    }
}
#pagina_inteira td {
    position: relative !important;
}
.navbar-default .navbar-nav>li>a {
    color: #ffffff
}
.navbar-default .navbar-nav>li>a:hover,
.navbar-default .navbar-nav>li>a:focus {
    color: #18bc9c;
    background-color: transparent
}
.navbar-default .navbar-nav>.active>a,
.navbar-default .navbar-nav>.active>a:hover,
.navbar-default .navbar-nav>.active>a:focus {
    color: #ffffff;
    background-color: #1a242f
}
.navbar-default .navbar-nav>.disabled>a,
.navbar-default .navbar-nav>.disabled>a:hover,
.navbar-default .navbar-nav>.disabled>a:focus {
    color: #cccccc;
    background-color: transparent
}
.navbar-default .navbar-toggle {
    border-color: #1a242f
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
    background-color: #1a242f
}
.navbar-default .navbar-toggle .icon-bar {
    background-color: #ffffff
}
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
    border-color: transparent
}
.navbar-default .navbar-nav>.open>a,
.navbar-default .navbar-nav>.open>a:hover,
.navbar-default .navbar-nav>.open>a:focus {
    background-color: #1a242f;
    color: #ffffff
}
@media (max-width:767px) {
    .navbar-default .navbar-nav .open .dropdown-menu>li>a {
        color: #ffffff
    }
    
    .navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,
    .navbar-default .navbar-nav .open .dropdown-menu>li>a:focus {
        color: #18bc9c;
        background-color: transparent
    }
    
    .navbar-default .navbar-nav .open .dropdown-menu>.active>a,
    .navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,
    .navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus {
        color: #ffffff;
        background-color: #1a242f
    }
    
    .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,
    .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,
    .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus {
        color: #cccccc;
        background-color: transparent
    }
}
.navbar-default .navbar-brand {
    color: #ffffff
}
.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
    color: #18bc9c;
    background-color: transparent
}
.main .table th {
    padding-top: 2px !important;
    padding-bottom: 2px !important;
}

/**
 * Bootstrap Dialog
 */
.bootstrap-dialog .modal-header {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px
}
.bootstrap-dialog .bootstrap-dialog-title {
    color: #fff;
    display: inline-block;
    font-size: 16px
}
.bootstrap-dialog .bootstrap-dialog-message {
    font-size: 14px
}
.bootstrap-dialog .bootstrap-dialog-button-icon {
    margin-right: 3px
}
.bootstrap-dialog .bootstrap-dialog-close-button {
    font-size: 20px;
    float: right;
    filter: alpha(opacity=90);
    -moz-opacity: .9;
    -khtml-opacity: .9;
    opacity: .9
}
.bootstrap-dialog .bootstrap-dialog-close-button:hover {
    cursor: pointer;
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1
}
.bootstrap-dialog.type-default .modal-header {
    background-color: #fff
}
.bootstrap-dialog.type-default .bootstrap-dialog-title {
    color: #333
}
.bootstrap-dialog.type-info .modal-header {
    background-color: #5bc0de
}
.bootstrap-dialog.type-primary .modal-header {
    background-color: #428bca
}
.bootstrap-dialog.type-success .modal-header {
    background-color: #5cb85c
}
.bootstrap-dialog.type-warning .modal-header {
    background-color: #f0ad4e
}
.bootstrap-dialog.type-danger .modal-header {
    background-color: #d9534f
}
.bootstrap-dialog.size-large .bootstrap-dialog-title {
    font-size: 24px
}
.bootstrap-dialog.size-large .bootstrap-dialog-close-button {
    font-size: 30px
}
.bootstrap-dialog.size-large .bootstrap-dialog-message {
    font-size: 18px
}
.bootstrap-dialog .icon-spin {
    display: inline-block;
    -moz-animation: spin 2s infinite linear;
    -o-animation: spin 2s infinite linear;
    -webkit-animation: spin 2s infinite linear;
    animation: spin 2s infinite linear
}
@-moz-keyframes spin {
    0% {
        -moz-transform: rotate(0deg)
    }
    
    100% {
        -moz-transform: rotate(359deg)
    }
}
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg)
    }
    
    100% {
        -webkit-transform: rotate(359deg)
    }
}
@-o-keyframes spin {
    0% {
        -o-transform: rotate(0deg)
    }
    
    100% {
        -o-transform: rotate(359deg)
    }
}
@-ms-keyframes spin {
    0% {
        -ms-transform: rotate(0deg)
    }
    
    100% {
        -ms-transform: rotate(359deg)
    }
}
@keyframes spin {
    0% {
        transform: rotate(0deg)
    }
    
    100% {
        transform: rotate(359deg)
    }
}

/* Chosen v1.4.2 | (c) 2011-2015 by Harvest | MIT License, https://github.com/harvesthq/chosen/blob/master/LICENSE.md */
.chosen-container {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    font-size: 13px;
    zoom: 1;
    *display: inline;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}
.chosen-container * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}
.chosen-container .chosen-drop {
    position: absolute;
    top: 100%;
    left: -9999px;
    z-index: 1010;
    width: 100%;
    border: 1px solid #aaa;
    border-top: 0;
    background: #fff;
    box-shadow: 0 4px 5px rgba(0, 0, 0, .15)
}
.chosen-container.chosen-with-drop .chosen-drop {
    left: 0
}
.chosen-container a {
    cursor: pointer
}
.chosen-container .search-choice .group-name,
.chosen-container .chosen-single .group-name {
    margin-right: 4px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: 400;
    color: #999
}
.chosen-container .search-choice .group-name:after,
.chosen-container .chosen-single .group-name:after {
    content: ":";
    padding-left: 2px;
    vertical-align: top
}
.chosen-container-single .chosen-single {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 0 0 0 8px;
    height: 25px;
    border: 1px solid #aaa;
    border-radius: 5px;
    background-color: #fff;
    background: -webkit-gradient(linear, 50% 0, 50% 100%, color-stop(20%, #fff), color-stop(50%, #f6f6f6), color-stop(52%, #eee), color-stop(100%, #f4f4f4));
    background: -webkit-linear-gradient(top, #fff 20%, #f6f6f6 50%, #eee 52%, #f4f4f4 100%);
    background: -moz-linear-gradient(top, #fff 20%, #f6f6f6 50%, #eee 52%, #f4f4f4 100%);
    background: -o-linear-gradient(top, #fff 20%, #f6f6f6 50%, #eee 52%, #f4f4f4 100%);
    background: linear-gradient(top, #fff 20%, #f6f6f6 50%, #eee 52%, #f4f4f4 100%);
    background-clip: padding-box;
    box-shadow: 0 0 3px #fff inset, 0 1px 1px rgba(0, 0, 0, .1);
    color: #444;
    text-decoration: none;
    white-space: nowrap;
    line-height: 24px
}
.chosen-container-single .chosen-default {
    color: #999
}
.chosen-container-single .chosen-single span {
    display: block;
    overflow: hidden;
    margin-right: 26px;
    text-overflow: ellipsis;
    white-space: nowrap
}
.chosen-container-single .chosen-single-with-deselect span {
    margin-right: 38px
}
.chosen-container-single .chosen-single abbr {
    position: absolute;
    top: 6px;
    right: 26px;
    display: block;
    width: 12px;
    height: 12px;
    background: url(../img/chosen-sprite.png) -42px 1px no-repeat;
    font-size: 1px
}
.chosen-container-single .chosen-single abbr:hover {
    background-position: -42px -10px
}
.chosen-container-single.chosen-disabled .chosen-single abbr:hover {
    background-position: -42px -10px
}
.chosen-container-single .chosen-single div {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 18px;
    height: 100%
}
.chosen-container-single .chosen-single div b {
    display: block;
    width: 100%;
    height: 100%;
    background: url(../img/chosen-sprite.png) no-repeat 0 2px
}
.chosen-container-single .chosen-search {
    position: relative;
    z-index: 1010;
    margin: 0;
    padding: 3px 4px;
    white-space: nowrap
}
.chosen-container-single .chosen-search input[type=text] {
    margin: 1px 0;
    padding: 4px 20px 4px 5px;
    width: 100%;
    height: auto;
    outline: 0;
    border: 1px solid #aaa;
    background: #fff url(../img/chosen-sprite.png) no-repeat 100% -20px;
    background: url(../img/chosen-sprite.png) no-repeat 100% -20px;
    font-size: 1em;
    font-family: sans-serif;
    line-height: normal;
    border-radius: 0
}
.chosen-container-single .chosen-drop {
    margin-top: -1px;
    border-radius: 0 0 4px 4px;
    background-clip: padding-box
}
.chosen-container-single.chosen-container-single-nosearch .chosen-search {
    position: absolute;
    left: -9999px
}
.chosen-container .chosen-results {
    color: #444;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    margin: 0 4px 4px 0;
    padding: 0 0 0 4px;
    max-height: 240px;
    -webkit-overflow-scrolling: touch
}
.chosen-container .chosen-results li {
    display: none;
    margin: 0;
    padding: 5px 6px;
    list-style: none;
    line-height: 15px;
    word-wrap: break-word;
    -webkit-touch-callout: none
}
.chosen-container .chosen-results li.active-result {
    display: list-item;
    cursor: pointer
}
.chosen-container .chosen-results li.disabled-result {
    display: list-item;
    color: #ccc;
    cursor: default
}
.chosen-container .chosen-results li.highlighted {
    background-color: #3875d7;
    background-image: -webkit-gradient(linear, 50% 0, 50% 100%, color-stop(20%, #3875d7), color-stop(90%, #2a62bc));
    background-image: -webkit-linear-gradient(#3875d7 20%, #2a62bc 90%);
    background-image: -moz-linear-gradient(#3875d7 20%, #2a62bc 90%);
    background-image: -o-linear-gradient(#3875d7 20%, #2a62bc 90%);
    background-image: linear-gradient(#3875d7 20%, #2a62bc 90%);
    color: #fff
}
.chosen-container .chosen-results li.no-results {
    color: #777;
    display: list-item;
    background: #f4f4f4
}
.chosen-container .chosen-results li.group-result {
    display: list-item;
    font-weight: 700;
    cursor: default
}
.chosen-container .chosen-results li.group-option {
    padding-left: 15px
}
.chosen-container .chosen-results li em {
    font-style: normal;
    text-decoration: underline
}
.chosen-container-multi .chosen-choices {
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0 5px;
    width: 100%;
    height: auto!important;
    height: 1%;
    border: 1px solid #aaa;
    background-color: #fff;
    background-image: -webkit-gradient(linear, 50% 0, 50% 100%, color-stop(1%, #eee), color-stop(15%, #fff));
    background-image: -webkit-linear-gradient(#eee 1%, #fff 15%);
    background-image: -moz-linear-gradient(#eee 1%, #fff 15%);
    background-image: -o-linear-gradient(#eee 1%, #fff 15%);
    background-image: linear-gradient(#eee 1%, #fff 15%);
    cursor: text
}
.chosen-container-multi .chosen-choices li {
    float: left;
    list-style: none
}
.chosen-container-multi .chosen-choices li.search-field {
    margin: 0;
    padding: 0;
    white-space: nowrap
}
.chosen-container-multi .chosen-choices li.search-field input[type=text] {
    margin: 1px 0;
    padding: 0;
    height: 25px;
    outline: 0;
    border: 0!important;
    background: transparent!important;
    box-shadow: none;
    color: #999;
    font-size: 100%;
    font-family: sans-serif;
    line-height: normal;
    border-radius: 0
}
.chosen-container-multi .chosen-choices li.search-choice {
    position: relative;
    margin: 3px 5px 3px 0;
    padding: 3px 20px 3px 5px;
    border: 1px solid #aaa;
    max-width: 100%;
    border-radius: 3px;
    background-color: #eee;
    background-image: -webkit-gradient(linear, 50% 0, 50% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eee));
    background-image: -webkit-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
    background-image: -moz-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
    background-image: -o-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
    background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
    background-size: 100% 19px;
    background-repeat: repeat-x;
    background-clip: padding-box;
    box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, .05);
    color: #333;
    line-height: 13px;
    cursor: default
}
.chosen-container-multi .chosen-choices li.search-choice span {
    word-wrap: break-word
}
.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
    position: absolute;
    top: 4px;
    right: 3px;
    display: block;
    width: 12px;
    height: 12px;
    background: url(../img/chosen-sprite.png) -42px 1px no-repeat;
    font-size: 1px
}
.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {
    background-position: -42px -10px
}
.chosen-container-multi .chosen-choices li.search-choice-disabled {
    padding-right: 5px;
    border: 1px solid #ccc;
    background-color: #e4e4e4;
    background-image: -webkit-gradient(linear, 50% 0, 50% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eee));
    background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
    background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
    background-image: -o-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
    background-image: linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
    color: #666
}
.chosen-container-multi .chosen-choices li.search-choice-focus {
    background: #d4d4d4
}
.chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close {
    background-position: -42px -10px
}
.chosen-container-multi .chosen-results {
    margin: 0;
    padding: 0
}
.chosen-container-multi .chosen-drop .result-selected {
    display: list-item;
    color: #ccc;
    cursor: default
}
.chosen-container-active .chosen-single {
    border: 1px solid #5897fb;
    box-shadow: 0 0 5px rgba(0, 0, 0, .3)
}
.chosen-container-active.chosen-with-drop .chosen-single {
    border: 1px solid #aaa;
    -moz-border-radius-bottomright: 0;
    border-bottom-right-radius: 0;
    -moz-border-radius-bottomleft: 0;
    border-bottom-left-radius: 0;
    background-image: -webkit-gradient(linear, 50% 0, 50% 100%, color-stop(20%, #eee), color-stop(80%, #fff));
    background-image: -webkit-linear-gradient(#eee 20%, #fff 80%);
    background-image: -moz-linear-gradient(#eee 20%, #fff 80%);
    background-image: -o-linear-gradient(#eee 20%, #fff 80%);
    background-image: linear-gradient(#eee 20%, #fff 80%);
    box-shadow: 0 1px 0 #fff inset
}
.chosen-container-active.chosen-with-drop .chosen-single div {
    border-left: 0;
    background: transparent
}
.chosen-container-active.chosen-with-drop .chosen-single div b {
    background-position: -18px 2px
}
.chosen-container-active .chosen-choices {
    border: 1px solid #5897fb;
    box-shadow: 0 0 5px rgba(0, 0, 0, .3)
}
.chosen-container-active .chosen-choices li.search-field input[type=text] {
    color: #222!important
}
.chosen-disabled {
    opacity: .5!important;
    cursor: default
}
.chosen-disabled .chosen-single {
    cursor: default
}
.chosen-disabled .chosen-choices .search-choice .search-choice-close {
    cursor: default
}
.chosen-rtl {
    text-align: right
}
.chosen-rtl .chosen-single {
    overflow: visible;
    padding: 0 8px 0 0
}
.chosen-rtl .chosen-single span {
    margin-right: 0;
    margin-left: 26px;
    direction: rtl
}
.chosen-rtl .chosen-single-with-deselect span {
    margin-left: 38px
}
.chosen-rtl .chosen-single div {
    right: auto;
    left: 3px
}
.chosen-rtl .chosen-single abbr {
    right: auto;
    left: 26px
}
.chosen-rtl .chosen-choices li {
    float: right
}
.chosen-rtl .chosen-choices li.search-field input[type=text] {
    direction: rtl
}
.chosen-rtl .chosen-choices li.search-choice {
    margin: 3px 5px 3px 0;
    padding: 3px 5px 3px 19px
}
.chosen-rtl .chosen-choices li.search-choice .search-choice-close {
    right: auto;
    left: 4px
}
.chosen-rtl.chosen-container-single-nosearch .chosen-search,
.chosen-rtl .chosen-drop {
    left: 9999px
}
.chosen-rtl.chosen-container-single .chosen-results {
    margin: 0 0 4px 4px;
    padding: 0 4px 0 0
}
.chosen-rtl .chosen-results li.group-option {
    padding-right: 15px;
    padding-left: 0
}
.chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div {
    border-right: 0
}
.chosen-rtl .chosen-search input[type=text] {
    padding: 4px 5px 4px 20px;
    background: #fff url(../img/chosen-sprite.png) no-repeat -30px -20px;
    background: url(../img/chosen-sprite.png) no-repeat -30px -20px;
    direction: rtl
}
.chosen-rtl.chosen-container-single .chosen-single div b {
    background-position: 6px 2px
}
.chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b {
    background-position: -12px 2px
}
@media only screen and (-webkit-min-device-pixel-ratio:1.5),
only screen and (min-resolution:144dpi),
only screen and (min-resolution:1.5dppx) {
    .chosen-rtl .chosen-search input[type=text],
    .chosen-container-single .chosen-single abbr,
    .chosen-container-single .chosen-single div b,
    .chosen-container-single .chosen-search input[type=text],
    .chosen-container-multi .chosen-choices .search-choice .search-choice-close,
    .chosen-container .chosen-results-scroll-down span,
    .chosen-container .chosen-results-scroll-up span {
        background-image: url(../img/chosen-sprite@2x.png)!important;
        background-size: 52px 37px!important;
        background-repeat: no-repeat!important
    }
}
.chosen-choices.form-control {
    padding: 3px 12px !important;
}

/*!
 * Datetimepicker for Bootstrap 3
 * version : 4.15.35
 * https://github.com/Eonasdan/bootstrap-datetimepicker/
 */
.bootstrap-datetimepicker-widget {
    list-style: none
}
.bootstrap-datetimepicker-widget.dropdown-menu {
    margin: 2px 0;
    padding: 4px;
    width: 19em
}
@media (min-width:768px) {
    .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
        width: 38em
    }
}
@media (min-width:992px) {
    .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
        width: 38em
    }
}
@media (min-width:1200px) {
    .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
        width: 38em
    }
}
.bootstrap-datetimepicker-widget.dropdown-menu:before,
.bootstrap-datetimepicker-widget.dropdown-menu:after {
    content: '';
    display: inline-block;
    position: absolute
}
.bootstrap-datetimepicker-widget.dropdown-menu.bottom:before {
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #ccc;
    border-bottom-color: rgba(0, 0, 0, 0.2);
    top: -7px;
    left: 7px
}
.bootstrap-datetimepicker-widget.dropdown-menu.bottom:after {
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid white;
    top: -6px;
    left: 8px
}
.bootstrap-datetimepicker-widget.dropdown-menu.top:before {
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid #ccc;
    border-top-color: rgba(0, 0, 0, 0.2);
    bottom: -7px;
    left: 6px
}
.bootstrap-datetimepicker-widget.dropdown-menu.top:after {
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid white;
    bottom: -6px;
    left: 7px
}
.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:before {
    left: auto;
    right: 6px
}
.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:after {
    left: auto;
    right: 7px
}
.bootstrap-datetimepicker-widget .list-unstyled {
    margin: 0
}
.bootstrap-datetimepicker-widget a[data-action] {
    padding: 6px 0
}
.bootstrap-datetimepicker-widget a[data-action]:active {
    box-shadow: none
}
.bootstrap-datetimepicker-widget .timepicker-hour,
.bootstrap-datetimepicker-widget .timepicker-minute,
.bootstrap-datetimepicker-widget .timepicker-second {
    width: 54px;
    font-weight: bold;
    font-size: 1.2em;
    margin: 0
}
.bootstrap-datetimepicker-widget button[data-action] {
    padding: 6px
}
.bootstrap-datetimepicker-widget .btn[data-action="incrementHours"]::after {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    content: "Increment Hours"
}
.bootstrap-datetimepicker-widget .btn[data-action="incrementMinutes"]::after {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    content: "Increment Minutes"
}
.bootstrap-datetimepicker-widget .btn[data-action="decrementHours"]::after {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    content: "Decrement Hours"
}
.bootstrap-datetimepicker-widget .btn[data-action="decrementMinutes"]::after {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    content: "Decrement Minutes"
}
.bootstrap-datetimepicker-widget .btn[data-action="showHours"]::after {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    content: "Show Hours"
}
.bootstrap-datetimepicker-widget .btn[data-action="showMinutes"]::after {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    content: "Show Minutes"
}
.bootstrap-datetimepicker-widget .btn[data-action="togglePeriod"]::after {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    content: "Toggle AM/PM"
}
.bootstrap-datetimepicker-widget .btn[data-action="clear"]::after {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    content: "Clear the picker"
}
.bootstrap-datetimepicker-widget .btn[data-action="today"]::after {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    content: "Set the date to today"
}
.bootstrap-datetimepicker-widget .picker-switch {
    text-align: center
}
.bootstrap-datetimepicker-widget .picker-switch::after {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    content: "Toggle Date and Time Screens"
}
.bootstrap-datetimepicker-widget .picker-switch td {
    padding: 0;
    margin: 0;
    height: auto;
    width: auto;
    line-height: inherit
}
.bootstrap-datetimepicker-widget .picker-switch td span {
    line-height: 2.5;
    height: 2.5em;
    width: 100%
}
.bootstrap-datetimepicker-widget table {
    width: 100%;
    margin: 0
}
.bootstrap-datetimepicker-widget table td,
.bootstrap-datetimepicker-widget table th {
    text-align: center;
    border-radius: 4px
}
.bootstrap-datetimepicker-widget table th {
    height: 20px;
    line-height: 20px;
    width: 20px
}
.bootstrap-datetimepicker-widget table th.picker-switch {
    width: 145px
}
.bootstrap-datetimepicker-widget table th.disabled,
.bootstrap-datetimepicker-widget table th.disabled:hover {
    background: none;
    color: #777;
    cursor: not-allowed
}
.bootstrap-datetimepicker-widget table th.prev::after {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    content: "Previous Month"
}
.bootstrap-datetimepicker-widget table th.next::after {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    content: "Next Month"
}
.bootstrap-datetimepicker-widget table thead tr:first-child th {
    cursor: pointer
}
.bootstrap-datetimepicker-widget table thead tr:first-child th:hover {
    background: #eee
}
.bootstrap-datetimepicker-widget table td {
    height: 54px;
    line-height: 54px;
    width: 54px
}
.bootstrap-datetimepicker-widget table td.cw {
    font-size: .8em;
    height: 20px;
    line-height: 20px;
    color: #777
}
.bootstrap-datetimepicker-widget table td.day {
    height: 20px;
    line-height: 20px;
    width: 20px
}
.bootstrap-datetimepicker-widget table td.day:hover,
.bootstrap-datetimepicker-widget table td.hour:hover,
.bootstrap-datetimepicker-widget table td.minute:hover,
.bootstrap-datetimepicker-widget table td.second:hover {
    background: #eee;
    cursor: pointer
}
.bootstrap-datetimepicker-widget table td.old,
.bootstrap-datetimepicker-widget table td.new {
    color: #777
}
.bootstrap-datetimepicker-widget table td.today {
    position: relative
}
.bootstrap-datetimepicker-widget table td.today:before {
    content: '';
    display: inline-block;
    border: solid transparent;
    border-width: 0 0 7px 7px;
    border-bottom-color: #337ab7;
    border-top-color: rgba(0, 0, 0, 0.2);
    position: absolute;
    bottom: 4px;
    right: 4px
}
.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background-color: #337ab7;
    color: #fff;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25)
}
.bootstrap-datetimepicker-widget table td.active.today:before {
    border-bottom-color: #fff
}
.bootstrap-datetimepicker-widget table td.disabled,
.bootstrap-datetimepicker-widget table td.disabled:hover {
    background: none;
    color: #777;
    cursor: not-allowed
}
.bootstrap-datetimepicker-widget table td span {
    display: inline-block;
    width: 54px;
    height: 54px;
    line-height: 54px;
    margin: 2px 1.5px;
    cursor: pointer;
    border-radius: 4px
}
.bootstrap-datetimepicker-widget table td span:hover {
    background: #eee
}
.bootstrap-datetimepicker-widget table td span.active {
    background-color: #337ab7;
    color: #fff;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25)
}
.bootstrap-datetimepicker-widget table td span.old {
    color: #777
}
.bootstrap-datetimepicker-widget table td span.disabled,
.bootstrap-datetimepicker-widget table td span.disabled:hover {
    background: none;
    color: #777;
    cursor: not-allowed
}
.bootstrap-datetimepicker-widget.usetwentyfour td.hour {
    height: 27px;
    line-height: 27px
}
.bootstrap-datetimepicker-widget.wider {
    width: 21em
}
.bootstrap-datetimepicker-widget .datepicker-decades .decade {
    line-height: 1.8em !important
}
.input-group.date .input-group-addon {
    cursor: pointer
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0
}
.bootstrap-datetimepicker-widget .timepicker td {
    padding: 0 !important;
    height: 40px;
    line-height: 40px;
    font-size: 16px !important;
}
.bootstrap-datetimepicker-widget .timepicker td span {
    height: 40px;
    line-height: 40px;
}
.bootstrap-datetimepicker-widget.usetwentyfour td.hour {
    height: 40px;
    line-height: 40px;
}

/* line 1, /Users/jonasvonandrian/jquery-sortable/source/css/jquery-sortable.css.sass */
body.dragging,
body.dragging * {
    cursor: move !important;
}
.columns-wrapper {
    position: relative;
}
.columns-wrapper:before {
    content: "\f0ec";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    margin-left: -10px;
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 18px;
    text-align: center;
    color: #777;
}
.columns-wrapper-filtros:before {
    content: '';
}
.columns-wrapper .dragged {
    position: absolute;
    top: 0;
    opacity: 0.5;
    z-index: 2000;
}
.columns-wrapper li {
    line-height: 24px;
    height: 24px;
    padding: 0 10px;
}
.columns-wrapper li:hover {
    background: #efefef;
    cursor: row-resize;
}
.columns-wrapper li.placeholder {
    position: relative;
    margin: 0;
    padding: 0;
    border: 1px dashed #86CAF2;
    height: 24px;
    line-height: 24px;
}
.columns-wrapper li.placeholder:before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    margin-top: 5px;
    left: -10px;
    top: 0;
    border: 6px solid transparent;
    border-left-color: #333;
    border-right: none;
}
.columns-wrapper input {
    margin-bottom: 10px;
}
.selectable-wrapper {
    border: 1px solid #ccc;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    height: 450px;
    overflow-y: auto;
    overflow-x: hidden;
}
.columns-wrapper-filtros .selectable-wrapper {
    height: 250px;
}
.app_image_upload_progress {
    margin-bottom: 5px;
    height: 5px;
    display: none;
}
.edit-image-preview img {
    margin: 5px 0 2px 0;
}
.info-box {
    border: 0 none;
    min-height: 130px;
    margin-bottom: 20px;
    color: #444;
}
.info-box i,
.info-box .icon,
.info-box .img-icon {
    display: block;
    height: 100px;
    width: 100px;
    float: left;
    text-align: center;
    margin-right: 20px;
    padding-right: 20px;
}
.info-box .img-icon {
    display: table-cell;
    vertical-align: middle;
    float: none;
    text-align: center;
}
.info-box img {
    max-height: 60px;
    max-width: 60px;
    margin: 0 auto;
}
.info-box i {
    height: 100px;
    width: 100px;
    font-size: 80px;
    line-height: 100px;
}
.info-box .valor {
    margin-top: 10px;
    font-size: 40px;
}
.info-box .titulo {
    font-size: 14px;
    text-transform: uppercase;
}
.info-box.with-icon .panel-body .panel-content,
.info-box.with-icon .panel-body .valor,
.info-box.with-icon .panel-body .titulo {
    margin-left: 100px;
}
.with-border {
    border-bottom: 3px solid transparent;
}
.bg-white {
    background-color: #ffffff;
}
.bg-danger {
    background-color: #ff5454;
}
.bg-warning {
    background-color: #fabb3d;
}
.bg-primary {
    background-color: #20a8d8;
}
.bg-info {
    background-color: #67c2ef;
}
.bg-success {
    background-color: #79c447;
}
.bg-green {
    background-color: #00CE6F;
}
.bg-blue {
    background-color: #1968FB;
}
.bg-purple {
    background-color: #A95DF0;
}
.bg-red {
    background-color: #DB0630;
}
.bg-brown {
    background-color: #B94A00;
}
.bg-turquoise {
    background-color: #1abc9c;
}
.bg-green-sea {
    background-color: #16a085;
}
.bg-emerald {
    background-color: #2ecc71;
}
.bg-nephritis {
    background-color: #27ae60;
}
.bg-peter-river {
    background-color: #3498db;
}
.bg-belize-hole {
    background-color: #2980b9;
}
.bg-amethyst {
    background-color: #9b59b6;
}
.bg-wisteria {
    background-color: #9b59b6;
}
.bg-wet-asphalt {
    background-color: #34495e;
}
.bg-midnight-blue {
    background-color: #2c3e50;
}
.bg-sun-flower {
    background-color: #f1c40f;
}
.bg-orange {
    background-color: #f39c12;
}
.bg-carrot {
    background-color: #e67e22;
}
.bg-pumpkin {
    background-color: #d35400;
}
.bg-alizarin {
    background-color: #e74c3c;
}
.bg-pomegranate {
    background-color: #c0392b;
}
.bg-clouds {
    background-color: #ecf0f1;
}
.bg-silver {
    background-color: #bfbfbf;
}
.bg-concrete {
    background-color: #95a5a6;
}
.bg-asbestos {
    background-color: #7f8c8d;
}
.bg-social-pinterest {
    background-color: #cb2028;
}
.bg-social-linkedin {
    background-color: #0072b5;
}
.bg-social-stumbleupon {
    background-color: #ed4a13;
}
.bg-social-googleplus {
    background-color: #2d2d2d;
}
.bg-social-facebook {
    background-color: #2f4b93;
}
.bg-social-twitter {
    background-color: #00bdef;
}
.bg-foreign-crimson {
    background-color: #c91f37;
}
.bg-red-orange {
    background-color: #dc3023;
}
.bg-cochineal-red {
    background-color: #9d2933;
}
.bg-monza {
    background-color: #cf000f;
}
.bg-brewed-mustard-brown {
    background-color: #e68364;
}
.bg-scarlet {
    background-color: #cf3a24;
}
.bg-pure-crimson {
    background-color: #c3272b;
}
.bg-true-red {
    background-color: #8f1d21;
}
.bg-chestnut-rose {
    background-color: #d24d57;
}
.bg-one-kin-dye {
    background-color: #f08f90;
}
.bg-peach {
    background-color: #f47983;
}
.bg-red-plum {
    background-color: #db5a6b;
}
.bg-medium-crimson {
    background-color: #c93756;
}
.bg-cherry-blossom {
    background-color: #fcc9b9;
}
.bg-washed-out-crimson {
    background-color: #ffb3a7;
}
.bg-radical-red {
    background-color: #f62459;
}
.bg-ibis-wing {
    background-color: #f58f84;
}
.bg-wisteria-purple {
    background-color: #875f9a;
}
.bg-bellflower {
    background-color: #5d3f6a;
}
.bg-iris {
    background-color: #763568;
}
.bg-tatarian-aster {
    background-color: #8d608c;
}
.bg-thin {
    background-color: #a87ca0;
}
.bg-violet {
    background-color: #5b3256;
}
.bg-medium-purple {
    background-color: #bf55ec;
}
.bg-studio {
    background-color: #8e44ad;
}
.bg-light-wisteria {
    background-color: #be90d4;
}
.bg-sky {
    background-color: #4d8fac;
}
.bg-ultramarine {
    background-color: #5d8cae;
}
.bg-picton-blue {
    background-color: #59abe3;
}
.bg-dodger-blue {
    background-color: #19b5fe;
}
.bg-picton-blue {
    background-color: #59abe3;
}
.bg-light-blue {
    background-color: #48929b;
}
.bg-thousand-herb {
    background-color: #317589;
}
.bg-jordy-blue {
    background-color: #89c4f4;
}
.bg-steel-blue {
    background-color: #4b77be;
}
.bg-lapis-lazuli {
    background-color: #1f4788;
}
.bg-navy-blue {
    background-color: #003171;
}
.bg-hanada {
    background-color: #044f67;
}
.bg-indigo {
    background-color: #264348;
}
.bg-siskin-sprout-yellow {
    background-color: #7a942e;
}
.bg-young-green-onion {
    background-color: #8db255;
}
.bg-fresh-onion {
    background-color: #5b8930;
}
.bg-young-bamboo {
    background-color: #6b9362;
}
.bg-patina {
    background-color: #407a52;
}
.bg-green-bamboo {
    background-color: #006442;
}
.bg-gossip {
    background-color: #87d37c;
}
.bg-eucalyptus {
    background-color: #26a65b;
}
.bg-jungle-green {
    background-color: #2abb9b;
}
.bg-observatory {
    background-color: #049372;
}
.bg-jungle-green {
    background-color: #2abb9b;
}
.bg-mountain-meadow {
    background-color: #16a085;
}
.bg-free-speech-aquamarine {
    background-color: #03a678;
}
.bg-ocean-green {
    background-color: #4daf7c;
}
.bg-patrinia-flowers {
    background-color: #d9b611;
}
.bg-amur-cork-tree {
    background-color: #f3c13a;
}
.bg-ripe-lemon {
    background-color: #f7ca18;
}
.bg-japanese-triandra-grass {
    background-color: #e2b13c;
}
.bg-rapeseed-oil {
    background-color: #a17917;
}
.bg-cream-can {
    background-color: #f5d76e;
}
.bg-saffron {
    background-color: #f4d03f;
}
.bg-bright-golden-yellow {
    background-color: #ffa400;
}
.bg-sumac-dyed {
    background-color: #e08a1e;
}
.bg-gamboge {
    background-color: #ffb61e;
}
.bg-corn {
    background-color: #faa945;
}
.bg-egg {
    background-color: #ffa631;
}
.bg-floral-leaf {
    background-color: #ffb94e;
}
.bg-golden-fallen-leaves {
    background-color: #e29c45;
}
.bg-ecstasy {
    background-color: #f9690e;
}
.bg-amber {
    background-color: #ca6924;
}
.bg-lightning-yellow {
    background-color: #f5ab35;
}
.bg-silver {
    background-color: #bfbfbf;
}
.bg-cararra {
    background-color: #f2f1ef;
}
.bg-silver-sand {
    background-color: #bdc3c7;
}
.bg-porcelain {
    background-color: #ecf0f1;
}
.bg-pumice {
    background-color: #d2d7d3;
}
.bg-harbor-rat {
    background-color: #757d75;
}
.bg-gallery {
    background-color: #eeeeee;
}
.bg-edward {
    background-color: #abb7b7;
}
.bg-lynch {
    background-color: #6c7a89;
}
.bg-cascade {
    background-color: #95a5a6;
}
.text-white {
    color: #ffffff;
}
.text-danger {
    color: #ff5454;
}
.text-warning {
    color: #fabb3d;
}
.text-primary {
    color: #337198;
}
.text-info {
    color: #67c2ef;
}
.text-success {
    color: #79c447;
}
.text-green {
    color: #00CE6F;
}
.text-blue {
    color: #1968FB;
}
.text-purple {
    color: #A95DF0;
}
.text-red {
    color: #DB0630;
}
.text-brown {
    color: #B94A00;
}
.text-turquoise {
    color: #1abc9c;
}
.text-green-sea {
    color: #16a085;
}
.text-emerald {
    color: #2ecc71;
}
.text-nephritis {
    color: #27ae60;
}
.text-peter-river {
    color: #3498db;
}
.text-belize-hole {
    color: #2980b9;
}
.text-amethyst {
    color: #9b59b6;
}
.text-wisteria {
    color: #9b59b6;
}
.text-wet-asphalt {
    color: #34495e;
}
.text-midnight-blue {
    color: #2c3e50;
}
.text-sun-flower {
    color: #f1c40f;
}
.text-orange {
    color: #f39c12;
}
.text-carrot {
    color: #e67e22;
}
.text-pumpkin {
    color: #d35400;
}
.text-alizarin {
    color: #e74c3c;
}
.text-pomegranate {
    color: #c0392b;
}
.text-clouds {
    color: #ecf0f1;
}
.text-silver {
    color: #bfbfbf;
}
.text-concrete {
    color: #95a5a6;
}
.text-asbestos {
    color: #7f8c8d;
}
.text-social-pinterest {
    color: #cb2028;
}
.text-social-linkedin {
    color: #0072b5;
}
.text-social-stumbleupon {
    color: #ed4a13;
}
.text-social-googleplus {
    color: #2d2d2d;
}
.text-social-facebook {
    color: #2f4b93;
}
.text-social-twitter {
    color: #00bdef;
}
.text-foreign-crimson {
    color: #c91f37;
}
.text-red-orange {
    color: #dc3023;
}
.text-cochineal-red {
    color: #9d2933;
}
.text-monza {
    color: #cf000f;
}
.text-brewed-mustard-brown {
    color: #e68364;
}
.text-scarlet {
    color: #cf3a24;
}
.text-pure-crimson {
    color: #c3272b;
}
.text-true-red {
    color: #8f1d21;
}
.text-chestnut-rose {
    color: #d24d57;
}
.text-one-kin-dye {
    color: #f08f90;
}
.text-peach {
    color: #f47983;
}
.text-red-plum {
    color: #db5a6b;
}
.text-medium-crimson {
    color: #c93756;
}
.text-cherry-blossom {
    color: #fcc9b9;
}
.text-washed-out-crimson {
    color: #ffb3a7;
}
.text-radical-red {
    color: #f62459;
}
.text-ibis-wing {
    color: #f58f84;
}
.text-wisteria-purple {
    color: #875f9a;
}
.text-bellflower {
    color: #5d3f6a;
}
.text-iris {
    color: #763568;
}
.text-tatarian-aster {
    color: #8d608c;
}
.text-thin {
    color: #a87ca0;
}
.text-violet {
    color: #5b3256;
}
.text-medium-purple {
    color: #bf55ec;
}
.text-studio {
    color: #8e44ad;
}
.text-light-wisteria {
    color: #be90d4;
}
.text-sky {
    color: #4d8fac;
}
.text-ultramarine {
    color: #5d8cae;
}
.text-picton-blue {
    color: #59abe3;
}
.text-dodger-blue {
    color: #19b5fe;
}
.text-picton-blue {
    color: #59abe3;
}
.text-light-blue {
    color: #48929b;
}
.text-thousand-herb {
    color: #317589;
}
.text-jordy-blue {
    color: #89c4f4;
}
.text-steel-blue {
    color: #4b77be;
}
.text-lapis-lazuli {
    color: #1f4788;
}
.text-navy-blue {
    color: #003171;
}
.text-hanada {
    color: #044f67;
}
.text-indigo {
    color: #264348;
}
.text-siskin-sprout-yellow {
    color: #7a942e;
}
.text-young-green-onion {
    color: #8db255;
}
.text-fresh-onion {
    color: #5b8930;
}
.text-young-bamboo {
    color: #6b9362;
}
.text-patina {
    color: #407a52;
}
.text-green-bamboo {
    color: #006442;
}
.text-gossip {
    color: #87d37c;
}
.text-eucalyptus {
    color: #26a65b;
}
.text-jungle-green {
    color: #2abb9b;
}
.text-observatory {
    color: #049372;
}
.text-jungle-green {
    color: #2abb9b;
}
.text-mountain-meadow {
    color: #16a085;
}
.text-free-speech-aquamarine {
    color: #03a678;
}
.text-ocean-green {
    color: #4daf7c;
}
.text-patrinia-flowers {
    color: #d9b611;
}
.text-amur-cork-tree {
    color: #f3c13a;
}
.text-ripe-lemon {
    color: #f7ca18;
}
.text-japanese-triandra-grass {
    color: #e2b13c;
}
.text-rapeseed-oil {
    color: #a17917;
}
.text-cream-can {
    color: #f5d76e;
}
.text-saffron {
    color: #f4d03f;
}
.text-bright-golden-yellow {
    color: #ffa400;
}
.text-sumac-dyed {
    color: #e08a1e;
}
.text-gamboge {
    color: #ffb61e;
}
.text-corn {
    color: #faa945;
}
.text-egg {
    color: #ffa631;
}
.text-floral-leaf {
    color: #ffb94e;
}
.text-golden-fallen-leaves {
    color: #e29c45;
}
.text-ecstasy {
    color: #f9690e;
}
.text-amber {
    color: #ca6924;
}
.text-lightning-yellow {
    color: #f5ab35;
}
.text-silver {
    color: #bfbfbf;
}
.text-cararra {
    color: #f2f1ef;
}
.text-silver-sand {
    color: #bdc3c7;
}
.text-porcelain {
    color: #ecf0f1;
}
.text-pumice {
    color: #d2d7d3;
}
.text-harbor-rat {
    color: #757d75;
}
.text-gallery {
    color: #eeeeee;
}
.text-edward {
    color: #abb7b7;
}
.text-lynch {
    color: #6c7a89;
}
.text-cascade {
    color: #95a5a6;
}
.border-color-white {
    border-color: #ffffff;
}
.border-color-danger {
    border-color: #ff5454;
}
.border-color-warning {
    border-color: #fabb3d;
}
.border-color-primary {
    border-color: #20a8d8;
}
.border-color-info {
    border-color: #67c2ef;
}
.border-color-success {
    border-color: #79c447;
}
.border-color-green {
    border-color: #00CE6F;
}
.border-color-blue {
    border-color: #1968FB;
}
.border-color-purple {
    border-color: #A95DF0;
}
.border-color-red {
    border-color: #DB0630;
}
.border-color-brown {
    border-color: #B94A00;
}
.border-color-turquoise {
    border-color: #1abc9c;
}
.border-color-green-sea {
    border-color: #16a085;
}
.border-color-emerald {
    border-color: #2ecc71;
}
.border-color-nephritis {
    border-color: #27ae60;
}
.border-color-peter-river {
    border-color: #3498db;
}
.border-color-belize-hole {
    border-color: #2980b9;
}
.border-color-amethyst {
    border-color: #9b59b6;
}
.border-color-wisteria {
    border-color: #9b59b6;
}
.border-color-wet-asphalt {
    border-color: #34495e;
}
.border-color-midnight-blue {
    border-color: #2c3e50;
}
.border-color-sun-flower {
    border-color: #f1c40f;
}
.border-color-orange {
    border-color: #f39c12;
}
.border-color-carrot {
    border-color: #e67e22;
}
.border-color-pumpkin {
    border-color: #d35400;
}
.border-color-alizarin {
    border-color: #e74c3c;
}
.border-color-pomegranate {
    border-color: #c0392b;
}
.border-color-clouds {
    border-color: #ecf0f1;
}
.border-color-silver {
    border-color: #bfbfbf;
}
.border-color-concrete {
    border-color: #95a5a6;
}
.border-color-asbestos {
    border-color: #7f8c8d;
}
.border-color-social-pinterest {
    border-color: #cb2028;
}
.border-color-social-linkedin {
    border-color: #0072b5;
}
.border-color-social-stumbleupon {
    border-color: #ed4a13;
}
.border-color-social-googleplus {
    border-color: #2d2d2d;
}
.border-color-social-facebook {
    border-color: #2f4b93;
}
.border-color-social-twitter {
    border-color: #00bdef;
}
.border-color-foreign-crimson {
    border-color: #c91f37;
}
.border-color-red-orange {
    border-color: #dc3023;
}
.border-color-cochineal-red {
    border-color: #9d2933;
}
.border-color-monza {
    border-color: #cf000f;
}
.border-color-brewed-mustard-brown {
    border-color: #e68364;
}
.border-color-scarlet {
    border-color: #cf3a24;
}
.border-color-pure-crimson {
    border-color: #c3272b;
}
.border-color-true-red {
    border-color: #8f1d21;
}
.border-color-chestnut-rose {
    border-color: #d24d57;
}
.border-color-one-kin-dye {
    border-color: #f08f90;
}
.border-color-peach {
    border-color: #f47983;
}
.border-color-red-plum {
    border-color: #db5a6b;
}
.border-color-medium-crimson {
    border-color: #c93756;
}
.border-color-cherry-blossom {
    border-color: #fcc9b9;
}
.border-color-washed-out-crimson {
    border-color: #ffb3a7;
}
.border-color-radical-red {
    border-color: #f62459;
}
.border-color-ibis-wing {
    border-color: #f58f84;
}
.border-color-wisteria-purple {
    border-color: #875f9a;
}
.border-color-bellflower {
    border-color: #5d3f6a;
}
.border-color-iris {
    border-color: #763568;
}
.border-color-tatarian-aster {
    border-color: #8d608c;
}
.border-color-thin {
    border-color: #a87ca0;
}
.border-color-violet {
    border-color: #5b3256;
}
.border-color-medium-purple {
    border-color: #bf55ec;
}
.border-color-studio {
    border-color: #8e44ad;
}
.border-color-light-wisteria {
    border-color: #be90d4;
}
.border-color-sky {
    border-color: #4d8fac;
}
.border-color-ultramarine {
    border-color: #5d8cae;
}
.border-color-picton-blue {
    border-color: #59abe3;
}
.border-color-dodger-blue {
    border-color: #19b5fe;
}
.border-color-picton-blue {
    border-color: #59abe3;
}
.border-color-light-blue {
    border-color: #48929b;
}
.border-color-thousand-herb {
    border-color: #317589;
}
.border-color-jordy-blue {
    border-color: #89c4f4;
}
.border-color-steel-blue {
    border-color: #4b77be;
}
.border-color-lapis-lazuli {
    border-color: #1f4788;
}
.border-color-navy-blue {
    border-color: #003171;
}
.border-color-hanada {
    border-color: #044f67;
}
.border-color-indigo {
    border-color: #264348;
}
.border-color-siskin-sprout-yellow {
    border-color: #7a942e;
}
.border-color-young-green-onion {
    border-color: #8db255;
}
.border-color-fresh-onion {
    border-color: #5b8930;
}
.border-color-young-bamboo {
    border-color: #6b9362;
}
.border-color-patina {
    border-color: #407a52;
}
.border-color-green-bamboo {
    border-color: #006442;
}
.border-color-gossip {
    border-color: #87d37c;
}
.border-color-eucalyptus {
    border-color: #26a65b;
}
.border-color-jungle-green {
    border-color: #2abb9b;
}
.border-color-observatory {
    border-color: #049372;
}
.border-color-jungle-green {
    border-color: #2abb9b;
}
.border-color-mountain-meadow {
    border-color: #16a085;
}
.border-color-free-speech-aquamarine {
    border-color: #03a678;
}
.border-color-ocean-green {
    border-color: #4daf7c;
}
.border-color-patrinia-flowers {
    border-color: #d9b611;
}
.border-color-amur-cork-tree {
    border-color: #f3c13a;
}
.border-color-ripe-lemon {
    border-color: #f7ca18;
}
.border-color-japanese-triandra-grass {
    border-color: #e2b13c;
}
.border-color-rapeseed-oil {
    border-color: #a17917;
}
.border-color-cream-can {
    border-color: #f5d76e;
}
.border-color-saffron {
    border-color: #f4d03f;
}
.border-color-bright-golden-yellow {
    border-color: #ffa400;
}
.border-color-sumac-dyed {
    border-color: #e08a1e;
}
.border-color-gamboge {
    border-color: #ffb61e;
}
.border-color-corn {
    border-color: #faa945;
}
.border-color-egg {
    border-color: #ffa631;
}
.border-color-floral-leaf {
    border-color: #ffb94e;
}
.border-color-golden-fallen-leaves {
    border-color: #e29c45;
}
.border-color-ecstasy {
    border-color: #f9690e;
}
.border-color-amber {
    border-color: #ca6924;
}
.border-color-lightning-yellow {
    border-color: #f5ab35;
}
.border-color-silver {
    border-color: #bfbfbf;
}
.border-color-cararra {
    border-color: #f2f1ef;
}
.border-color-silver-sand {
    border-color: #bdc3c7;
}
.border-color-porcelain {
    border-color: #ecf0f1;
}
.border-color-pumice {
    border-color: #d2d7d3;
}
.border-color-harbor-rat {
    border-color: #757d75;
}
.border-color-gallery {
    border-color: #eeeeee;
}
.border-color-edward {
    border-color: #abb7b7;
}
.border-color-lynch {
    border-color: #6c7a89;
}
.border-color-cascade {
    border-color: #95a5a6;
}
.menu-acesso {}
.menu-acesso a,
.menu-acesso img,
.menu-acesso span {
    display: block;
}
.menu-acesso a {
    padding: 15px;
    float: left;
    min-height: 120px;
    text-align: center;
    color: #333;
    text-decoration: none;
    margin-bottom: 15px;
}
.menu-acesso img {
    min-height: 64px;
    max-height: 64px;
    margin: 0 auto;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    filter: gray;
    -webkit-transition: all .2s ease;
}
.menu-acesso a:hover img {
    filter: grayscale(0%);
    -webkit-filter: grayscale(0%);
    filter: none;
}
.menu-acesso>a>span {
    position: relative;
    height: 60px;
    overflow: hidden;
}
.menu-acesso span span {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translate(0, -50%);
}

/* 
 Pra dispositivos que tem uma largura mínima de 768 pixels. Tablets, por exemplo.
*/
@media screen and (max-width: 767px) {
    .menu-acesso a {
        width: 25%;
    }
    
    .menu-acesso img {
        min-height: 36px;
        max-height: 36px;
    }
}

/* 
 Pra dispositivos que tem uma largura mínima de 768 pixels. Tablets, por exemplo.
*/
@media screen and (min-width: 768px) {
    .menu-acesso a {
        width: 20%;
    }
    
    .menu-acesso img {
        min-height: 48px;
        max-height: 48px;
    }
}

/* 
 Com uma largura mínima de 992 pixels. Monitores por exemplo.
*/
@media screen and (min-width: 992px) {
    .menu-acesso a {
        width: 12.5%;
        min-height: 140px;
    }
    
    .menu-acesso img {
        min-height: 56px;
        max-height: 56px;
    }
}

/* 
 Dispositivos com largura mínima de 1200 pixels. Por exemplo TVs.
*/
@media screen and (min-width: 1200px) {
    .menu-acesso a {
        width: 10%;
    }
    
    .info-box .valor {
        margin-top: 10px;
        font-size: 30px;
    }
}

/*
 * CSS Styles that are needed by jScrollPane for it to operate correctly.
 *
 * Include this stylesheet in your site or copy and paste the styles below into your stylesheet - jScrollPane
 * may not operate correctly without them.
 */
.jspContainer {
    overflow: hidden;
    position: relative;
}
.jspPane {
    position: absolute;
}
.jspVerticalBar {
    position: absolute;
    top: 0;
    right: 0;
    width: 16px;
    collapse-link height: 100%;
    background: red;
}
.jspHorizontalBar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 16px;
    background: red;
}
.jspCap {
    display: none;
}
.jspHorizontalBar .jspCap {
    float: left;
}
.jspTrack {
    background: #dde;
    position: relative;
}
.jspDrag {
    background: #bbd;
    position: relative;
    top: 0;
    left: 0;
    cursor: pointer;
}
.jspHorizontalBar .jspTrack,
.jspHorizontalBar .jspDrag {
    float: left;
    height: 100%;
}
.jspArrow {
    background: #50506d;
    text-indent: -20000px;
    display: block;
    cursor: pointer;
    padding: 0;
    margin: 0;
}
.jspArrow.jspDisabled {
    cursor: default;
    background: #80808d;
}
.jspVerticalBar .jspArrow {
    height: 16px;
}
.jspHorizontalBar .jspArrow {
    width: 16px;
    float: left;
    height: 100%;
}
.jspVerticalBar .jspArrow:focus {
    outline: none;
}
.jspCorner {
    background: #eeeef4;
    float: left;
    height: 100%;
}

/* Yuk! CSS Hack for IE6 3 pixel bug :( */
* html .jspCorner {
    margin: 0 -3px 0 0;
}
.jspVerticalBar {
    width: 6px;
    background: transparent;
}
.jspTrack {
    background: #eee;
    border-radius: 3px;
}
.jspDrag {
    background: #999;
    width: 6px;
    border-radius: 3px;
}
.table-lg th,
.table-lg td {
    font-size: 130%;
}
.table-lg td {
    height: 30px;
    line-height: 30px !important;
}
.table-fixed {
    table-layout: fixed;
}
.table>tbody>tr>td {
    vertical-align: middle;
}
.collapse-link:hover {
    cursor: pointer;
}
.simple-menu {
    padding: 0;
}
.simple-menu a,
.simple-menu .link {
    background: #F8F8F8;
    display: block;
    padding: 15px 15px;
    line-height: 1;
    font-size: 13px;
    border-right: 1px solid #ddd;
    text-decoration: none;
    color: #555;
    margin: 0;
    box-sizing: border-box;
    float: left;
    text-align: center;
}
.simple-menu a i,
.simple-menu .link i {
    color: #111;
}
.simple-menu a:first-child,
.simple-menu .link:first-child {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}
.simple-menu a:last-child,
.simple-menu .link:last-child {
    border-right: 0 none;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}
.simple-menu a:hover,
.simple-menu .link:hover {
    background: #E3E3E3;
}
@media screen and (max-width: 1400px) {
    .simple-menu a,
    .simple-menu .link {
        text-align: center;
        padding: 10px 0;
    }
    
    .simple-menu a *,
    .simple-menu .link * {
        display: block;
        text-align: center;
        width: 100%;
        overflow: hidden;
        white-space: nowrap;
    }
    
    .simple-menu a i,
    .simple-menu .link i {
        font-size: 16px;
        margin-bottom: 5px;
    }
}

/*QIE1836U -> RP75*/
.wrapper-atalhos-usuarios {
    height: 50px !important;
    padding-right: 20px;
}
.dropdown {
    display: inline-block;
    height: 36px;
}
.dropdown-menu.menu-atalhos-usuario {
    width: 362px;
    padding: 10px 0 0 !important;
    margin: 0;
    background-color: #fff;
    border-radius: 4px;
    overflow: hidden;
    display: none;
    z-index: 1000;
    transform: translate(-160px, 0);
}
.dropdown-menu.menu-atalhos-usuario li {
    float: left;
    width: 60px;
    margin: 0 0 10px 10px;
    display: block;
}
.dropdown-menu.menu-atalhos-usuario li a {
    padding: 0 !important;
    border-radius: 4px;
    display: block;
}
.dropdown-menu.menu-atalhos-usuario li a:hover {
    background: #555;
}
.dropdown-menu.menu-atalhos-usuario li span {
    display: table-cell;
    width: 60px;
    height: 60px;
    text-align: center;
    vertical-align: middle;
}
.dropdown-menu.menu-atalhos-usuario li img {
    max-width: 42px;
    max-height: 42px;
}
.menu-atalhos-usuario-tooltip {
    display: none;
    position: absolute;
    background-color: #161616;
    border-radius: 4px;
    padding: 5px 10px;
    margin: 0;
    color: #fff;
    font-size: 12px arial;
    z-index: 1000;
    text-align: center;
    opacity: 0.8;
}
.dropdown:hover .dropdown-menu.menu-atalhos-usuario {
    display: block;
}
.menu-atalhos-usuario-action img {
    max-width: 32px;
    max-height: 32px;
}
.legendas-programa {
    list-style: none;
    padding: 0;
    margin: 0;
}
.legendas-programa li,
.legendas-programa li * {
    line-height: 30px;
}
.legendas-programa li {
    margin-bottom: 10px;
}
.legendas-programa li:last-child {
    margin-bottom: 0;
}
.legendas-programa .legend {
    display: inline-block;
    width: 30px;
    height: 30px;
    float: left;
    margin-right: 10px;
    text-align: center;
    font-size: 20px;
}
.menu-acoes-header li {
    float: left;
}
.menu-acoes-header a {
    color: #fff !important;
    width: 35px;
    height: 35px;
    line-height: 35px;
    display: block;
    text-align: center;
    border-left: 1px solid #484848;
}
.menu-acoes-header a:hover,
.menu-acoes-header a:focus,
.menu-acoes-header a:active {
    background: #484848;
    background: #eee;
    color: #444 !important;
}
.menu-acoes-header a i {
    line-height: 35px;
    font-size: 13px;
}
.menu-acoes-header li {
    float: left;
}
.menu-acoes-header a {
    color: #fff !important;
    width: 35px;
    height: 35px;
    line-height: 35px;
    display: block;
    text-align: center;
    border-left: 1px solid #484848;
}
.menu-acoes-header a:hover,
.menu-acoes-header a:focus,
.menu-acoes-header a:active {
    background: #484848;
    background: #eee;
    color: #444 !important;
}
.menu-acoes-header a i {
    line-height: 35px;
    font-size: 13px;
}
body form[name="form_exportacao"],
body form[name="form_exportacao"] * {
    font-size: 11px !important;
    line-height: 1.4 !important;
}
body form[name="form_exportacao"] input[type="text"] {
    padding: 2px !important;
    height: 20px !important;
    line-height: 20px !important;
    border-radius: 2px !important;
}
.wrapper-page {
    margin: 0 auto;
    position: relative;
    width: 420px;
    padding: 5% 0;
}
.card-box {
    padding: 15px;
    box-shadow: 0 0px 8px 0 rgba(0, 0, 0, 0.06), 0 1px 0px 0 rgba(0, 0, 0, 0.02);
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    background-clip: padding-box;
    margin-bottom: 15px;
    background-color: #ffffff;
}
.login .card-box .panel-body input {
    height: 60px;
    line-height: 60px;
    padding: 10px;
}
.bg-full {
    visibility: visible;
    background-color: #ebeff2;
}

/* Header Novo */
.menuAcoes li a i {
    color: #FFF;
    font-size: 14px;
    opacity: 0.9;
}
.menuAcoes li a i:hover {
    opacity: 1;
}
.barra-cor-empresa {
    height: 6px;
}
.header-novo .logo img {
    max-height: 30px;
    margin: 2px 0 0;
}
.header-novo .titulo {
    margin: 12px 0 0;
    font-weight: bold;
    font-size: 20px;
    color: #363636;
}
.header-novo .col-md-3 li a i {
    font-size: 18px;
    color: #000;
    opacity: 0.8;
    cursor: pointer;
}
.header-novo .col-md-3 li a i:hover {
    opacity: 1;
}
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #EBEFF2;
    padding: 5px 0;
    border-top: 1px solid #E4E9EE
}
html,
body {
    height: 100%;
    min-height: 100%;
}
body {
    padding-bottom: 35px;
}
body > form {
    padding-bottom: 35px;
}
.separator {
    padding: 5px 10px;
    border-bottom: 1px solid #c8ced4;
    font-weight: bold;
    font-size: 15px !important;
    text-transform: uppercase;
    color: #337198;
    text-align: left;
    margin: 25px 10px 15px;
}
.a6 label {
    font-weight: bold;
    color: #777 !important;
}
body .te {
    margin-top: 0 !important;
}
body th,
body td {
    padding: 3px !important;
}
body input,
body textarea,
body select {
    font-weight: normal !important;
}
body input[type="text"],
body input[type="password"],
body select {
    height: 30px;
    line-height: 30px;
}
body input[type="text"],
body input[type="password"],
body textarea {
    padding: 0 5px;
    margin: 0;
    outline: none;
    border: 1px solid #CBCACA;
    border-radius: 4px;
}
body textarea,
body input:focus {
    background-color: #E0FFFF;
    border: 1px solid #607D8B;
}
.span_link a {
    color: #87ABC6 !important;
    text-decoration: none !important;
    display: inline-block;
}
.span_link a i {
    font-size: 20px;
    padding: 6px 7px;
    margin-left: 3px;
    width: inherit;
    color: #4C4C4C;
}
.span_link a:hover i,
.span_link a:active i,
.span_link a:focus i {
    background-color: #F4F7F9;
    border-radius: 3px;
}
.fa-calendar {
    color: #4C4C4C;
    font-size: 15px;
    margin-left: -7px;
    margin-right: 5px;
    width: inherit;
}
.fa-calendar {
    cursor: pointer;
}
.line-data {
    font-size: 10px;
}
.par {
    background-color: #DDD;
    border-bottom: 1px solid #D0D0D0;
}
.imp {
    background-color: #FFF;
    border-bottom: 1px solid #FDF2EE;
}
.border-none {
    border: none;
}
.link-fa {
    padding: 0 5px 5px;
    color: #363636;
    opacity: 0.9;
    font-size: 20px;
}
.link-fa:hover {
    opacity: 1;
    cursor: pointer;
}
.atalhos-homePage {
    max-width: 70%;
    margin: 40px 25px 25px;
    padding: 20px;
    border-radius: 5px;
    border: 1px solid #ddd;
    background-color: #fff;
}
.atalhos-homePage p {
    font-size: 16px;
    color: #363636;
}
.atalhos-homePage ul {
    margin: 0;
    padding: 0;
    width: 800px;
}
.atalhos-homePage li {
    vertical-align: top;
    display: inline-block !important;
    width: 120px;
    margin-bottom: 20px;
}
.lista-atalhos li i {
    font-size: 600%;
}
.hr-separator-list {
    width: 150px;
    margin: 5px auto;
}
.lista_notas li a {
    color: #4C4C4C;
    cursor: pointer;
}
.trocar-empresa a {
    color: #363636;
    opacity: 0.9;
}
.trocar-empresa a:hover {
    text-decoration: none;
    color: #363636;
    opacity: 1;
}
.btn-success,
.btn-warning,
.btn-danger {
    color: #FFF !important;
}
.box-atividade {
    width: 300px;
}
.bootstrap-dialog.type-primary .modal-header {
    background-color: #4F4F4F;
}
@media (min-width: 768px) {
    .modal-dialog {
        margin: 60px auto;
    }
}

/*!
 * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select)
 *
 * Copyright 2013-2017 bootstrap-select
 * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE)
 */
select.bs-select-hidden,
select.selectpicker {
    display: none!important
}
.bootstrap-select {
    width: 220px\9
}
.bootstrap-select>.dropdown-toggle {
    width: 100%;
    padding-right: 25px;
    z-index: 1
}
.bootstrap-select>.dropdown-toggle.bs-placeholder,
.bootstrap-select>.dropdown-toggle.bs-placeholder:active,
.bootstrap-select>.dropdown-toggle.bs-placeholder:focus,
.bootstrap-select>.dropdown-toggle.bs-placeholder:hover {
    color: #999
}
.bootstrap-select>select {
    position: absolute!important;
    bottom: 0;
    left: 50%;
    display: block!important;
    width: .5px!important;
    height: 100%!important;
    padding: 0!important;
    opacity: 0!important;
    border: none
}
.bootstrap-select>select.mobile-device {
    top: 0;
    left: 0;
    display: block!important;
    width: 100%!important;
    z-index: 2
}
.error .bootstrap-select .dropdown-toggle,
.has-error .bootstrap-select .dropdown-toggle {
    border-color: #b94a48
}
.bootstrap-select.fit-width {
    width: auto!important
}
.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    width: 220px
}
.bootstrap-select .dropdown-toggle:focus {
    outline: thin dotted #333!important;
    outline: 5px auto -webkit-focus-ring-color!important;
    outline-offset: -2px
}
.bootstrap-select.form-control {
    margin-bottom: 0;
    padding: 0;
    border: none
}
.bootstrap-select.form-control:not([class*=col-]) {
    width: 100%
}
.bootstrap-select.form-control.input-group-btn {
    z-index: auto
}
.bootstrap-select.form-control.input-group-btn:not(:first-child):not(:last-child)>.btn {
    border-radius: 0
}
.bootstrap-select.btn-group:not(.input-group-btn),
.bootstrap-select.btn-group[class*=col-] {
    float: none;
    display: inline-block;
    margin-left: 0
}
.bootstrap-select.btn-group.dropdown-menu-right,
.bootstrap-select.btn-group[class*=col-].dropdown-menu-right,
.row .bootstrap-select.btn-group[class*=col-].dropdown-menu-right {
    float: right
}
.form-group .bootstrap-select.btn-group,
.form-horizontal .bootstrap-select.btn-group,
.form-inline .bootstrap-select.btn-group {
    margin-bottom: 0
}
.form-group-lg .bootstrap-select.btn-group.form-control,
.form-group-sm .bootstrap-select.btn-group.form-control {
    padding: 0
}
.form-group-lg .bootstrap-select.btn-group.form-control .dropdown-toggle,
.form-group-sm .bootstrap-select.btn-group.form-control .dropdown-toggle {
    height: 100%;
    font-size: inherit;
    line-height: inherit;
    border-radius: inherit
}
.form-inline .bootstrap-select.btn-group .form-control {
    width: 100%
}
.bootstrap-select.btn-group.disabled,
.bootstrap-select.btn-group>.disabled {
    cursor: not-allowed
}
.bootstrap-select.btn-group.disabled:focus,
.bootstrap-select.btn-group>.disabled:focus {
    outline: 0!important
}
.bootstrap-select.btn-group.bs-container {
    position: absolute;
    height: 0!important;
    padding: 0!important
}
.bootstrap-select.btn-group.bs-container .dropdown-menu {
    z-index: 1060
}
.bootstrap-select.btn-group .dropdown-toggle .filter-option {
    display: inline-block;
    overflow: hidden;
    width: 100%;
    text-align: left
}
.bootstrap-select.btn-group .dropdown-toggle .caret {
    position: absolute;
    top: 50%;
    right: 12px;
    margin-top: -2px;
    vertical-align: middle
}
.bootstrap-select.btn-group[class*=col-] .dropdown-toggle {
    width: 100%
}
.bootstrap-select.btn-group .dropdown-menu {
    min-width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}
.bootstrap-select.btn-group .dropdown-menu.inner {
    position: static;
    float: none;
    border: 0;
    padding: 0;
    margin: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none
}
.bootstrap-select.btn-group .dropdown-menu li {
    position: relative
}
.bootstrap-select.btn-group .dropdown-menu li.active small {
    color: #fff
}
.bootstrap-select.btn-group .dropdown-menu li.disabled a {
    cursor: not-allowed
}
.bootstrap-select.btn-group .dropdown-menu li a {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}
.bootstrap-select.btn-group .dropdown-menu li a.opt {
    position: relative;
    padding-left: 2.25em
}
.bootstrap-select.btn-group .dropdown-menu li a span.check-mark {
    display: none
}
.bootstrap-select.btn-group .dropdown-menu li a span.text {
    display: inline-block
}
.bootstrap-select.btn-group .dropdown-menu li small {
    padding-left: .5em
}
.bootstrap-select.btn-group .dropdown-menu .notify {
    position: absolute;
    bottom: 5px;
    width: 96%;
    margin: 0 2%;
    min-height: 26px;
    padding: 3px 5px;
    background: #f5f5f5;
    border: 1px solid #e3e3e3;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
    pointer-events: none;
    opacity: .9;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}
.bootstrap-select.btn-group .no-results {
    padding: 3px;
    background: #f5f5f5;
    margin: 0 5px;
    white-space: nowrap
}
.bootstrap-select.btn-group.fit-width .dropdown-toggle .filter-option {
    position: static
}
.bootstrap-select.btn-group.fit-width .dropdown-toggle .caret {
    position: static;
    top: auto;
    margin-top: -1px
}
.bootstrap-select.btn-group.show-tick .dropdown-menu li.selected a span.check-mark {
    position: absolute;
    display: inline-block;
    right: 15px;
    margin-top: 5px
}
.bootstrap-select.btn-group.show-tick .dropdown-menu li a span.text {
    margin-right: 34px
}
.bootstrap-select.show-menu-arrow.open>.dropdown-toggle {
    z-index: 1061
}
.bootstrap-select.show-menu-arrow .dropdown-toggle:before {
    content: '';
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid rgba(204, 204, 204, .2);
    position: absolute;
    bottom: -4px;
    left: 9px;
    display: none
}
.bootstrap-select.show-menu-arrow .dropdown-toggle:after {
    content: '';
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #fff;
    position: absolute;
    bottom: -4px;
    left: 10px;
    display: none
}
.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:before {
    bottom: auto;
    top: -3px;
    border-top: 7px solid rgba(204, 204, 204, .2);
    border-bottom: 0
}
.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:after {
    bottom: auto;
    top: -3px;
    border-top: 6px solid #fff;
    border-bottom: 0
}
.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:before {
    right: 12px;
    left: auto
}
.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:after {
    right: 13px;
    left: auto
}
.bootstrap-select.show-menu-arrow.open>.dropdown-toggle:after,
.bootstrap-select.show-menu-arrow.open>.dropdown-toggle:before {
    display: block
}
.bs-actionsbox,
.bs-donebutton,
.bs-searchbox {
    padding: 4px 8px
}
.bs-actionsbox {
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}
.bs-actionsbox .btn-group button {
    width: 50%
}
.bs-donebutton {
    float: left;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}
.bs-donebutton .btn-group button {
    width: 100%
}
.bs-searchbox+.bs-actionsbox {
    padding: 0 8px 4px
}
.bs-searchbox .form-control {
    margin-bottom: 0;
    width: 100%;
    float: none
}
.header-novo .logo .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    width: inherit;
    min-width: inherit;
    width: 1px;
}
.header-novo .logo .bootstrap-select .dropdown-toggle {
    background: none;
    box-shadow: none;
    padding-right: 0;
    padding-left: 0;
    border: 0 none;
    outline: none;
    opacity: 0;
}
.header-novo .logo .bootstrap-select .dropdown-toggle .filter-option {
    display: none;
}
.header-novo .toggle-select {
    display: inline-block;
    cursor: pointer;
    padding: 3px;
}
.header-novo .logo img {
    max-height: 40px;
}
.atividades .btn-group>.btn:first-child {
    display: none;
}
.menu-acoes-nota {
    min-width: 230px;
    text-align: center;
}
.nav-itens {
    list-style: none;
    display: inline-block;
    padding: 0;
    margin: 0;
}
.nav-itens li {
    display: inline-block;
    position: relative;
}
.nav-itens>li>a:hover {
    color: #1F1F1F;
}
.nav-itens>li>a {
    display: inline-block;
    width: 40px;
    text-align: center;
    height: 30px;
    line-height: 30px;
}
.nav-itens>li>a>i {
    line-height: 30px;
    font-size: 16px;
}


.bootstrap-datetimepicker-widget {
    z-index: 10000;
}

.div-campos-fundo {
    position: relative;
    border-top: 1px solid #e1e1e1;
    border-bottom: 1px solid #e1e1e1;
    padding: 10px;
}

.dcfi-scroll-left,
.dcfi-scroll-right {
    position: absolute;
    top: 0;
    width: 20px;
    text-align: center;
    cursor: pointer;
    /*background: #ddd;*/
    height: 100%;
    overflow: hidden;
}

.dcfi-scroll-left {
    left: 0;
}
.dcfi-scroll-right {
    right: 0;
}

.dcfi-scroll-left span,
.dcfi-scroll-right span {
    background-color: #363636;
    width: 60px;
    height: 60px;
    font-size: 14px;
    position: absolute;
    top: 50%;
    margin-top: -30px;
    text-align: center;
    border-radius: 50%;
    z-index: 1900;
    color: #FFF;
    opacity: 0.9;
}

.dcfi-scroll-left span {
    margin-left: -50px;
}

.dcfi-scroll-right span {
    margin-left: -10px;
}

.dcfi-scroll-left span i,
.dcfi-scroll-right span i { 
    line-height: 60px;
}

.dcfi-scroll-left span i { 
    margin-left: 35px;
}

.dcfi-scroll-right span i { 
    margin-left: -35px;
}

.atalhos-homePage {
    max-width: 70%;
    margin: 40px 25px 25px;
    padding: 20px;
    border-radius: 5px;
    border: 1px solid #ddd;
    background-color: #fff;
}
.atalhos-homePage p {
    font-size: 16px;
    color: #363636;
}
.atalhos-homePage ul {
    margin: 0;
    padding: 0;
    width: 800px;
}
.atalhos-homePage li {
    vertical-align: top;
    display: inline-block !important;
    width: 120px;
    margin-bottom: 20px;
}
.lista-atalhos li i {
    font-size: 600%;
}
.div-abas-campos {
	height: 32px;
}
#busca_comando {
    color: #fff;
    background-color: #3c8dbc;
    border: 1px solid #367fa9;
    padding: 6px;
    border-radius: 3px;
    font-size: 11px;
}
.glyphicon:before{
    content: "\f00c" !important;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}