:root {
    --main-color: #20B1D3;
    --text-color: #515151;
    --black-color: #000;
    --darkblue-color: #24377C;
    --darkblue-hover: #536fd6;
    --grey-color: #E2E2E2;
    --destaque-color: #D37416;
    --alternate-blue: #003e7b;
}

* {
    border: 0;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style-type: none;
    font-family: 'Open Sans', sans-serif;
}

a {
    text-decoration: none;
    color: #24377C;
}

a:hover {
    color: #536fd6;
}

button.pure-button {
    background-color: #fff;
    border: 1px solid #E2E2E2;
    width: 100%;
    border-radius: 5px;
    height: 33px;
    font-weight: 700;
    font-size: 13px;
    margin-top: 50px;
}

.destaque-home button.pure-button {
    width: 100%;
    height: 60px;
    font-size: 16px;
    margin-top: 0;
    color: #24377C;
    border: 0;
    border-top: 1px solid #E2E2E2;
    border-radius: 0px;
    margin-top: 30px;
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3 {
    margin: 0;
}

h2 {
    color: #fff;
    font-weight: normal;
    line-height: 34px;
    font-size: 21px;
}

h2 span {
    font-size: 46px;
    display: block;
    margin-top: 4px;
    font-weight: 700;
}

h3 {
    font-size: 18px;
    margin: 0;
}

h3.titulo-secao {
    margin-bottom: 20px;
}

h4 {
    font-size: 14px;
}

h4 span {
    text-transform: lowercase;
    font-weight: normal;
    font-size: 12px;
}

h2, h3, h4 {
    text-transform: uppercase;
}

hr {
    border: 1px dashed rgba(128, 131, 132, .5);
    width: 95%;
    margin: 60px auto 0 auto;
}

body {
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    color: #515151;
}

.container {
    margin: 0 auto;
    padding: 6px 0;
    max-width: 1150px;
}

.btn {
    display: inline-block;
    border: 1px solid #24377C;
    margin: 9px 15px 10px 0;
    padding: 10px 25px;
    text-decoration: none;
    color: #24377C;
    border-radius: 5px;
    transition: all 150ms linear;
    background: #ffffff;
    font-weight: 700;
    text-align: center;
    font-size: 13px;
    max-width: 100%;
    line-height: 19px;
    height: auto;
    text-transform: none;
}

.btn:hover, .btn.active {
    color: #ffffff !important;
    background-color: #24377C;
}

.btn.active:hover {
    color: #ffffff !important;
    background-color: #172761;
}

.btn.left {
    text-align: left;
}

.btn.full {
    width: 100%;
}

.btn.inline {
    margin-top: 0;
}

.btn.small {
    padding: 5px 15px;
    margin-left: 10px
}

.btn.arrow:after {
    content: "";
    width: 5px;
    height: 5px;
    border-right: 2.5px solid #24377C;
    border-top: 2.5px solid #24377C;
    border-radius: 1px;
    transform: rotate(45deg);
    float: right;
    margin-top: 5px;
    transition: all 150ms linear;
}

.btn.arrow:hover:after {
    border-right: 2.5px solid #ffffff;
    border-top: 2.5px solid #ffffff;
}

header {
    height: 80px;
    background: #fff;
}

.header-logo {
    max-width: 190px;
    float: left;
    margin-top: 8px;
}

.slogan {
    background: url(../images/fundo-topo.jpg) no-repeat;
    background-size: cover;
}

::-webkit-input-placeholder {
    color: #515151;
}

:-moz-placeholder {
    color: #515151;
}

::-moz-placeholder {
    color: #515151;
}

:-ms-input-placeholder {
    color: #515151;
}

/***** MENUS *****/

header nav {
    margin-top: 20px;
    height: 60px;
}

.pure-menu-horizontal {
    width: inherit;
    float: right;
    text-align: right;
    background-color: #fff;
}

header nav ul li {
    float: left;
}

header nav ul li .pure-menu-link {
    font-size: 14px;
    display: block;
    height: 54px;
    font-family: 'Open Sans', sans-serif;
    font-weight: bold;
    margin: 0;
    transition: all 150ms;
    cursor: pointer;
    position: relative;
    padding: 5px 13px;
}

.pure-menu-link {
    color: #000;
}

.pure-menu-link:hover {
    background-color: #fff;
}

.pure-menu-selected>.pure-menu-link {
    color: #20B1D3;
}

.pure-menu-selected>.pure-menu-link:before {
    content: "";
    position: absolute;
    height: 6px;
    background: #20B1D3;
    width: 100%;
    top: 100%;
    left: 0;
    opacity: 1;
    transform: scaleX(1);
}

header nav>ul>li>a:before {
    content: "";
    position: absolute;
    height: 6px;
    background: #20B1D3;
    width: 100%;
    top: 100%;
    left: 0;
    transform: scaleX(.5);
    opacity: 0;
    transition: all 250ms;
}

header nav>ul>li>a:hover:before {
    transform: scaleX(1);
    opacity: 1;
}

header nav ul .pure-menu-has-children li {
    width: 100%;
    text-align: left;
}

header nav ul li .pure-menu-children a {
    width: 100%;
    color: #fff;
    padding: 15px 23px;
}

header nav ul li .pure-menu-children a:hover, header nav ul li .pure-menu-children .pure-menu-selected a {
    background: #00708e;
    color: #fff !important;
}

header nav ul li .pure-menu-children .pure-menu-selected>.pure-menu-link:before {
    content: none;
}

header nav ul li .pure-menu-children {
    background: #0093BA;
}

/***** MAIN *****/

h2 {
    margin: 60px 0 22px;
    text-shadow: 0 0 9px rgba(0, 0, 0, 0.8);
}

.destaque-home {
    background-color: #fff;
    margin-top: 0;
    padding: 35px 0 0;
}

.destaque-home p {
    font-size: 18px;
    line-height: 32px;
    margin-bottom: 15px;
    text-align: left;
}
.sobre-hotsite p{
    margin-bottom:0;
}

.section {
    border-top: 2px dashed #e2e2e2;
    padding-top: 22px;
    margin-top: 25px;
}

.section h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.section h3 small {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: none;
}

.grafico-home > div {
    border: 1px solid #E2E2E2;
    border-radius: 5px;
    margin: 10px 0 13px;
    text-align: center;
    padding: 20px 24px 10px;
    min-height: 565px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: stretch;
}


.grafico-home > .section-empresas {
    min-height: 448px;
}

.grafico-home.horizontal > div {
    flex-direction: row;
    flex-wrap: wrap;
}

.grafico-home>div h4 {
    flex: 0 0 auto;
}

.grafico-home>div h4 small {
    display: block;
    font-size: 11px;
    text-transform: initial;
    font-weight: 400;
    padding-bottom: 14px;
}

.grafico-home.horizontal > div h4 {
    width: 100%
}

.grafico-home>div div[id^=grafico] {
    height: 100%;
    flex: 1 1 auto;
    width: 100%;
}

.grafico-home.horizontal > div div[id^=grafico] {
    height: 250px;
    width: 230px;
    flex: 0 0 auto;
}

.grafico-home>div .legenda-grafico {
    margin-top: 8px;
    width: 100%;
}

.grafico-home.horizontal > div .legenda-grafico {
    flex: 0 1 auto;
    width: 50%;
    padding-left: 20px;
}

.grafico-home>div .legenda-grafico p {
    text-align: right;
    margin-bottom: 0;
    width: 100%;
}

.grafico-home.horizontal > div .legenda-grafico p {
    text-align: left;
}

.grafico-home>div .legenda-grafico .legenda-titulo {
    font-size: 13px;
    line-height: 18px;
    margin-bottom: 0;
    font-weight: 600;
    text-align: left;
}

.grafico-home>div .legenda-grafico .legenda-periodo {
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 10px;
    font-weight: 400;
}

.grafico-home>div .legenda-grafico .legenda-asterisco,
.grafico-interna .dado-asterisco {
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 1px;
    color: #24377c;
    margin-top: 10px;
    padding-top: 7px;
    border-top: 1px solid #a7a7a7;
}

.grafico-home>div .legenda-grafico .legenda-asterisco:before,
.grafico-interna .dado-asterisco:before {
    content: "*";
    display: inline-block;
    width: 5px;
    margin-left: -13px;
    margin-right: 5px;
}

.grafico-home>div  .legenda-grafico-sintomas .legenda-titulo span {
    color: #ff5151;
}

.grafico-home>div .legenda-grafico .legenda-valor {
    font-size: 22px;
    line-height: 23px;
    font-weight: 700;
    margin-bottom: 0;
    width: 160px;
}

.grafico-home>div .legenda-grafico .legenda-valor:before {
    content: "";
    background-color: #000;
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    margin-right: 8px;
    margin-top: -2px;
    vertical-align: middle;
}

.grafico-home>div .legenda-grafico .legenda-valor.verde:before {
    background-color: #00b67a;
}

.grafico-home>div .legenda-grafico .legenda-valor.vermelho:before {
    background-color: #ff5252;
}

.grafico-home>div .legenda-grafico .legenda-valor.vermelho-pattern:before {
    background: url(data:image/svg+xml;charset=utf-8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyNC4xLjMsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iQ2FtYWRhXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgNTAgNTAiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDUwIDUwOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7ZmlsbDojRkY1MjUyO30NCjwvc3R5bGU+DQo8cmVjdCB4PSIwIiB5PSIwIiBjbGFzcz0ic3QwIiB3aWR0aD0iNDkuOSIgaGVpZ2h0PSI1MCIvPg0KPHBvbHlnb24gcG9pbnRzPSIwLDQxIDAsNDIuNCA0Mi40LDAgNDEsMCAiLz4NCjxwb2x5Z29uIHBvaW50cz0iMzIuNywwIDAsMzIuNyAwLDM0LjEgMzQsMC4xIDM0LDAgIi8+DQo8cG9seWdvbiBwb2ludHM9IjI0LjMsMCAwLDI0LjMgMCwyNS43IDI1LjcsMCAyNS43LDAgIi8+DQo8cG9seWdvbiBwb2ludHM9IjAsMTUuOSAwLDE3LjMgMTcuMywwIDE1LjksMCAiLz4NCjxwb2x5Z29uIHBvaW50cz0iNy42LDAgMCw3LjUgMCw5IDguOSwwLjEgOC45LDAgIi8+DQo8cG9seWdvbiBwb2ludHM9IjAsMC43IDAuOCwwIDAsMCAiLz4NCjxwb2x5Z29uIHBvaW50cz0iMC42LDUwIDUwLDAuNyA1MCwwIDQ5LjIsMCAwLDQ5LjIgMCw1MCAiLz4NCjxwb2x5Z29uIHBvaW50cz0iNTAsOSA1MCw3LjYgNy42LDUwIDksNTAgIi8+DQo8cG9seWdvbiBwb2ludHM9IjE3LjQsNTAgNTAsMTcuNCA1MCwxNiAxNiw1MCAiLz4NCjxwb2x5Z29uIHBvaW50cz0iMjUuNyw1MCA1MCwyNS44IDUwLDI0LjMgMjQuMyw1MCAiLz4NCjxwb2x5Z29uIHBvaW50cz0iMzQuMiw1MCA1MCwzNC4yIDUwLDMyLjggMzIuNyw1MCAiLz4NCjxwb2x5Z29uIHBvaW50cz0iNDIuNSw1MCA1MCw0Mi41IDUwLDQxLjEgNDEuMSw1MCAiLz4NCjxwb2x5Z29uIHBvaW50cz0iNTAsNDkuMyA0OS4yLDUwIDUwLDUwICIvPg0KPC9zdmc+DQo=);
}

.legenda-valor label.valor {
    width: 46px;
    display: inline-block;
}

.grafico-home>div .legenda-grafico.legenda-grafico-sintomas {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-top: 10px;
}

.grafico-home>div .legenda-grafico.legenda-grafico-sintomas .legenda-titulo {
    font-size: 15px;
    line-height: 23px;
    text-align: left;
    text-align: center;
    margin-bottom: 3px;
}

.grafico-home>div .legenda-grafico.legenda-grafico-sintomas .legenda-titulo span {
    font-size: 27px;
    font-weight: 700;
    line-height: 23px;
    text-align: left;
}

.grafico-home>div .legenda-grafico.legenda-grafico-sintomas .legenda-asterisco {
    text-align: left;
    border-left: 1px solid #ccc;
    padding-left: 23px;
    padding-top: 0;
    flex: 0 0 auto;
    width: 196px;
    border-top: none;
}

.grafico-pessoas {
    margin: 0px auto 0;
    padding: 0px 55px;
}

.grafico-pessoas svg {
    width: 10%;
    padding: 0 2px;
    height: 21px;
}

.grafico-pessoas.empresas svg {
    width: 5%;
    padding: 0px 3px;
    height: 24px;
    float: left;
}

.grafico-pessoas svg path {
    fill: #D2D4DF;
}

.grafico-home>div .legenda-grafico.legenda-grafico-pessoas {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    padding: 0;
    flex-direction: column;
}


.grafico-home>div .legenda-grafico.legenda-grafico-pessoas .legenda-grupo {
    display: flex;
    flex: 0 0 auto;
    width: 100%;
    align-items: center;
    border-bottom: 1px solid #e2e2e2;
    padding: 12px 0px;
}

.grafico-home>div .legenda-grafico.legenda-grafico-pessoas .legenda-grupo:last-child {
    border-bottom: none;
}

.grafico-home>div .legenda-grafico.legenda-grafico-pessoas .legenda-valor:before {
    content: none;
}

.grafico-home>div .legenda-grafico.legenda-grafico-pessoas .legenda-valor .icone {
    width: 22px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 7px;
}

.grafico-home>div .legenda-grafico.legenda-grafico-pessoas .legenda-valor span svg path {
    fill: #D2D4DF;
}

.grafico-home>div .legenda-grafico.legenda-grafico-pessoas .legenda-valor.azul span svg path {
    fill: #20B1D3;
}

.grafico-home>div .legenda-grafico.legenda-grafico-pessoas .legenda-valor.vermelho span svg path {
    fill: #ff5252;
}

.tema-title {
    font-size: 16px;
    background-size: 37px;
    background-repeat: no-repeat;
    background-position: left center;
    margin-bottom: 9px;
    margin-top: 0px;
    padding-left: 45px;
    height: 50px;
    line-height: 50px;
}

.produto-grid {
    margin-bottom: 25px
}

.produto-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-radius: 5px;
    border: 1px solid #d6d7da;
    padding: 0;
    height: 100%;
    margin-bottom: 25px;
}

.produto-container .description {
    padding: 17px 20px 16px;
    flex: 0 1 auto;
    border-radius: 0;
    border: none;
    width: 100%;
    height: 100%;
}

.produto-container-row .description{
    padding: 17px 20px 16px;
    flex: 1 1 auto;
    border-radius: 0;
    border: none;
    width: auto;
    height: auto;
}

.produto-container .description h5 {
    margin: 0 0 7px;
    font-size: 15px;
    color: #24377C;
    text-transform: none;
    font-weight: 700;
    line-height: 23px;
}

.produto-container .description p {
    font-size: 13px;
    line-height: 20px;
    margin-bottom: 8px;
}

.produto-container .image {
    height: 140px;
    border-radius: 0;
    border: none;
    flex: 0 0 auto;
    background-color: #ededed;
    transition: all 250ms;
    background-size: cover;
}

.produto-container .links {
    height: 85px;
    display: flex;
    flex: 0 0 auto;
    justify-content: stretch;
    border-top: 1px solid #d6d7da;
    background: #E9EAEF;
    padding: 0 10px;
}

.produto-container .link {
    height: auto;
    border-radius: 0;
    border-left: 1px solid #d6d7da;
    flex: 1 1 auto;
    transition: all 250ms;
    text-align: center;
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    align-items: center;
    display: flex;
    padding: 0 10px 0;
    flex-direction: column;
    width: 100%;
    justify-content: center;
}

.produto-container .link:hover {
    background: #d6d7dc;
}

.produto-container .link:first-child {
    border-left: none;
}

.produto-container .link img {
    width: 29px;
    margin: 0 auto 3px;
    display: block;
}

.produto-container .description a {
    text-align: left;
    border: none;
    color: #24377C;
    margin-bottom: 8px;
    display: inline-block;
    font-weight: 700;
}



.produto-container-row{
    flex-direction: row !important;
    margin-bottom: 0px;
}

.produto-container-row .description{
    height:auto;
}

.produto-container-row .description p {
    border-bottom:2px solid #d6d7dc;
}

.banner-sinteses .link-saibamais {
    float: right;
}

.banner-sinteses .link-saibamais:after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border: 3px solid #24377c;
    border-top: 3px solid transparent;
    border-left: 3px solid transparent;
    transform: rotate(-45deg);
    margin-left: 5px;
}

.banner-sinteses.produto-container-row .description p {
    padding-bottom: 5px;
    border-bottom: 2px solid #d6d7dc;
}

.produto-container-row .image{
    height:218px;
}

.produto-container-row .pure-u-lg-2-3{
    width: 100%;

}

.produto-container-row .link{
    background-color: white;
    border-radius: 5px;
    height: 45px;
    border: 1px solid #24377C !important;
    flex: inherit;
    width: 30%;
  
    margin: 1.65em auto;
}

.produto-container-row .infos {
    display: flex;
    align-items: center;
    padding: 0 10px;
}

.banner-sinteses.produto-container-row .infos {
    margin-bottom: 3px;
}

.produto-container-row .info {
    background-color: white;
    padding: 0 0 1em;
    display: flex;
    align-items: center;
    font-style: italic;
    width: 25%;
    margin: 0 auto;
    justify-content: space-between;
}

.produto-container-row .info img{
    padding-right: 15px;
}

.produto-container-row .link.disabled,.produto-container-row .link.disabled:hover{
    border: 1px solid #d6d7da;
    color: #d6d7da;
    background-color: white;
}

.produto-container-row .link.disabled a{
    color: #d6d7da;
}

.noticias ul, .comunicados ul {
    height: 320px;
}

.noticias-interna ul {
    height: auto;
}

.noticias ul li, .comunicados ul li {
    padding-bottom: 13px;
}

.noticias-interna ul li {
    padding-bottom: 27px;
}

.noticias p span, .comunicados p span {
    color: #24377C;
    font-size: 14px;
    line-height: 23px;
    font-weight: 700
}

.noticias-interna p span {
    font-size: 14px;
    line-height: 23px;
}

.noticias p a, .comunicados p a {
    font-size: 15px;
    line-height: 23px;
    color: #515151;
}

.noticias-interna p a {  
    color: #24377C;
    font-weight: bold;  
    font-size: 15px;
    line-height: 23px;
}

.atendimento a {
    color: #24377C;
}

.atendimento div {
    height: 100px;
    background-color: #EDEDED;
}

.atendimento div:nth-child(2) {
    background-color: #FF5252;
    color: #fff;
    font-weight: bold;
}

.atendimento i {
    float: left;
    height: 60px;
    margin: 5px 20px 0 0;
    color: #24377C;
}

.atendimento i.fa-exclamation-triangle {
    color: #fff;
}

div.atendimento div, div.convenios a div {
    padding: 20px 20px 22px 20px;
    border-radius: 5px 5px 0 0;
    border: 1px solid #E2E2E2;
}

div.atendimento div:nth-child(3), div.convenios a:nth-child(3) div {
    border-radius: 0;
}

div.atendimento div:last-child, div.convenios a:last-child div {
    border-radius: 0 0 5px 5px;
}

.convenios-ms {
    background: #fff url(../images/convenios-ms.png) no-repeat center;
}

.convenios-seade {
    background: #4878a6 url(../images/convenios-seade.png) no-repeat center;
}

.convenios-fiocruz {
    background: #fff url(../images/convenios-fiocruz.png) no-repeat center;
}
.convenios-popmun {
    background: #fff url(../images/convenios-popmun.png) no-repeat center;
}

.convenios div {
    height: 100px;
}

.title-interna {
    border-bottom: 2px dashed #d6d7da;
    margin-bottom: 25px;
    margin-top: 25px;
}

.title-interna h1 {
    font-size: 32px;
    font-weight: 400;
    color: #24377C;
    padding: 7px 0 15px;
}


.title-interna h1 i {
    font-size: 25px;
    margin-right: 8px;
}

.title-interna h1 small {
    font-size: 18px;
    color: #515151;
    border-left: 1px solid #515151;
    margin-left: 4px;
    padding-left: 10px;
    display: inline-block;
    vertical-align: middle;
}

.title-interna.select h1 {
    display: inline-block;
}

.title-interna.select .btn {
    vertical-align: middle;
}

.title-interna.select .btn i {
    margin-right: 5px;
}

h3.subtitulo-interna {
    margin-bottom: 25px;
    font-size: 22px;
    text-transform: none;
}

.texto-paragrafo p {
    margin-bottom: 19px;
    font-size: 16px;
    line-height: 24px;
}

.texto-paragrafo .paragrafo-grande {
    margin-bottom: 19px;
    font-size: 21px;
    line-height: 32px;
}

.box-content {
    flex: 0 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    margin-bottom: 14px;
    position: relative;
    height: 100%;
}

.box-content-title {
    width: 100%;
    height: 125px;
    border-radius: 5px 5px 0 0;
    border: 1px solid #d6d7da;
    display: flex;
    flex: 0 0 auto;
    justify-content: center;
    align-items: center;
    padding: 13px;
    line-height: 20px;
    border-bottom: 0;
    transition: all 250ms;
}

.box-content-title.ms {
    background: #fff url(../images/convenios-ms.png) no-repeat center;
    background-size: cover;
}

.box-content-title.seade {
    background: #4878a6 url(../images/convenios-seade.png) no-repeat center;
}

.box-content-title.fiocruz {
    background: #fff url(../images/convenios-fiocruz.png) no-repeat center;
}

.box-content-title.popmun {
    background: #fff url(../images/convenios-popmun.png) no-repeat center;
}


.box-content-title h3 {
    text-align: center;
    margin: 0;
    height: auto;
    color: #24377C;
    transition: all 250ms;
    z-index: 1;
    font-size: 18px;
    line-height: 24px;
    text-transform: none;
    font-weight: 700;
}

.box-content-title:hover h3 {
    color: #20B1D3;
}

.box-content-title.box-content-image {
    background-size: cover;
    background-position: center;
    padding: 13px 45px;
    position: relative
}

.box-content-title.box-content-image h3 {
    color: #ffffff;
    text-shadow: 0 0 5px #000000;
}

.box-content-description {    
    background-color: #E2E2E2;
    border: 1px solid #d6d7da;
    border-radius: 0 0 5px 5px;
    padding: 15px 17px 10px;
    flex: 1 1 auto;
}

.box-content-description p {
    font-size: 14px;
    color: #515151;
    line-height: 23px;
    font-weight: 400;
}

.atendimento-interna a {
    color: #24377C;
}

.atendimento-interna div div:first-child div {
    height: 210px;
    background-color: #EDEDED;
}

.atendimento-interna div div div {
    height: 105px;
    background-color: #EDEDED;
}

.atendimento-interna div div:first-child div {
    padding-top: 65px;
    background-color: #FF5252;
    color: #fff;
    font-weight: bold;
    font-size: 17px;
}

.atendimento-interna i {
    float: left;
    height: 70px;
    margin: 5px 20px 0 0;
    color: #24377C;
}

.atendimento-interna i.fa-exclamation-triangle {
    color: #fff;
    font-size: 70px;
    margin-left: 14px;
}

div.atendimento-interna div div div {
    padding: 20px 20px 10px 20px;
    border-radius: 5px 0 0 5px;
    border: 1px solid #E2E2E2;
}

div.atendimento-interna div div:last-child div:first-child {
    border-radius: 0 5px 0 0;
}

div.atendimento-interna div div:last-child div:last-child {
    border-radius: 0 0 5px 0;
}

.modal-localidade {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.91);
    width: 100%;
    height: 100%;
    display: none;
}

.modal-localidade-container {
    position: absolute;
    display: flex;
    flex-direction: column;
    top: 50%;
    left: 50%;
    background: #fff;
    max-width: 90%;
    max-height: 90%;
    width: 900px;
    height: 550px;
    transform: translate(-50%, -50%);
    padding: 25px 30px;
    align-content: start;
}

.modal-localidade-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.modal-localidade-container h3 {
    height: 35px;
    width: 100%;
    flex: 0 0 auto;
}

.modal-localidade-container .btn {
    float: right;
    padding: 5px 10px;
    margin-top: -2px;
    margin-right: 0;
}

.modal-localidade-container hr {
    margin: 10px 0;
    width: 100%;
    flex: 0 0 auto;
}

.modal-localidade-lista {
    flex: 1 1 auto;
    display: inline-block;
    width: 100%;
    height: 100%;
    vertical-align: top;
    padding: 15px 0 0;
}

.modal-localidade-container ul {
    flex: 1 1 auto;
    display: inline-block;
    width: 33%;
    height: 85%;
    vertical-align: top;
    border-right: 1px solid #bbb;
}

.modal-localidade-container ul:last-child {
    border-right: none;
    width: 51%;
    /* height: 100%; */
    column-width: 200px;
    column-gap: 0;
    column-rule: none;
}

.modal-localidade-container ul li a {
    display: block;
    padding: 5px 15px;
}
#maior-valor{
    color:#20b1d3;
    margin-bottom: 5px;
}

.grafico-interna-destaque {
    width: 100%;
    border-radius: 5px;
    border: 1px solid #d6d7da;
    padding: 20px 27px;
    margin: 0 0 20px;
    min-height: 220px;
    display: flex;
    align-items: center;
}


.grafico-geminado > div > div:first-child > .grafico-interna-destaque {
    border-radius: 5px 0 0 5px;
    border-right: none;
    height: 386px;
    flex-direction: column;
}

.grafico-geminado > div > div:last-child > .grafico-interna-destaque {
    border-radius: 0 5px 5px 0;
    height: 386px;
    flex-direction: column;
}

.grafico-interna-destaque > .pure-g {
    width: 100%;
}

.grafico-interna-destaque .resumo {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.grafico-interna-destaque.has-title {
    flex-direction: column;
}


.grafico-interna-destaque.has-title h4 {
    margin-bottom: 25px
}

.grafico-corpo-humano {
    padding: 15px 0 0;
    display: block;
}

.grafico-corpo-humano h4 {
    padding: 5px 15px 15px;
}

.grafico-corpo-humano h4 small {
    font-size: 11px;
    text-transform: initial;
    font-weight: 400;
    padding-bottom: 14px;
    margin-left: 5px
}

.grafico-interna {
    width: 100%;
    border-radius: 5px;
    background: #ececec;
    padding: 20px 27px;
    margin-bottom: 25px;
    min-height: 150px;
    height: calc(100% - 21px);
}

.grafico-interna.possui-filho {
    padding: 20px 10px;
}

.grafico-interna.destaque {
    background: #d8d6d6;
    /* border: 1px solid #a2a2a2; */
}

.grafico-interna.destaque .dado-valor {
    color: #ff5252;
}

.grafico-interna.destaque .dado-variavel {
    color: #212121;
}

.grafico-saude, .grafico-trabalho, .grafico-referenciados, .grafico-sentiusintomas-total {
    height: 250px;
    width: 100%;
}

.grafico-pizza-empresas {
    height: 250px;
    width: 100%;
}

.grafico-interna-destaque .dado-valor {
    font-size: 30px;
    font-weight: 700;
}

.grafico-interna-destaque.saude .dado-valor {
    color: #20b1d3;
}

.grafico-interna-destaque.verde .dado-valor,
.grafico-interna.verde .dado-valor {
    color: #00b67a;
}

.grafico-interna-destaque.referenciados .dado-valor {
    color: #ff5252;
}

.grafico-interna-destaque.referenciados {
    height: 300px;
}


.grafico-interna-destaque.referenciados #legenda-referenciados {
    height: 110px;
    margin-top: 13px;
}

.grafico-interna-destaque.trabalho .dado-valor,
.grafico-interna.trabalho .dado-valor {
    color: #ff5252;
}

.grafico-interna .dado-valor {
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #20B1D3;
}

.grafico-interna-destaque.vermelho .dado-valor,
.grafico-interna-destaque.vermelho .colorir,
.grafico-interna.vermelho .dado-valor {
    color: #ff5252;
}

.grafico-interna-destaque.azul .dado-valor,
.grafico-interna-destaque.azul .colorir,
.grafico-interna.azul .dado-valor {
    color: #20B1D3;
}

.dados-comparativo {
    margin: 25px 0 15px;
    padding: 10px 0 15px;
    border-bottom: 1px solid #d6d7da;
    border-top: 1px solid #d6d7da;
}


.dados-comparativo .dado-valor {
    color: #515151 !important;
    font-size: 23px
}

.grafico-interna-destaque .dado-asterisco {
    margin-top: 13px;
    font-size: 11px;
}

.grafico-interna-destaque .dado-variavel, .grafico-interna .dado-variavel {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 5px;
}

.grafico-interna-destaque .dado-variavel small {
    font-size: 11px;
    font-weight: 400;
    display: block;
    margin: 5px 0;
}

.grafico-interna-destaque .dado-periodo, .grafico-interna .dado-periodo {
    font-size: 13px;
    color: #515151;
    margin-bottom: 9px;
}

.grafico-interna-principal {
    padding: 0 27px 10px 17px;
    flex: 1 0 auto;
}

.grafico-interna-irmao {
    padding: 0 27px 10px 17px;
    border-left: 1px solid  #ccc;
    flex: 1 0 auto;
}

.periodo-conjunto {
    border-top: 1px solid #ccc;
    padding: 8px 16px 4px;
    margin-top: 14px;
    flex: 0 0 auto;
}

.grafico-interna.possui-filho.periodo-abaixo {
    padding-bottom: 0;
    align-content: space-between;
}

.grafico-interna-filho {
    border-left: 1px solid  #ccc;
    padding: 15px;
    border-radius: 2px;
    height: 100%;
}

.grafico-interna-filho .dado-valor{
    font-size: 20px;
    font-size: 20px;
}

.titulo-dado-apoio {
    font-size: 14px;
    font-weight: 700;
    background: #515151;
    color: #ffffff;
    padding: 15px 15px;
    border-radius: 5px 5px 0 0;
    margin-top: 30px;
}

.titulo-dado-apoio:first-child {
    margin-top: 0;
}

.titulo-dado-apoio small {
    font-size: 13px;
    font-weight: 400;
    display: block;
    margin-top: 3px;
    text-transform: none;
}
.titulo-dado-apoio.blue{
    background: #003e7b;
}

.dado-apoio a {
    background: #E2E2E2;
    padding: 15px 15px;
    display: flex;
    border-top: 1px solid #bbbbbb;
    transition: all 150ms;
    color: #515151;
}

.dado-apoio a:hover {
    background: #d2d2d2;
}

.dado-apoio .dado-variavel {
    font-weight: 700;
    width: 100%;
    padding: 0;
}

.dado-apoio .dado-valor {
    color: #7d7d7d;
    font-weight: 700;
    width: 125px;
    text-align: right;
}

.dado-apoio .dado-variavel.blue{
    color:#003e7b;
    padding: 0;
}

.dado-apoio .o-que-e{
    padding: 5px 15px 15px;
    line-height: 23px;
    background: #f3f3f3;
}

.dado-apoio .o-que-e a{
    padding: 0;
    border: none;
    background: none;
    display: inline;
    font-weight: 700;
    color: #003e7b;
}

.label-experimental {
    display: block;
    background: url(../images/marca-experimentais-alerta.png) no-repeat;
    background-size: 15px;
    background-position: left 15px top 4px;
    padding-left: 23px;
    border-bottom: 1px solid #ccc;
    margin: 0 -15px 10px;
    padding: 3px 0 8px 38px;
    font-weight: 700;
    font-size: 13px;
    text-transform: none;
}

h3 .label-experimental {
    border-bottom: none;
    display: inline-block;
    border-left: 1px solid #ccc;
    margin-left: 17px;
    background-position-y: 1px;
    background-position-x: 22px;
    padding-left: 45px;
    vertical-align: middle;
    margin-top: 6px;
}

.dado-apoio .dado-periodo {
    font-weight: 400;
    font-size: 12px
}

.width-100{
    width:100% !important;
}

/* TABELA */

table {
    width: 100%;
    border: 1px solid #57585a;
    font-size: 14px;
    margin: 20px auto 25px;
}

thead th {
    background: #57585a;
    padding: 8px 12px;
    color: #ffffff;
    text-align: center;
    text-align: left;
}

tbody th {
    background: #EAEAE9;
    padding: 8px 12px;
    border: 1px solid #57585a;
    color: #5F5F62;
}

tbody td {
    padding: 8px 12px;
    border: 1px solid #57585a;
}

.numero {    
    font-family: 'Roboto Mono', monospace;
    text-align: right;
}


body .amcharts-amexport-menu-level-0.amcharts-amexport-top {
    top: 13px;
    bottom: auto
}

body .amcharts-amexport-item {
    border: 1px solid #ccc;
    background: #f7f7f7;
    border-radius: 0;
    margin: 0
}

body .amcharts-amexport-item.active,.indicador-grafico .amcharts-amexport-item:hover {
    background: #e8e7e7
}

body .amcharts-amexport-item.amcharts-amexport-item-level-0 {
    padding: 8px 7px 7px;
    font-size: 0;
    opacity: 1
}

body .amcharts-amexport-item-level-0:before {
    content: "";
    display: block;
    width: 14px;
    height: 3px;
    border-top: 2px solid #757575;
    border-bottom: 2px solid #757575
}

body .amcharts-amexport-item-level-0:after {
    content: "";
    display: block;
    width: 14px;
    height: 0;
    border-top: 2px solid #757575;
    margin-top: 4px
}

body .amcharts-amexport-item-level-0>a {
    height: 0
}

body .amcharts-amexport-item-level-1 {
    padding: 0;
    font-size: 12px;
    border: none;
    padding: 0 3px
}

body .amcharts-amexport-item-level-1 a {
    display: block;
    padding: 5px 8px;
    min-width: 75px;
    border-bottom: 1px solid #ccc
}

body .amcharts-amexport-item-level-1:last-child a {
    border: none
}

body .amcharts-amexport-right .amcharts-amexport-item>.amcharts-amexport-menu {
    padding: 0;
    background: #f7f7f7;
    right: 0;
    border: 1px solid #ccc;
}

.grafico-corpo-humano .grafico-corpo-humano {
    display: flex;
    position: relative;
    width: 100%;
    padding: 10px 0 0 14px;
    padding-right: 5px;
}

.corpo-humano {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    
    border-bottom: 1px solid #ccc;
    height: 298px;
    
    display: flex;
    flex-direction: column;
    align-items: center;

}

.corpo-humano img {
    width: 300px;
    margin: 0;
   
    display: block;
    
}

.corpo-humano >  div{
    position: relative;
    
}

.corpo-humano .dado-variavel {
    display: inline-block;
    font-size: 13px;
    margin-right: 5px;
    line-height: 15px;
    vertical-align: middle;
}

.corpo-humano .dado-valor {
    display: inline-block;
    font-size: 18px;
    width: 50px;
    font-weight: 700;
    color: #20b1d3;
}



.corpo-humano >  div:nth-child(1) {
    top: 0;
    left: -191px;
}

.corpo-humano > div:nth-child(2) {
    top: 0px;
    left: -194px;
}

.corpo-humano > div:nth-child(3) {
    top: -2px;
    left: -167px;
}

.corpo-humano > div:nth-child(4) {
    top: -9px;
    left: -189px;
}

.corpo-humano > div:nth-child(5) {
    top: -15px;
    left: -192px;
}
.corpo-humano > img:nth-child(6) {
    position: relative;
    top: -239px;
}

.corpo-humano > div:nth-child(7) {
    top: -536px;
    left: 161px;
}

.corpo-humano > div:nth-child(8) {
    top: -528px;
    left: 166px;
}

.corpo-humano > div:nth-child(9) {
    top: -523px;
    left: 178px;
}

.lista-sintomas {
    display: flex;
    flex: 1 1 auto;
    width: 100%;
    padding-top: 20px;
    flex-wrap: wrap;
}

.lista-sintomas > div {
    display: flex;
    height: 72px;
    border-bottom: 1px solid #E2E2E2;
    align-items: center;
    width: 50%;
    padding: 0 15px 0 25px;
}

.lista-sintomas > div:last-child,
.lista-sintomas > div:nth-last-child(2) {
    border-bottom: none;
}

.lista-sintomas > div img {
    display: inline-block;
    width: 50px;
    height: 50px;
}

.lista-sintomas > div .dado-variavel {
    flex: 0 0 auto;
    display: inline-block;
    width: auto;
    padding-left: 5px;
    line-height: 20px;
    font-size: 15px;
}

.lista-sintomas > div .dado-valor {
    flex: 1 1 auto;
    width: auto;
    font-size: 17px;
    text-align: right;
    font-weight: 700;
    color: #20b1d3;
}

p.nota-grafico {
    font-size: 12px;
    text-align: right;
    margin-top: 12px;
}

/* FOOTER */

footer {
    padding: 30px 0;
    background-color: #4b4b4c;
    margin-top: 50px;
}

.footer-envolve {
    margin: 0 auto;
}

img.footer-logo {
    width: 115px;
    float: left;
    margin: 5px 0 0 0;
}

.footer-socialmedia {
    float: right;
}

.social-media ul {
    margin: 0;
    padding: 0;
}

.social-icon {
    width: 35px;
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-block;
    margin-right: 5px;
}

.social-icon .icon-bg {
    transition: fill 250ms ease-out;
}

.social-icon .icon-logo {
    transition: fill 150ms ease-out;
}

.social-icon.youtube:hover .icon-bg {
    fill: #d03b3b;
}

.social-icon.instagram:hover .icon-bg {
    fill: #c54173;
}

.social-icon.facebook:hover .icon-bg {
    fill: #5176c9;
}

.social-icon.twitter:hover .icon-bg {
    fill: #49b1dd;
}

.social-icon:hover .icon-logo {
    fill: #ffffff;
}

.modal-localidade-lista ul li {
    cursor: pointer;
}

#links-tema .link:hover {
    cursor: pointer;
    background-color: white;
}

#links-tema .link.checked {
    background-color: white;
    color: #515151;
}

.conteudo__series {
    margin-bottom: 44px;
}

.conteudo__series h3 {
    margin-bottom: 15px;
    font-size: 23px;
    font-weight: 600;
}

.conteudo__mapa,
.conteudo__grafico {
    position: relative;
    height: 100%;
}

.conteudo__series .conteudo__mapa {
    padding: 25px 35px 15px;
    min-height: 450px;
}

.conteudo__series .conteudo__grafico,
 .grafico-container {
    min-height: 330px;
    padding: 25px;
}

.conteudo__series .cartograma-mapa div.map {
    max-width: 430px;
    margin: auto;
}

.conteudo__mapa > div,
.conteudo__grafico > div {
    position: relative;
    padding-left: 25px;
}

.conteudo__series .conteudo__grafico > div {
    height: 100%;
    padding: 0 25px;
}

.conteudo__series .conteudo__grafico > .porcentagem-valores {
    height: 100%;
    padding: 0 25px 0 0;
}

.conteudo__series .conteudo__mapa > div {
    position: static;
}

.cartograma-legenda {
    height: calc(100% - 35px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cartograma-legenda+button.small {
    margin: 0;
}

.grafico-barra, .grafico-pizza, .grafico-linha, .grafico-porcentagem {
    height: 100%;
}

.conteudo__series .grafico-barra .grafico-container {
    min-height: 400px;
}

.grupo-porcentagem {
    display: flex;
    flex-direction: column;
}

.grafico-stacked, 
.grafico-interna-destaque.stacked .grafico-container {
    height: 240px;
    min-height: auto;
    margin-bottom: 24px;
    padding-left: 25px;
}

.grafico-medio {
    height: 280px;
}

.grafico-grande, 
.grafico-interna-destaque.grande .grafico-container {
    height: 350px;
    padding: 0;
}


.conteudo__series .grafico-barra {
    min-height: 350px
}

.grafico-porcentagem {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 4px solid #ccc;
    position: relative;
    padding-right: 25px;
}

.legenda-grafico-porcentagem {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-weight: 700;
}

.grafico-porcentagem:after {
    content: "";
    position: absolute;
    width: 15px;
    height: 100%;
    border-top: 4px solid #ccc;
    border-bottom: 4px solid #ccc;
    right: -4px;
}

.grafico-porcentagem:before {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    border-top: 4px solid #ccc;
    border-right: 4px solid #ccc;
    right: -12px;
    transform: rotate(45deg);
    background: #ffffff;
}

.conteudo__mapa__quadro-geral {
    border-radius: 5px;
    border: 1px solid #d6d7da;
    margin: 30px 0 0;
    padding: 20px 25px 30px;
}

#quadro-geral-localidade {
    color: #eb5052;
    text-transform: none;
}

#quadro-geral-data {
    font-weight: normal;
    font-size: 0.75em;
    text-transform: lowercase;
}

.conteudo__mapa__quadro-geral ul li {
    margin-top: 0.5em;
}

.conteudo__mapa__quadro-geral ul li strong {
    font-weight: normal;
}

.conteudo__mapa__quadro-geral ul li span {
    font-weight: bold;
    color: #eb5052;
}

.conteudo__mapa__cartograma {
    padding: 1em;
}

.conteudo__mapa__legenda {
    margin-top: 3em;
}

.conteudo__series__quadro__grafico {
    width: 100%;
    max-width: 90vw;
    margin: 1em auto;
    height: 380px;
    max-height: 80vh;
    padding: 0;
}

.links-fonte {
    text-align: right;
    margin: 10px 0 30px 0;
    font-size: 12px;
}

.produto-container .resumo {
    background-color: #efefef;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
}

.produto-container .resumo .dado-botao,
.produto-container .resumo .dado-info {
    display: block;
    height: 100%;
    border-bottom: 1px solid #d6d7da;
    text-align: left;
    padding: 15px 53px 15px 25px;
    position: relative;
    font-weight: 600;
    font-size: 16px;
}

.produto-container .resumo .dado-botao:after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border-right: 2px solid #ccc;
    border-top: 2px solid #ccc;
    transform: rotate(45deg) translateY(-50%);
    right: 25px;
    top: 50%;
}

.produto-container .resumo .dado-info:after {
    content: none;
}

.produto-container .resumo .dado-info .dado-valor {
    font-size: 32px;
    font-weight: 700;
}

.sintoma-frequente .dado-info .dado-valor,
.grafico-sintomas-associados-2 .dado-info .dado-valor {
    font-size: 20px;
}

.produto-container .resumo .dado-botao .dado-valor {
    font-size: 25px;
    font-weight: 700;
}

.produto-container .resumo .dado-botao .dado-variavel  {
    margin: 8px 0;
}

.produto-container .resumo .dado-info .dado-variavel  {
    margin: 3px 0;
    font-weight: 600;
}

.produto-container .resumo .dado-info .dado-variavel .colorir  {
    font-size: 18px;
    margin: 0;
    font-weight: 700;
}

.produto-container.vermelho .dado-botao .dado-valor,
.produto-container.vermelho .dado-info .dado-valor,
.grafico-interna.possui-filho.vermelho .colorir ,
.produto-container.vermelho .dado-info .dado-variavel .colorir  {
    color: #ff5252;
}

.produto-container.verde .dado-botao .dado-valor,
.produto-container.verde .dado-info .dado-valor,
.grafico-interna.possui-filho.verde .colorir ,
.produto-container.verde .dado-info .dado-variavel .colorir  {
    color: #00b67a;
}

.produto-container.azul .dado-botao .dado-valor,
.produto-container.azul .dado-info .dado-valor,
.grafico-interna.possui-filho.azul .colorir ,
.produto-container.azul .dado-info .dado-variavel .colorir  {
    color: #20b1d3;
}

.produto-container.vermelho .dado-botao.active {
    background: #ff5252;
}

.produto-container.verde  .dado-botao.active {
    background: #00b67a;
}

.produto-container.azul  .dado-botao.active {
    background: #20b1d3;
}

.verde .grafico-porcentagem, 
.verde .grafico-porcentagem:after, 
.verde .grafico-porcentagem:before {
    border-color: #00b67a;
}

.vermelho .grafico-porcentagem, 
.vermelho .grafico-porcentagem:after, 
.vermelho .grafico-porcentagem:before {
    border-color: #ff5252;
}

.azul .grafico-porcentagem, 
.azul .grafico-porcentagem:after, 
.azul .grafico-porcentagem:before {
    border-color: #20b1d3;
}

.produto-container .resumo button.dado-botao.active .dado-valor,
.produto-container .resumo button.dado-botao.active .dado-variavel {
    color: #ffffff;
}

.produto-container .resumo .dado-botao.active:after {
    border-right: 2px solid #ffffff;
    border-top: 2px solid #ffffff;
}

.produto-container .resumo .dado-periodo {
    display: block;
    text-align: left;
    padding: 10px 25px;
}

h3.resumo-titulo {
    font-weight: normal;
    text-transform: initial;
    color: #252525;
    font-size: 17px;
    padding: 27px 25px;
    line-height: 25px;
    border-bottom: 1px solid #d6d7da;
    margin-bottom: 0;
    font-weight: 700;
    line-height: 22px;
    background: #dadada;
}

.conteudo__series__quadro__header__titulo .valor-bruto {
    font-weight: bold;
    font-size: 2em;
    color: #53b679;
}

.conteudo__series__quadro__header__titulo .datas {
    font-size: 0.8em;
    color: #515151;
}

.conteudo__series__quadro__header__desc {
    margin-top: 5em;
    padding-top: 1em;
    color: #000;
    border-top: 1px solid #bbb;
}

.conteudo__series__quadro__header__desc .seta {
    font-size: 2em;
    color: #53b679;
}

.conteudo__series__quadro__header__desc .percentual-de-variacao-semanal {
    color: #53b679;
    font-weight: bold;
}

#quadro-casos .conteudo__series__quadro__header__titulo .valor-bruto {
    color: #51b1d3;
}

#quadro-casos .conteudo__series__quadro__header__desc .seta {
    color: #51b1d3;
}

#quadro-casos .conteudo__series__quadro__header__desc .percentual-de-variacao-semanal {
    color: #51b1d3;
}

.conteudo__series__quadro__grafico__container {
    padding: 25px;
}

.conteudo__mapa__legenda {margin-top: 145px;}

#links-tema {
    border-top: none;
    height: 70px;
}

#links-tema .link {
    height: auto;
    border-radius: 0;
    border-left: 1px solid #d6d7da;
    flex: 1 1 auto;
    transition: all 250ms;
    text-align: center;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    line-height: 16px;
    align-items: center;
    display: flex;
    padding: 0 10px 0;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    color: #24377c;
}

#links-tema .link:hover {
    background: #d6d7dc;
}

#links-tema .link:first-child {
    border-left: none;
    border-radius: 5px 0 0 0;
}

#links-tema .link:last-child {
    border-radius: 0 5px 0 0;
}

.tabela-container {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;
    display: none;
    z-index: 1000;
}

.cartograma-tabela {
    max-width: 70%;
    width: 780px;
    background: #ffffff;
    padding: 29px 25px 25px;
    height: 80%;
    overflow-y: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.cartograma-tabela h3{
   text-transform: none;
   padding-right: 45px;
}

.cartograma-tabela .ranking{
    margin: 25px 0 0;
}

.cartograma-tabela .ranking .bar{
    display: none;
}

.cartograma-tabela .ranking .name{
    text-align: left;
}

.cartograma-tabela .ranking .name span{
    display: none;
}

.botao-fechar {
    background: none;
    color: #51b1d3;
    position: fixed;
    font-size: 33px;
    background: #fff;
    right: 24px;
    top: 15px;
}

/* GUTTERS */

.pure-g.gutters {
    margin: 0 -12.5px;
}

.pure-g.gutters>[class *=pure-u] {
    box-sizing: border-box;
    padding: 0 12.5px;
}

/* BARRA DE PROGRESSO */

.conteudo__grafico.porcentagem-container {
    display: flex;
    padding: 25px 9px 25px 25px;
}

.conteudo__grafico > div.porcentagem-descritor {
    width: 235px;
    padding: 0;
}

.bar-container{
    margin: 0 0 1em;
    display: flex;
    align-items: baseline;
    font-size: 13px;
}

.bar-holder {
    flex: 0 0 auto;    
    width: 125px;
	height: 12px;  /* Can be anything */
	position: relative;
	background: #ececec;
	margin: 3px 0px;
}

.bar-holder > span.bar-fill {
    display: block;
    height: 100%;
    background-color: #00b67a;
    position: relative;
    overflow: hidden;
}

.bar-data {
    flex: 0 0 auto;
    color: #00b67a;
    font-weight: 700;
    font-size: 17px;
    margin: 0 8px 0;
    width: 55px;
    text-align: right;
}

.hidden{
    display: none;
}

.verde .bar-holder > span.bar-fill {
    background-color: #00b67a;
}

.verde .bar-data {
    color: #00b67a;
}

.azul .bar-holder > span.bar-fill {
    background-color: #20b1d3;
}

.azul .bar-data {
    color: #20b1d3;
}

.vermelho .bar-holder > span.bar-fill {
    background-color: #ff5252;
}

.vermelho .bar-data {
    color: #ff5252;
}

.carregando {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    top: 0;
    left: 0;
    text-align: center;
    padding-top: 45px;
}

.conteudo__series__quadro__content {
    display: flex;
    flex-direction: column;
}

.produto-container .nota-grafico {
    padding: 0 25px 15px 0 
}

.produto-container .conteudo__mapa .nota-grafico {
    padding: 0;
}

.combo-troca-uf {
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 6px 10px;
    height: 34px;
    
}

.container-combo-uf {
    padding: 18px 18px;
    background-color: #aaa;
    border-radius: inherit;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.combo-label-uf{
    color: white;
    padding-top: .5%;
}