@charset "UTF-8";
:root {
  --logo-height:50px;
  --color-moderado:var(--text-color);
  --color-elevado:#f9a825;
  --color-muito-elevado:#ef6c00;
  --color-extremamente-elevado:#c62828;
  --color-muito-elevado-e-extremamente-elevado:#c62828;
  --facebook-color:#3B5998;
  --facebook-messenger-color:#0078FF;
  --twitter-color:#1DA1F2;
  --whatsapp-color:#34AF23;
  --dark-color: #444444;
  --text-color: #424242;
  --text-color-rgb: 66,66,66;
  --primary-color: #66BB6A;
  --primary-color-rgb: 102,187,106;
  --secondary-color: #2196f3;
  --secondary-color-rgb: 33, 150, 243;
  --site-bg-color:#FFF;
  --site-bg-color-rgb:255,255,255;
  --default-font:-apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif;
  --special-font:"",serif;
  --switcharoo-w:40px;
  --switcharoo-h:20px;
  --switcharoo-gap:2px;
  --header-h:100px;
}

@media screen and (prefers-color-scheme: dark) {
  :root {
    --text-color:#CCCCCC;
    --text-color-rgb:204,204,204;
    --site-bg-color:#1d201d;
    --site-bg-color-rgb:34,34,34;
  }
}
/************/
/* MEASURES */
/************/
.county {
  font-weight: 700;
}

.month {
  position: relative;
  text-align: center;
  border: 1px solid rgba(var(--text-color-rgb), 0.1);
  border-bottom: none;
}
.month .days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.month .month-name {
  position: absolute;
  right: calc( 100% + 10px );
  padding: 10px 0;
  line-height: 20px;
  font-size: 0.875rem;
  font-weight: 900;
  text-transform: uppercase;
  pointer-events: none;
  white-space: nowrap;
}
.month .month-name.month-name-nov {
  top: 34px;
}
.month .month-name.month-name-nov.month-name-full-history {
  top: calc( 34px + 41px * 0 );
}
.month .month-name.month-name-dec {
  top: calc( 34px + 41px * 0 );
}
.month .month-name.month-name-dec.month-name-full-history {
  top: calc( 34px + 41px * 5 );
}
.month .month-name.month-name-jan {
  top: calc( 34px + 41px * 0 );
}
.month .month-name.month-name-jan.month-name-full-history {
  top: calc( 34px + 41px * 9 );
}
.month .month-name.month-name-feb {
  top: calc( 34px + 41px * 0 );
}
.month .month-name.month-name-feb.month-name-full-history {
  top: calc( 34px + 41px * 14 );
}
.month .month-name.month-name-mar {
  top: calc( 34px + 41px * 0 );
}
.month .month-name.month-name-mar.month-name-full-history {
  top: calc( 34px + 41px * 18 );
}
.month .month-name.month-name-abr {
  top: calc( 34px + 41px * 0 );
}
.month .month-name.month-name-abr.month-name-full-history {
  top: calc( 34px + 41px * 22 );
}
.month .month-name.month-name-mai {
  top: calc( 34px + 41px * 0 );
}
.month .month-name.month-name-mai.month-name-full-history {
  top: calc( 34px + 41px * 26 );
}
.month .month-name.month-name-jun {
  top: calc( 34px + 41px * 0 );
}
.month .month-name.month-name-jun.month-name-full-history {
  top: calc( 34px + 41px * 31 );
}
.month .month-name.month-name-jul {
  top: calc( 34px + 41px * 0 );
}
.month .month-name.month-name-jul.month-name-full-history {
  top: calc( 34px + 41px * 35 );
}
.month .month-name.month-name-ago {
  top: calc( 34px + 41px * 0 );
}
.month .month-name.month-name-ago.month-name-full-history {
  top: calc( 34px + 41px * 39 );
}
.month .month-name.month-name-set {
  top: calc( 34px + 41px * 0 );
}
.month .month-name.month-name-set.month-name-full-history {
  top: calc( 34px + 41px * 44 );
}
.month .month-name.month-name-oct {
  top: calc( 34px + 41px * 0 );
}
.month .month-name.month-name-oct.month-name-full-history {
  top: calc( 34px + 41px * 48 );
}
.month .weekday-name {
  padding: 5px 0;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  border: 1px solid rgba(var(--text-color-rgb), 0.1);
  border-left: none;
  border-top: none;
}
.month .weekday-name:nth-child(7n) {
  border-right: none;
}
.month .day {
  background-color: var(--site-bg-color);
  border: 1px solid rgba(var(--text-color-rgb), 0.1);
  border-top: none;
  border-left: none;
}
.month .day a {
  display: block;
  padding: 10px 0;
  line-height: 20px;
  color: var(--text-color);
}
.month .day a:hover {
  background-color: var(--text-color);
  color: var(--site-bg-color);
  font-weight: 900;
}
.month .day:nth-child(7n) {
  border-right: none;
}
.month .day:nth-child(7n-1) a, .month .day:nth-child(7n) a, .month .day.day-holiday a {
  background-color: rgba(var(--text-color-rgb), 0.05);
}
.month .day:nth-child(7n-1) a:hover, .month .day:nth-child(7n) a:hover, .month .day.day-holiday a:hover {
  background-color: var(--text-color);
}
.month .day.day-current a {
  background-color: var(--primary-color);
  color: #FFF !important;
  font-weight: 900;
  pointer-events: none;
}
.month .day.day-disabled a {
  opacity: 0.25;
  pointer-events: none;
}
.month .day.day-prediction a {
  color: var(--primary-color);
  color: rgba(var(--text-color-rgb), 0.5);
}
.month .day.day-prediction a:hover {
  color: var(--site-bg-color);
}

.measures {
  position: relative;
}
.measures .section-anchor {
  position: absolute;
  top: calc( ( var(--logo-height) + ( 2 * 1.5rem ) + 1.5rem ) * -1 );
}
.measures .measures-lists {
  min-height: 40em;
}
.measures .measures-lists.refresh {
  animation: 0.33s ease-out refresh;
}

.legend .legend-item .legend-item-color {
  width: 16px;
  height: 16px;
  margin-right: 5px;
  background-color: red;
}
.legend .legend-item .legend-item-label {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 16px;
}
.legend .legend-item.legend-item-moderado .legend-item-color {
  background-color: #fdd835;
}
.legend .legend-item.legend-item-elevado .legend-item-color {
  background-color: #ffa000;
}
.legend .legend-item.legend-item-muito-elevado .legend-item-color {
  background-color: #ef6c00;
}
.legend .legend-item.legend-item-extremamente-elevado .legend-item-color {
  background-color: #bf360c;
}

.measures ul li {
  margin-bottom: 0.6em;
}
.measures ul li ul li {
  margin-bottom: 0em;
  font-size: 0.875em;
}

.rule-list li .scratch-that {
  text-decoration: line-through;
}

[data-evolution-chart] {
  position: relative;
  height: 20vh;
  max-height: 120px;
}

[data-evolution-chart] > canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

[data-incidence-chart] {
  position: relative;
  height: 40vh;
  max-height: 240px;
}

[data-incidence-chart] > canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

body.current-risk-confinamento .counties-risk-question,
body.current-risk-desconfinamento .counties-risk-question,
body.current-risk-desconfinamento-fase-1 .counties-risk-question,
body.current-risk-desconfinamento-fase-2 .counties-risk-question,
body.current-risk-desconfinamento-fase-3 .counties-risk-question,
body.current-risk-desconfinamento-fase-4 .counties-risk-question,
body.current-risk-nd .counties-risk-question {
  display: none !important;
}

.question {
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 20px;
  font-size: 0.75rem;
  vertical-align: top;
  color: #FFF;
  background-color: var(--primary-color);
  text-align: center;
  border-radius: 999px;
}
.question:hover {
  background-color: var(--text-color);
  color: var(--site-bg-color);
}

@media (max-width: 1200px) {
  .month .month-name {
    font-size: 0.75rem;
    right: calc( 100% );
    transform: rotate(-90deg);
  }
}
@media (max-width: 767px) {
  .options-ctn {
    display: flex;
    flex-direction: column;
  }
  .options-ctn .quadradinho-do-costa {
    order: -1;
  }

  .measures .section-anchor {
    top: calc( ( var(--logo-height) + ( 2 * 1rem ) - 10px) * -1 );
  }

  .measures-title-ctn {
    position: sticky;
    z-index: 1;
    top: 0;
    top: calc( var(--logo-height) + ( 2 * 1rem ) - 10px );
    background-color: var(--site-bg-color);
  }
  .measures-title-ctn.stuck {
    border-bottom: 1px solid rgba(var(--text-color-rgb), 0.1);
  }
}
@media (min-width: 768px) {
  .measures {
    background-color: rgba(var(--text-color-rgb), 0.03);
    border: 1px solid rgba(var(--text-color-rgb), 0.07);
  }
}
/****************/
/* VACCINATIONS */
/****************/
.vaccination-result .vaccination-result-title strong {
  font-weight: 900;
  border-bottom: 0.2em solid var(--primary-color);
}
.vaccination-result .alert-not-recommended {
  display: none;
}
.vaccination-result .when-tips li {
  display: none;
}
.vaccination-result .phase-one-title-show,
.vaccination-result .phase-two-title-show,
.vaccination-result .phase-three-title-show,
.vaccination-result .phase-nine-title-show {
  display: none;
}
.vaccination-result.no-result .phase,
.vaccination-result.no-result .vaccination-result-title,
.vaccination-result.no-result .when-tips {
  display: none;
}
.vaccination-result.phase-one .alert-no-result, .vaccination-result.phase-two .alert-no-result, .vaccination-result.phase-three .alert-no-result, .vaccination-result.phase-nine .alert-no-result {
  display: none;
}
.vaccination-result.phase-one .phase-one-title-show {
  display: inline;
}
.vaccination-result.phase-one .phase-one-show {
  display: list-item;
}
.vaccination-result.phase-two .phase-two-title-show {
  display: inline;
}
.vaccination-result.phase-two .phase-two-show {
  display: list-item;
}
.vaccination-result.phase-three .phase-three-title-show {
  display: inline;
}
.vaccination-result.phase-three .phase-three-show {
  display: list-item;
}
.vaccination-result.phase-nine .phase-nine-title-show {
  display: inline;
}
.vaccination-result.phase-nine .phase-nine-show {
  display: list-item;
}
.vaccination-result.phase-nine .alert-not-recommended {
  display: block;
}
.vaccination-result.refresh {
  animation: 0.33s ease-out refresh;
}

.golden-rule {
  --gr-size:30px;
  position: relative;
  font-size: 1.125em;
  line-height: 1.4em;
}
.golden-rule strong {
  font-weight: 900;
  border-bottom: 3px solid var(--primary-color);
}

.vaccination-progress {
  --vp-h:clamp(30px,5vh,40px);
  position: relative;
  height: var(--vp-h);
  background-color: rgba(var(--text-color-rgb), 0.1);
  border-radius: calc( var(--vp-h) / 2 );
  box-shadow: 0 0 0 1px rgba(var(--text-color-rgb), 0.03) inset;
}
.vaccination-progress .progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  border-radius: calc( var(--vp-h) / 2 ) 0 0 calc( var(--vp-h) / 2 );
  transition: width 0.5s ease-out;
  will-change: width;
}
.vaccination-progress .progress-bar.progress-bar-first {
  background: rgba(var(--primary-color-rgb), 0.33);
}
.vaccination-progress .progress-bar.progress-bar-second {
  background: var(--primary-color);
}
.vaccination-progress .progress-value {
  position: absolute;
  left: 0;
  top: 0;
  padding: 0 0.4em;
  line-height: calc( var(--vp-h) / 2);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary-color);
  transition: all 0.5s ease-out;
}
.vaccination-progress .progress-value.progress-value-first {
  top: 3%;
  opacity: 0.5;
}
.vaccination-progress .progress-value.progress-value-second {
  top: auto;
  bottom: 3%;
}
.vaccination-progress .population {
  font-size: 0.75rem;
  font-weight: 700;
  opacity: 0.33;
  position: absolute;
  top: 110%;
  width: 100%;
}
.vaccination-progress .marker {
  position: absolute;
  top: -24px;
  width: 100px;
  padding: 0 0.4em;
  height: 24px;
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  transform: translateX(-50%);
  opacity: 0.33;
}
.vaccination-progress .marker:before {
  position: absolute;
  left: 50%;
  top: 100%;
  width: 1px;
  height: var(--vp-h);
  background: var(--text-color);
  content: "";
  opacity: 0.5;
}
.vaccination-progress .marker.objective {
  left: 70%;
}
.vaccination-progress .marker.phase-one {
  left: 15.8%;
}
.vaccination-progress .marker.phase-two {
  left: 38.83%;
}
.vaccination-progress .marker.first-innoculation {
  left: 3.8%;
}
.vaccination-progress .marker.first-innoculation {
  left: 0.93%;
}

.vaccination-centers {
  background-color: rgba(var(--text-color-rgb), 0.03);
  border: 1px solid rgba(var(--text-color-rgb), 0.07);
}

.vaccination-centers-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  justify-content: center;
}
.vaccination-centers-list > li {
  flex-grow: 1;
  flex-basis: 300px;
}

.vaccination-center {
  display: block;
  height: 100%;
  color: var(--text-color);
  background-color: rgba(var(--text-color-rgb), 0.03);
  border: 1px solid rgba(var(--text-color-rgb), 0.07);
}
.vaccination-center .title {
  margin-bottom: 0;
}
.vaccination-center .address {
  font-size: 0.875rem;
  line-height: normal;
}
.vaccination-center .schedule {
  font-size: 0.875rem;
  line-height: normal;
  display: none;
}
.vaccination-center .waiting-time {
  display: inline-block;
  padding: 0.1em 0.8em;
  font-size: 0.75rem;
  font-weight: 700;
  background-color: var(--text-color);
  color: var(--site-bg-color);
  border-radius: 2px;
}
.vaccination-center .update-time {
  font-size: 0.75rem;
  opacity: 0.33;
}
.vaccination-center.waiting-time-00 .waiting-time {
  background-color: #e53935;
  color: #FFF;
}
.vaccination-center.waiting-time-01 .waiting-time {
  background-color: #ffa000;
  color: #FFF;
}
.vaccination-center.waiting-time-02 .waiting-time {
  background-color: #43a047;
  color: #FFF;
}
.vaccination-center:hover {
  border: 1px solid rgba(var(--text-color-rgb), 0.5);
}

@media (max-width: 768px) {
  .golden-rule {
    max-width: 16em;
    margin: 0 auto;
  }
}
@media (min-width: 768px) {
  .vaccination-result {
    background-color: rgba(var(--text-color-rgb), 0.03);
    border: 1px solid rgba(var(--text-color-rgb), 0.07);
  }
}
/*********************/
/* TESTING LOCATIONS */
/*********************/
.testing-location-list .testing-location {
  border: 1px solid rgba(var(--text-color-rgb), 0.2);
}
.testing-location-list .testing-location .address {
  line-height: 1.4em;
}
.testing-location-list .testing-location .schedule {
  opacity: 0.5;
  line-height: 1.4em;
}
.testing-location-list .testing-location .contacts {
  font-size: 0.875rem;
  font-weight: 500;
}
.testing-location-list .testing-location .contacts a {
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.testing-location-list .testing-location .metadata .label {
  position: relative;
  padding-left: 22px;
  font-size: 0.875rem;
  white-space: nowrap;
}
.testing-location-list .testing-location .metadata .label:before {
  position: absolute;
  top: 2px;
  left: 0;
  width: 16px;
  height: 16px;
  border: 1px solid var(--text-color);
  border-radius: 100%;
  content: "";
}
.testing-location-list .testing-location .metadata .label.on:before {
  background-color: var(--text-color);
}
.testing-location-list .testing-location .metadata .label.on:after {
  position: absolute;
  top: 7px;
  left: 4px;
  width: 8px;
  height: 5px;
  border: 2px solid var(--site-bg-color);
  border-right: none;
  border-top: none;
  content: "";
  transform: rotate(-45deg);
}
.testing-location-list .testing-location .metadata .label.off {
  opacity: 0.33;
}
.testing-location-list.refresh {
  animation: 0.33s ease-out refresh;
}

.testing-locations .alert-no-county,
.testing-locations .alert-no-results {
  display: none;
}
.testing-locations.has-no-results .alert-no-results {
  display: block;
}
.testing-locations.has-no-county .alert-no-county {
  display: block;
}

@media (min-width: 768px) {
  .testing-location-list .testing-location .metadata {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 0.2em 2em;
  }
}
/**************/
/* STATISTICS */
/**************/
.statistic .label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}
.statistic .date {
  font-size: 0.75rem;
  font-weight: 700;
  opacity: 0.33;
  text-transform: lowercase;
}
.statistic .today {
  margin: 0.1em 0 0.2em 0em;
  font-size: 2.25rem;
  font-weight: 900;
}
.statistic .today:after {
  opacity: 0.66;
}
.statistic .sparks {
  margin-top: 0.2em;
  font-size: 1.5em;
  opacity: 0;
  transition: opacity 0.33s ease-out;
  will-change: opacity;
}
.statistic.positive .sparks, .statistic.negative .sparks {
  opacity: 1;
}
.statistic.positive-is-good.positive .sparks {
  color: #43a047;
}
.statistic.positive-is-good.negative .sparks {
  color: #e53935;
}
.statistic.positive-is-bad.positive .sparks {
  color: #e53935;
}
.statistic.positive-is-bad.negative .sparks {
  color: #43a047;
}
.statistic.has-variance-sign .today {
  margin: 0.1em 0 0.2em -0.6em;
}

.chart-wrapper {
  overflow: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
}
.chart-wrapper::-webkit-scrollbar {
  background: rgba(var(--text-color-rgb), 0.05);
  width: 8px;
  height: 8px;
  border-radius: 8px;
}
.chart-wrapper::-webkit-scrollbar-thumb {
  background-color: rgba(var(--text-color-rgb), 0.2);
  border-radius: 8px;
}
.chart-wrapper::-webkit-scrollbar-corner, .chart-wrapper::-webkit-scrollbar-button {
  width: 0;
  height: 0;
  display: none;
}
.chart-wrapper .chart {
  position: relative;
  height: 40vh;
}
.context-dados .chart-wrapper .chart {
  min-width: 300%;
}
.context-dados .chart-wrapper.loading .chart {
  min-width: 0;
}

.emoji-scale {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: calc( 100% - 46px );
  height: calc( 100% - 46px );
  pointer-events: none;
}
.emoji-scale .emoji {
  --emoji-w:50px;
  --emoji-h:50px;
  position: absolute;
  width: var(--emoji-w);
  height: var(--emoji-h);
  background: no-repeat center center;
  background-size: 30px auto;
  opacity: 0.3;
}
.emoji-scale .emoji.emoji-happy {
  top: 50%;
  right: 50%;
  background-image: url("/assets/img/icon-emoji-happy.png");
}
.emoji-scale .emoji.emoji-apprehensive-r {
  top: 50%;
  right: calc( 50% - var(--emoji-w) );
  background-image: url("/assets/img/icon-emoji-apprehensive.png");
}
.emoji-scale .emoji.emoji-apprehensive-incidence {
  top: calc( 50% - var(--emoji-h) );
  right: 50%;
  background-image: url("/assets/img/icon-emoji-apprehensive.png");
}
.emoji-scale .emoji.emoji-sad {
  top: calc( 50% - var(--emoji-h) );
  right: calc( 50% - var(--emoji-w) );
  background-image: url("/assets/img/icon-emoji-sad-02.png");
  opacity: 0.2;
}

.statistics-nav-ctn {
  position: sticky;
  top: calc( var(--header-h) + 1rem );
}

.statistics-nav li {
  margin-bottom: 0.4em;
}
.statistics-nav li a {
  display: inline-block;
  line-height: 1.2em;
  color: var(--text-color);
}
.statistics-nav li a:hover {
  color: var(--primary-color);
}

/**********/
/* SPARKS */
/**********/
.sparks {
  text-rendering: optimizeLegibility;
  font-variant-ligatures: contextual;
  font-feature-settings: "calt" 1, "kern" 1;
  font-kerning: normal;
  -webkit-font-feature-settings: "calt", "kern";
  -moz-font-feature-settings: "calt=1", "kern=1";
}

.dotline-extrathick {
  font-family: "Sparks-Dotline-Extrathick", sans-serif;
}

@media (max-width: 767px) {
  .chart-wrapper:not(.dont-strech-it) {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }
  .chart-wrapper:not(.dont-strech-it) .chart {
    min-width: 200%;
    height: 60vh;
  }
  .context-dados .chart-wrapper:not(.dont-strech-it) .chart {
    min-width: clamp(2600px,400%,400%);
  }
  .context-plano-de-vacinacao .chart-wrapper:not(.dont-strech-it) .chart {
    min-width: clamp(1500px,400%,400%);
  }
}
@media (min-width: 768px) {
  .charts-ctn {
    background-color: rgba(var(--text-color-rgb), 0.03);
    border: 1px solid rgba(var(--text-color-rgb), 0.07);
  }
}
.testemonials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;
}

.testemonial {
  flex-grow: 1;
  background: rgba(var(--text-color-rgb), 0.05);
  border-radius: 10px;
}
.testemonial .testemonial-name {
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 1em;
}
.testemonial .testemonial-date,
.testemonial .testemonial-phone,
.testemonial .testemonial-email {
  font-size: 0.75rem;
  line-height: 1em;
  opacity: 0.5;
}
.testemonial .testemonial-message {
  max-width: 20em;
  line-height: normal;
}

@font-face {
  font-family: "Sparks-Dotline-Extrathick";
  src: url("../font/Sparks-Dotline-Extrathick.eot");
  src: url("../font/Sparks-Dotline-Extrathick.eot?#iefix") format("embedded-opentype"), url("../font/Sparks-Dotline-Extrathick.woff2") format("woff2"), url("../font/Sparks-Dotline-Extrathick.woff") format("woff"), url("../font/Sparks-Dotline-Extrathick.ttf") format("truetype"), url("../font/Sparks-Dotline-Extrathick.svg#Sparks-Dotline-Extrathick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/*********/
/*********/
/*********/
@keyframes refresh {
  0% {
    opacity: 0;
    transform: translateY(3%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*********/
/*********/
/*********/
.fs-xxxsmall {
  font-size: 0.5rem;
}

.fs-xxsmall {
  font-size: 0.625rem;
}

.fs-xsmall {
  font-size: 0.75rem;
}

.fs-small {
  font-size: 0.875rem;
}

.fs-medium {
  font-size: 1rem;
}

.fs-large {
  font-size: 1.125rem;
}

.fs-xlarge {
  font-size: 1.25rem;
}

.fs-xxlarge {
  font-size: 1.375rem;
}

.fs-xxxlarge {
  font-size: 1.5rem;
}

.fs-xxxxlarge {
  font-size: 1.625rem;
}

.fs-xxxxlarge {
  font-size: 1.75rem;
}

.fs-xxxxxlarge {
  font-size: 1.875rem;
}

.fs-xxxxxxlarge {
  font-size: 2rem;
}

.fw-100 {
  font-weight: 100;
}

.fw-200 {
  font-weight: 200;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.fw-900 {
  font-weight: 900;
}

.ratio-ctn {
  position: relative;
  height: 0;
  overflow: hidden;
}
.ratio-ctn > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}
.ratio-ctn.ratio-ctn-169 {
  padding-top: 56.25%;
}
.ratio-ctn.ratio-ctn-31 {
  padding-top: 33%;
}
.ratio-ctn.ratio-ctn-21 {
  padding-top: 50%;
}
.ratio-ctn.ratio-ctn-43 {
  padding-top: 75%;
}
.ratio-ctn.ratio-ctn-11 {
  padding-top: 100%;
}
.ratio-ctn.ratio-ctn-45 {
  padding-top: 125%;
}
.ratio-ctn.ratio-ctn-34 {
  padding-top: 150%;
}
.ratio-ctn.ratio-ctn-12 {
  padding-top: 200%;
}

.tiny-info-marker {
  opacity: 0.5;
}

/*********/
/*********/
/*********/
.form-group .form-control {
  background-color: var(--site-bg-color);
  color: var(--text-color);
  border-color: rgba(var(--text-color-rgb), 0.1);
}
.form-group.select {
  position: relative;
}
.form-group.select:after {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 6px;
  height: 6px;
  border: 1px solid var(--text-color);
  border-left: none;
  border-top: none;
  transform: rotate(45deg);
  content: "";
  pointer-events: none;
}
.form-group.select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: "";
}

.form-check {
  margin-bottom: 0.3em;
}
.form-check input,
.form-check label {
  opacity: 0.66;
}
.form-check input:hover,
.form-check label:hover {
  opacity: 1;
  cursor: pointer;
}
.form-check input:checked {
  opacity: 1;
}
.form-check input:checked + label {
  opacity: 1;
}
.form-check label {
  user-select: none;
}

.current-county .elevado,
.select-county .elevado {
  color: var(--color-elevado);
}
.current-county .muito-elevado,
.select-county .muito-elevado {
  color: var(--color-muito-elevado);
}
.current-county .extremamente-elevado,
.select-county .extremamente-elevado {
  color: var(--color-extremamente-elevado);
}
.current-county .muito-elevado-e-extremamente-elevado,
.select-county .muito-elevado-e-extremamente-elevado {
  color: var(--color-muito-elevado-e-extremamente-elevado);
}

.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl {
  padding-left: 1.5em;
  padding-right: 1.5em;
}

.btn {
  min-width: 42px;
  line-height: 40px;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 50px;
  transition: none;
  background-color: transparent;
  border-color: var(--text-color);
  color: var(--text-color);
}
.btn svg + *,
.btn i + * {
  margin-left: 0.4em;
}
.btn svg {
  width: 1em;
  margin-top: -0.2em;
  fill: var(--text-color);
}
.btn span {
  line-height: 1em;
}
.btn:hover {
  background-color: var(--text-color);
  border-color: var(--text-color);
  color: var(--site-bg-color);
}
.btn:hover svg {
  fill: var(--site-bg-color);
}
.btn.btn-social {
  padding-left: 2em;
  padding-right: 2em;
  border: 1px solid var(--text-color);
  color: var(--text-color);
}
.btn.btn-social .label,
.btn.btn-social .social-network-name {
  display: none;
}
.btn.btn-social:hover {
  background-color: var(--text-color);
  color: #FFF;
}
.btn.btn-social:hover svg {
  fill: #FFF;
}
.btn.btn-social.btn-social-facebook {
  --text-color:var(--facebook-color);
}
.btn.btn-social.btn-social-twitter {
  --text-color:var(--twitter-color);
}
.btn.btn-social.btn-social-whatsapp {
  --text-color:var(--whatsapp-color);
}
.btn.cafezinho {
  position: relative;
  padding: 0 84px 0 0.75rem;
  border-radius: 30px;
}
.btn.cafezinho:after {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  padding: 0 0.75rem 0 1.75rem;
  background: url("/assets/img/icon-heart.png") no-repeat 0.6rem 50%;
  background-size: 14px;
  background-color: rgba(var(--site-bg-color-rgb), 0.1);
  border-radius: 0 50px 50px 0;
  content: attr(data-supporters);
}
.btn[disabled] {
  position: relative;
  opacity: 0.33;
  cursor: not-allowed;
}
.btn[disabled]:hover:after {
  position: absolute;
  top: 105%;
  left: 50%;
  width: 200px;
  font-size: 0.75rem;
  line-height: normal;
  transform: translateX(-50%);
  content: "Indisponível";
  color: var(--text-color);
}

.btn-primary:not(:disabled):not(.disabled) {
  color: #fff;
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.btn-primary:not(:disabled):not(.disabled):hover, .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled):focus {
  background-color: var(--dark-color);
  border-color: var(--dark-color);
}

.btn-secondary {
  border-color: var(--primary-color);
  color: var(--primary-color);
}
.btn-secondary svg {
  fill: var(--primary-color);
}
.btn-secondary:hover, .btn-secondary:active, .btn-secondary:focus {
  background-color: var(--text-color);
  border-color: var(--text-color);
  color: var(--site-bg-color);
}
.btn-secondary:hover svg, .btn-secondary:active svg, .btn-secondary:focus svg {
  fill: var(--site-bg-color);
}

.form-control {
  border-radius: 0;
}

.table {
  color: var(--text-color);
}
.table.table-bordered td,
.table.table-bordered th {
  border-color: rgba(var(--text-color-rgb), 0.1);
}

/*********/
/*********/
/*********/
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc( ( var(--header-h) + 1rem ) );
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: var(--default-font);
  background-color: var(--site-bg-color);
  color: var(--text-color);
  line-height: 1.45em;
}
body.context-historico-de-medidas .mini-hero {
  display: none;
}
body.context-historico-de-medidas .mini-hero + .buy-me-a-coffee {
  display: none;
}

a {
  color: var(--primary-color);
}
a:hover {
  text-decoration: none;
  color: var(--text-color);
}

ul {
  padding-left: 1.1em;
}
img {
  max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--text-color);
}

.main {
  min-height: 600px;
}

.section-header {
  --section-title-h:30px;
  line-height: var(--section-title-h);
}
.section-header .section-title .number {
  display: inline-block;
  vertical-align: top;
  width: var(--section-title-h);
  height: var(--section-title-h);
  line-height: var(--section-title-h);
  margin-right: 2px;
  font-size: 1rem;
  font-weight: 900;
  text-align: center;
  background-color: var(--primary-color);
  color: #FFF;
  border-radius: 100%;
}
.section-header .section-title .title {
  display: inline-block;
  vertical-align: top;
  line-height: var(--section-title-h);
}

header#header ._row > * {
  position: relative;
}

.mini-hero a {
  font-weight: 900;
  color: var(--text-color);
}
.mini-hero a:hover {
  color: var(--primary-color);
}

footer#footer {
  border-top: 1px solid rgba(var(--text-color-rgb), 0.1);
}
footer#footer a {
  font-weight: 900;
  color: var(--text-color);
}
footer#footer a:hover {
  color: var(--primary-color);
}

.footer-menu .nav-item .nav-link {
  padding: 0;
}
.menu .nav-item .nav-link {
  padding: 0;
  line-height: calc( var(--logo-height) - 2px );
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-color);
  border: 1px solid transparent;
}
.menu .nav-item .nav-link:hover {
  color: var(--primary-color);
}
.menu .nav-item:not(:first-child) {
  margin-left: 1em;
  margin-left: 1.5vw;
}
.menu .nav-item.current .nav-link {
  color: var(--primary-color);
  pointer-events: none;
}
.menu .nav-item.mais {
  display: none;
}

.no-scroll {
  overflow: hidden;
}

.pandemia-modal-ctn {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 11, 11, 0.75);
  display: none;
}
.pandemia-modal-ctn .pandemia-modal {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc( 100% - ( 2 * 1.5rem ) );
  min-width: 300px;
  max-width: 40em;
  max-height: 90vh;
  transform: translate(-50%, -50%);
  background-color: var(--site-bg-color);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
}
.pandemia-modal-ctn .pandemia-modal-header {
  position: relative;
}
.pandemia-modal-ctn .pandemia-modal-header .pandemia-modal-title {
  padding-right: 30px;
  line-height: 20px;
}
.pandemia-modal-ctn .pandemia-modal-body {
  overflow: auto;
  overscroll-behavior: contain;
}
.pandemia-modal-ctn .pandemia-modal-close {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  text-indent: -999999pc;
  opacity: 0.33;
}
.pandemia-modal-ctn .pandemia-modal-close:before, .pandemia-modal-ctn .pandemia-modal-close:after {
  position: absolute;
  top: 50%;
  left: 10%;
  width: 80%;
  height: 2px;
  margin-top: -1px;
  background: var(--text-color);
  content: "";
  transform: rotate(45deg);
}
.pandemia-modal-ctn .pandemia-modal-close:after {
  transform: rotate(-45deg);
}
.pandemia-modal-ctn .pandemia-modal-close:hover {
  opacity: 1;
}
.pandemia-modal-ctn.show {
  display: block;
}
.pandemia-modal-ctn#modal-notifications .pandemia-modal {
  max-width: 30em;
}

.logo {
  display: inline-block;
  height: var(--logo-height);
  vertical-align: middle;
  line-height: var(--logo-height);
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
}
.logo a {
  display: inline-block;
  vertical-align: top;
  max-width: 300px;
  height: var(--logo-height);
  line-height: var(--logo-height);
  will-change: opacity, transform;
}
.logo a img {
  vertical-align: middle;
  line-height: var(--logo-height);
  max-height: 100%;
  margin-top: -0.2em;
}

.blank-slate {
  background-color: rgba(var(--text-color-rgb), 0.1);
  text-align: center;
}

.message {
  background-color: rgba(var(--text-color-rgb), 0.1);
}

.alert {
  background-color: #ef5350;
  color: #FFF;
}

.making-us-blush {
  border-top: 1px solid rgba(var(--text-color-rgb), 0.1);
}

.making-us-famous {
  border-top: 1px solid rgba(var(--text-color-rgb), 0.1);
}

.press-snippet {
  --ps-logo-h:30px;
  display: block;
  color: var(--text-color);
}
.press-snippet picture {
  display: inline-block;
  vertical-align: top;
  height: var(--ps-logo-h);
}
.press-snippet picture img {
  display: inline-block;
  vertical-align: middle;
  max-height: var(--ps-logo-h);
  line-height: var(--ps-logo-h);
}
.onesignal-customlink-subscribe.button {
  padding: 0 1em !important;
  line-height: 40px !important;
  box-shadow: none !important;
  text-transform: none !important;
  border: 1px solid var(--primary-color);
  border-radius: 24px !important;
  transition: none !important;
}
.onesignal-customlink-subscribe.button:hover {
  background-color: var(--text-color) !important;
  border-color: var(--text-color) !important;
}

.loader {
  display: none;
  width: 50px;
  height: 50px;
}
.loader:after {
  content: "";
  display: block;
  width: 34px;
  height: 34px;
  margin: 8px;
  border-radius: 50%;
  border: 4px solid rgba(var(--text-color-rgb), 0.33);
  border-color: rgba(var(--text-color-rgb), 0.33) transparent rgba(var(--text-color-rgb), 0.33) transparent;
  animation: spinit 1s linear infinite;
}

.loading {
  position: relative;
}
.loading > *:not(.loader) {
  opacity: 0.33;
  pointer-events: none;
}
.loading .loader {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}

@keyframes spinit {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.notification-segment {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  border-top: 1px solid rgba(var(--text-color-rgb), 0.15);
  border-left: none;
  border-right: none;
}
.notification-segment .label {
  line-height: var(--switcharoo-h);
}
.notification-segment:last-child {
  border-bottom: 1px solid rgba(var(--text-color-rgb), 0.15);
}
.notification-segment.soon :last-child {
  opacity: 0;
  pointer-events: none;
}
.notification-segment.soon:after {
  position: absolute;
  top: 50%;
  right: 0;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary-color);
  transform: translateY(-50%);
  content: "Brevemente";
}
.notification-segment.beta .label:after {
  position: absolute;
  top: 50%;
  right: calc( var(--switcharoo-w) + 10px );
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-color);
  transform: translateY(-50%);
  content: "Beta";
}

.switcharoo {
  position: relative;
}
.switcharoo input[type=checkbox] {
  height: 0;
  width: 0;
  visibility: hidden;
  position: absolute;
  pointer-events: none;
}
.switcharoo label {
  display: block;
  position: relative;
  width: var(--switcharoo-w);
  height: var(--switcharoo-h);
  margin: 0;
  cursor: pointer;
  text-indent: -9999px;
  background: rgba(var(--text-color-rgb), 0.5);
  border-radius: calc( var(--switcharoo-h) / 2 );
}
.switcharoo label:after {
  content: "";
  position: absolute;
  top: var(--switcharoo-gap);
  left: var(--switcharoo-gap);
  width: calc( var(--switcharoo-h) - ( 2 * var(--switcharoo-gap) ) );
  height: calc( var(--switcharoo-h) - ( 2 * var(--switcharoo-gap) ) );
  background: #FFFFFF;
  border-radius: 90px;
  transition: 0.33s;
}
.switcharoo input:checked + label {
  background: var(--primary-color);
}
.switcharoo input:checked + label:after {
  left: calc( 100% - var(--switcharoo-gap) );
  transform: translateX(-100%);
}
.switcharoo label:active:after {
  width: calc( var(--switcharoo-h) - ( 2 * var(--switcharoo-gap) ) + 10px );
}

#bsu-v3-ctn .bsu-v3-menu > li > a {
  text-transform: none !important;
}

@media (max-width: 767px) {
  :root {
    --logo-height:40px;
  }

  h1 {
    font-size: 1.75rem;
  }

  header#header > .container-xl {
    padding: 0;
  }
  header#header > .container-xl > .row {
    margin: 0;
  }
  header#header > .container-xl > .row > :nth-child(2) {
    padding: 0;
  }

  header#header {
    position: sticky;
    z-index: 2;
    top: 0;
    overflow: hidden;
  }
  header#header:before {
    position: absolute;
    bottom: 0;
    left: -50%;
    width: 200%;
    height: 120%;
    background-color: var(--site-bg-color);
    border-bottom: 2px solid var(--primary-color);
    border-radius: 50%;
    transition: border-radius 2s ease-out, transform 2s ease-out;
    will-change: border-radius, transform;
    pointer-events: none;
    content: "";
  }
  header#header .logo-two {
    position: absolute;
    top: calc( 50% - 3px );
    left: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(-100%, -50%, 0);
    transition: opacity 0.33s ease-out 1s, transform 0.33s ease-out 1s;
    will-change: opacity, transform;
  }
  header#header .handy-handy {
    position: absolute;
    top: calc( 0px - 3px );
    right: 1.5rem;
    line-height: var(--logo-height);
    opacity: 0;
    pointer-events: none;
    transform: translate3d(100%, 0, 0);
    transition: opacity 0.33s ease-out 1s, transform 0.33s ease-out 1s;
    will-change: opacity, transform;
  }

  .mobile-menu {
    position: fixed;
    z-index: 2;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0 5%;
  }
  .mobile-menu:before {
    position: absolute;
    top: -10px;
    left: -50%;
    width: 200%;
    height: 200%;
    background-color: var(--site-bg-color);
    border-top: 2px solid var(--primary-color);
    border-radius: 50%;
    pointer-events: none;
    content: "";
  }
  .mobile-menu ul {
    display: grid;
    grid-template-columns: repeat(var(--main-nav-size), 1fr);
  }
  .mobile-menu ul > :nth-child(1) {
    order: 3;
  }
  .mobile-menu ul > :nth-child(1) .nav-link:before {
    top: -8px;
  }
  .mobile-menu ul > :nth-child(2) {
    order: 4;
  }
  .mobile-menu ul > :nth-child(2) .nav-link:before {
    top: -6px;
  }
  .mobile-menu ul > :nth-child(3) {
    order: 2;
  }
  .mobile-menu ul > :nth-child(3) .nav-link:before {
    top: -6px;
  }
  .mobile-menu ul > :nth-child(4) {
    order: 1;
  }
  .mobile-menu ul > :nth-child(5) {
    order: 5;
  }
  .mobile-menu .nav-item {
    margin: 0 !important;
  }
  .mobile-menu .nav-item .nav-link {
    position: relative;
    padding: 35px 0 0 0;
    font-size: 0.75rem;
    font-weight: 700;
    text-align: center;
    line-height: 24px;
    color: var(--text-color);
    border: none;
    opacity: 0.75;
    overflow: hidden;
  }
  .mobile-menu .nav-item .nav-link:before {
    position: absolute;
    top: -4px;
    left: 50%;
    width: 50px;
    height: 50px;
    background: url("/assets/img/sprite-07.png") no-repeat 50px -50px;
    background-size: auto 150px;
    transform: translateX(-50%);
    pointer-events: none;
    content: "";
  }
  .mobile-menu .nav-item .nav-link:not(.current):hover {
    color: var(--primary-color);
    opacity: 1;
  }
  .mobile-menu .nav-item .nav-link:not(.current):hover:before {
    background-position-y: 0;
  }
  .mobile-menu .nav-item.medidas .nav-link:before {
    background-position-x: 0;
  }
  .mobile-menu .nav-item.vacinas .nav-link:before {
    background-position-x: -50px;
  }
  .mobile-menu .nav-item.testes .nav-link:before {
    background-position-x: -100px;
  }
  .mobile-menu .nav-item.dados .nav-link:before {
    background-position-x: -150px;
  }
  .mobile-menu .nav-item.alertas .nav-link:before {
    background-position-x: -200px;
  }
  .mobile-menu .nav-item.mais .nav-link:before {
    background-position-x: -250px;
  }
  .mobile-menu .nav-item.current .nav-link {
    color: var(--primary-color);
    opacity: 1;
  }
  .mobile-menu .nav-item.current .nav-link:before {
    background-position-y: 0;
  }
  .mobile-menu .nav-item.current .nav-link:hover {
    color: var(--primary-color);
    opacity: 1;
  }

  body {
    padding-bottom: 60px;
  }
  body.promote-contribution header#header .logo-one {
    transition: opacity 0.33s ease-out, transform 0.33s ease-out;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, -100%, 0);
  }
  body.promote-contribution header#header .logo-two {
    transform: translate3d(0, -50%, 0);
    opacity: 1;
    pointer-events: auto;
  }
  body.promote-contribution header#header .handy-handy {
    transform: translate3d(0, 0, 0);
    opacity: 1;
    pointer-events: auto;
  }
}
@media (min-width: 768px) {
  header#header {
    position: sticky;
    top: 0;
    z-index: 2;
    background-color: var(--site-bg-color);
    border-bottom: 1px solid rgba(var(--text-color-rgb), 0.1);
  }
  header#header ._row {
    display: grid;
    grid-template-columns: auto 1fr;
  }

  .layout-measures {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 2fr) minmax(300px, 3fr));
    grid-gap: 2em;
  }

  .layout-vaccination {
    display: grid;
    grid-template-columns: 2fr 3fr;
    grid-template-rows: auto;
    grid-gap: 2em;
    grid-template-areas: "header header" "action result";
  }
  .layout-vaccination .header {
    grid-area: header;
  }
  .layout-vaccination .action {
    grid-area: action;
  }
  .layout-vaccination .result {
    grid-area: result;
  }

  .layout-testing {
    display: grid;
    grid-template-columns: 2fr 3fr;
    grid-gap: 2em;
  }

  .mini-hero {
    background-color: transparent;
    color: var(--text-color);
    border-bottom: 1px solid rgba(var(--text-color-rgb), 0.1);
  }
  .mini-hero a {
    color: var(--text-color);
  }
}
@media screen and (prefers-color-scheme: dark) {
  .mobile-menu .nav-item:not(.current) .nav-link:before {
    background-position-y: -100px;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .ie {
    display: block !important;
  }

  .main {
    opacity: 0.1;
  }
}
@media all and (display-mode: standalone) {
  .bsu-placeholder-ctn,
.mini-hero,
.mini-hero + .buy-me-a-coffee,
.making-us-famous {
    display: none !important;
  }
}

/*# sourceMappingURL=base.css.map */
