html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
}

/* ==========================================================================
SOBREPOSICAO DE COMPONENTE NA PAGINA CONVENIOS E OBRAS
========================================================================== */
.styleDates {
  width: 100%;
  display: flex;
}
.componente_pt-tableDetails {
  flex-grow: 0;
  box-shadow: 2px 2px 10px #999;
  margin-bottom: 25px;
}

.componente_pt-tableDetails h1 {
  margin: 5px 0;
}

.componente_pt-tableDetails .RegisterForm--data {
  border: 1px solid #ddd;
  padding: 5px;
}

.componente_pt-tableDetails .RegisterStyleGroup {
  border: 0px;
  padding: 0;
}

.componente_pt-tableDetails h2 {
  font-size: 1.8rem;
  border-left: 3px solid #990100;
  margin: 0;
}

.RegisterForm--data.field--size__20 {
  width: 20%;
}

.componente_pt-tableDetails .RegisterForm--data .field--title {
  color: #222;
  font-weight: 700;
}

.componente_pt-tableDetails .RegisterForm--data .field--info {
  color: #666;
}

/* ==========================================================================
SOBREPOSICAO DE COMPONENTE NA PAGINA INSTITUCIONAL EM COMPONENTE IFRAME
========================================================================== */
.instPageIframe .component-FullIframe iframe {
  margin-top: 10px;
  margin-bottom: 10px;
  min-height: 1100px;
}

/* ==========================================================================
CORONA VIRUS - TIRE SUAS DUVIDAS
========================================================================== */
.sectionCoronaVirus-suasDuvidas {
  display: flex;
  flex-direction: column;
  font-family: var(--font_primary);
  margin-top: 20px;
}
.sectionCoronaVirus-suasDuvidas ol {
  display: flex;
  flex-direction: column;
  list-style: none;
  counter-reset: li;
}
.sectionCoronaVirus-suasDuvidas ol li {
  margin: 0 0 15px 0;
  counter-increment: li;
  position: relative;
  padding-left: 40px;
  font-size: 1.4rem;
}
.sectionCoronaVirus-suasDuvidas ol li::before {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  content: counter(li);
  margin-left: -40px;
  top: 0px;
  width: 25px;
  height: 25px;

  background-color: #2d9846;
  color: #ffffff;
  padding: 5px;
  border-radius: 5px;
  font-size: 1.4rem;
}
.sectionCoronaVirus-suasDuvidas ol li h2 {
  font-weight: 500;
  font-size: 1.6rem;
  color: #2d9846;
  margin: 0 0 5px 0;
  line-height: normal;
}
.sectionCoronaVirus-suasDuvidas ol li p {
  font-size: 1.4rem;
  color: #5b5757;
  text-align: justify;
  margin: 0;
  line-height: normal;
  font-family: var(--font_primary);
}

/* ==========================================================================
CORONA VIRUS - LISTAGEM DE BOLETINS E NOTÍCIAS
========================================================================== */
.sectionCoronaVirus-listArticles {
  display: flex;
  flex-direction: column;
  font-family: var(--font_primary);
  width: 100%;
  min-height: 100vh;
  margin-top: 20px;
}
.sectionCoronaVirus-listArticles .cards {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: stretch;
  flex-wrap: wrap;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .sectionCoronaVirus-listArticles .cards {
    justify-content: flex-start;
  }
}
.sectionCoronaVirus-listArticles .cards .card {
  width: 100%;
  min-width: 300px;
  max-width: 33%;
  display: flex;
  flex-direction: column;
  padding: 5px;
  position: relative;
  text-decoration: none;
  border: 0;
}
.sectionCoronaVirus-listArticles .cards .card .header {
  height: 200px;
  position: relative;
}
.sectionCoronaVirus-listArticles .cards .card .header .image {
  height: 100%;
}
.sectionCoronaVirus-listArticles .cards .card .header .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}
.sectionCoronaVirus-listArticles .cards .card .header .date {
  position: absolute;
  top: 5px;
  left: 5px;
  background-color: #2d9846;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  border-radius: 5px;
  z-index: 999;
  transition: all 0.3s ease;
  border: 2px solid #ffffff;
}
.sectionCoronaVirus-listArticles .cards .card .header .date p {
  font-size: 1.2rem;
  margin: 0;
  line-height: normal;
  font-family: var(--font_primary);
}
.sectionCoronaVirus-listArticles .cards .card .header .date p:nth-of-type(2) {
  font-weight: 500;
}
.sectionCoronaVirus-listArticles .cards .card .header .seemore {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.3s ease;
  background-color: rgba(0, 0, 0, 0);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.sectionCoronaVirus-listArticles .cards .card .header .seemore span {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  width: 50px;
  height: 50px;
  background-color: #2d9846;
  color: #fff;
  border-radius: 50%;
}
.sectionCoronaVirus-listArticles .cards .card:hover {
  cursor: pointer;
}
.sectionCoronaVirus-listArticles .cards .card:hover .header .seemore {
  opacity: 1;
  transition: all 0.3s ease;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 99;
  border-radius: 5px;
}
.sectionCoronaVirus-listArticles .cards .card:hover .header .date {
  background-color: #fff;
  color: #2d9846;
}
.sectionCoronaVirus-listArticles .cards .card .title h2 {
  transition: all 0.3s ease;
  font-size: 1.6rem;
  color: #5b5757;
  padding: 15px 0 0 0;
  min-height: 30px;
  margin: 0;
  font-weight: 600;
  line-height: normal;
  font-family: var(--font_primary);
}
.sectionCoronaVirus-listArticles
  .cards
  .card
  .title
  p.component-overflowMultipleLines {
  -webkit-line-clamp: 3;
  font-size: 1.4rem;
  color: #000000;
  margin: 0;
  line-height: normal;
  padding-top: 20px;
  transition: all 0.3s ease;
}
.sectionCoronaVirus-listArticles .cards .card:hover .title p,
.sectionCoronaVirus-listArticles .cards .card:hover .title h2 {
  color: #2d9846;
  transition: all 0.3s ease;
  text-decoration: none;
}

.sectionCoronaVirus-listArticles .component-pagination .page-numbers {
  color: #2d9846;
  background-color: #fff;
  border: 1px solid #2d9846;
}
.sectionCoronaVirus-listArticles .component-pagination .page-numbers:hover {
  background: #2d9846;
  color: #fff;
}
.sectionCoronaVirus-listArticles .component-pagination .current {
  background: #2d9846;
  color: #fff;
}
.sectionCoronaVirus-listArticles .component-pagination .dots:hover {
  background-color: #ffffff;
  color: #2d9846;
}

/* ==========================================================================
CORONA VIRUS - BOLETIM DIÁRIO
========================================================================== */
.sectionCoronaVirus-boletimDiario {
  display: flex;
  flex-direction: column;
  width: 100%;
  font-family: var(--font_primary);
  margin-top: 20px;
  padding: 10px;
}
.sectionCoronaVirus-boletimDiario .header {
  margin-bottom: 20px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  min-height: 25px;
  color: #5b5757;
}
.sectionCoronaVirus-boletimDiario .header span {
  margin-right: 5px;
  font-size: 1.8rem;
}
.sectionCoronaVirus-boletimDiario .header p {
  margin: 0;
  padding: 0;
  line-height: normal;
  font-size: 1.5rem;
}
.sectionCoronaVirus-boletimDiario .cards {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: stretch;
  flex-wrap: wrap;
}

.sectionCoronaVirus-boletimDiario .cards .card {
  width: 300px;
  min-height: 120px;
  display: flex;
  flex-direction: row;
  border-radius: 5px;
  margin-bottom: 10px;
}

.sectionCoronaVirus-boletimDiario .cards .card__interrogation {
  border: 2px solid #ff8000;
  background-color: #ff8000;
  color: #ff8000;
}
.sectionCoronaVirus-boletimDiario .cards .card__confirm {
  border: 2px solid #df0101;
  background-color: #df0101;
  color: #df0101;
}
.sectionCoronaVirus-boletimDiario .cards .card__close {
  border: 2px solid #2d9846;
  background-color: #2d9846;
  color: #2d9846;
}

.sectionCoronaVirus-boletimDiario .cards .card .icone {
  height: 100%;
  width: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sectionCoronaVirus-boletimDiario .cards .card .icone span {
  font-size: 4rem;
  color: #fff;
}
.sectionCoronaVirus-boletimDiario .cards .card .info {
  height: 100%;
  width: calc(100% - 60px);
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.sectionCoronaVirus-boletimDiario .cards .card .info p {
  margin: 0;
  line-height: normal;
  font-family: var(--font_primary);
}
.sectionCoronaVirus-boletimDiario .cards .card .info p:nth-of-type(1) {
  font-size: 5rem;
}
.sectionCoronaVirus-boletimDiario .cards .card .info p:nth-of-type(2) {
  font-size: 1.6rem;
  font-weight: 600;
}
.sectionCoronaVirus-boletimDiario .content {
  width: 100%;
  margin-top: 30px;
  font-size: 1.5rem;
}
.sectionCoronaVirus-boletimDiario .content .info {
  padding: 0px 10px 40px 10px;
}
.sectionCoronaVirus-boletimDiario .content .info p {
  margin: 0;
  line-height: normal;
  font-family: var(--font_primary);
}
.sectionCoronaVirus-boletimDiario .content .separator {
  display: flex;
  content: "";
  height: 10px;
  width: 75%;
  margin: 10px 12.5% 20px 12.5%;
  border-bottom: 4px double rgba(0, 0, 0, 0.1);
}
.sectionCoronaVirus-boletimDiario .share {
  margin-bottom: 20px;
  width: 100%;
}

/* ==========================================================================
CORONA VIRUS - NOTÍCIAS
========================================================================== */
.sectionCoronaVirus-noticia {
  display: flex;
  flex-direction: column;
  font-family: "Heebo";
  width: 100%;
  min-height: 100vh;
  margin-top: 20px;
}
.sectionCoronaVirus-noticia .header {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  padding: 10px;
}

.sectionCoronaVirus-noticia .header .image {
  display: none;
}
@media screen and (min-width: 960px) {
  .sectionCoronaVirus-noticia .header .image {
    display: block;
    width: 100%;
    max-width: 400px;
    height: 200px;
    overflow: hidden;
  }
  .sectionCoronaVirus-noticia .header .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
  }
}

.sectionCoronaVirus-noticia .header .resume {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.sectionCoronaVirus-noticia .header .resume .card {
  display: inline;
  background-color: #ffffff;
  padding: 20px 20px;
  margin-left: 0px;
  border-radius: 5px;
  font-size: 1.4rem;
  color: #2d9846;
  border: 0;
}
@media screen and (min-width: 960px) {
  .sectionCoronaVirus-noticia .header .resume .card {
    margin-left: -50px;
    border: 2px solid #2d9846;
  }
}
.sectionCoronaVirus-noticia .header .resume .card .date {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #2d9846;
  color: #fff;
  border-radius: 5px;
  z-index: 999;
  transition: all 0.3s ease;
  float: left;
  margin-right: 20px;
}
.sectionCoronaVirus-noticia .header .resume .card .date p {
  margin: 0;
  padding: 0;
  line-height: normal;
}
.sectionCoronaVirus-noticia .header .resume .card .text {
  line-height: 20px;
  text-align: justify;
}
.sectionCoronaVirus-noticia .header .resume .card .text h2 {
  width: 100%;
  margin: 0;
  padding: 0;
  line-height: normal;
  margin-bottom: 5px;
  font-size: 1.8rem;
}

.sectionCoronaVirus-noticia .content {
  width: calc(100% - 100px);
  margin: 50px 50px 0 50px;
  text-align: justify;
}
.sectionCoronaVirus-noticia .content .separator {
  display: flex;
  content: "";
  height: 10px;
  width: 75%;
  margin: 10px 12.5% 20px 12.5%;
  border-bottom: 4px double rgba(0, 0, 0, 0.1);
}

.sectionCoronaVirus-noticia .share {
  margin-bottom: 20px;
  width: 100%;
}

.componente_pt-boxMenu {
  margin: 20px 0 30px 0;
}

/* ==========================================================================
PORTAL DA TRANSPARÊNCIA - HOME
========================================================================== */
.component_pt-Container
  .columnRight
  .rightContent
  .component_pt-pageTitle.title-combate-a-covid-19
  h2 {
  background-color: var(--color_secondary);
  padding-right: 20px;
  color: #ffffff;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 5px 10px;
  border-radius: 5px;
}
.component_pt-Container
  .columnRight
  .rightContent
  .component_pt-pageTitle.title-combate-a-covid-19
  h2
  label {
  margin: 0;
  font-weight: 700;
}
.component_pt-Container
  .columnRight
  .rightContent
  .component_pt-cardItemBig.title-combate-a-covid-19
  .card:hover {
  background-color: var(--color_secondary);
}
.component_pt-Container
  .columnRight
  .rightContent
  .component_pt-cardItemBig.title-combate-a-covid-19
  .card:hover
  .card__arrowLink
  span {
  color: var(--color_secondary);
}

/* ==========================================================================
SOBREPOSICAO DO HOME LAST NEWS GRID
========================================================================== */

.homeLastNews .groupCards .cards .card {
  margin-bottom: 2px !important;
}

@media screen and (min-width: 720px) {
  .homeLastNews .groupCards {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: 50% 25% 25%;
    grid-template-rows: repeat(2, 224px);
  }

  .homeLastNews .groupCards .cards {
    width: 100% !important;
    height: 100%;
    grid-row-start: 1;
    grid-row-end: span 2;
  }

  .homeLastNews .groupCards .cards .card {
    height: 100%;
    max-height: 100% !important;
    margin: 0 !important;
  }

  .homeLastNews .groupCards .card1 {
    grid-row-start: 1;
    grid-row-end: 1;
    grid-column-end: span 2;
  }

  .homeLastNews .groupCards .card0 .card .cardTitle {
    font-size: 25px;
    font-weight: 500;
    line-height: 35px;
  }

  .homeLastNews .groupCards .card1 .card .cardTitle {
    font-size: 22px;
    font-weight: 500;
    line-height: 35px;
  }

  .homeLastNews .groupCards .card2 {
    grid-column-start: 2;
    grid-row-start: 2;
    grid-row-end: 2;
  }

  .homeLastNews .groupCards .card3 {
    grid-column-start: 3;
    grid-row-start: 2;
    grid-row-end: 2;
  }
}
