@import url("https://fonts.googleapis.com/css?family=Open+Sans");
* {
	box-sizing: border-box;
	font-family: 'Open Sans', sans-serif;
}
body {
  margin: 0;
  /* Controle de grid para responsividade */
  display: grid;
  /* 12% é pra o sidebar e o resto fica como auto */
  grid-template-columns: 12% auto;
  /* 8% é para o header e o resto fica em auto */
  /* grid-template-rows: 8% auto; */
  /* Mostra como vai ser ordenado as colunas e linhas */
  grid-template-areas:
    "sidebar header"
    "sidebar main"
}
/* Aqui se define o ˜sidebar˜ do grid-template-areas */
aside {
  grid-area: sidebar;
}

.logo{
	margin-top: 10px;
	text-align: center;
}

.logo img{
  width: 80%;
}

.mostrar-enfases{
    padding-left: 30px;
    display: block !important;
}
.enfases-div{
    display: none;
}

.text-center{
  text-align: center;
}
.bold>a{
  font-weight: bold;
}

.exibir-conteudo{
	padding: 10px 20px;
}

ul.collapsible{
	box-shadow: none;
	border-top: none;
	border-left: none;
	border-right: none;
}

ul.collapsible .collapsible-body{
	border-left: 1px solid #ddd;
	border-right: 1px solid #ddd;
}

li.bold .collapsible-body {
  border-left: 5px solid #42A5F5 !important;
}

li.lista-itens{
    border-bottom: 1px solid #ddd;
    cursor: pointer;
    display: block;
    line-height: 3rem;
    min-height: 3rem;
    padding: 0 1rem;	
}

li.lista-itens a{
	color: #000;
}

.strong{
	font-weight: bold !important;
}

table.lista-usuarios, table.lista-logs td, th {
    border-radius: 2px;
    display: table-cell;
    padding: 8px 5px;
    text-align: left;
    vertical-align: middle;
}

.switch.disciplinas{
	margin-top: -45px;
}

.modal .modal-footer .btn{
    float: right;
    margin: 6px;
}

.side-nav #nav-mobile li a{ 
  font-size: 13px;
}

.side-nav li {
    display: list-item;
    float: none;
}

#nav-mobile .collapsible-header {
    min-height: initial;
}

#nav-mobile li > a {
    height: 40px;
}

/* 
  Página Avaliações
*/
.card.avaliacoes{
  padding: 10px;
}

h5 a{
	color: #000000;
}

.quantidade-avaliacoes {
    background: #2e7d32 none repeat scroll 0 0;
    border-radius: 50%;
    color: white;
    float: right;
    font-size: 15px;
    height: 38px;
    padding: 4px;
    text-align: center;
    width: 38px;
}

@media only screen and (max-width: 995px){
  body {
    margin: 0;
    /* Controle de grid para responsividade */
    display: grid;
    /* 0 é pra o sidebar e o resto fica como auto */
    grid-template-columns: 0 auto;
    /* 8% é para o header e o resto fica em auto */
    grid-template-rows: 8% auto;
    /* Mostra como vai ser ordenado as colunas e linhas */
    grid-template-areas:
      "sidebar header"
      "sidebar main"
  }
}
@media only screen and (min-width: 995px) and (max-width: 1200px){
  body {
    margin: 0;
    /* Controle de grid para responsividade */
    display: grid;
    /* 20% é pra o sidebar e o resto fica como auto */
    grid-template-columns: 20% auto;
    /* 8% é para o header e o resto fica em auto */
    grid-template-rows: 8% auto;
    /* Mostra como vai ser ordenado as colunas e linhas */
    grid-template-areas:
      "sidebar header"
      "sidebar main"
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1400px){
  body {
    margin: 0;
    /* Controle de grid para responsividade */
    display: grid;
    /* 16% é pra o sidebar e o resto fica como auto */
    grid-template-columns: 16% auto;
    /* 8% é para o header e o resto fica em auto */
    grid-template-rows: 8% auto;
    /* Mostra como vai ser ordenado as colunas e linhas */
    grid-template-areas:
      "sidebar header"
      "sidebar main"
  }
}

@media only screen and (min-width: 993px){
	.container {
	    width: 85% !important;
  }
}

.tr-green {
    background-color: #eaf9f0;
}


h6{
  font-size: 1.3rem ;
  margin-top: 1.5rem ;
}

.bt-apvt{
  font-size: 10px;
}

table td, th{
  padding: 7px 0px;
}

table h6{
  margin-top: 0px;
}

/*
 * Barra menu administrador
 */
.user-details{
    display: table;
    width: 100%;
}

.user-details
.circle.responsive-img {
  margin: 15px;
  width: 55px;
  float: left;
}

.user-details
.icon-menu{
  float: right;
  font-size: 1.3rem;
  line-height: 10px;
  padding-top: 18px;
  position: inherit;
}

.user-details
.icon-submenu{
  line-height: 0px;
  margin: 0 15px 0 0 !important;
}

.side-nav .user-details a{
  line-height: 16px;
}

.side-nav .user-details a span{
  font-size: 12px;
}

.user-details #profile-dropdown span {
    display: table;
    padding-top: 15px;
}

.usuario-papel {
    display: inline-table;
    padding: 6px 0;
}

.side-nav.fixed .user-details a.btn-flat{
  margin: 18px 0;
}

ul#nav-mobile{
  margin: 0px;
} 

#profile-dropdown{
  top: 135px !important;
}

.user-details .circle{
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

.dashboard .card-stats-title{
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
}

.dashboard .card-stats-title .material-icons{
  font-size: 15px;
  font-weight: bold;
}

/* CSS - Pagina questões */
.bloco-qtd-pontuacao,
.bloco-respostas{
  display: none;
}

.label-tipo-questao{
  width: 130px;
  display: block;
  padding: 5px 10px;
  font-size: 12px;
  text-align: center;
  font-weight: bolder;
}

.edit.label-tipo-questao{
  height: 35px;
  margin-left: 15px;
  margin-top: 30px;
  text-align: center;
  font-weight: bolder;
}

.tipo-questao-1{
  border-bottom: 3px solid #ffcc00;
}

.tipo-questao-2{
  border-bottom: 3px solid #ff7f50;
}

.tipo-questao-3{
  border-bottom: 3px solid #00a86b;
}

.tipo-questao-4{
  border-bottom: 3px solid #ccccff;
}

.tipo-questao-5{
  border-bottom: 3px solid #005b96;
}

.nao-encontrada{
  color: #d63232;
}

.margin-none{
  margin: initial; 
}

.lista-questoes ul li{
  margin-left: 35px;
  list-style-type: upper-latin !important;
}

.tab-admin 
.tabs .tab a{
  color: #42a5f5;
}

.tab-admin
.tabs .indicator{
  background-color: #42a5f5;
}

.tab-admin .disabled a{
  color: #bdbdbd !important;
}

#form_questionario label.label-radio,
#form_questionario label.label-checkbox{
  padding-left: 25px !important;
  margin-right: 15px;
  color: #000;
}

.bt-action{
  font-size: 12px;
}

.btn.bt-action{
  padding: 0 1em;
  text-transform: capitalize;
}

.nao-encontrado{
  color: #b71c1c;
}

i.icone-acesso-material{
  margin: 0px 15px 0px 0px !important;
}

/* Página questionarios */
.label-questionario{
  display: block;
  font-size: 12px;
  font-weight: bolder;
  padding: 5px 10px;
  text-align: center;
  width: 130px;
}

.questionario-desabilitado{
  border-bottom: 3px solid #c62828;
}

.questionario-habilitado{
  border-bottom: 3px solid #4caf50;
}

.lista-questoes i.left{
  margin-right: 0px;
}

/* Correcoes tabelas respostas curtas */
table.resp-curtas td, th {
    padding: 7px;
    line-height: 20px;
}

.label-aproveitada {
    color: white;
    background-color: #66b266;
    font-size: 12px;
    border-radius: 6px;
    padding: 5px 10px;
}

/* Tabela exibicao de bugs */
.padding tr td{
  padding: 10px 7px;
}

/* Label exibicao status reporte bug */
.label-status{
  color: #ffffff;
  padding: 2px 10px;
  border-radius: 10px;  
}
.label-status.type-0 {
  background-color: #c7c7c7;
}

.label-status.type-1{
  background: #ff6f00;
}

.label-status.type-2{
  background: #00b0ff;
}

.label-status.type-3{
  background: #4caf50;
}

.label-status.type-4{
  background: #f44336;
}

.label-status.type-5{
  background: #673ab7;
}

.label-status.type-6{
  background: #00838f;
}
/* --/-- */


h3.underline{
  border-bottom: 1px solid #bdbdbd;
  padding-bottom: 10px;
  margin-bottom: 0px;
}

/* Pagina detalhar reporte */
span.info-msg-obs-reporte{
  color: #757575;
}
span.msg-obs-reporte{
  border: 1px solid #e0e0e0;
  display: grid;
  margin-top: 8px;
  padding: 10px;
  width: 100%;
}

.block-action-filtro{
  margin-top: 8px;
}

.bt-limpar{
  background-color: #ffffff;
  color: #2196f3;
  border:1px solid #2196f3;
}

.bt-limpar:hover{
  background-color: #2196f3;
  color: #fff;
} 

.texto-opcional{
  display: none;
}

span.bug-link{
    margin-top: 15px;
    line-height: normal;
}

.label-status.card-bug-titulo{
    border-radius: 0px;
    padding: 5px;
}

.collapsible-header.card-bug-titulo{
    padding: 0px;
    line-height: 20px;
    font-weight: bold;
    padding-left: 7px;
    font-size: medium;
    font-style: normal;
}

/* Questionários de avaliação - inicio */
.answer-group-radio{
  display: none;
}

#form_questionario
ol {
  counter-reset: item;
}

#form_questionario
ol li {
  display: block;
  position: relative;
}

#form_questionario
ol li:before {
  content: counters(item, ".")" ";
  counter-increment: item;
  position: absolute;
  margin-right: 100%;
  right: 10px; 
}

.answer-group-radio{
  height: auto;
  overflow: hidden;
}

h6.questoes-titulo,
h6.questionario-titulo{
  margin-top: 12px;
}

.collapsible-questoes{
  line-height: 31px;
}
/* Questionários de avaliação - fim */

/*Cards de controle e filtro*/
.card-bug {
    cursor: pointer;
    box-shadow:0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);
    transition: shadow-box .25s, transform .25s;
}
.card-bug:hover {
    transform: scale(1.05,1.05);
    box-shadow:0 8px 20px 0 rgba(0,0,0,0.16), 0 8px 40px 0 rgba(0,0,0,0.12);
}

.disciplinas-aulas p{
  margin: 0px !important;
}

@media only screen and (max-width: 993px){
  main {
    padding-left: 0;
  }
}

.side-nav-admin {
  width: 240px;
  max-width: 300px;
}

.side-nav-admin .logo a:hover {
  background-color: transparent;
}
.side-nav-admin .logo a img {
  transition: transform .1s ease;
}
.side-nav-admin .logo a:hover > img {
  transform: scale(1.1, 1.1);
}

.side-nav-admin .divider {
  border-bottom: 3px solid #42A5F5 !important;
  margin-top: 3px !important;
}

.side-nav-admin a:hover {
  background-color: #d9eaf7;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background-color: #FFF;
  border-bottom: 3px solid #42A5F5;
}

.nav-wrapper .nav-profile-admin {
  position: relative;
}

.nav-wrapper .nav-profile-admin .nome-nav {
  font-weight: 300;
  padding-left: .5em;
  color: rgba(0,0,0,.7);
  text-transform: capitalize;
}

.nav-wrapper .nav-profile-admin .nome-nav i {
  font-size: 1.3em;
  display:  inline;
  align-self:  center;
  position: absolute;
  right: 5%;
  bottom: -30%;
}

.nav-wrapper .dropdown-nav-admin {
  top: 3.5rem !important;
  width: 280px !important;
  overflow: hidden;
}

.nav-wrapper .dropdown-profile-admin {
  padding-top: 1em;
  display: block;
  background-color: #42A5F5;
}

.nav-wrapper .dropdown-profile-admin:hover {
  background-color: #42A5F5;
}
.nav-wrapper .profile-btn {
  transition: transform .25s;
}
.nav-wrapper .profile-btn:hover {
  background-color: transparent !important;
  transform: scale(1.1, 1.1);
}

.nav-wrapper .dropdown-profile-admin span {
  color: #FFF !important;
  text-align: center;
  padding: .5em 1em;
  font-size: 1em;
}

.nav-wrapper .dropdown-profile-admin img {
  width: 80px;
}

.nav-wrapper .dropdown-nav-admin .dropdown-image-admin{
  text-align: center;
  display:  block;
  margin:  auto;
}

.nav-wrapper .dropdown-nav-admin a {
  width: 100%;
}

.nav-wrapper .dropdown-nav-admin a:hover {
  background-color: #d9eaf7 !important;
}

.nav-wrapper .brand-logo img {
  width: 80%;
  justify-items: center;
}
.nav-wrapper .profile-image-admin{

}
.nav-wrapper ul li, .nav-wrapper ul li a {
  display: flex;
  align-items: center;
}
.nav-wrapper ul li a{
  color: #000 !important;
}

.show-on-small {
  display: none !important;
}
.hide-on-small-only {
  display: block !important;
}

@media screen and (max-width: 425px) {
  .show-on-small {
      display: flex !important;
  }
  .side-nav-admin {

  }
  .hide-on-small-only {
      display: none !important;
  }
}

/* Report Bug page */
.report_bug_table_col_titulo{
    width: 60%
}

.report_bug_table_col_data{
    width: 20%
}

.report_bug_table_col_status{
    width: 20%
}

/* Configurando style do vuetifyjs */
.application.theme--light {
    background: #FFFFFF;
}

.d-block {
  display: block !important;
}

.collapsible-body li.active {
  background-color: #42A5F5 !important;
}
.pagination li.active a{
  background-color: #42A5F5 !important;
}

.select2 .selection .select2-selection--single, .select2-container--default .select2-search--dropdown .select2-search__field {
    border-width: 0 0 1px 0 !important;
    border-radius: 0 !important;
    height: 2.05rem;
    margin-bottom: 0px;
}

.select2-container--default .select2-selection--multiple, .select2-container--default.select2-container--focus .select2-selection--multiple {
    border-width: 0 0 1px 0 !important;
    border-radius: 0 !important;
}

.select2-results__option {
    color: #26a69a;
    padding: 8px 16px;
    font-size: 16px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #eee !important;
    color: #26a69a !important;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #e1e1e1 !important;
}

.select2-dropdown {
    border: none !important;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12);
}

.select2-container--default .select2-results__option[role=group] .select2-results__group {
    background-color: #333333;
    color: #fff;
}

.select2-container .select2-search--inline .select2-search__field {
    margin-top: 0 !important;
}

.select2-container .select2-search--inline .select2-search__field:focus {
    border-bottom: none !important;
    box-shadow: none !important;
}

.select2-container .select2-selection--multiple {
    min-height: 2.05rem !important;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
    background-color: #ddd !important;
    color: rgba(0,0,0,0.26);
    border-bottom: 1px dotted rgba(0,0,0,0.26);
}

ol {
  font-weight: bold;
}

li span{
  font-weight: normal;
}

.card.resumo.disciplinas.detalhes{
  height: auto !important;
}