/* ---------- Default Root Colors --------- */
:root {
  --white: hsl(0, 0%, 98%);
  --black: hsl(0, 0%, 21%);
  --grey: hsl(0, 0%, 86%);
  --red: hsl(348, 100%, 61%);
  --link-ativo-cor: hsl(0, 0%, 21%);
  --background-color-top: #fafafa;
  --btn-bg-color-default: hsl(0, 0%, 21%);
  --btn-contorned-color: hsl(0, 0%, 98%);
  --btn-contorned-only-color: hsl(0, 0%, 21%);
  --menu-btn-color: hsl(0, 0%, 21%);
  --text-color: hsl(0, 0%, 21%);
  --inscricao-botao-color: #3a3;
  --dark-green: #158115;
}

body {
  min-height: 100vh;
  position: relative;
}

/* ---------- Estilizações do Topo Mobile -------------- */
#TopoMobile {
  min-height: 31px;
  left: 0;
  right: 0;
  top: 0;
  z-index: 88881;
  height: auto;
}

#TopoMobile .logo-wrapper {
  max-width: 150px;
  position: relative;
}

#TopoMobile .logo-wrapper .logo {
  max-width: 100%;
  max-height: 75px;
}

#TopoMobile .menu-btn-container {
  display: flex;
  align-items: center;
  cursor: pointer;
  z-index: 99999;
  height: 30px;
}

#TopoMobile .menu-indicador {
  font-size: 14px;
  color: var(--menu-btn-color);
  margin-right: 10px;
}

#TopoMobile .btn-wrapper {
  display: inline-block;
  width: 30px;
  height: 25px;
  border: none;
  background-color: transparent;
  padding: 0;
  cursor: pointer;
  position: relative;
  z-index: inherit;
}

#TopoMobile .btn-wrapper i {
  width: 87%;
  height: 3px;
  display: inline-block;
  background-color: var(--menu-btn-color);
  border-radius: 1px;
  position: absolute;
  transition: all 0.2s ease-in-out;
  opacity: 1;
  left: 0;
  z-index: inherit;
}

#TopoMobile .btn-wrapper i:first-child {
  top: 1px;
}

#TopoMobile .btn-wrapper i:nth-child(2) {
  transform-origin: center center;
}

#TopoMobile .btn-wrapper i:nth-child(3) {
  transform-origin: center center;
  bottom: 0;
}

#TopoMobile .menu-btn-container.abrir i:first-child {
  transform: translateX(30px);
  opacity: 0;
}

#TopoMobile .menu-btn-container.abrir i:nth-child(2) {
  transform-origin: center center;
  transform: rotate(45deg);
}

#TopoMobile .menu-btn-container.abrir i:nth-child(3) {
  transform-origin: center center;
  bottom: auto;
  transform: rotate(-45deg);
}

#TopoMobile .menu-btn-container.abrir .menu-indicador {
  z-index: -10000;
  display: none;
}

.g-recaptcha {
  margin-top: 20px;
}

#TopoMobile .menu-fix-clear {
  position: fixed;
  background-color: var(--background-color-top);
  transition: all 0.2s ease-in-out;
  transition-delay: 0.1s;
  z-index: -100;
  opacity: 0;
  min-height: none;
  height: 40px;
  overflow-y: scroll;
  align-items: stretch;
}

#TopoMobile .menu-wrapper {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

#TopoMobile .menu-fix-clear.abrir {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 98888;
  opacity: 1;
  min-height: calc(100vh -50px);
  height: auto;
  transform: translate3d(0, 0, 0);
}

#TopoMobile .header-logado-mobile {
  display: flex;
  margin: 0 0 10px;
  flex-direction: column;
  border-bottom: 1px solid var(--grey);
  padding-bottom: 10px;
  padding: 0 2px;
}

#TopoMobile .header-logado-mobile .nome-top-usuario {
  margin-bottom: 20px;
  font-weight: bold;
}

#TopoMobile .header-logado-mobile .areaCandidato-top-usuario {
  margin-bottom: 10px;
  display: inline-block;
  color: var(--white);
  /*border: 1px solid var(--red);*/
  border-radius: 3px;
  background-color: var(--btn-bg-color-default);
  width: 100%;
  padding: 10px 0;
  text-align: center;
  transition: box-shadow 0.3s ease-in-out;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

#TopoMobile .header-logado-mobile .areaCandidato-top-usuario:hover {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.24);
}

#TopoMobile .header-logado-mobile .sair-top-usuario {
  margin-bottom: 10px;
}

#TopoMobile .form-top {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}

#TopoMobile .form-top .item,
#TopoMobile .form-top .item:focus {
  margin-bottom: 10px;
  align-items: stretch;
  padding: 10px;
  height: 41px;
  width: 100%;
}

#TopoMobile .form-top button,
#TopoMobile .form-top a.cadastrar-top-btn {
  padding: 10px;
  background-color: var(--btn-bg-color-default);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  border: none;
  color: var(--white);
  text-transform: uppercase;
  text-align: center;
  height: auto;
  cursor: pointer;
  font-size: 14px;
}

#TopoMobile .form-top a.cadastrar-top-btn {
  background-color: var(--white);
  border: 1px solid var(--btn-contorned-only-color);
  color: var(--black);
}

#TopoMobile .form-top a.cadastrar-top-btn:hover,
#TopoMobile .form-top a.cadastrar-top-btn:active {
  background-color: var(--black);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.12), 0 1px 4px rgba(0, 0, 0, 0.24);
  color: var(--white);
}

#TopoMobile .form-top .menu-title {
  margin-bottom: 20px;
}

#TopoMobile .form-top .esqueci-mobile {
  font-size: 14px;
}

#TopoMobile .menu-title {
  font-size: 14px;
  margin-top: 5px;
  margin-bottom: 5px;
}

#TopoMobile .menu-item,
.CategoriasConcursos ul li {
  text-align: left;
  padding: 0 1px;
}

#TopoMobile .menu-item a,
#TopoMobile .CategoriasConcursos ul li a {
  display: inline-block;
  color: var(--link-ativo-cor);
  padding: 10px 0;
  width: 100%;
  opacity: 0.5;
  border-bottom: 1px solid var(--grey);
  text-transform: uppercase;
  font-size: 14px;
}

#TopoMobile .menu-item.active a,
.CategoriasConcursos ul li a:hover {
  opacity: 1;
  font-weight: medium;
  border-bottom-color: var(--link-ativo-cor);
}

#TopoMobile .menu-item a:hover,
#TopoMobile .menu-item a:active {
  opacity: 1;
}

#TopoMobile .menu-lateral-mobile-title {
  margin-top: 15px;
  text-transform: capitalize !important;
}

#TopoMobile .barra-pesquisa-wrapper {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
  justify-content: stretch;
}

#TopoMobile .barra-pesquisa-wrapper .search {
  margin-bottom: 10px;
  padding: 10px;
  height: 41px;
  width: 100%;
}

#TopoMobile .barra-pesquisa-wrapper .button {
  padding: 10px;
  background-color: var(--black);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  border: none;
  color: var(--white);
  text-transform: uppercase;
  text-align: center;
  height: auto;
  cursor: pointer;
  height: 41px;
}

#painelIndex .titleMobile {
  display: none;
  text-align: center;
}
/* ---------- Breackpoints Responsividade ---------- */

@media (max-width: 768px) {
  #simple-translate + div {
    height: 100% !important;
  }
  #TopoMobile {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    align-items: center;
    border-bottom: 1px solid var(--grey);
    background-color: var(--background-color-top);
  }

  #TopMenu {
    display: none;
  }

  #Topo {
    display: none;
  }

  .consulpam-container {
    display: none;
  }

  #MenuLateral {
    display: none;
  }

  .Miolo.Index {
    width: auto;
    padding-bottom: 0;
    margin-left: 0;
  }

  .Miolo {
    padding: 0 !important;
    border: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    width: 100%;
    max-width: 100vw;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    z-index: auto;
    position: relative;
    margin: 0px auto;
    left: auto !important;
    margin-bottom: 20px !important;
    min-height: auto !important;
  }

  .listaConcursos {
    display: flex;
    flex-direction: column;
    padding: 0 20px;
  }

  .listaConcursos h2 {
    margin: 10px 0 !important;
    padding: 10px 0;
  }

  h2.tituloPagina {
    color: var(--text-color);
    border-bottom: 4px solid var(--grey);
    font-size: 7px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  h2.tituloPagina span {
    border-bottom: 0;
    text-indent: 0;
    line-height: 108%;
  }

  .lista {
    display: flex;
    flex-direction: column;
  }

  .lista .item {
    margin: 0;
  }

  .lista .item table tbody tr {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .lista .item table tbody tr td {
    margin-bottom: 10px;
    width: auto;
  }

  .lista .item table tbody tr td .imagem {
    text-align: center;
    margin: 0 auto;
  }

  .lista .item table tbody tr td.col-2 .dados {
    display: flex;
    flex-wrap: wrap;
    justify-content: stretch;
  }

  .lista .item table tbody tr td.col-2 .dados .tipo {
    font-size: 14px;
  }

  .lista .item table tbody tr td.col-2 .dados h3 {
    font-size: 16px;
  }

  .lista .item table tbody tr td.col-2 .dados .datasPedidosIsencao {
    margin-top: 10px;
  }

  .lista .item table tbody tr td.col-2 .dados .inscricoes-info-mobile-only {
    line-height: 2;
    height: auto;
    width: 100%;
  }

  .lista
    .item
    table
    tbody
    tr
    td.col-2
    .dados
    .inscricoes-info-mobile-only
    a
    .inscricoesabertas {
    display: block;
    text-align: center;
    font-weight: bold;
    margin-top: 5px;
    border: 1px solid var(--dark-green);
    box-shadow: inset 0px -2px 1px 0px var(--dark-green);
    background-color: var(--inscricao-botao-color);
    border-radius: 3px;
  }

  .lista .item table tbody tr td.col-3 .vagas {
    display: flex;
    flex-direction: column;
    width: auto;
  }

  .lista .item table tbody tr td.col-3 .vagas .botao {
    padding: 7px 10px;
    text-align: center;
  }

  #Rodape {
    width: auto;
    max-width: 100%;
    position: relative;
    margin-top: 10px;
  }

  #Rodape .ProSeleta {
    max-width: 100%;
    height: auto;
    padding: 10px;
  }

  .Conteudo {
    width: auto;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  #Rodape .ProSeleta .info {
    height: auto;
    padding-left: 0;
    font-weight: 500;
    font-size: 12px;
    padding-top: 0;
    width: 100%;
    float: none;
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
  }

  #Rodape .ProSeleta .siteSeguro {
    float: none;
    background: url(img/siteseguro.gif) no-repeat center center;
    display: block;
    margin-top: 0;
    width: auto;
    margin-right: 0;
    text-indent: 0;
    display: flex;
    align-items: center;
  }

  #Rodape .ProSeleta .siteSeguro p {
    position: absolute;
    left: -99999px;
  }

  #Rodape .final div {
    line-height: 1;
    padding: 10px;
  }

  #Rodape .final .Conteudo {
    margin-top: 10px;
    text-align: center;
  }

  #Rodape .final .links {
    float: none;
    margin-left: 0;
    padding: 0;
  }

  .bgConcurso {
    display: none;
  }

  h2.tituloPagina {
    font-size: 20px !important;
    margin: 0;
    font-weight: bold;
    line-height: 1;
    padding: 20px 0;
    text-indent: 0;
    text-align: center;
  }

  #pgInformacoes {
    padding: 20px;
  }

  #TopoInformacoes {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: relative;
  }

  #TopoInformacoes .imagem {
    float: none;
    width: 98px;
    height: 98px;
    vertical-align: none;
    text-align: center;
    margin-right: 0;
    margin: 0 auto;
    margin-bottom: 10px;
  }

  #TopoInformacoes .dados {
    float: none;
    width: 100%;
    padding-top: 10px;
  }

  #TopoInformacoes .dados p {
    font-size: 14px;
    margin-bottom: 10px;
  }

  #TopoInformacoes .dados h2 {
    font-size: 24px;
    letter-spacing: 1px;
    margin: 0;
    margin-bottom: 10px;
  }

  #TopoInformacoes .botoes {
    float: none;
    padding-top: 0;
    position: relative;
    margin: 10px 0;
  }

  .botao.maior.verde {
    display: inline-block;
    width: 100%;
    margin-bottom: 10px;
  }

  .botao.maior.verde span {
    word-wrap: break-word;
    font-size: 12px !important;
  }

  #blocoInserirNomeSocial {
    margin: 0 !important;
  }
  #nomesocial {
    width: calc(100vw - 70px) !important;
  }

  #inscricaoFrm1 button[class="botao verde maior"] {
    margin-left: 0 !important;
  }

  .candidato-dados
    div[style="position:absolute; right:25px; top:90px; text-align:center;"],
  div[style="position:absolute; right:25px; top:90px; text-align:center;"] {
    position: static !important;
    right: 0 !important;
    top: 0 !important;
    text-align: center !important;
    margin-bottom: 15px !important;
  }

  div[class="botoes"] {
    display: flex;
    flex-direction: column;
  }

  #pgInformacoes,
  .mioloInterna {
    padding: 20px !important;
  }

  .blocoPadrao .dados {
    padding: 20px;
    overflow-x: scroll;
    text-align: left;
  }

  .blocoPadrao p {
    font-size: 14px;
    line-height: calc(14px * 1.5);
    text-align: left;
  }

#painelIndex .tabela {
  border: 0;
  min-width: auto;
  max-width: none;
}

#painelIndex .tabela thead {
  display: none;
}

.titleMobile {
  display: block !important;
}

#painelIndex .tabela td {
  border: 0;
  display: block;
}

#painelIndex .tabela tr {
  display: block;
  border: 1px solid #000;
  margin-bottom: 20px;
}

  #painelIndex .tabela .inscricaoCodigo::before {
    content: 'Inscrição: ';
    font-weight: bold;
  }

  #painelIndex .tabela .concursoLegenda::before {
    content: 'Concurso/Processo Seletivo: ';
    font-weight: bold;
  }

  #painelIndex .tabela .vagaNome::before {
    content: 'Vaga: ';
    font-weight: bold;
  }

  #painelIndex .tabela .situacaoInscricao::before {
    content: 'Situação: ';
    font-weight: bold;
  }

  #painelIndex .tabela .dataInscricao::before {
    content: 'Data de Inscrição: ';
    font-weight: bold;
  }

  #blocoListaVagas .dados {
    padding-top: 20px;
    overflow-x: scroll;
    overflow-y: scroll;
  }

  #blocoListaVagas table {
    float: none;
    width: 400px;
    border-collapse: collapse;
    margin-bottom: 10px;
  }

  #blocoListaVagas table[style="float:right"] {
    float: none !important;
  }

  #blocoListaVagas div[class="texto"] {
    padding: 10px 20px !important;
  }

  .formulario .item label {
    display: block;
    text-align: left;
    margin-bottom: 10px;
    font-size: 14px;
  }

  .formulario fieldset.meio {
    width: 100%;
  }

  input.texto,
  .select.texto,
  textarea.texto {
    width: 96%;
    padding: 2%;
  }

  .select.texto select {
    border: 0;
    background: none;
    width: 100%;
  }

  .formulario .item label.radio {
    width: auto;
    text-align: left;
    margin-bottom: 10px;
  }

  div[style="width:250px;vertical-align:middle;display:inline-block;padding:10px;"] {
    padding: 0 !important;
    display: flex !important;
    flex-direction: column;
  }

  div[class="item2"][style="width:100px"] {
    width: auto !important;
  }

  label[style="height: 56px"] {
    height: auto !important;
    width: 100%;
  }

  div[class="item2"][style="width:100px"] input,
  div[class="item2"][style="width:100px"] span {
    width: auto;
    padding: 10px;
  }

  fieldset .botoes {
    display: flex;
    flex-direction: column;
  }

  fieldset div.texto[style="padding:10px 40px;"] {
    padding: 10px !important;
  }

  #inscricaoFrm #TopoInformacoes .dados {
    width: auto;
  }

  #inscricaoFrm .botoes {
    display: flex;
    flex-direction: column;
  }

  .botao.verde.maior {
    text-align: center;
  }
  .tabela {
    min-width: auto;
    overflow-x: scroll;
    display: inline-block;
    max-width: calc(100vw - 70px);
  }

  #blocoListaCondicoesEspeciais li {
    padding-left: 0 !important;
  }

  #inscricaoFrm textarea.texto {
    width: 100% !important;
  }

  #blocoListaCondicoesEspeciais li.ativo {
    display: flex;
    flex-direction: column;
    padding: 10px !important;
  }

  .mioloInterna
    div[class="texto"][style="float: left; margin-top:10px; width: 70%;"] {
    width: auto !important;
    float: none !important;
  }

  #inscricaoFrm3 .botao.verde.maior {
    margin-left: 0 !important;
  }

  .mioloInterna .texto ul li {
    list-style: none;
    margin-left: 0;
  }

  #loginFrm #continuar {
    margin-left: 0 !important;
    display: flex;
    flex-direction: column;
  }

  .mioloInterna {
    margin: 0 !important;
  }

  .formulario .item p {
    margin: 0;
  }

  #blocoDadosPessoais {
    padding: 10px;
  }

  #loginFrm input.texto {
    margin-bottom: 10px;
  }

  #blocoAlterarLogin {
    margin-left: 0 !important;
  }

  form[id="Frm"][class="formulario validate"][action="/faleconosco/enviar/?captcha="][method="post"]
    .item {
    width: 100%;
    max-width: 270px;
    position: relative;
    display: flex;
    flex-direction: column;
  }

  form[id="Frm"][class="formulario validate"][action="/faleconosco/enviar/?captcha="][method="post"]
    .meio
    .botoes {
    margin-top: 20px;
    max-width: 275px;
  }

  #Frm fieldset[class="meio segundo"] div[class="texto"] {
    padding-left: 0 !important;
  }

  #BlocoBanner {
    margin: 20% 10%;
    min-width: 70%;
  }

  #BlocoBanner #bannerLink div p img {
    width: 100%;
    height: auto;
  }
}

@media (min-width: 769px) {
  #TopoMobile {
    display: none;
  }

  #TopMenu {
    display: block;
  }

  #Topo {
    display: block;
  }
}
