@import url("//fonts.googleapis.com/css?family=Roboto:400,500,700|Roboto+Condensed:400,500,700&.css");
/* -------------------------------------------------------------------------

 Style Guide Boilerplate v2.0.1
 Repo: https://github.com/bjankord/Style-Guide-Boilerplate
 Author: Brett Jankord
 License: MIT

---------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------
 Layout
---------------------------------------------------------------------------- */
body {
  margin: 0;
  padding-top: 50px;
}
/* -------------------------------------------------------------------------
 Utility Classes
---------------------------------------------------------------------------- */
.sg-container {
  overflow: hidden;
  padding: 16px 24px;
  /* For older browsers */
  padding: 1rem 1.5rem;
}
.sg-animated {
  -webkit-transition: all 0.6s ease-out;
  -moz-transition: all 0.6s ease-out;
  -ms-transition: all 0.6s ease-out;
  -o-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
}
/* -------------------------------------------------------------------------
 Modules
---------------------------------------------------------------------------- */
/* Headings
---------------------------------------------------------------------------- */
.sg-h1,
.sg-h2,
.sg-h3 {
  border-bottom: 1px solid #ddd;
  font-weight: normal;
  margin-bottom: 1em;
  margin-top: 0;
}
.sg-h1 {
  font-weight: bold;
  padding-bottom: 0.2em;
  margin-top: 1.5em;
}
.sg-h2 {
  margin-bottom: 0.5em;
  padding-bottom: 0.5em;
  text-transform: capitalize;
  margin-top: 1.5em;
}
.sg-about {
  margin-top: 2em;
}
/* Buttons
---------------------------------------------------------------------------- */
.sg-btn {
  float: left;
  text-shadow: none!important;
}
.sg-btn--top {
  float: right;
}
ul.scroll-menu {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -moz-overflow-scrolling: touch;
  -ms-overflow-scrolling: touch;
  -o-overflow-scrolling: touch;
  overflow-scrolling: touch;
  width: 100%;
  max-height: 500px;
}
.dropdown-header {
  text-transform: uppercase;
}
.sg-btn--select {
  border-radius: 0 0.3em;
  position: absolute;
  right: 5px;
  top: 14px;
}
.sg-btn--select.is-active:hover:after {
  background: #111;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 5px;
  top: 45px;
  color: #fff;
  content: "Selected code ready to be copied";
  font-size: 0.8em;
  display: block;
  right: 5px;
  padding: 5px 15px;
  position: absolute;
  white-space: nowrap;
  z-index: 98;
}
.sg-btn--select.is-active:hover:before {
  border: solid;
  border-color: #111 transparent;
  border-width: 0 6px 6px 6px;
  top: 40px;
  content: "";
  display: block;
  left: 75%;
  position: absolute;
  z-index: 99;
}
/* Hide specific buttons for use with JS */
.sg-btn--source {
  clear: both;
}
.sg-btn--source,
.sg-btn--select {
  display: none;
}
/* Show specific buttons if JS enabled */
.js .sg-btn--source,
.js .sg-btn--select {
  display: block;
}
/* Hide specific buttons conditionally */
.operamini .sg-btn--source,
.legacy .sg-btn--source {
  display: none;
}
#sg-buttons-advanced .btn-toolbar,
#sg-buttons-advanced .btn-group {
  margin-bottom: 1rem;
}
/* Sections
---------------------------------------------------------------------------- */
.sg-section {
  margin-bottom: 32px;
  /* For older browsers */
  margin-bottom: 2rem;
  overflow: inherit;
}
.sg-anchor {
  display: block;
  padding-top: 1em;
}
#sg-form-controls input[type="text"],
#sg-form-controls select {
  margin-top: 10px;
}
#sg-form-controls .has-feedback input,
#sg-form-controls .has-feedback select {
  margin-top: 0;
}
#sg-form-controls .input-groups .input-group {
  margin: 10px 0;
}
#sg-form-controls .input-groups input[type="text"] {
  margin-top: 0;
}
/* Colors
---------------------------------------------------------------------------- */
.sg-color {
  background: #fff;
  border: 1px solid #aaaaaa;
  display: inline-block;
  height: 80px;
  margin: 0 0.5em 0.5em 0;
  padding: 5px;
  position: relative;
  width: 100px;
}
.sg-lg {
  width: 140px;
  height: 100px;
}
.sg-color-swatch {
  display: block;
  height: 100%;
  width: 100%;
}
.sg-color-swatch span {
  background: #000;
  background: rgba(0, 0, 0, 0.7);
  bottom: 5px;
  color: #fff;
  font-size: 0.8em;
  margin: 0;
  opacity: 0;
  padding: 5px 0;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  width: 88px;
}
.sg-lg .sg-color-swatch span {
  width: 128px;
}
.sg-color-swatch:hover span {
  opacity: 1;
}
/* -------------------------------------------------------------------------
 Colors
---------------------------------------------------------------------------- */
.sg-brand-primary .sg-color-swatch {
  background: #3E6996;
}
.sg-gray-lighter .sg-color-swatch {
  background: #eeeeee;
}
.sg-gray-light .sg-color-swatch {
  background: #777777;
}
.sg-gray .sg-color-swatch {
  background: #555555;
}
.sg-gray-dark .sg-color-swatch {
  background: #333333;
}
.sg-gray-darker .sg-color-swatch {
  background: #222222;
}
.sg-brand-success .sg-color-swatch {
  background: #5cb85c;
}
.sg-brand-info .sg-color-swatch {
  background: #5bc0de;
}
.sg-brand-warning .sg-color-swatch {
  background: #f0ad4e;
}
.sg-brand-danger .sg-color-swatch {
  background: #d9534f;
}
.sg-cor-secundaria .sg-color-swatch {
  background: #3E6996;
}
/* Fonts
---------------------------------------------------------------------------- */
.sg-font {
  font-size: 1.8em;
  padding: 0 0 0.2em 0;
}
.sg-font-primary {
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.sg-font-secondary {
  font-family: "Merriweather", Georgia, "Times New Roman", Times, serif;
}
/* Grid
---------------------------------------------------------------------------- */
.show-grid {
  padding: 0.5em 0;
}
.show-grid div {
  background-color: #eeeeee;
  border: 1px solid #777777;
  padding: 0.5em;
}
/* Markup
---------------------------------------------------------------------------- */
.sg-markup-controls {
  overflow: hidden;
  padding-top: 1.5em;
  clear: both;
}
.sg-source {
  position: relative;
}
.sg-source pre {
  background: #333;
  border-radius: 0.5em;
  border: 1px solid #ddd;
  color: #fff;
  overflow-x: scroll;
  padding: 0.5em 0.3em;
}
.sg-source pre code {
  background: transparent;
}
.js .sg-source {
  max-height: 0;
  overflow: hidden;
}
.js .sg-source.is-active,
.operamini .sg-source,
.legacy .sg-source {
  max-height: 2400px;
}
/* -------------------------------------------------------------------------
 Prettyprint
---------------------------------------------------------------------------- */
.pln {
  color: #fff;
}
/* plain text */
@media screen {
  .str,
  .string {
    color: #E6DB74;
  }
  /* string content */
  .kwd,
  .keyword {
    color: #66D9EF;
  }
  /* a keyword */
  .com,
  .comment {
    color: #75715E;
  }
  /* a comment */
  .typ {
    color: #A6E22E;
  }
  /* a type name */
  .lit,
  .number {
    color: #AE81FF;
  }
  /* a literal value */
  /* punctuation, lisp open bracket, lisp close bracket */
  /* .pun, .opn, .clo { color: #660 } */
  .tag {
    color: #F92672;
  }
  /* a markup tag name */
  .atn {
    color: #A6E22E;
  }
  /* a markup attribute name */
  .atv {
    color: #E6DB74;
  }
  /* a markup attribute value */
  /*.dec, .var { color: #606 }*/
  /* a declaration; a variable name */
  .fun {
    color: #FF0000;
  }
  /* a function name */
}
/* Use higher contrast and text-weight for printable form. */
@media print, projection {
  .str {
    color: #060;
  }
  .kwd {
    color: #006;
    font-weight: bold;
  }
  .com {
    color: #600;
    font-style: italic;
  }
  .typ {
    color: #404;
    font-weight: bold;
  }
  .lit {
    color: #044;
  }
  .pun,
  .opn,
  .clo {
    color: #440;
  }
  .tag {
    color: #006;
    font-weight: bold;
  }
  .atn {
    color: #404;
  }
  .atv {
    color: #060;
  }
}
/* Specify class=linenums on a pre to get line numbering */
ol.linenums {
  border-left: 1px solid #444;
  margin: 0 0 0 3.3em;
  /* IE indents via margin-left */
  padding: 0;
}
ol.linenums li {
  color: #bebec5;
  line-height: 1.5;
  padding-left: 0.8em;
}
/* -------------------------------------------------------------------------
 Legacy IE
---------------------------------------------------------------------------- */
/**
 * IE 7 Fixes
 */
.sg-color {
  *display: inline;
  zoom: 1;
}
/* End IE 7 Fixes */
/**
 * IE 6 Fixes
 */
pre {
  _white-space: pre;
  _white-space: pre-wrap;
  _word-wrap: break-word;
}
/* End IE 6 Fixes */
/*// SCAFOLDING (Estruturas base)
// --------------------------------------------------*/
html {
  font-size: 16px;
}
strong {
  font-weight: 700;
}
img {
  font-family: serif;
  font-style: italic;
  font-size: 85%;
  color: #333333;
}
/*//TYPE
// Headings
// -------------------------*/
/*// Blockquotes*/
blockquote {
  font-weight: 500;
  font-style: italic;
  font-size: 1rem;
}
blockquote footer {
  font-size: 1rem;
}
/*// CODE*/
pre {
  padding: 0.71875rem;
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
}
/*//TABLES
//Ajusta o bold dos cabeçalhos de tabelas para a fonte Roboto*/
.table > thead > tr > th {
  font-weight: 500;
}
/*FORMS*/
.help-block {
  font-size: 0.875rem;
  margin-bottom: 0;
}
.required:before {
  content: "* ";
  color: #f0ad4e;
}
/*BUTTONS*/
.input-group-btn:last-child > .btn {
  border-color: #cbcbcb;
}
/*// DROPDOWN menus
// The dropdown menu (ul)*/
.dropdown-menu {
  -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.175);
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.175);
  /*//Dropdown divider*/
  /*// Links within the dropdown menu*/
}
.dropdown-menu .divider {
  margin: 0.625rem 0;
}
.dropdown-menu > li > a {
  padding: 0.1875rem 1.25rem;
}
/*//NAVBAR*/
.navbar {
  margin-bottom: 0;
}
.navbar-default {
  padding: 0;
  position: absolute;
  left: 0;
  top: 96px;
  width: 100%;
  background-color: rgba(62, 105, 150, 0.97);
  z-index: 99;
  border: none;
}
@media screen and (min-width: 768px) {
  .navbar-default {
    top: 172px;
  }
}
@media screen and (min-width: 992px) {
  .navbar-default {
    position: relative;
    top: auto;
    left: auto;
    background-color: #3E6996;
  }
}
@media screen and (min-width: 992px) {
  .navbar-default.collapse {
    display: block;
  }
}
.navbar-default .navbar-nav > li > a {
  font-weight: 500;
  -webkit-transition: box-shadow 0.25s linear 0s;
  -o-transition: box-shadow 0.25s linear 0s;
  transition: box-shadow 0.25s linear 0s;
}
.navbar-default .navbar-nav .open .dropdown-menu {
  background-color: #fff;
}
.navbar-default .navbar-nav .open .dropdown-menu > li > a {
  padding: 0.1875rem 1.25rem;
  -webkit-transition: box-shadow 0.25s linear 0s;
  -o-transition: box-shadow 0.25s linear 0s;
  transition: box-shadow 0.25s linear 0s;
}
@media screen and (max-width: 991px) {
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: inherit;
  }
}
@media screen and (max-width: 991px) {
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
    background-color: #e9e9e9;
    color: #333333;
  }
}
.navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
.navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
  box-shadow: 5px 0 #3E6996 inset;
}
.navbar-collapse {
  border-top: none;
}
.navbar-form .btn {
  border: none;
}
@media screen and (min-width: 992px) {
  #menuPrincipal .navbar-nav > li:first-child {
    position: absolute;
    clip: rect(0, 40px, 50px, 0);
  }
  #menuPrincipal .navbar-nav > li:first-child a {
    visibility: hidden;
  }
  #menuPrincipal .navbar-nav > li:first-child a:before {
    content: "\f015";
    display: inline-block;
    font-family: FontAwesome;
    line-height: 1;
    font-weight: normal;
    font-style: normal;
    padding-right: 0.25em;
    visibility: visible;
  }
  #menuPrincipal .navbar-nav > li:nth-child(2) {
    margin-left: 45px;
  }
}
/*// Navbar toggle
//
// Botão de menu de dispositivos móveis para ativar o `.navbar-collapse`, powered by the collapse
// JavaScript plugin.*/
.navbar-toggle {
  position: relative;
  float: none;
  margin: 0;
  border: none;
  color: #303030;
  border-radius: 0px;
  /*// Bars*/
}
.navbar-toggle:hover,
.navbar-toggle:focus {
  background-color: #ccc;
}
.navbar-toggle .icon-bar {
  display: block;
  width: 26px;
  height: 3px;
  border-radius: 0;
  background-color: #303030;
}
.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 6px;
}
/*//NAVS
// Tabs
// -------------------------*/
.nav-tabs > li > a,
.nav-tabs.nav-justified > li > a {
  border-radius: 4px 4px 0 0;
}
/*// Tabbable tabs
Serviços*/
.tab-content {
  border: 1px solid #ddd;
  border-top: none;
  padding: 15px;
  background-color: #fff;
}
.tab-pane .pagination {
  margin: 0;
}
/*BREADCRUMBS*/
.breadcrumb {
  background-color: transparent;
  border-bottom: 1px solid #ccc;
  margin-bottom: 0.5rem;
  padding: 8px 15px 3px 4px;
}
.breadcrumb > li:first-child::before {
  content: "Você está aqui:";
  font: normal 400 0.875rem "Roboto Condensed";
  text-transform: uppercase;
  padding: 0 5px 0 0;
}
/*// LABELS
// --------------------------------------------------*/
.label {
  border-radius: 0;
  text-transform: uppercase;
  font-size: 87.5%;
  font-weight: 500;
  padding: 0.2em;
}
.label-default {
  color: #3E6996;
  padding: 0 0.2em 0 0;
}
.label-default[href]:hover,
.label-default[href]:focus {
  color: #333;
  background-color: transparent;
}
/*// MEDIA objects*/
.media-heading {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  text-transform: none;
}
.media-list-footer {
  border-top: 2px solid #e9e9e9;
  font-size: 0.875rem;
  padding: 0.5em 0;
}
.media-body > time {
  font-size: 0.875rem;
  margin: 0 0 0.0625rem 0;
  display: block;
}
/*// Media image alignment
// -------------------------*/
.media > .pull-left {
  margin-right: 16px;
}
.media > .pull-right {
  margin-left: 16px;
}
/* LIST GROUPS*/
a.list-group-item:hover,
a.list-group-item:focus {
  text-decoration: underline;
}
/*// PANELS
// --------------------------------------------------*/
.panel-title {
  font-size: 1.125rem;
}
/*MODAL*/
.modal-content {
  z-index: 10000;
}
/*------------CORREÇÃO DE POSIÇÃO DO COMPONENTE NOTICIA E DESTAQUE-------------------*/
.rw-relative-sm {
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .col-sm-correcao-posicao {
    position: absolute;
    top: 0;
    right: 0;
  }
}
