/*// Small devices (landscape phones, 576px and up)
@media (min-width: 576px) { ... }

// Medium devices (tablets, 768px and up)
@media (min-width: 768px) { ... }

// Large devices (desktops, 992px and up)
@media (min-width: 992px) { ... }

// X-Large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... }

// XX-Large devices (larger desktops, 1400px and up)
@media (min-width: 1400px) { ... }*/

/*#######################################
              FONTES
#######################################*/
@font-face {
    font-family: "Roboto";
    src: url("../fonts/Roboto-Light.ttf") format("truetype");
    font-weight: 200;
}
@font-face {
    font-family: "Roboto";
    src: url("../fonts/Roboto-Regular.ttf") format("truetype");
    font-weight: 300;
}
@font-face {
    font-family: "Roboto";
    src: url("../fonts/Roboto-Medium.ttf") format("truetype");
    font-weight: 400;
}
@font-face {
    font-family: "Roboto";
    src: url("../fonts/Roboto-Bold.ttf") format("truetype");
    font-weight: 500;
}

/*#######################################
              CSS RESET
#######################################*/

html, body, div, span, applet, object, iframe, p, blockquote, pre, abbr, acronym, address, big, code, del, dfn, img, ins, kbd, q, s, samp, small, strike, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
    margin: 0;
    padding: 0;
    border: 0; 
    outline: 0; 
    font-weight: inherit; 
     font-style: inherit; 
    font-size: 100%; 
    vertical-align: baseline; 
}
* {
    box-sizing: border-box;
}
html, body{
    height: 100%;
    background-color: #f0f2f3;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
}
button{
  cursor: pointer !important;
}
/*#################################################################################################
                                      GENERICOS
###################################################################################################*/
.btn {
  display: inline-block;
  padding: 10px;
  margin: 20px 0;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
  width: 100%;
  opacity: 1;
  transition: 0.4s ease-in-out;
}
.btn:hover {
  background: #ffa500;
  color: #fff;
}
.qvobject, .qvplaceholder {
  padding: 30px 10px 10px 10px;
  height: 400px;
}

/*#################################################################################################
                                      NAV BAR 
###################################################################################################*/

.nav-bar{
  height: 60px;
  background: #fff;
  color: #fff;
  display: flex;
  padding: 15px;
  align-items: center;
  justify-content: space-between;
  position: relative;
  /*margin-bottom: 20px;*/
  font-size: 20px;
}

.qvf-name{
    font-size: 20px;
}
.qvf-name-mobile{
  display: none;
}
.btn-icon {
    background: none;
    border: none;
    color: #3f2275;
    font-size: 20px;
    display: block;
    padding: 18px 10px;
    position: relative;
}
.btn-icon.ativo {
    z-index: 4;
    transition: all 600ms ease-in-out;
    /*transform: translateX(0) rotate(360deg);*/
}
.menu-direita {
    display: flex;
    align-items: center;
}
.qvUltimacarga {
    font-size: 13px;
    position: relative;
    right: 30px;
}
.navegacao-mobile{
  display: block;
}
/*.btn-roxo {
    border-radius: 10px;
    padding: 10px 13px;
    

    font-size: 18px;
}*/

@media (min-width: 768px){
    #btn-filtro::after {
        content: " Filtros ";
    }
}

/*#################################################################################################
                                      ASIDE BAR 
###################################################################################################*/

/*================== Esquerda ==================*/

.navegacao-esquerda {
    width: 250px;
    position: fixed;
    top: 60px;
    bottom: 0;
    left: 0;
    background-color: #fff;
    padding: 30px 10px 10px;
    transition: 0.3s;
}
.navegacao-esquerda .menu-item {
    list-style: none;
    cursor: pointer;
  
}
.navegacao-esquerda .menu-item .btn-1{ background: #007e80; }
.navegacao-esquerda .menu-item .btn-2{ background: #006580; }
.navegacao-esquerda .menu-item .btn-3{ background: #87205d; }
.navegacao-esquerda .menu-item .btn-4{ background: #BF6B04; }
.navegacao-esquerda .menu-item .btn-5{ background: #4A467A; }
.navegacao-esquerda .menu-item .menu-link {
    color: #fff;
    width: auto;
    font-size: 0.9em;
    display: block;
    margin: 10px 0;
    padding: 10px 5px;
    text-decoration: none;
    opacity: 1;
   transition: 0.4s ease-in-out;
     border-radius: 10px;
}

.navegacao-esquerda .menu-item .menu-link:hover {
  color: #fff;
  padding: auto;
  background: #d3d3d3;
  text-decoration: none;
  opacity: 1;
}
.navegacao-esquerda .menu-item .menu-link.ativo {
    background: #0061ae;
    color: #fff;
    text-decoration: none;
}
.navegacao-esquerda .menu-item .menu-link .fas {
    margin-right: 10px;
    font-size: 20px;
    margin-left: 5px;
    vertical-align: middle;

}
.navegacao-esquerda .nav-info{
  font-size: 16px;
}
.navegacao-esquerda .nav-info .logo {
  margin: 45px 0 10px;
  display: block;
}
.navegacao-esquerda .nav-info-first,
.navegacao-esquerda .nav-info-second {
  margin: 15px 0;
}
.navegacao-esquerda .nav-info .nav-info-first p {
  margin: 10px 5px;
  line-height: 20px;
}
.navegacao-esquerda .nav-info .nav-info-second p {
  margin: 10px 5px;
  font-size: 15px;
  line-height: 10px;
}
.navegacao-esquerda .nav-info .nav-info-fonte {
    position: absolute;
    bottom: 3em;
}

@media (max-width: 1080px){
   .navegacao-esquerda {
    left: -300px;
    
    width: 300px;
    z-index: 1;
   } 
   .navegacao-esquerda.ativo {
    /*transition: 0.3s;*/
    left: 0;
   }
}
@media (min-width: 1080px){
   .navegacao-esquerda.ativo {
    /*transition: 0.3s;*/
    left: -300px;
   }
}

/*================== Direita ==================*/
/*.qvFull .navegacao-direita{
  width: 50%;
  right: -50%;
  position: fixed;
  top: 0;
  bottom: 0;
  transition: 0.3s;
  z-index: 2;
  background-color: #4079bc;
  padding: 10px;
  overflow: scroll;
  height: 100%;
}*/
.navegacao-direita{
    width: 300px;
    position: fixed;
    top: 0;
    bottom: 0;
    right: -300px;
    transition: 0.3s;
    z-index: 2;
    background-color: #f2f2f2;
    padding: 10px;
    overflow: scroll;
    height: 100%;
}

/*.navegacao-direita{
    width: 300px;
    position: fixed;
    top: 0;
    bottom: 0;
    right: -300px;
    transition: 0.3s;
    z-index: 2;
    background-color: #4079bc;
    padding: 10px;
}*/

.navegacao-direita .titulo {
    color: #000;
    padding: 8px 0;
    border-bottom: 1px solid;
    padding-bottom: 16px;
    font-weight: 300;
    font-size: 20px;
    margin: 0;
    margin-bottom: 30px;
    position: relative;
}
.navegacao-direita.ativo{
    right: 0;
}
.fechar-navegacao-direita {
    position: fixed;
    display: none;
    background: #232f3ebf;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    zoom: 1;
    filter: alpha(opacity=50);
    opacity: 0.5;
    -webkit-transition: opacity .15s ease-in-out;
    -moz-transition: opactiy .15s ease-in-out;
    -ms-transition: opacity .15s ease-in-out;
    -o-transition: opacity .15s ease-in-out;
    transition: opacity .15s ease-in-out;
}
.fechar-navegacao-direita.ativo {
    display: flex;
    opacity: 1;
}



/*#################################################################################################
                                Conteudo das Páginas
###################################################################################################*/
.conteudo {
  display: block;
  padding: 20px 20px 20px 30px;
  position: relative;
  z-index: 0;
}
.qlik-page{
  display: none;
}
.qlik-page.ativo{
  display: block;
}
/*.fade {
  opacity: 0;
}
.fade.ativo.in {
  opacity: 1;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}*/
.top-inside-page {
    width: 100%;
    display: block;
    margin-bottom: 50px;
    border-bottom: 2px solid #dedddd;
    top: 15px;
    position: relative;
}
.titulo-pagina {
    border-bottom: 4px solid #a6a6a6;
    font-size: 25px;
    line-height: 36px;
    margin-bottom: -3px;
    color: #666;
    width: 70%;
    margin-top: 0;
}
.titulo-pagina small {
    display: block;
    margin: 5px 0;
}
.subtitulo-pagina {
    font-size: 20px;
    border-bottom: 4px solid #a6a6a6;
    line-height: 36px;
    margin-bottom: -3px;
    color: #666;
    width: 70%;
    margin-top: 0;
}
@media (min-width: 1080px){
  .conteudo {
      
      position: fixed;
      left: 250px;
      width: 82%;
      height: 100%;
      transition: 0.3s;
      overflow: auto;
      padding-bottom: 81px;
  }  .conteudo.ativo{
      
      position: fixed;
      left: 0;
      width: 100%;
  }
}
@media (min-width: 1440px){
  .conteudo {
      width: 87%;
  } 
}

/*#################################################################################################
                       QLIK SENSE
###################################################################################################*/

.qvGrafico {
    flex: 1 1 auto;
    height: 450px;
    /*margin: 10px 0;*/
    padding: 5px;
    /*width: 100%;*/
}

.qvBtn{
  height: 40px;
}

@media(max-width: 1080px){
  .qvf-name{
    position: absolute;
    left: 60px;
  }
  .navegacao-mobile{
    display: initial;
  }
}
.qv-collapsed-listbox{
  background-color:#fff !important;
}


.logo-gdf {
    display: flex;
}
.gdf-header {
    padding: 10px 0 30px;
}

.gdf-header .logo {
    float: left;
    padding-right: 20px;
}

.gdf-header.texto {
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 25px;
    margin-bottom: 5px;
}

.gdf-header.painel {
    font-size: 20px;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 80px;
    left: 120px;
}





/*#################################################################################################
                    FILTROS QLIK SENSE SWIPER
###################################################################################################

.filtros{
  position: relative;
  padding-top: 15px;
  display: flex;
}

.filtros .titulo{
  display: flex;
  font-size: 15px;
  margin-right: 8px;
  align-items: center;
}
.filtros .titulo i{
  margin-right: 4px;
  font-size: 20px;
}

.swiper-container{
  padding-right: 75px;
}
/*.swiper-button-next, .swiper-button-prev {
    position: absolute;
    top: 50%;
    width: calc(var(--swiper-navigation-size)/ 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(0px - (var(--swiper-navigation-size)/ 2));
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color,var(--swiper-theme-color));
}*/
/*.swiper-button-prev, .swiper-button-next{
    right: 0;
    border: 0;
    z-index: 99;
    height: 30px;
    display: flex;
    min-width: 30px;
    margin-left: 15px;
    position: absolute;
    border-radius: 6px;
    background: #fff;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 6px -1px rgb(0 0 0 / 60%);
    -webkit-transition: all .3s ease 0;
    -moz-transition: all .3s ease 0;
    -ms-transition: all .3s ease 0;
    -o-transition: all .3s ease 0;
    transition: all .3s ease 0;
}*/







/*#################################################################################################
                      LOADING
###################################################################################################*/

.loading-spinner {
  background: #333;
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  display: none;
}

.loading-spinner.active {
  display: block;
}

#hourglass { /* centraliza no meio da tela */
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -32px 0 0 -32px;
}

/*#################################################################################################
                      RESPONSIVO
###################################################################################################*/
@media (max-width: 768px){
.qvf-name{
  display: none;
}
.qvf-name-mobile{
  display: block;
  position: absolute;
    left: 60px;
}
  

  .conteudo header {
    border-bottom: 1px solid #e6e6e6;
    top: 10px;
    position: relative;
  }
  .gdf-header {
      padding: 0px 0 30px;
  }
  .gdf-header .logo {
    padding-right: 10px;
  }
  .gdf-header.texto {
      font-size: 25px;
      position: relative;
      top: 5px;
      width: 90%;
      margin: 0;
      left: 10px;
      padding: 0;
  }
  .gdf-header.painel {
      font-size: 17px;
      top: 10px;
      position: relative;
      left: 10px;
  }
  .qlik-page {
      top: 0px;
      position: relative;
  }

}



/*------------------------------ FullScreen ------------------------------*/

.fullscreen{
/*    -webkit-transition: width 2s ease-in-out;
    -moz-transition: width 2s ease-in-out;
    -o-transition: width 2s ease-in-out;
    transition: width 0.9s ease-in-out;*/
    position: relative;
    margin: 20px 0;
}
.fullscreen .header-fullscreen {
    position: relative;
    /* z-index: 5; */
    display: flex;
    background: white;
    height: 40px;
    border-bottom: 1px solid #cdcdcd;
    align-items: center;
    justify-content: end;
}
.fullscreen .btnFullscreen {
    padding: 6px 10px;
    /* color: #4079bc; */
    /* float: right; */
    /* right: 0; */
    /* position: absolute; */
    /* margin: 10px 0; */
}
.fullscreen .btnInfo {
    cursor: pointer;
}


.fullscreen .content-fullscreen h1.qv-object-title.qvt-visualization-title{
    margin-top: 10px;
}

.fullscreen .qv-selection-toolbar.qvt-selection-toolbar.ng-scope.sel-toolbar-card {
    top: 0 !important;
}
.content-fullscreen {
    background: #fff;
    min-height: 400px;
}

/*---------------------------- FullScreened -----------------------------*/

.fullscreened{
    z-index: 9999; 
    width: 100%; 
    height: 100%; 
    position: fixed; 
    margin: 0;
    top: 0; 
    left: 0; 
    overflow-y: hidden;
    background: #fff;
    cursor: pointer;
    -webkit-transition: width 2s ease-in-out;
    -moz-transition: width 2s ease-in-out;
    -o-transition: width 2s ease-in-out;
    transition: width 2s ease-in-out;
 }
 .fullscreened > .content-fullscreen .qvobject{
    height: 900px;
    height: calc(100% - (20px + 30px + 20px)) !important;
    height: calc(600px) !important;
 }
.fullscreened .header-fullscreen{
    position: relative;
}
.fullscreened .qvplaceholder{
  height: 92vh;
}

/*---------------------------- EXPORTAR -----------------------------*/
.export_data {
    position: absolute;
    top: 0;
    right: 30px;
    cursor: pointer;
    color: #4079bc;
    padding: 10px 15px;
}

/*
############################################################################
     Loader
############################################################################
*/


.loader {
  border: 8px solid #f3f3f3;
  border-radius: 50%;
  border-top: 7px solid #3498db;
  width: 60px;
  height: 60px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
  margin: 0 auto;
  top: calc(50%) !important;
  position: relative;
}




/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*#################################################################################################
                    FILTROS QLIK SENSE
###################################################################################################*/

.qvfiltro {
    height: 50px;
    width: 100%;
    z-index: 9999 !important;
}
.qvfiltro.filtroContainer{
  height: 180px;
}
.qvfiltro.filtroMini{
  height: 100px;
}
#CurrentSelections{
  margin-bottom: 20px; 
}

.qv-panel-current-selections{
  background: #fff
}

.qv-panel-current-selections .item{
  color:#5c5b5a;
}

.qv-panel-current-selections .buttons{
  display: none;
}

.qv-panel-current-selections .no-selection{
  color: #5a5958;
}

.qv-panel-current-selections .qv-subtoolbar-button.toggle-button:last-child{
  display: none !important;
}

.panel{
  background-color: transparent;
  box-shadow: none;
  border-radius: 0;
  border: 0;
}


img.logo-mp {
    width: 80%;
    display: block;
    float: left;
}


.btn-roxo {
    background: #3d107b;
    color: #fff;
}

img.logo-educacao {
    width: 80%;
}

.bg-logo-projeto {
    background: #3d107b;
    padding: 10px;
    margin: -30px -10px 20px;
}

h1.titulo-mapa {
    color: #2e2570;
    font-size: 30px;
}
p.texto-mapa {
    font-size: 14px;
    color: #2e2570;
    margin: 15px 0;
}

.qvKPI {
    height: 90px;
    margin: 10px 0;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
    border: 1px solid #ddd;
    padding: 5px;
        border-radius: 10px;
}
.qvKPI:hover {
    transform: translateY(-15px);
}
/*

.qvKPI::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 450px;
    height: 11px;
    transform: rotate(-60deg) translateY(-210px);
    background: linear-gradient(to right, #56e8f2, #2f80ed);
}

.qvKPI:hover::after{
  animation: border-effect 2.2s ease; 
}

@keyframes border-effect{
  0%{
    transform: rotate(-60deg) translateY(-210px);
  }
  100%{
    transform: rotate(-60deg) translateY(130px);
  }
}

.qvKPI .qv-object-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #f0f2f3;
    width: 98%;
    height: 94%;
    z-index: 10;
}
*/

img.logo-kpi {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 30px 0;
}

.sn-kpi-measure-title.sn-kpi-ellips-text {
    font-size: 14px;
}
.qvKPItexto {
    height: 45px;
}
.btnInfo {
    float: right;
    position: relative;
    top: -45px;
    font-size: 25px;
    cursor: pointer;
}

/*#################################################################################################
                    MODAL
###################################################################################################*/

.modal p {
    margin: 10px ;
}
.modal h4 {
    margin: 0px 10px 10px;
    padding: 10px 0;
}
table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

td, th {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
}

tr:nth-child(even) {
  background-color: #dddddd;
}