
/* Estilo com padding de 10px para tela igual ou superior a 768px */
@media (min-width: 600px) {
    #maincontent {
        padding-left: 35px;
        padding-right: 25px;
    }
}

/* Estilo com padding de 0px para tela inferior a 768px */
@media (max-width: 599px) {
    #maincontent {
        padding-left: 0px;
        padding-right: 0px;
    }
}

@font-face{
    font-family: orbitron;
    src: url("/capacitacao/components/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;
}

.table-gray{
    background-color: #394047 !important;
    color: #fff;
    border-color: #484d51;
}