*{
    margin: 0px; 
    padding: 0px; 
    /*font-family: "Arial, Open Sans";*/
}
body {
    background: #ededed;
    color: #444;
}
a,
a:hover,
a:focus {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
}

.jumbotron {
  padding: 0.5rem 0.5rem;
  margin-bottom: 0.5rem;
  background-color: #e9ecef;
  border-radius: 0.3rem;
}

.navbar {
    /*padding: 10px 10px;*/
    background: #FFF;
    border: none;
    border-radius: 0;
    margin-bottom: 8px;
    color: #333;
    box-shadow: 1px 2px 10px #ccc;
}
.user-name{
    margin: 0px 50px;
}
.divLogin{
  position: absolute;
  left: 50%;
  top: 47%;
  transform: translate(-50%,-50%);
  -ms-transform:translate(-50%,-50%);
  background-color: #fff;
  padding-bottom: 50px;
  opacity: 0.9;
  border-radius: 0.3rem;
}
.divLogin img{
    max-width: 80%;
    margin-bottom: 15px;
    margin-top: 15px;
}
.divLogin .form-group {
  margin-bottom: 0.2rem;
}

.divLogin .form-group .btn{
  margin-top: 0.3rem;
}

table tbody tr td{
    font-size: 0.75rem;
}

.table .thead-light th {
  background-color: #d8d8d8;
  font-size:  0.85rem;
}

.tableFixHead{
    overflow-y: auto; 
    overflow-x: ellipsis;
    word-break: keep-all;
    /*white-space:nowrap;*/
}
.tableFixHead thead th{ 
    position: sticky; top: 0; 
}

.card {
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  margin-bottom: 10px;
  margin: 5px -10px;
}
.card-header {
  padding: 7px 15px;
}
.hide-field{
    display: none;
}

.btn-circle{
    border-radius: 50%;
}

.fundo-login{
  background: url(../../geral/img/fundo.png) no-repeat center center fixed;
  background-size: cover;
}

/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */

.wrapper {
    display: flex;
    width: 100%;
}

#sidebar {
    width: 220px;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 999;
    background: #fff;
    color: #555;
    transition: all 0.3s;
    box-shadow: 1px 2px 10px #ccc;
}
#sidebar.active {
    margin-left: -220px;
}

#sidebar .sidebar-header {
    padding: 10px;
    text-align: center;
}
#sidebar .sidebar-header img{
    max-width: 90%;
}

#sidebar ul.components {
    padding: 10px 0;
}

#sidebar ul p {
    color: #555;
    padding: 10px;
}

#sidebar ul li a {
    padding: 10px;
    font-size: 1em;
    display: block;
}

#sidebar ul li a:hover {
    color: #FFF;
    background: #e23002;
    /*color: inherit;*/
    /*background: rgba(200,200,200,0.9);*/
}

#sidebar ul li.active>a,
a[aria-expanded="true"] {
    color: #FFF;
    background: #e23002;
    /*color: inherit;
    background: rgba(200,200,200,0.9);*/    
}

a[data-toggle="collapse"] {
    position: relative;
}

.dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

ul ul a {
    font-size: 1em !important;
    padding-left: 20px !important;
    background: #FFF;
    /* background: #ededed; */
}

.container-fluid{
    padding-right: 20px;
    padding-left: 20px;
}

/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */

#content {
    width: calc(100% - 220px);
    min-height: 100vh;
    transition: all 0.3s;
    position: absolute;
    top: 0;
    right: 0;
}
#content.active {
    width: 100%;
}
#content p{
    margin-bottom: 0;
}
.box{
    background-color: #FFF;
    border-radius: 4px;
    border: 1px solid #ccc;
    position: relative;
    margin: 5px -8px;
    box-shadow: 1px 2px 10px #CCC;
}
.box-header{
    border-bottom: 1px solid #eee;
    border-radius: 4px 4px 0 0;
    padding: 7px 15px;
    /*font-size: 1.2rem;*/
    /*font-weight: bold;*/
    color: #139ed6;
    background-color: #f6f6f6;
}
.box-body{
    padding: 15px;
}
.box-blue{
    background-color: #00c0ef;
    color:#FFF;
    border-radius: 4px;
    border: 1px solid #ccc;
    position: relative;
    margin: 2px -6px;
    box-shadow: 1px 2px 10px #CCC;
}
.box-blue h1{
    display: inline;
}
.box-blue-footer{
    background-color: #00ccff;
    padding: 10px;
}
.box-green{
    background-color: #00a65a;
    color: #FFF;
    border-radius: 4px;
    border: 1px solid #ccc;
    position: relative;
    margin: 2px -6px;
    box-shadow: 1px 2px 10px #CCC;
}
.box-green-footer{
    background-color: #00aa5a;
    padding: 10px;
}
.box-green h1{
    display: inline;
}
.box-orange{
    background-color: #f39c12;
    color: #FFF;
    border-radius: 4px;
    border: 1px solid #ccc;
    position: relative;
    margin: 2px -6px;
    box-shadow: 1px 2px 10px #CCC;
}
.box-orange-footer{
    background-color: #f38e12;
    padding: 10px;
}
.box-orange h1{
    display: inline;
}

.font-azul{
    color: #139ed6;
}
/* ---------------------------------------------------
    MEDIAQUERIES
----------------------------------------------------- */

@media (max-width: 768px) {
    #sidebar {
        margin-left: -220px;
    }
    #sidebar.active {
        margin-left: 0;
    }
    #content {
        width: 100%;
    }
    #content.active {
        width: calc(100% - 220px);
    }
    #sidebarCollapse span {
        display: none;
    }
}

/* ---------------------------------------------------
    Alerts
----------------------------------------------------- */

.alert{
    position: absolute;
    top: 15px;
    right: 10px;
    z-index: 1;
}

.alert-success{
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
    padding: 12px 100px;
}

.alert-danger{
    background-color: rgba(255,0,0,1);
    color: #FFF;
    border-color: #F00;
    padding: 12px 50px;
}

.errors-msg{
    display: none;
    position: absolute;
    border-radius: 0.25rem;
    top: 15px;
    right: 10px;    
    background-color: rgba(255,0,0,0.8);
    color: #FFF;
    padding: 10px 100px;
    z-index: 1;
}
.errors-msg p{
    margin-top: 5px;
}
.success-msg{
    display: none;
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
    border-radius: 0.25rem;
    position: absolute;    
    top: 15px;
    right: 10px;
    padding: 10px 100px;
    z-index: 1;
}
.success-msg:hover{
    color: #fff;
    background-color: #218838;
    border-color: #1e7e34;
}
.preloader{
    display: none;
}

.loader{
    position: absolute;
    left: 50%;
    top: 250px;
    width: 64px;
    height: 68px;
    z-index: 9999;
    display: none;
}

.btn-light {
  color: #212529;
  background-color: #ccc;
  border-color: #cbcbcb;
}

.btn-light:hover{
  color: #212529;
  background-color: #999;
  border-color: #989898;
}

.login-error{
    color: #f00;
    margin: 0;
    padding: 0px 10px;
    font-weight: bold;
}

.campoOculto{
    display: none;
}


/* ********************** Card Blue ********************** */

.card-blue{
    background-color: #338bef;
    color: #FFF;
    border-radius: 0.3rem;
    margin-bottom: 10px;
    padding: 15px;
    font-size: 0.9rem;
    margin: 5px -10px;
}

.card-green{
    background-color: #74a65a;
    color: #FFF;
    border-radius: 0.3rem;
    margin-bottom: 10px;
    padding: 15px;
    font-size: 0.9rem;
    margin: 5px -10px;
}

.card-secondary{
    background-color: #6c757d;
    color: #FFF;
    border-radius: 0.3rem;
    margin-bottom: 10px;
    padding: 15px;
    font-size: 0.9rem;
    margin: 5px -10px;
}

.card-danger{
    background-color: #f33e3e;
    color: #FFF;
    border-radius: 0.3rem;
    margin-bottom: 10px;
    padding: 15px;
    font-size: 0.9rem;
    margin: 5px -10px;
}