﻿/*

* {
    box-sizing: border-box;
}

    *::before,
    *::after {
        box-sizing: border-box;
    }

@-ms-viewport {
    width: device-width;
}

article,
aside,
dialog,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
    display: block;
}

html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -ms-overflow-style: scrollbar;
    -webkit-tap-highlight-color: transparent;
}
*/

body {
    /*margin: 0 auto;*/
    font-family: Verdana;
    font-size: 12px;
    /*text-align: center;*/
    background-color: #f2f0e4;
    padding: 0;
    margin: 0;
}

a
{
    color: #000000;
}

#main
{
    text-align: center;
    /*margin: 0 auto;*/
    /*padding: 0;
    margin: 0;*/
}

#paineisDeMensagem
{
    text-align: center;
    /*margin: 0 auto;*/
}

#header
{
    text-align: center;
    background-image: url('images/header_bg.jpg');
    background-repeat: no-repeat;
}

    #logo
    {
        text-align: left;
        text-align: center;
    }
    #menu { text-align: left; }

#headerOptions
{
    width: 455px;
    height: 120px;
    float: right;
    text-align:right;
}

#loading
{
    display: none;
    position: absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background-image:url('images/transparent_bg.png');
    margin: 0 auto;
}

#search
{
    text-align: left;
}

#search input[type="text"]
{
    width: 280px;
    border: solid 1px #006600;
}

#addDoc
{
    text-align: left;
}

#addDoc input[type="text"]
{
    width: 200px;
    border: solid 1px #006600;
}

.textleft
{
    text-align: left;
}

/*input[type="submit"]
{
    border: solid 1px #006600;
    background-color: #f4f4f4;
}
input[type="select"]
{
    border: solid 1px #006600;
    background-color: #f4f4f4;
}*/

.mousehand
{
    cursor: pointer;
}

table td {
    padding: 4px;
}

.navbar-default {
    background-image: -webkit-linear-gradient(top, #ffffff 0%, #f8f8f8 100%);
    background-image: linear-gradient(to bottom, #ffffff 0%, #f8f8f8 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    background-repeat: repeat-x;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 5px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 5px rgba(0, 0, 0, 0.075);
}
/*

*/

.navbar-default .navbar-nav > .active > a {
  background-image: -webkit-linear-gradient(top, #ebebeb 0%, #f3f3f3 100%);
  background-image: linear-gradient(to bottom, #ebebeb 0%, #f3f3f3 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff3f3f3', GradientType=0);
  background-repeat: repeat-x;
  -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.075);
}
.navbar-brand,
.navbar-nav > li > a {
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
}
.navbar-inverse {
  background-image: -webkit-linear-gradient(top, #3c3c3c 0%, #222222 100%);
  background-image: linear-gradient(to bottom, #3c3c3c 0%, #222222 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  background-repeat: repeat-x;
}
.navbar-inverse .navbar-nav > .active > a {
  background-image: -webkit-linear-gradient(top, #222222 0%, #282828 100%);
  background-image: linear-gradient(to bottom, #222222 0%, #282828 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222', endColorstr='#ff282828', GradientType=0);
  background-repeat: repeat-x;
  -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.25);
  box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.25);
}
.navbar-inverse .navbar-brand,
.navbar-inverse .navbar-nav > li > a {
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.navbar-static-top,
.navbar-fixed-top,
.navbar-fixed-bottom {
  border-radius: 0;
}

#mainNavbar .logo {
    margin-top: 1rem;
}

@import "gd-extensions.css";

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.spinner {
    display: inline-block;
    border-radius: 100%;
    position: relative;
    border: 2px solid var(--spinner-fg, green);
    animation: spin 1s linear infinite;
    transform-origin: center center;
    width: var(--spinner-size, 16px);
    height: var(--spinner-size, 16px);
    background: var(--spinner-bg, white);

}

.spinner::after {
    content: "";
    position: absolute;
    left: 50%;
    top: -3px;
    right: -3px;
    bottom: -3px;
    background: inherit;
}

.gd-loading {
    display: flex;
    align-items: center;
}

.gd-loading:not(.gd-loading-vertical) > .spinner {
    flex-flow: row nowrap;
    margin-right: 6px;
}

.gd-loading.gd-loading-vertical > .spinner {
    flex-flow: column nowrap;
    justify-content: center;
    margin-bottom: 6px;
}

.errorlist {
    width: 100%;
    padding: 16px;
    border: 1px solid red;
    margin-bottom: 8px;
}

.errorlist ul {
}

.fg-0 {
    flex-grow: 0 !important;
}

.mr-2 {
    margin-right: 0.5rem !important;
}

.mr-4 {
    margin-right: 1rem !important;
}

input[type=checkbox] + label {
    margin-left: 0.5rem;
}

.AutoExtender
{
    font-family: Verdana, Helvetica, sans-serif;
    font-size: .8em;
    font-weight: normal;
    border: solid 1px #006699;
    line-height: 20px;
    padding: 10px;
    background-color: White;
    margin-left:10px;
    text-align: left;
    padding: 8px;
    list-style-type: none;
    max-height: 250px;
    overflow-y: auto;
}

.AutoExtenderList
{
    border-bottom: dotted 1px #006699;
    cursor: pointer;
    color: Maroon;
}

.AutoExtenderHighlight
{
    color: White;
    background-color: #006699;
    cursor: pointer;
}
