@font-face{
    font-family: orbitron;
    src: url("/sgi/fonts/orbitron.woff2");
}

table.table-hover tbody tr:hover {
    background-color: #f5f5dc; 
}

hr{
    margin-top: 10px; 
    margin-bottom: 15px;
}
/* **************************LOADER***************************** */
#loading{
    display:none;
    position:fixed;
    top:0px;
    left:0px;
    z-index:100000;
    width:100%;
    height:100%;
    background-color: black;
    opacity: 0.3;
    filter: alpha(opacity=30);  /*For IE8 and earlier */
}

#imgloader{   
    display:none;
    position:fixed;
    display:block;
    z-index:100001;
    margin: auto;
    top: 0px;
    left: 0;
    right: 0;
    bottom: 0;
}

/************************UPLOAD FILE**************************** */

.btn-file {
  position: relative;
  overflow: hidden;
}
.btn-file input[type=file] {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 100%;
  min-height: 100%;
  font-size: 100px;
  text-align: right;
  filter: alpha(opacity=0);
  opacity: 0;
  background: red;
  cursor: inherit;
  display: block;
}
input[readonly] {
  background-color: white !important;
  cursor: text !important;
}

.custom-tooltip-styling{
    font-size: 12px;
}


/************************BOTÕES DE AÇÃO**************************** */
.incluir{
    color:  green !important;
    text-shadow: 1px 1px 2px silver;
}
.incluir:hover{
    color: orange !important;
    text-shadow: 1px 1px 2px gray;
}
.consultar{
    color: darkgreen !important;
    text-shadow: 1px 1px 2px silver;
}
.consultar:hover{
    color: orange !important;
    text-shadow: 1px 1px 2px gray;
}
.editar{
    color: darkblue !important;
    text-shadow: 1px 1px 2px silver;
}
.editar:hover{
    color: orange !important;
    text-shadow: 1px 1px 2px gray;
}
.especial{
    color: slateblue !important;
    text-shadow: 1px 1px 2px silver;
}
.especial:hover{
    color: orange !important;
    text-shadow: 1px 1px 2px gray;
}
.excluir{
    color: red !important;
    text-shadow: 1px 1px 2px silver;
}
.excluir:hover{
    color: orange !important;
    text-shadow: 1px 1px 2px gray;
}

.verde{
    color: green !important;
    text-shadow: 1px 1px 2px silver;
}
.verde:hover{
    color: orange !important;
    text-shadow: 1px 1px 2px gray;
}

.azul{
    color: darkblue !important;
    text-shadow: 1px 1px 2px silver;
}
.azul:hover{
    color: orange !important;
    text-shadow: 1px 1px 2px gray;
}

.vermelho{
    color: darkred !important;
    text-shadow: 1px 1px 2px silver;
}
.vermelho:hover{
    color: orange !important;
    text-shadow: 1px 1px 2px gray;
}

.marron{
    color: chocolate;
    text-shadow: 1px 1px 2px silver;
}
.marron:hover{
    color: orange;
    text-shadow: 1px 1px 2px gray;
}

.rosa{
    color: darkorchid;
    text-shadow: 1px 1px 2px silver;
}
.rosa:hover{
    color: orange;
    text-shadow: 1px 1px 2px gray;
}
.cyan{
    color: DarkCyan;
    text-shadow: 1px 1px 2px silver;
}
.cyan:hover{
    color: orange;
    text-shadow: 1px 1px 2px gray;
}
.steelblue{
    color: steelblue;
    text-shadow: 1px 1px 2px silver;
}
.steelblue:hover{
    color: orange;
    text-shadow: 1px 1px 2px gray;
}

.whitesmoke{
    color: whitesmoke;
    text-shadow: 1px 1px 2px silver;
}
.whitesmoke:hover{
    color: orange;
    text-shadow: 1px 1px 2px gray;
}

.lightgray{
    color: lightgray;
    text-shadow: 1px 1px 2px silver;
}
.lightgray:hover{
    color: orange;
    text-shadow: 1px 1px 2px gray;
}

.lightyellow{
    color: lightyellow;
}
.lightyellow:hover{
    color: orange;
    text-shadow: 1px 1px 2px gray;
}

.div-especial{
    border-color: #ccc;
    border-style: solid;
    border-width: 1px;
    border-radius: 6px;
    padding: 6px;
    margin-bottom: 6px;
}

/***********************SUB-MENU*****************************/

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu a::after {
  transform: rotate(-90deg);
  position: absolute;
  right: 6px;
  top: .8em;
}

.dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-left: .1rem;
  margin-right: .1rem;
}


.navbar-nav li:hover>.dropdown-menu {
  display: block;
}

/*******cores as mover o mouse*************/
.navbar a:hover{
    color:red;
}

.navbar-brand:hover{
    color:SteelBlue !important;
}

.dropdown-toggle:hover{
    color:SteelBlue !important;
}
.nav-link:hover{
    color:SteelBlue !important;
}

.dropdown-submenu:hover>.dropdown-toggle{
    color:red !important;
}
/******************************************/

.nav-tabs .dropdown-menu, .nav-pills .dropdown-menu, .navbar .dropdown-menu {
    margin-top: 0;
}

.dropdown:hover>.dropdown-menu {
        animation-name: slidenavAnimation;
        animation-duration:.3s;
        animation-iteration-count: 1;
        animation-timing-function: linear;
        animation-fill-mode: forwards;
      
        -webkit-animation-name: slidenavAnimation;
        -webkit-animation-duration:.3s;
        -webkit-animation-iteration-count: 1;
        -webkit-animation-timing-function: linear;
        -webkit-animation-fill-mode: forwards;
      
        -moz-animation-name: slidenavAnimation;
        -moz-animation-duration:.3s;
        -moz-animation-iteration-count: 1;
        -moz-animation-timing-function: linear;
        -moz-animation-fill-mode: forwards;
      }
      @keyframes slidenavAnimation {
        from {
            opacity:0;
        }
        to {
            opacity:1;
        }
      }
      @-webkit-keyframes slidenavAnimation {
        from {
            opacity:0;
        }
        to {
            opacity:1;
        }
}    

.contentLogoCGE {
    margin-top: 13px;
    float: right;
    /* margin-right: 20px; */
}
.cgeLogo {
    color: #E84902;
    font-size: 25px;
    font-weight: bold;
    border-right: 2px solid #E84902;
    float: left;
    height: 30px;
    margin: 0px;
    padding-right: 10px;
    margin-right: 10px;
    text-shadow: 1px 1px #000;
    box-shadow: 1px 0px #000;
}
.controladoriGeralDoEstado {
    float: left;
    width: 145px;
    font-weight: bold;
    font-size: 14px;
}
