.textAlignCenter {
  text-align: center;
}

.textAlignJutify {
  text-align: justify;
}

/* ==========================================================================
Componente Geral - Faixa Top
========================================================================== */
.component-allPageTitle {
  background-color: var(--color_primary);
}

.component-allPageTitle .barContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 65px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.component-allPageTitle .barContainer .title {
  display: flex;
  order: 2;
}

.component-allPageTitle .barContainer .title h2 {
  font-size: 2.2rem;
  color: #ffffff;
  padding: 10px 0;
  margin: 0;
  line-height: 20px;
  text-transform: uppercase;
}

.component-allPageTitle .barContainer .links {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  order: 1;
  right: 0;
  width: 100%;
  padding-top: 5px;
  padding-right: 10px;
}

.component-allPageTitle .barContainer .links .card {
  background-color: transparent;
  border: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  cursor: pointer;
  margin-left: 10px;
}

.component-allPageTitle .barContainer .links .card .image {
  height: 30px;
  display: block;
  overflow: hidden;
}

.component-allPageTitle .barContainer .links .card .image img {
  height: 100%;
  margin-right: 5px;
}

.component-allPageTitle .barContainer .links .card span {
  display: none;
}

.component-allPageTitle .barContainer .links .card:hover span {
  color: #7FC120;
  transition: all 0.3s ease;
}

@media screen and (min-width: 600px) {
  .component-allPageTitle .barContainer .links .card span {
    display: block;
    font-size: 10px;
    line-height: normal;
    color: #ffffff;
    text-align: center;
    transition: all 0.3s ease;
    font-family: "Heebo";
  }
}

@media screen and (min-width: 1024px) {
  .component-allPageTitle .barContainer .title h2 {
    padding: 0;
  }

  .component-allPageTitle .barContainer .links {
    position: absolute;
    justify-content: space-between;
    width: 150px;
    padding-top: 0px;
    padding-right: 0px;
  }

  .component-allPageTitle .barContainer .links .card {
    flex-direction: column;
    width: 75px;
  }

  .component-allPageTitle .barContainer .links .card .image img {
    margin-right: 0;
    padding-bottom: 5px;
  }
}

.section-faixa-caminho {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  margin-top: 10px;
  margin-bottom: 10px;
}

.section-faixa-caminho .entry-crumbs>span:last-child {
  font-weight: 700;
}

.section-faixa-caminho>.td-category-header {
  display: block !important;
}

.section-faixa-caminho .td-crumb-container {
  display: block !important;
}

.section-faixa-caminho .entry-crumbs {
  color: #555;
  font-size: 1.2rem;
  font-family: "Heebo";
  letter-spacing: 1px;
}

.section-faixa-caminho .detalhe-caminho {
  display: block;
  width: 95px;
  height: 4px;
  background: var(--color_primary);
  margin: 10px 10px 30px 10px;
}

.section-faixa-caminho .entry-crumbs a {
  color: #666;
}

.section-faixa-caminho .entry-crumbs a:hover {
  opacity: 0.8;
}

/* ==========================================================================
Componente Geral - Breadcrumbs
========================================================================== */
.component-breadcrumbs {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: left;
  align-items: center;
  font-family: "Heebo";
}

.component-breadcrumbs>span,
.component-breadcrumbs>i {
  color: #555;
  font-size: 1.2rem;
  font-family: "Heebo";
}

.component-breadcrumbs>span {
  letter-spacing: 1px;
}

.component-breadcrumbs>span a {
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.component-breadcrumbs>span a:hover {
  border-bottom: 1px solid #555;
  transition: all 0.3s ease;
}

.component-breadcrumbs>i {
  margin: 0 5px;
  font-size: 1rem;
}

/* ==========================================================================
Componente Geral - Limitador de caracteres
========================================================================== */
.component-overflowOneLine {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.component-overflowMultipleLines {
  overflow: hidden;
  max-width: 100%;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/* ==========================================================================
Componente Geral - Description before Full Iframe
========================================================================== */
.component-textBeforeIframe {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 10px 0;
}

.component-textBeforeIframe p {
  margin-bottom: 0;
  line-height: normal;
}

/* ==========================================================================
Componente Geral - Warn before Full Iframe (URL)
========================================================================== */
.component-warnBeforeIframe {
  display: flex;
  justify-content: flex-start;
  width: calc(100% - 10px);
  margin-bottom: 10px;
  margin-top: 10px;
  margin-left: 10px;
}

.component-warnBeforeIframe>span {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 10px;
  background-color: #e8e8e8;
  border-radius: 5px;
}

.component-warnBeforeIframe>span i {
  padding-right: 10px;
  font-weight: 700;
  color: #ff6726;
  transition: all 0.3s ease;
}

.component-warnBeforeIframe>span p {
  margin-bottom: 0;
  line-height: normal;
}

.component-warnBeforeIframe>span p a {
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.component-warnBeforeIframe>span p a:hover {
  cursor: pointer;
  color: var(--color_primary);
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--color_primary);
}

/* ==========================================================================
Componente Geral - Full Iframe
========================================================================== */
.component-FullIframe {
  width: 100%;
  height: 90vh;
  margin-bottom: 20px;
}

@media screen and (min-width: 680px) {
  .component-FullIframe {
    height: 100%;
    margin-bottom: 0px;
    margin-top: 0px;
  }
}

@media screen and (min-width: 1024px) {
  .component-FullIframe {
    min-height: 100vh;
  }
}

.component-FullIframe iframe {
  width: 100%;
  height: 100%;
  border: 0;
  -webkit-box-shadow: 0px 10px 4px -5px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0px 10px 4px -5px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 10px 4px -5px rgba(0, 0, 0, 0.05);
}

/* ==========================================================================
Componente Geral - Pagination Wordpress
========================================================================== */
.component-pagination {
  width: 100%;
  display: flex;
  justify-content: center;
}

.component-pagination .page-numbers {
  color: var(--color_primary);
  background-color: #fff;
  float: left;
  margin: 4px 4px 4px 0;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--color_primary);
  border-radius: 5px;
}

@media screen and (min-width: 360px) {
  .component-pagination .page-numbers {
    width: 40px;
    height: 40px;
  }
}

@media screen and (min-width: 600px) {
  .component-pagination .page-numbers {
    width: 50px;
    height: 50px;
  }
}

.component-pagination .page-numbers:hover {
  background: var(--color_primary);
  color: #fff;
  text-decoration: none;
}

.component-pagination .current {
  background: var(--color_primary);
  color: #fff;
  cursor: pointer;
}

.component-pagination .prev,
.component-pagination .next {
  font-size: 2rem;
}

.component-pagination .dots {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 0;
  width: 10px;
}

.component-pagination .dots:hover {
  background-color: #ffffff;
  color: var(--color_primary);
}

@media screen and (min-width: 360px) {

  .component-pagination .prev,
  .component-pagination .next {
    font-size: 2.5rem;
  }
}

/* ==========================================================================
Componente Institucional - Box Sidebar
========================================================================== */
.component-boxSidebar {
  font-family: "Heebo";
  padding: 20px;
  margin-bottom: 10px;
  background-color: rgba(1, 75, 140, 0.05);
}

.component-boxSidebar li {
  margin-left: 0;
}

.component-boxSidebar>div>ul>li {
  display: flex;
  flex-direction: column;
}

.component-boxSidebar>div>ul>li>a {
  padding: 10px 0 5px 10px;
  font-size: 2rem;
  font-weight: 700;
  color: rgba(90, 90, 90, 1);
}

.component-boxSidebar>div>ul>li>a:hover {
  color: rgba(90, 90, 90, 1);
  text-decoration: none;
}

.component-boxSidebar>div>ul>li>ul.sub-menu {
  padding: 0 0 0 20px;
  box-shadow: none;
}

.component-boxSidebar>div>ul>li>ul.sub-menu>li {
  margin-left: 0px;
}

.component-boxSidebar>div>ul>li>ul.sub-menu>li a {
  display: flex;
  align-items: center;
  flex-grow: 1;
  position: relative;
  font-weight: 500;
  font-size: 1.4rem;
  color: rgba(90, 90, 90, 1);
  padding: 10px 0;
  text-decoration: none;
  transition: all 0.5s ease;
}

.component-boxSidebar>div>ul>li>ul.sub-menu>li a::before {
  content: "\e911";
  width: 10px;
  height: 10px;
  font-family: "icomoon" !important;
  position: absolute;
  color: rgba(90, 90, 90, 1);
  font-weight: 900;
  z-index: 9999;
  padding-top: 12px;
  right: 0px;
  top: -2px;
  transition: all 0.5s ease;
}

.component-boxSidebar>div>ul>li>ul.sub-menu>li a:hover {
  color: var(--color_primary);
  transition: all 0.5s ease;
}

.component-boxSidebar>div>ul>li>ul.sub-menu>li a:hover::before {
  color: var(--color_primary);
  transition: all 0.5s ease;
}

.component-boxSidebar>div>ul>li>ul.sub-menu>li.current-menu-item a {
  padding-left: 20px;
  color: var(--color_primary);
  font-weight: 600;
}

.component-boxSidebar>div>ul>li>ul.sub-menu>li.current-menu-item a::before {
  color: var(--color_primary);
}

.component-boxSidebar>div>ul>li>ul.sub-menu>li>ul.sub-menu {
  display: none;
}

/* ==========================================================================
Componente Institucional - pageTitle
========================================================================== */
.component-pageTitle {
  font-family: "Heebo";
  width: 100%;
  font-weight: 700;
  margin: 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 1rem;
  color: var(--color_primary);
  text-transform: uppercase;
}

.component-pageTitle span {
  font-size: 3rem;
  margin-right: 15px;
}

/* ==========================================================================
Componente Institucional - Column Structure
========================================================================== */
.component-oneColumnStructure {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ==========================================================================
Componente Institucional - Column Structure
========================================================================== */
.component-twoColumnStructure {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 0;
  padding-bottom: 50px;
}

@media screen and (min-width: 680px) {
  .component-twoColumnStructure {
    flex-direction: row;
  }
}

.component-twoColumnStructure>.columnLeft {
  order: 2;
}

@media screen and (min-width: 680px) {
  .component-twoColumnStructure>.columnLeft {
    order: 1;
    width: 300px;
  }
}

.component-twoColumnStructure>.columnRight {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  order: 1;
  padding: 0 15px 15px 15px;
}

@media screen and (min-width: 680px) {
  .component-twoColumnStructure>.columnRight {
    order: 2;
    width: calc(100% - 300px);
    min-height: 100vh;
  }
}

/* ==========================================================================
Componente Institucional - BoxLinks
========================================================================== */
.component-boxLinks {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 20px;
  width: 100%;
  background-color: rgba(1, 75, 140, 0.05);
  font-family: "Heebo";
}

.component-boxLinks>div {
  width: 100%;
}

.component-boxLinks ul {
  width: 100%;
  position: relative;
  padding: 0 20px;
}

.component-boxLinks ul li {
  display: flex;
  align-items: center;
  flex-grow: 1;
  position: relative;
  font-weight: 500;
  font-size: 1.4rem;
  color: #5a5a5a;
  transition: all 0.1s ease;
  padding-right: 10px;
  margin-left: 0;
  line-height: normal;
}

.component-boxLinks ul li:before {
  content: "\e911";
  width: 10px;
  height: 10px;
  font-family: "icomoon" !important;
  position: absolute;
  color: rgba(90, 90, 90, 1);
  font-weight: 900;
  right: 0;
  top: 10px;
}

.component-boxLinks ul li a {
  padding: 10px 0;
  display: flex;
  flex-grow: 1;
  transition: all 0.1s ease;
}

.component-boxLinks ul li.current-menu-item,
.component-boxLinks ul li.current-page-ancestor {
  padding-left: 10px;
  font-weight: 900;
  color: var(--color_primary);
}

.component-boxLinks ul li.current-menu-item:before,
.component-boxLinks ul li.current-page-ancestor:before {
  color: var(--color_primary);
}

.component-boxLinks ul li:hover {
  color: var(--color_primary);
}

.component-boxLinks ul li:hover:before {
  color: var(--color_primary);
}

/* ==========================================================================
Componente Institucional - BoxContact
========================================================================== */
.component-boxContact {
  font-family: "Heebo";
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 10px;
  padding: 20px;
  width: 100%;
  background-color: rgba(1, 75, 140, 0.05);
}

.component-boxContact .info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin: 0 0 20px 0;
  font-size: 1.4rem;
  padding: 0 20px;
}

.component-boxContact .info h3 {
  color: var(--color_primary);
  text-transform: uppercase;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: normal;
  margin: 0;
}

.component-boxContact .info p {
  font-size: 1.3rem;
  color: #5a5a5a;
  margin-bottom: 0px;
  line-height: normal;
}

.component-boxContact .info a {
  border: 0;
  background-color: var(--color_alternate);
  width: 100%;
  padding: 15px 0;
  color: white;
  font-size: 1.5rem;
  display: block;
  text-align: center;
  font-weight: 900;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
  margin: 5px 0;
}

.component-boxContact .info a span {
  margin: 0 10px;
}

.component-boxContact .info a:hover {
  -webkit-box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
Componente Institucional - Highlight pageTitle
========================================================================== */
.component-highlightText {
  font-family: "Heebo";
  padding: 0px 20px 0px 10px;
  background-color: var(--color_primary);
  color: white;
  font-size: 3rem;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 10px;
}

@media screen and (min-width: 680px) {
  .component-highlightText {
    padding: 0px 50px 0px 10px;
  }
}

/* ==========================================================================
Componente Institucional - Box Title
========================================================================== */
.component-boxTitle {
  color: #5a5a5a;
  font-family: "Heebo", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  margin: 10px 0 5px 10px;
}

/* ==========================================================================
Componente Institucional - Container Editor
========================================================================== */
.component-containerEditor {
  font-family: "Heebo";
  width: 100%;
  margin-top: 36px;
  text-align: center;
  font-size: 1.2rem;
}

.component-containerEditor>img.img400withText {
  float: left;
  max-width: 400px;
  padding: 0 10px 10px 0px;
}

.component-containerEditor ul {
  width: 100%;
  padding: 0;
}

.component-containerEditor ul li {
  list-style: initial;
  padding: 2px 0;
  font-family: "Heebo", sans serif !important;
  font-size: 1.4rem;
  line-height: 21px;
}

/* ==========================================================================
Componente Institucional - cardItemSmall
========================================================================== */
.component-cardItemSmall {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  font-family: "Heebo";
}

.component-cardItemSmall #cardItemSmall--scroll {
  display: flex;
  overflow-x: hidden;
  overflow-y: hidden;
}

.component-cardItemSmall .card {
  display: flex;
  flex-grow: 1;
  flex-shrink: 0;
  flex-direction: column;
  justify-content: space-between;
  flex-basis: 270px;
  max-width: 270px;
  padding: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
  margin: 0px 10px 10px 10px;
  border: 0;
}

.component-cardItemSmall .card:hover {
  background-color: var(--color_primary);
  color: white;
  box-shadow: 0px 0px 10px rgba(1, 75, 140, 0.5);
  text-decoration: none;
}

.component-cardItemSmall .card .card__title,
.component-cardItemSmall .card .card__description,
.component-cardItemSmall .card .card__icon,
.component-cardItemSmall .card .card__arrowLink {
  display: flex;
  align-items: flex-start;
  margin: 10px 0;
  justify-content: center;
  text-align: center;
  transition: all 0.3s ease;
}

.component-cardItemSmall .card .card__title {
  height: 40px;
  width: 100%;
  position: relative;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color_primary);
  font-size: 1.2rem;
}

.component-cardItemSmall .card .card__description {
  flex-grow: 1;
  color: #5a5a5a;
  font-size: 1.2rem;
}

.component-cardItemSmall .card .card__icon {
  font-size: 3rem;
  color: var(--color_primary);
}

.component-cardItemSmall .card .card__arrowLink {
  opacity: 0;
  transition: all 0.3s ease;
  transform: rotate(-50deg);
  font-size: 2rem;
}

.component-cardItemSmall .card:hover .card__title {
  color: white;
}

.component-cardItemSmall .card:hover .card__description {
  color: white;
}

.component-cardItemSmall .card:hover .card__icon {
  color: white;
}

.component-cardItemSmall .card:hover .card__arrowLink {
  color: white;
  opacity: 1;
}

/* ==========================================================================
Componente Institucional - cardItemMini
========================================================================== */
.component-cardItemMini {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  font-family: "Heebo";
  margin-bottom: 20px;
}

@media screen and (min-width: 1200px) {
  .component-cardItemMini {
    justify-content: flex-start;
  }
}

.component-cardItemMini #cardItemMini--scroll {
  display: flex;
  overflow-x: hidden;
  overflow-y: hidden;
}

.component-cardItemMini .card {
  display: flex;
  flex-grow: 1;
  flex-shrink: 0;
  flex-direction: column;
  justify-content: flex-start;
  flex-basis: 197px;
  max-width: 197px;
  padding: 10px;
  transition: all 0.3s ease;
  margin: 10px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
}

.component-cardItemMini .card .header {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  min-height: 20px;
}

.component-cardItemMini a.card {
  cursor: pointer;
  text-decoration: none;
}

.component-cardItemMini .card .title,
.component-cardItemMini .card .description,
.component-cardItemMini .card .icon,
.component-cardItemMini .card .arrowLink {
  display: flex;
  align-items: flex-start;
  margin: 10px 0;
  justify-content: center;
  text-align: center;
  transition: all 0.3s ease;
}

.component-cardItemMini .card .title {
  width: 100%;
  position: relative;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color_primary);
  font-size: 1.6rem;
  align-items: center;
}

.component-cardItemMini .card .description {
  flex-grow: 1;
  color: #5a5a5a;
  font-size: 1.2rem;
  align-items: flex-start;
  min-height: 40px;
}

.component-cardItemMini .card .icon {
  font-size: 3rem;
  color: var(--color_primary);
  display: flex;
  align-items: center;
}

.component-cardItemMini a.card:hover {
  background-color: var(--color_primary);
  color: white;
  box-shadow: 0px 0px 10px rgba(1, 75, 140, 0.5);
}

.component-cardItemMini a.card:hover .title {
  color: white;
}

.component-cardItemMini a.card:hover .description {
  color: white;
}

.component-cardItemMini a.card:hover .icon {
  color: white;
}

.component-cardItemMini a.card:hover .arrowLink {
  color: white;
  opacity: 1;
}

/* ==========================================================================
Componente Institucional - boxDownDoc
========================================================================== */
.component-boxDownDoc {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: #0f0;
  width: 100%;
  margin-top: 30px;
  padding: 15px;
  background-color: rgba(1, 75, 140, 0.4);
  color: var(--color_primary);
  transition: all 0.3s ease;
  font-family: "Heebo";
}

.component-boxDownDoc:hover {
  color: #5a5a5a;
}

.component-boxDownDoc .info {
  display: flex;
  align-items: center;
}

.component-boxDownDoc .info:first-child {
  font-size: 1.4rem;
  font-weight: 500;
}

.component-boxDownDoc .info:first-child span {
  font-size: 4rem;
  margin: 0 20px;
}

.component-boxDownDoc .info:last-child span {
  font-weight: 900;
  font-size: 1.4rem;
  margin-right: 50px;
}

/* ==========================================================================
Componente Geral - bannerTitle
========================================================================== */
@media screen and (max-width: 1023px) {
  .component-bannerTitle {
    width: 100%;
    position: absolute;
    /* margin-top: 60px; */
  }
}

.container-bannerTitle {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  padding: 5px 0 5px 10px;
  color: #c3c3c3;
}

@media screen and (min-width: 1024px) {
  .container-bannerTitle {
    padding: 10px 0 0 10px;
    position: absolute;
    top: 1px;
    left: 270px;
    z-index: 9;
    width: calc(100% - 270px);
  }
}

.container-bannerTitle>span,
.container-bannerTitle>i {
  font-size: 1.4rem;
}

.container-bannerTitle>span {
  letter-spacing: 1px;
}

.container-bannerTitle>span a {
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.container-bannerTitle>span a:hover {
  border-bottom: 1px solid var(--color_primary);
  transition: all 0.3s ease;
}

.container-bannerTitle>i {
  margin: 0 5px;
  font-size: 1rem;
}

/* ==========================================================================
Componente BoxProfile
========================================================================== */
.component-boxProfile {
  font-family: "Heebo";
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}

.component-boxProfile .card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  background-color: rgba(1, 75, 140, 0.05);
  border: 0;
  border-bottom: 5px solid var(--color_primary);
  margin: 0 0 10px 0;
  transition: all 0.3s ease;
}

.component-boxProfile .card .photo {
  width: 300px;
  height: 320px;
  margin-bottom: 20px;
  overflow: hidden;
}

.component-boxProfile .card .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.component-boxProfile .card .info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
  color: #5a5a5a;
}

.component-boxProfile .card .info h4,
.component-boxProfile .card .info h5 {
  margin-top: 0px;
  margin-bottom: 0px;
  line-height: normal;
  color: rgb(90, 90, 90);
}

.component-boxProfile .card .info h4 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.component-boxProfile .card .info h5 {
  font-size: 1.4rem;
  font-weight: 400;
}

.component-boxProfile .card .socialmedia {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

.component-boxProfile .card .socialmedia span {
  color: #5a5a5a;
  font-size: 1.6rem;
  margin: 0 10px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.component-boxProfile .card .socialmedia span:hover {
  color: var(--color_primary);
}

/* ==========================================================================
Componente BoxInfo
========================================================================== */
.component-boxInfo {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 10px;
  padding: 20px;
  width: 100%;
  background-color: rgba(1, 75, 140, 0.05);
}

.component-boxInfo .info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin: 0 0 20px 0;
  padding: 0 20px;
  font-size: 1.4rem;
}

.component-boxInfo .info h3 {
  color: var(--color_primary);
  margin-bottom: 5px;
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 500;
}

.component-boxInfo .info p {
  font-size: 1.2rem;
  color: #5a5a5a;
}

.component-boxInfo .info button {
  border: 0;
  background-color: #f89e35;
  width: 100%;
  padding: 15px 0;
  color: white;
  font-size: 1.2rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-weight: 900;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
}

.component-boxInfo .info button span {
  margin: 0 10px;
}

.component-boxInfo .info button:hover {
  -webkit-box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.3);
  font-size: 1.25rem;
}

/* ==========================================================================
Componente BoxDownDoc
========================================================================== */
.component-boxDownDoc {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 30px;
  padding: 15px;
  background-color: rgba(1, 75, 140, 0.4);
  color: var(--color_primary);
  transition: all 0.3s ease;
}

.component-boxDownDoc:hover {
  color: #5a5a5a;
}

.component-boxDownDoc .info {
  display: flex;
  align-items: center;
}

.component-boxDownDoc .info:first-child {
  font-size: 1.4rem;
  font-weight: 500;
}

.component-boxDownDoc .info:first-child span {
  font-size: 4rem;
  margin: 0 20px;
}

.component-boxDownDoc .info:last-child span {
  font-weight: 900;
  font-size: 1.4rem;
  margin-right: 50px;
}

/* ==========================================================================
Componente BoxDescription
========================================================================== */
.component-boxDescription {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 10px;
  padding: 20px;
  width: 100%;
  background-color: rgba(1, 75, 140, 0.05);
}

.component-boxDescription .info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin: 0 0 20px 0;
  font-size: 1.4rem;
}

.component-boxDescription .info h3 {
  color: var(--color_primary);
  margin-bottom: 5px;
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 500;
}

.component-boxDescription .info p {
  font-size: 1.2rem;
  color: #5a5a5a;
}

.component-boxDescription .info button {
  border: 0;
  background-color: #f89e35;
  width: 100%;
  padding: 15px 0;
  color: white;
  font-size: 1.2rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-weight: 900;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
}

.component-boxDescription .info button span {
  margin: 0 10px;
}

.component-boxDescription .info button:hover {
  -webkit-box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.3);
  font-size: 1.25rem;
}

/* ==========================================================================
Componente systemTabs
========================================================================== */
.component-systemTabs {
  width: 100%;
  display: flex;
  margin-top: 20px;
}

.component-systemTabs .tabs-container {
  margin: 0 auto;
  width: 100%;
}

.component-systemTabs .tabs-container ul.tabs {
  margin: 20px 0;
  padding: 0px;
  list-style: none;
  text-align: center;
}

.component-systemTabs .tabs-container ul.tabs li {
  background: none;
  color: #5a5a5a;
  display: inline-block;
  padding: 10px 25px;
  cursor: pointer;
  font-weight: 500;
  border-bottom: 1px solid #d7d7d7;
  font-size: 1.2rem;
}

.component-systemTabs .tabs-container ul.tabs li:hover {
  color: var(--color_primary);
}

.component-systemTabs .tabs-container ul.tabs li.current {
  color: var(--color_primary);
  border-bottom: 2px solid var(--color_primary);
}

.component-systemTabs .tab-content {
  display: none;
  padding: 15px;
  width: 100%;
}

.component-systemTabs .tab-content.current {
  display: block;
}

.component-systemTabs .cards {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}

.component-systemTabs .cards .card {
  width: 250px;
  height: 300px;
  margin: 5px;
  position: relative;
}

.component-systemTabs .cards .card img {
  height: 100%;
  width: 100%;
}

.component-systemTabs .cards .card .cardContent {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.1);
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  padding: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.component-systemTabs .cards .card .cardContent h2 {
  color: white;
}

.component-systemTabs .cards .card .cardContent button {
  border: 0;
  background-color: #f89e35;
  padding: 7px 10px;
  width: 100px;
  color: white;
  font-size: 1.2rem;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  font-weight: 900;
  cursor: pointer;
  outline: none;
  transition: all 0.2s ease;
  opacity: 0;
}

.component-systemTabs .cards .card .cardContent button:hover {
  -webkit-box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.3);
  font-size: 1.25rem;
}

.component-systemTabs .cards .card .cardContent:hover {
  background-color: rgba(0, 0, 0, 0.3);
}

.component-systemTabs .cards .card .cardContent:hover button {
  opacity: 1;
}

/* ==========================================================================
Componente CardInfo
========================================================================== */
.component-cardInfo {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 20px 0;
  flex-wrap: wrap;
}

.component-cardInfo .card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  min-width: 220px;
  max-width: 220px;
  margin-right: 10px;
  margin-bottom: 10px;
}

.component-cardInfo .card h3 {
  color: var(--color_primary);
  margin-bottom: 5px;
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 500;
}

.component-cardInfo .card p {
  font-size: 1.3rem;
  color: #5a5a5a;
}

/* ==========================================================================
Componente BoxTitle
========================================================================== */
.component-boxTitle {
  color: #ffffff;
  font-weight: 700;
  font-size: 2rem;
  margin: 10px 0 5px 10px;
  font-family: "Heebo", sans-serif;
  font-weight: 600;
}

.component-twoColumnStructure .component-boxTitle {
  color: var(--color_primary);
}

/* ==========================================================================
Componente Archive Files
========================================================================== */
.component-archiveFiles {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 0px;
}

.component-archiveFiles>.card {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  margin-bottom: 20px;
  border: 0px;
}

.component-archiveFiles>.card>.date {
  background-color: rgba(1, 75, 140, 0.05);
  width: 70px;
  height: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.component-archiveFiles>.card>.date p {
  font-size: 2rem;
  margin: 3px 0px;
  font-weight: 600;
}

.component-archiveFiles>.card>.date p:nth-of-type(1) {
  color: var(--color_primary);
  text-transform: uppercase;
}

.component-archiveFiles>.card>.date p:nth-of-type(2) {
  color: #5a5a5a;
}

.component-archiveFiles>.card>.info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: calc(100% - 70px);
  padding-left: 10px;
}

.component-archiveFiles>.card>.info>.infoTitle {
  font-size: 2rem;
  color: var(--color_primary);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.component-archiveFiles>.card>.info>.infoTitle p {
  margin-bottom: 0px;
}

.component-archiveFiles>.card>.info>.infoTitle p a {
  text-decoration: none;
}

.component-archiveFiles>.card>.info>.infoTitle p a:hover {
  text-decoration: none;
  color: var(--color_primary);
}

@media screen and (min-width: 450px) {
  .component-archiveFiles>.card>.info>.infoTitle {
    flex-direction: row;
    align-items: flex-end;
  }
}

.component-archiveFiles>.card>.info>.infoTitle p:nth-of-type(1) {
  font-size: 1.8rem;
  color: var(--color_primary);
  font-weight: 600;
  order: 2;
}

@media screen and (min-width: 450px) {
  .component-archiveFiles>.card>.info>.infoTitle p:nth-of-type(1) {
    order: 1;
  }
}

.component-archiveFiles>.card>.info>.infoTitle p:nth-of-type(2) {
  font-size: 2rem;
  color: #5a5a5a;
  order: 1;
}

@media screen and (min-width: 450px) {
  .component-archiveFiles>.card>.info>.infoTitle p:nth-of-type(2) {
    order: 2;
    margin-bottom: 0px;
  }
}

.component-archiveFiles>.card>.info>.infoTitle p:nth-of-type(2) span {
  margin: 0 15px 0 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

@media screen and (min-width: 450px) {
  .component-archiveFiles>.card>.info>.infoTitle p:nth-of-type(2) span {
    margin: 0 0 0 15px;
  }
}

.component-archiveFiles>.card>.info>.infoTitle p:nth-of-type(2) span:hover {
  transition: all 0.3s ease;
  color: var(--color_primary);
}

.component-archiveFiles>.card>.info>.infoDate {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  color: var(--color_primary);
  font-size: 1.4rem;
}

.component-archiveFiles>.card>.info>.infoDescription {
  width: 100%;
  display: flex;
}

.component-archiveFiles>.card>.info>.infoDescription p.overflowOneLine {
  font-size: 1.4rem;
  color: #5a5a5a;
}

.component-archiveFiles>.card>.info>.infoDescription p.overflowTwoLines {
  font-size: 1.4rem;
  color: #5a5a5a;
}

/* ==========================================================================
Componente Container Transparencia
========================================================================== */
.component_pt-Container {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  font-family: "Heebo";
}

@media screen and (min-width: 1024px) {
  .component_pt-Container {
    position: relative;
  }
}

.component_pt-Container .columnLeft {
  background-color: white;
  width: 100%;
  position: absolute;
  top: 0px;
  left: -100%;
  min-height: calc(100vh - 90px);
  min-height: 100vh;
  transition: all 0.2s ease;
  z-index: 9999;
}

@media screen and (min-width: 1024px) {
  .component_pt-Container .columnLeft {
    background-color: var(--color_primary);
    position: relative;
    left: 0;
    top: 0;
    width: 270px;
    height: auto;
    z-index: 9;
    -webkit-box-shadow: 5px 0px 7px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 5px 0px 7px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 5px 0px 7px 0px rgba(0, 0, 0, 0.25);
  }
}

.component_pt-Container .columnLeft>.leftContent {
  background-color: white;
  position: fixed;
  padding-top: 30px;
  width: 100%;
  visibility: hidden;
  overflow-y: hidden;
  transition: all 0.2s ease;
  z-index: 99;
}

@media screen and (min-width: 1024px) {
  .component_pt-Container .columnLeft>.leftContent {
    background-color: var(--color_primary);
    position: relative;
    transition: all 0.2s ease;
    height: auto;
    visibility: visible;
    padding-top: 0;
    width: 270px;
    overflow-x: hidden;
  }
}

@media screen and (min-width: 1024px) {
  .component_pt-Container .columnLeft>.leftContent .menuHeader {
    display: none;
  }
}

.component_pt-Container .columnLeft>.leftContent .buttonSubmenu {
  position: absolute;
  right: 15px;
  top: 15px;
  font-size: 3rem;
}

.component_pt-Container .columnLeft>.leftContent .buttonSubmenu label {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.component_pt-Container .columnLeft>.leftContent .menuContent .component-boxLinks {
  background-color: transparent;
  padding: 0px;
}

.component_pt-Container .columnLeft>.leftContent .menuContent .component-boxLinks ul li {
  padding-left: 10px;
}

@media screen and (min-width: 1024px) {
  .component_pt-Container .columnLeft>.leftContent .menuContent .component-boxLinks ul li {
    color: white;
  }
}

.component_pt-Container .columnLeft>.leftContent .menuContent .component-boxLinks ul li:hover a {
  color: #5a5a5a;
}

@media screen and (min-width: 1024px) {
  .component_pt-Container .columnLeft>.leftContent .menuContent .component-boxLinks ul li:hover a {
    color: #5685d6;
  }
}

.component_pt-Container .columnLeft>.leftContent .menuContent .component-boxLinks ul li.active {
  background-color: var(--color_primary);
  color: white;
  border-radius: 5px;
}

@media screen and (min-width: 1024px) {
  .component_pt-Container .columnLeft>.leftContent .menuContent .component-boxLinks ul li.active {
    background-color: white;
    color: var(--color_primary);
  }
}

.component_pt-Container .columnLeft>.leftContent .menuContent .component-boxLinks ul li.active:hover a {
  color: white;
}

@media screen and (min-width: 1024px) {
  .component_pt-Container .columnLeft>.leftContent .menuContent .component-boxLinks ul li.active:hover a {
    color: var(--color_primary);
  }
}

.component_pt-Container .columnLeft>.leftContent .menuContent .component-boxLinks ul li a {
  display: flex;
  align-items: center;
}

.component_pt-Container .columnLeft>.leftContent .menuContent .component-boxLinks ul li span {
  padding-right: 10px;
  font-size: 1.8rem;
}

.component_pt-Container .columnLeft>.leftContent .menuContent .component-boxLinks ul li::before {
  content: "";
}

@media screen and (min-width: 1024px) {
  .component_pt-Container .columnLeft>.leftContent .menuContent .component-boxLinks .component-boxTitle {
    color: white;
  }
}

.component_pt-Container .columnRight {
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}

@media screen and (min-width: 1024px) {
  .component_pt-Container .columnRight {
    width: calc(100% - 270px);
    padding: 10px;
    margin-top: 25px;
  }
}

.component_pt-Container .columnRight>.rightHeader {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-bottom: 0px;
}

@media screen and (min-width: 1024px) {
  .component_pt-Container .columnRight>.rightHeader {
    justify-content: flex-end;
    display: none;
  }
}

.component_pt-Container .columnRight>.rightHeader>div {
  width: 100%;
}

.component_pt-Container .columnRight>.rightHeader>.menuHeader {
  background-color: #f1f1f1;
  padding: 10px 10px 20px 10px;
}

@media screen and (min-width: 1024px) {
  .component_pt-Container .columnRight>.rightHeader>.menuHeader {
    display: none;
  }
}

.component_pt-Container .columnRight .rightContent {
  display: flex;
  flex-direction: column;
  width: 100vw;
  min-height: 100vh;
  height: 100%;
  padding: 10px;
  margin-top: 35px;
}

@media screen and (min-width: 1024px) {
  .component_pt-Container .columnRight .rightContent {
    width: calc(100vw - 307px);
    padding: 0;
    margin-top: 20px;
  }
}

.component_pt-Container .buttonSubmenu {
  font-size: 3rem;
}

.component_pt-Container .buttonSubmenu label {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.bodySubmenuOpen {
  transition: all 0.2s ease;
  overflow: hidden;
}

@media screen and (min-width: 1024px) {
  .bodySubmenuOpen {
    overflow: initial;
  }
}

.bodySubmenuOpen .leftSubmenuOpen {
  transition: all 0.2s ease;
  left: 0;
}

.bodySubmenuOpen .leftSubmenuOpen .leftContentSubmenuOpen {
  transition: all 0.2s ease;
  height: 100vh;
  visibility: visible;
  overflow-y: scroll;
}

@media screen and (min-width: 1024px) {
  .bodySubmenuOpen .leftSubmenuOpen .leftContentSubmenuOpen {
    overflow-y: initial;
    height: auto;
  }
}

/* ==========================================================================
Componente Transparencia -- cardItemSmall
========================================================================== */
.component_pt-cardItemSmall {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.component_pt-cardItemSmall #cardItemSmall--scroll {
  display: flex;
  overflow-x: hidden;
  overflow-y: hidden;
}

.component_pt-cardItemSmall .card {
  display: flex;
  flex-grow: 1;
  flex-shrink: 0;
  flex-direction: column;
  justify-content: space-between;
  flex-basis: 300px;
  max-width: 300px;
  padding: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
  margin: 10px;
}

.component_pt-cardItemSmall .card:hover {
  background-color: var(--color_primary);
  color: white;
  box-shadow: 0px 0px 10px rgba(1, 75, 140, 0.5);
}

.component_pt-cardItemSmall .card .card__title,
.component_pt-cardItemSmall .card .card__description,
.component_pt-cardItemSmall .card .card__icon,
.component_pt-cardItemSmall .card .card__arrowLink {
  display: flex;
  align-items: flex-start;
  margin: 10px 0;
  justify-content: center;
  text-align: center;
  transition: all 0.3s ease;
}

.component_pt-cardItemSmall .card .card__title {
  height: 40px;
  width: 100%;
  position: relative;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color_primary);
  font-size: 1.2rem;
}

.component_pt-cardItemSmall .card .card__description {
  flex-grow: 1;
  color: #5a5a5a;
  font-size: 1.2rem;
}

.component_pt-cardItemSmall .card .card__icon {
  font-size: 3rem;
  color: var(--color_primary);
}

.component_pt-cardItemSmall .card .card__arrowLink {
  opacity: 0;
  transition: all 0.3s ease;
  transform: rotate(-50deg);
  font-size: 2rem;
}

.component_pt-cardItemSmall .card:hover .card__title {
  color: white;
}

.component_pt-cardItemSmall .card:hover .card__description {
  color: white;
}

.component_pt-cardItemSmall .card:hover .card__icon {
  color: white;
}

.component_pt-cardItemSmall .card:hover .card__arrowLink {
  color: white;
  opacity: 1;
}

/* ==========================================================================
Componente Transparencia -- cardItemSmall
========================================================================== */
.component_pt-cardItemBig {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: stretch;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

@media screen and (min-width: 800px) {
  .component_pt-cardItemBig {
    margin-bottom: 20px;
  }
}

@media screen and (min-width: 1024px) {
  .component_pt-cardItemBig {
    justify-content: flex-start;
  }
}

.component_pt-cardItemBig .card {
  display: flex;
  flex-grow: 1;
  flex-shrink: 0;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
  margin: 10px;
  flex-basis: 220px;
  max-width: 220px;
  border: none;
  text-decoration: none;
  text-align: center;
}

.component_pt-cardItemBig .card:hover {
  background-color: var(--color_primary);
  color: white;
  box-shadow: 0px 0px 10px rgba(1, 75, 140, 0.5);
}

.component_pt-cardItemBig .card .card__description,
.component_pt-cardItemBig .card .card__icon,
.component_pt-cardItemBig .card .card__title,
.component_pt-cardItemBig .card .card__arrowLink {
  display: flex;
  align-items: flex-start;
  margin: 10px 0;
  justify-content: center;
  text-align: center;
  transition: all 0.3s ease;
}

.component_pt-cardItemBig .card .card__description {
  flex-grow: 1;
  color: #5a5a5a;
  font-size: 1.4rem;
}

.component_pt-cardItemBig .card .card__icon {
  font-size: 6rem;
  color: var(--color_primary);
}

.component_pt-cardItemBig .card .card__title {
  font-weight: 700;
  min-height: 50px;
  width: 100%;
  position: relative;
  color: #5a5a5a;
  font-size: 1.6rem;
  text-transform: uppercase;
}

.component_pt-cardItemBig .card .card__title span {
  width: 35px;
  height: 2px;
  background-color: var(--color_primary);
  position: absolute;
  bottom: 0;
}

.component_pt-cardItemBig .card .card__arrowLink {
  opacity: 1;
  transition: all 0.3s ease;
  font-size: 2rem;
}

.component_pt-cardItemBig .card .card__arrowLink span {
  background-color: rgba(1, 75, 140, 0.1);
  padding: 10px;
  border-radius: 50%;
  color: var(--color_primary);
  transition: all 0.3s ease;
}

.component_pt-cardItemBig .card:hover .card__description {
  color: white;
}

.component_pt-cardItemBig .card:hover .card__icon {
  color: white;
}

.component_pt-cardItemBig .card:hover .card__title {
  color: white;
}

.component_pt-cardItemBig .card:hover .card__title span {
  color: var(--color_primary);
  background-color: white;
}

.component_pt-cardItemBig .card:hover .card__arrowLink span {
  transition: all 0.3s ease;
  background-color: white;
  color: var(--color_primary);
  opacity: 1;
}

/* ==========================================================================
Componente Transparencia -- boxTitle
========================================================================== */
.component_pt-boxTitle {
  font-weight: 700;
  font-size: 2rem;
  margin: 10px 0 5px 10px;
}

/* ==========================================================================
Componente Transparencia -- pageTitle
========================================================================== */
.component_pt-pageTitle {
  width: 100%;
  margin: 10px 0 10px 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.component_pt-pageTitle h2 {
  display: flex;
  align-items: center;
  flex-direction: row;
  color: var(--color_primary);
  text-transform: uppercase;
  padding-left: 10px;
  border-radius: 5px;
}

.component_pt-pageTitle h2 span {
  font-size: 3rem;
  margin-right: 15px;
}

.component_pt-pageTitle h2 label {
  font-size: 2.4rem;
  font-weight: 700;
}

/* ==========================================================================
Componente Transparencia -- pageTitle
========================================================================== */
.component_pt-pageSubtitle {
  width: 100%;
  font-weight: 700;
  margin: 0 0 20px 0;
  padding-left: 10px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 1.6rem;
  color: var(--color_primary);
  text-transform: uppercase;
}

.component_pt-pageSubtitle span {
  font-size: 2.4rem;
  margin-right: 15px;
}

/* ==========================================================================
Componente Transparencia -- pageTitle
========================================================================== */
.component_pt-highlightText {
  padding: 0px 20px 0px 10px;
  background-color: var(--color_primary);
  color: white;
  font-size: 3rem;
  font-weight: 500;
  line-height: normal;
}

@media screen and (min-width: 680px) {
  .component_pt-highlightText {
    padding: 0px 50px 0px 10px;
  }
}

/* ==========================================================================
Componente Social Media - Buttons
========================================================================== */
.component-btnSocialMedia {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}

@media screen and (min-width: 460px) {
  .component-btnSocialMedia {
    justify-content: flex-end;
  }
}

.component-btnSocialMedia>.card {
  margin: 5px 10px 5px 0;
  min-width: 100px;
  border: 0;
}

@media screen and (min-width: 1024px) {
  .component-btnSocialMedia>.card {
    margin: 10px 10px 0px 0;
    min-width: 120px;
  }
}

.component-btnSocialMedia>.card>a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 7px 10px;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 5px;
  font-weight: 400;
  overflow: hidden;
  position: relative;
  height: 40px;
}

@media screen and (min-width: 1024px) {
  .component-btnSocialMedia>.card>a {
    padding: 7px 5px;
    height: 30px;
  }
}

.component-btnSocialMedia>.card>a span {
  width: 25px;
}

.component-btnSocialMedia>.card>a span i {
  font-size: 1.6rem;
  margin-right: 5px;
  left: 10px;
  top: 10px;
  transition: all 0.3s ease;
  position: absolute;
}

@media screen and (min-width: 1024px) {
  .component-btnSocialMedia>.card>a span i {
    left: 8px;
    top: 5px;
  }
}

.component-btnSocialMedia>.card>a p {
  width: calc(100% - 25px);
  font-size: 1.4rem;
  top: 0;
  line-height: 0;
  padding-left: 0;
  margin-left: 0;
  margin-bottom: 0;
  padding-right: 5px;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.component-btnSocialMedia>.card>a.filedownload {
  transition: all 0.3s ease;
  background-color: #525659;
  color: #ffffff;
}

.component-btnSocialMedia>.card>a.facebook {
  transition: all 0.3s ease;
  background-color: #3b5998;
  color: #ffffff;
}

.component-btnSocialMedia>.card>a.twitter {
  transition: all 0.3s ease;
  background-color: #50abf1;
  color: #ffffff;
}

.component-btnSocialMedia>.card>a.whatsapp {
  transition: all 0.3s ease;
  background-color: #2ab540;
  color: #ffffff;
}

.component-btnSocialMedia>.card>a:hover {
  text-decoration: none;
}

@media screen and (min-width: 1024px) {
  .component-btnSocialMedia>.card>a:hover span i {
    position: absolute;
    width: 100%;
    height: 100%;
    left: calc(50% - 10px);
    transition: all 0.3s ease;
    top: 2px;
    font-size: 2.5rem;
  }
}

@media screen and (min-width: 1024px) {
  .component-btnSocialMedia>.card>a:hover p {
    opacity: 0;
    transition: opacity 0.3s ease;
  }
}

/* ==========================================================================
Componente Tabela Transparencia -- tableDetails
========================================================================== */
.componente_pt-tableDetails {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 15px;
  flex-grow: 1;
  width: 100%;
  font-family: "Heebo";
}

@media screen and (min-width: 768px) {
  .componente_pt-tableDetails {
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 0;
  }
}

.componente_pt-tableDetails h1 {
  width: 100%;
  color: #990100;
  font-size: 2rem;
  padding: 5px 10px;
  margin: 20px 0 10px 0;
  font-weight: 900;
}

.componente_pt-tableDetails h2 {
  width: 100%;
  color: #990100;
  font-size: 1.4rem;
  border-left: 2px solid #990100;
  padding: 0 10px;
  margin: 20px 0 10px 0;
}

.componente_pt-tableDetails .field--size__25 {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .componente_pt-tableDetails .field--size__25 {
    width: 25%;
  }
}

.componente_pt-tableDetails .field--size__33 {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .componente_pt-tableDetails .field--size__33 {
    width: 33.3%;
  }
}

.componente_pt-tableDetails .field--size__50 {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .componente_pt-tableDetails .field--size__50 {
    width: 50%;
  }
}

.componente_pt-tableDetails .field--size__75 {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .componente_pt-tableDetails .field--size__75 {
    width: 75%;
  }
}

.componente_pt-tableDetails .field--size__100 {
  width: 100%;
}

.componente_pt-tableDetails .RegisterForm--data {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 5px 0;
}

.componente_pt-tableDetails .RegisterForm--data .field--title {
  width: 100%;
  padding: 5px 0;
  letter-spacing: 1px;
}

.componente_pt-tableDetails .RegisterForm--data .field--info {
  width: 100%;
  padding: 0 5px;
  color: #990100;
  display: flex;
  flex-direction: column;
}

.componente_pt-tableDetails .RegisterForm--data .field--info ul li {
  margin-bottom: 5px;
}

.componente_pt-tableDetails .RegisterForm--data .field--info ul li button {
  border: 0;
  padding: 5px 5px 5px 5px;
  cursor: pointer;
  outline: none;
  background-color: #990100;
  border-radius: 5px;
}

.componente_pt-tableDetails .RegisterForm--data .field--info ul li button span {
  color: white;
}

.componente_pt-tableDetails .RegisterForm--data .field--info img {
  width: 128px;
  height: 128px;
  border-radius: 50%;
}

.componente_pt-tableDetails .RegisterForm--data .field--info>span {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  color: #990100;
}

/* ==========================================================================
Componente Geral - Sitemap Hover
========================================================================== */
:root {
  --color_hover_sitemap: var(--color_alternate);
}

/* ==========================================================================
Componente Geral - Sitemap Section Title
========================================================================== */
.component-sitemap_title {
  display: flex;
  flex-direction: row;
  width: 100%;
  max-width: 1200px;
  /*margin: 0 auto;*/
}

.component-sitemap_title h1 {
  margin: 0;
  line-height: normal;
  padding-top: 20px;
  padding-bottom: 5px;
  margin-left: 15px;
  margin-bottom: 10px;
  position: relative;
  color: var(--color_primary);
}

.component-sitemap_title h1::after {
  content: "";
  position: absolute;
  width: 75%;
  max-width: 100px;
  height: 2px;
  border-bottom: 3px double var(--color_primary);
  bottom: 0;
  left: 0px;
}

/* ==========================================================================
Componente Geral - Sitemap for PAGES
========================================================================== */
.component-sitemap_page {
  max-width: 1630px;
  /*margin: 0 auto;*/
}

.component-sitemap_page .wsp-pages-title {
  display: none;
}

.component-sitemap_page .wsp-container {
  padding: 0 5px;
}

@media screen and (min-width: 600px) {
  .component-sitemap_page .wsp-container {
    padding: 0;
  }
}

.component-sitemap_page .wsp-container>ul {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.component-sitemap_page .wsp-container>ul>li {
  display: flex;
  margin-left: 0;
  margin-bottom: 10px;
  line-height: normal;
  min-height: 50px;
}

.component-sitemap_page .wsp-container>ul>li:not(.page_item_has_children) {
  align-items: center;
  order: 1;
  width: 100%;
  padding-left: 20px;
  position: relative;
  text-transform: uppercase;
}

@media screen and (min-width: 600px) {
  .component-sitemap_page .wsp-container>ul>li:not(.page_item_has_children) {
    width: 50%;
  }
}

@media screen and (min-width: 1024px) {
  .component-sitemap_page .wsp-container>ul>li:not(.page_item_has_children) {
    width: 33.3%;
  }
}

.component-sitemap_page .wsp-container>ul>li:not(.page_item_has_children) a {
  display: flex;
  align-items: center;
  color: inherit;
  width: calc(100% - 5px);
  margin-right: 5px;
  height: 100%;
  background-color: var(--color_primary);
  padding-left: 10px;
  color: #ffffff;
  transition: all 0.3s ease;
}

.component-sitemap_page .wsp-container>ul>li::before {
  content: "\e902";
  width: 10px;
  height: 10px;
  font-family: "icomoon" !important;
  position: absolute;
  font-weight: 400;
  z-index: 9999;
  padding-top: 12px;
  left: 0px;
  top: 7px;
  transition: all 0.5s ease;
  color: var(--color_primary);
}

@media screen and (min-width: 600px) {
  .component-sitemap_page .wsp-container>ul>li::before {
    opacity: 0.25;
  }
}

.component-sitemap_page .wsp-container>ul>li:hover::before {
  opacity: 1;
  transition: all 0.3s ease;
}

.component-sitemap_page .wsp-container>ul>li:hover>a {
  background-color: var(--color_secondary);
  transition: all 0.3s ease;
}

.component-sitemap_page .wsp-container>ul>li.page_item_has_children {
  display: flex;
  flex-direction: column;
  width: 100%;
  border: 0;
  order: 2;
  padding-left: 20px;
  margin-top: 20px;
  position: relative;
}

.component-sitemap_page .wsp-container>ul>li.page_item_has_children::before {
  content: "\e9a6";
  width: 10px;
  height: 10px;
  font-family: "icomoon" !important;
  position: absolute;
  font-weight: 400;
  z-index: 9999;
  padding-top: 12px;
  left: 0px;
  top: 0px;
  transition: all 0.5s ease;
  color: var(--color_primary);
}

.component-sitemap_page .wsp-container>ul>li.page_item_has_children>a {
  display: flex;
  align-items: center;
  width: calc(100% - 5px);
  margin: 0;
  min-height: 50px;
  padding-left: 10px;
  background-color: var(--color_primary);
  color: #ffffff;
  transition: all 0.3s ease;
  text-transform: uppercase;
  position: relative;
}

.component-sitemap_page .wsp-container>ul>li.page_item_has_children>a::after {
  content: "\e908";
  width: 10px;
  height: 10px;
  font-family: "icomoon" !important;
  position: absolute;
  font-weight: 400;
  z-index: 9999;
  padding-top: 12px;
  right: 15px;
  top: 7px;
  transition: all 0.5s ease;
  color: #ffffff;
}

.component-sitemap_page .wsp-container>ul>li.page_item_has_children>a:hover {
  background-color: var(--color_secondary);
}

.component-sitemap_page .wsp-container>ul>li.page_item_has_children>ul.children {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  width: calc(100% - 5px);
}

.component-sitemap_page .wsp-container>ul>li.page_item_has_children>ul.children>li {
  order: 1;
  color: #ffffff;
  width: 100%;
  position: relative;
  margin-left: 0;
  margin-bottom: 5px;
  line-height: normal;
}

.component-sitemap_page .wsp-container>ul>li.page_item_has_children>ul.children>li>a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  border: 1px solid var(--color_primary);
  color: var(--color_primary);
  width: calc(100% - 30px);
  margin-left: 30px;
  height: 100%;
  min-height: 50px;
  padding-left: 20px;
  transition: all 0.3s ease;
  position: relative;
}

.component-sitemap_page .wsp-container>ul>li.page_item_has_children>ul.children>li>a::before {
  width: 10px;
  height: 10px;
  font-family: "icomoon" !important;
  position: absolute;
  font-weight: 400;
  z-index: 9999;
  padding-top: 12px;
  transition: all 0.5s ease;
  color: var(--color_primary);
  left: -20px;
  top: 2px;
  content: "\e90a";
}

.component-sitemap_page .wsp-container>ul>li.page_item_has_children>ul.children>li:not(.page_item_has_children):hover a {
  background-color: var(--color_secondary);
  color: #ffffff;
  transition: all 0.3s ease;
}

.component-sitemap_page .wsp-container>ul>li.page_item_has_children>ul.children>li.page_item_has_children {
  order: 2;
  width: calc(100% - 30px);
  margin-left: 0;
  line-height: normal;
  margin-bottom: 10px;
}

.component-sitemap_page .wsp-container>ul>li.page_item_has_children>ul.children>li.page_item_has_children>a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  border: 1px solid var(--color_primary);
  color: var(--color_primary);
  width: 100%;
  height: 50px;
  padding-left: 20px;
  transition: all 0.3s ease;
  position: relative;
}

.component-sitemap_page .wsp-container>ul>li.page_item_has_children>ul.children>li.page_item_has_children>a:hover {
  background-color: var(--color_hover_sitemap);
  color: #ffffff;
  transition: all 0.3s ease;
}

.component-sitemap_page .wsp-container>ul>li.page_item_has_children>ul.children>li.page_item_has_children>a::after {
  width: 10px;
  height: 10px;
  font-family: "icomoon" !important;
  position: absolute;
  font-weight: 400;
  z-index: 9999;
  padding-top: 12px;
  transition: all 0.5s ease;
  color: var(--color_primary);
  right: 12px;
  top: 5px;
  content: "\e90c";
}

.component-sitemap_page .wsp-container>ul>li.page_item_has_children>ul.children>li.page_item_has_children>a:hover::after {
  transition: all 0.5s ease;
  color: #ffffff;
}

.component-sitemap_page .wsp-container>ul>li.page_item_has_children>ul.children>li.page_item_has_children>ul.children {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

.component-sitemap_page .wsp-container>ul>li.page_item_has_children>ul.children>li.page_item_has_children>ul.children>li:not(.page_item_has_children) {
  display: flex;
  order: 1;
  width: 100%;
  margin-left: 30px;
  line-height: normal;
}

.component-sitemap_page .wsp-container>ul>li.page_item_has_children>ul.children>li.page_item_has_children>ul.children>li:not(.page_item_has_children) a {
  display: flex;
  align-items: center;
  padding-left: 20px;
  position: relative;
  background-color: var(--color_primary);
  width: 100%;
  min-height: 50px;
  transition: all 0.3s ease;
  border: 1px solid var(--color_primary);
}

.component-sitemap_page .wsp-container>ul>li.page_item_has_children>ul.children>li.page_item_has_children>ul.children>li:not(.page_item_has_children) a::before {
  width: 10px;
  height: 10px;
  font-family: "icomoon" !important;
  position: absolute;
  font-weight: 400;
  z-index: 9999;
  padding-top: 12px;
  transition: all 0.5s ease;
  color: #ffffff;
  left: 6px;
  top: 10px;
  content: "\e90e";
  font-size: 8px;
  transition: all 0.3s ease;
}

.component-sitemap_page .wsp-container>ul>li.page_item_has_children>ul.children>li.page_item_has_children>ul.children>li:not(.page_item_has_children) a:hover {
  border: 1px solid var(--color_secondary);
  transition: all 0.3s ease;
  color: var(--color_secondary);
}

.component-sitemap_page .wsp-container>ul>li.page_item_has_children>ul.children>li.page_item_has_children>ul.children>li:not(.page_item_has_children) a:hover::before {
  transition: all 0.3s ease;
  color: var(--color_secondary);
}

.component-sitemap_page .wsp-container>ul>li.page_item_has_children>ul.children>li.page_item_has_children>ul.children>li.page_item_has_children {
  margin: 0;
  line-height: normal;
}

.component-sitemap_page .wsp-container>ul>li.page_item_has_children>ul.children>li.page_item_has_children>ul.children>li.page_item_has_children>a {
  display: flex;
  align-items: center;
  padding-left: 20px;
  margin-left: 30px;
  position: relative;
  background-color: var(--color_primary);
  width: 100%;
  min-height: 50px;
  transition: all 0.3s ease;
  border: 1px solid var(--color_primary);
}

.component-sitemap_page .wsp-container>ul>li.page_item_has_children>ul.children>li.page_item_has_children>ul.children>li.page_item_has_children>a:hover {
  color: var(--color_alternate);
}

.component-sitemap_page .wsp-container>ul>li.page_item_has_children>ul.children>li.page_item_has_children>ul.children>li.page_item_has_children>a::before {
  width: 10px;
  height: 10px;
  font-family: "icomoon" !important;
  position: absolute;
  font-weight: 400;
  z-index: 9999;
  padding-top: 12px;
  transition: all 0.5s ease;
  color: #ffffff;
  left: 6px;
  top: 8px;
  content: "\e90e";
  font-size: 8px;
  transition: all 0.3s ease;
}

.component-sitemap_page .wsp-container>ul>li.page_item_has_children>ul.children>li.page_item_has_children>ul.children>li.page_item_has_children>ul.children {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-left: 30px;
  margin-bottom: 2px;
}

.component-sitemap_page .wsp-container>ul>li.page_item_has_children>ul.children>li.page_item_has_children>ul.children>li.page_item_has_children>ul.children>li {
  margin: 0;
  background-color: blue;
}

.component-sitemap_page .wsp-container>ul>li.page_item_has_children>ul.children>li.page_item_has_children>ul.children>li.page_item_has_children>ul.children>li>a {
  display: flex;
  align-items: center;
  padding-left: 40px;
  position: relative;
  background-color: var(--color_alternate);
  width: 100%;
  min-height: 50px;
  transition: all 0.3s ease;
  border: 1px solid var(--color_primary);
}

.component-sitemap_page .wsp-container>ul>li.page_item_has_children>ul.children>li.page_item_has_children>ul.children>li.page_item_has_children>ul.children>li>a::before {
  width: 10px;
  height: 10px;
  font-family: "icomoon" !important;
  position: absolute;
  font-weight: 400;
  z-index: 9999;
  padding-top: 12px;
  transition: all 0.5s ease;
  color: #ffffff;
  left: 26px;
  top: 0px;
  content: "\e906";
  font-size: 8px;
  transition: all 0.3s ease;
}

.component-sitemap_page .wsp-container>ul>li.page_item_has_children>ul.children>li.page_item_has_children>ul.children>li.page_item_has_children>ul.children>li>a:hover {
  color: var(--color_primary);
}

/* ==========================================================================
Componente Geral - Sitemap for CATEGORIES
========================================================================== */
.component-sitemap_category .wsp-container {
  max-width: 1630px;
  /*margin: 0 auto;*/
  padding: 0 5px;
}

@media screen and (min-width: 1024px) {
  .component-sitemap_category .wsp-container {
    padding: 0 0 0 20px;
  }
}

.component-sitemap_category .wsp-container ul {
  margin-bottom: 0;
}

.component-sitemap_category .wsp-container li {
  margin-left: 0;
  line-height: normal;
}

.component-sitemap_category .wsp-container .wsp-posts-title {
  display: none;
}

.wsp-posts-list li.wsp-post {
  display: none;
}

.wsp-container>.wsp-posts-list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex-wrap: wrap;
}

@media screen and (min-width: 600px) {
  .wsp-container>.wsp-posts-list {
    flex-direction: row;
  }
}

.wsp-container>.wsp-posts-list>li {
  display: flex;
  order: 1;
  margin-bottom: 10px;
  width: 100%;
  margin-left: 0;
  padding: 0;
  line-height: normal;
}

@media screen and (min-width: 600px) {
  .wsp-container>.wsp-posts-list>li {
    width: 49%;
  }
}

@media screen and (min-width: 1024px) {
  .wsp-container>.wsp-posts-list>li {
    width: 33.3%;
  }
}

.wsp-container>.wsp-posts-list>li:not(.categ_item_has_children) strong {
  width: 100%;
  font-weight: 400;
}

.wsp-container>.wsp-posts-list>li:not(.categ_item_has_children) strong a {
  display: flex;
  align-items: center;
  min-height: 50px;
  background-color: var(--color_primary);
  width: 100%;
  height: 100%;
  padding-left: 10px;
  color: #ffffff;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

@media screen and (min-width: 1024px) {
  .wsp-container>.wsp-posts-list>li:not(.categ_item_has_children) strong a {
    width: calc(100% - 15px);
  }
}

.wsp-container>.wsp-posts-list>li:not(.categ_item_has_children) strong a:hover {
  background-color: var(--color_secondary);
  transition: all 0.3s ease;
}

.wsp-container>.wsp-posts-list li.categ_item_has_children {
  display: flex;
  order: 2;
  flex-direction: column;
  width: 100%;
}

@media screen and (min-width: 1024px) {
  .wsp-container>.wsp-posts-list li.categ_item_has_children {
    width: calc(100% - 15px);
  }
}

.wsp-container>.wsp-posts-list>li.categ_item_has_children>strong {
  width: 100%;
  font-weight: 400;
}

.wsp-container>.wsp-posts-list>li.categ_item_has_children>strong a {
  display: flex;
  align-items: center;

  background-color: var(--color_primary);
  width: 100%;
  height: 100%;
  min-height: 50px;
  padding-left: 10px;
  color: #ffffff;
  transition: all 0.3s ease;
  position: relative;
}

.wsp-container>.wsp-posts-list>li.categ_item_has_children>strong a::after {
  content: "\e908";
  width: 10px;
  height: 10px;
  font-family: "icomoon" !important;
  position: absolute;
  font-weight: 400;
  z-index: 9999;
  padding-top: 12px;
  right: 15px;
  top: 7px;
  transition: all 0.5s ease;
  color: #ffffff;
}

.wsp-container>.wsp-posts-list>li.categ_item_has_children>strong a:hover {
  background-color: var(--color_secondary);
  transition: all 0.3s ease;
}

.wsp-container>.wsp-posts-list>li.categ_item_has_children>.wsp-posts-list {
  display: flex;
  flex-direction: column;
}

.wsp-container>.wsp-posts-list>li.categ_item_has_children>.wsp-posts-list>li {
  width: calc(100% - 30px);
  margin-left: 30px;
  margin-bottom: 5px;
}

.wsp-container>.wsp-posts-list>li.categ_item_has_children>.wsp-posts-list>li>strong {
  font-weight: 400;
}

.wsp-container>.wsp-posts-list>li.categ_item_has_children>.wsp-posts-list>li>strong a {
  display: flex;
  align-items: center;
  border: 1px solid var(--color_primary);
  width: 100%;
  height: 100%;
  min-height: 50px;
  padding-left: 10px;
  color: var(--color_primary);
  transition: all 0.3s ease;
  position: relative;
}

.wsp-container>.wsp-posts-list>li.categ_item_has_children>.wsp-posts-list>li>strong a::before {
  width: 10px;
  height: 10px;
  font-family: "icomoon" !important;
  position: absolute;
  font-weight: 400;
  z-index: 9999;
  padding-top: 12px;
  transition: all 0.5s ease;
  color: var(--color_primary);
  left: -20px;
  top: 7px;
  content: "\e90a";
}

.wsp-container>.wsp-posts-list>li.categ_item_has_children>.wsp-posts-list>li>strong a:hover {
  background-color: var(--color_secondary);
  color: #ffffff;
  transition: all 0.3s ease;
}

.wsp-container>.wsp-posts-list>li.categ_item_has_children>.wsp-posts-list.has_children_lv2 {
  display: flex !important;
  flex-direction: column !important;
}

.wsp-container>.wsp-posts-list>li.categ_item_has_children>.wsp-posts-list.has_children_lv2>li {
  width: 100% !important;
  width: calc(100% - 30px) !important;
  margin-left: 30px;
}

.wsp-container>.wsp-posts-list>li.categ_item_has_children>.wsp-posts-list.has_children_lv2>li>strong a {
  width: 100% !important;
  padding-left: 10px;
}

.wsp-container>.wsp-posts-list>li.categ_item_has_children>.wsp-posts-list.has_children_lv2>li>strong a::before,
.wsp-container>.wsp-posts-list>li.categ_item_has_children>.wsp-posts-list.has_children_lv2>li>strong a::after {
  width: 10px;
  height: 10px;
  font-family: "icomoon" !important;
  position: absolute;
  font-weight: 400;
  z-index: 9999;
  padding-top: 12px;
  transition: all 0.5s ease;
  color: var(--color_primary);
}

.wsp-container>.wsp-posts-list>li.categ_item_has_children>.wsp-posts-list.has_children_lv2>li>strong a::before {
  left: -20px;
  top: 2px;
  content: "\e90a";
}

.wsp-container>.wsp-posts-list>li.categ_item_has_children>.wsp-posts-list.has_children_lv2>li>strong a::after {
  right: 10px;
  top: 2px;
  content: "\e90c";
}

.wsp-container>.wsp-posts-list>li.categ_item_has_children>.wsp-posts-list.has_children_lv2>li>.wsp-posts-list {
  background-color: var(--color_primary);
  border: 1px solid var(--color_primary);
  margin-bottom: 5px;
}

.wsp-container>.wsp-posts-list>li.categ_item_has_children>.wsp-posts-list>li>.wsp-posts-list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}

.wsp-container>.wsp-posts-list>li.categ_item_has_children>.wsp-posts-list>li>.wsp-posts-list>li {
  width: 100%;
}

.wsp-container>.wsp-posts-list>li.categ_item_has_children>.wsp-posts-list>li>.wsp-posts-list>li>strong {
  width: 100%;
  font-weight: 400;
}

.wsp-container>.wsp-posts-list>li.categ_item_has_children>.wsp-posts-list>li>.wsp-posts-list>li>strong>a {
  display: flex;
  align-items: center;
  padding-left: 10px;
  color: #ffffff;
  min-height: 50px;
  position: relative;
  width: 100%;
  padding-left: 20px;
  transition: all 0.3s ease;
}

.wsp-container>.wsp-posts-list>li.categ_item_has_children>.wsp-posts-list>li>.wsp-posts-list>li>strong>a::before {
  width: 10px;
  height: 10px;
  font-family: "icomoon" !important;
  position: absolute;
  font-weight: 400;
  z-index: 9999;
  padding-top: 12px;
  transition: all 0.5s ease;
  color: #ffffff;
  left: 6px;
  top: 10px;
  content: "\e90e";
  font-size: 8px;
  transition: all 0.3s ease;
}

.wsp-container>.wsp-posts-list>li.categ_item_has_children>.wsp-posts-list>li>.wsp-posts-list>li>strong>a:hover {
  transition: all 0.3s ease;
  background-color: #fff;
  color: var(--color_primary);
}

.wsp-container>.wsp-posts-list>li.categ_item_has_children>.wsp-posts-list>li>.wsp-posts-list>li>strong>a:hover::before {
  transition: all 0.3s ease;
  color: var(--color_primary);
}

.sf-menu ul li {
  font-family: "Heebo";
}

.sf-menu .td-menu-item>a {
  font-family: "Heebo";
}

/* =================================================================
COMPONENTE TABELA - BOTAO DE RETORNO
================================================================= */
.ontopcdn-tableReturnButton {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  max-width: 1200px;
  margin-bottom: 10px;
}

.ontopcdn-tableReturnButton button {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--color_primary);
  color: var(--color_primary);
  border-radius: 5px;
  width: 100px;
  padding: 5px;
  font-weight: 600;
  background-color: #fff;
  transition: all 0.3s ease;
}

.ontopcdn-tableReturnButton button:hover {
  background-color: var(--color_primary);
  color: #ffffff;
  transition: all 0.3s ease;
}

/* =================================================================
COMPONENTE TABELA PARA LISTAGEM
================================================================= */
.ontopcdn-tableList {
  width: calc(100% - 20px);
  max-width: 1200px;
  margin: 0 10px;
}

.ontopcdn-tableList .tableFilter {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  font-family: var(--font_family);
}

.ontopcdn-tableList .tableFilter form {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: stretch;
  width: 100%;
  margin-bottom: 20px;
}

.ontopcdn-tableList .tableFilter form input,
.ontopcdn-tableList .tableFilter form button {
  border: 0;
  font-size: 1.2rem;
  font-family: var(--font_family);
}

.ontopcdn-tableList .tableFilter form input {
  border-radius: 5px 0 0 5px;
  border-left: 1px solid #e5e5e5;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  padding: 20px 10px;
  width: 100%;
  max-width: 400px;
  color: #78767a;
  outline: none;
}

.ontopcdn-tableList .tableFilter form button {
  background-color: var(--color_primary);
  color: #ffffff;
  font-weight: 700;
  text-transform: lowercase;
  border-radius: 0 5px 5px 0;
  padding: 0px 30px;
}

.ontopcdn-tableList .tableCards {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  font-family: var(--font_family);
}

.ontopcdn-tableList .tableCards .card {
  min-height: 70px;
  padding: 15px 30px;
  position: relative;
}

.ontopcdn-tableList .tableCards .card:nth-child(odd) {
  background-color: #f6f6f6;
}

.ontopcdn-tableList .tableCards .card:nth-child(even) {
  background-color: #ffffff;
}

.ontopcdn-tableList .tableCards .card>span {
  position: absolute;
  right: 15px;
  top: calc(50% - 7px);
  color: var(--color_primary);
  font-weight: 900;
  font-size: 1.4rem;
  transition: all 0.3s ease;
}

.ontopcdn-tableList .tableCards .card .info {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  width: 100%;
}

@media screen and (min-width: 600px) {
  .ontopcdn-tableList .tableCards .card .info {
    flex-direction: row;
  }
}

.ontopcdn-tableList .tableCards .card h1 {
  color: var(--color_primary);
  font-weight: 400;
  font-size: 1.3rem;
  margin: 0;
  line-height: normal;
  margin-bottom: 5px;
  transition: all 0.3s ease;
}

.ontopcdn-tableList .tableCards .card .info p {
  color: var(--color_primary);
  transition: all 0.3s ease;
  margin: 0;
  line-height: normal;
}

@media screen and (min-width: 800px) {
  .ontopcdn-tableList .tableCards .card .info .w33 p {
    width: 33.3%%;
  }
  .ontopcdn-tableList .tableCards .card .info .w100 p {
    width: 100%;
  }
}

.ontopcdn-tableList .tableCards .card:hover {
  background-color: var(--color_primary);
  cursor: pointer;
}

.ontopcdn-tableList .tableCards .card:hover>span {
  color: #ffffff;
  transition: all 0.3s ease;
}

.ontopcdn-tableList .tableCards .card:hover h1 {
  color: #ffffff;
  transition: all 0.3s ease;
}

.ontopcdn-tableList .tableCards .card:hover .info p {
  color: #ffffff;
  transition: all 0.3s ease;
}

/* =================================================================
COMPONENTE TABELA PARA DETALHES
================================================================= */
.ontopcdn-tableDetails {
  display: flex;
  flex-direction: column;
  width: calc(100% - 20px);
  max-width: 1200px;
  margin: 0 10px;
  border: 1px solid rgba(38, 71, 150, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.ontopcdn-tableDetails .w25,
.ontopcdn-tableDetails .w33,
.ontopcdn-tableDetails .w40,
.ontopcdn-tableDetails .w50,
.ontopcdn-tableDetails .w60,
.ontopcdn-tableDetails .w100 {
  width: 100%;
}

@media screen and (min-width: 420px) {
  .ontopcdn-tableDetails .w25 {
    width: 50%;
  }

  .ontopcdn-tableDetails .w50 {
    width: 50%;
  }
}

@media screen and (min-width: 600px) {
  .ontopcdn-tableDetails .w33 {
    width: 50%;
  }

  .ontopcdn-tableDetails .w40 {
    width: 40%;
  }

  .ontopcdn-tableDetails .w60 {
    width: 60%;
  }
}

@media screen and (min-width: 800px) {
  .ontopcdn-tableDetails .w25 {
    width: 25%;
  }

  .ontopcdn-tableDetails .w33 {
    width: 33.3%;
  }
}

@media screen and (min-width: 1200px) {
  .ontopcdn-tableDetails .w20 {
    width: 20%;
  }

  .ontopcdn-tableDetails .w25 {
    width: 25%;
  }

  .ontopcdn-tableDetails .w33 {
    width: 33.3%;
  }

  .ontopcdn-tableDetails .w40 {
    width: 40%;
  }

  .ontopcdn-tableDetails .w50 {
    width: 50%;
  }

  .ontopcdn-tableDetails .w60 {
    width: 60%;
  }

  .ontopcdn-tableDetails .w75 {
    width: 75%;
  }

  .ontopcdn-tableDetails .w100 {
    width: 100%;
  }
}

.ontopcdn-tableDetails>.section {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  padding: 20px 30px;
  position: relative;
}

.ontopcdn-tableDetails>.section .w100bordered {
  border-bottom: 1px solid #e9edf4;
}

.ontopcdn-tableDetails>.section .anchorDocs {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;

  width: 40px;
  height: 40px;
  font-size: 3rem;
  right: 10px;
  top: 10px;
  position: absolute;
}

.ontopcdn-tableDetails>.section .anchorDocs a {
  margin: 0;
  line-height: 0;
  font-size: 3rem;
  color: var(--color_primary);
  text-decoration: none;
}

.ontopcdn-tableDetails>.section>p {
  color: var(--color_primary);
  font-size: 1.3rem;
}

.ontopcdn-tableDetails>.section:nth-child(odd) {
  background-color: #ffffff;
}

.ontopcdn-tableDetails>.section:nth-child(even) {
  background-color: #f6f6f6;
}

.ontopcdn-tableDetails>.section .sectionTitle {
  display: flex;
  width: 100%;
  font-weight: 500;
  color: var(--color_secondary);
  font-size: 1.4rem;
  margin: 0;
  line-height: normal;
  margin-top: 15px;
}

.ontopcdn-tableDetails>.section .cardTitle {
  color: var(--color_secondary);
  font-weight: 400;
  font-size: 1.4rem;
  margin: 0;
  line-height: normal;
}

.ontopcdn-tableDetails>.section .groupCards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 10px;
}

.ontopcdn-tableDetails>.section .card {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
  padding: 5px;
  border: 0;
  background: transparent;
}

.ontopcdn-tableDetails>.section .card h2 {
  color: var(--color_secondary);
  font-weight: 400;
  font-size: 1.4rem;
  margin: 0;
  line-height: normal;
}

.ontopcdn-tableDetails>.section .card p {
  color: var(--color_primary);
  font-size: 1.3rem;
  margin: 0;
  line-height: normal;
}

.ontopcdn-tableDetails>.section .card p a {
  display: block;
  color: var(--color_primary);
  text-decoration: none;
  position: relative;
  width: max-content;
  overflow: hidden;
  transition: all 0.3s ease;
}

.ontopcdn-tableDetails>.section .card p a::after {
  content: "";
  display: flex;
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background-color: var(--color_primary);
  transition: all 0.3s ease;
}

.ontopcdn-tableDetails>.section .card p a:hover {
  color: var(--color_primary);
  transition: all 0.3s ease;
}

.ontopcdn-tableDetails>.section .card p a:hover::after {
  left: 0;
  transition: all 0.3s ease;
}

.ontopcdn-tableDetails>.section .card p span {
  font-weight: 700;
}

.ontopcdn-tableDetails>.section .groupAttachments {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.ontopcdn-tableDetails>.section .groupAttachments .attachment {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-bottom: 1px solid #e9edf4;
  padding: 10px 0;
}

@media screen and (min-width: 600px) {
  .ontopcdn-tableDetails>.section .groupAttachments .attachment {
    flex-direction: row;
  }
}

.ontopcdn-tableDetails>.section .groupAttachments .attachment .info {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}

@media screen and (min-width: 600px) {
  .ontopcdn-tableDetails>.section .groupAttachments .attachment .info {
    flex-direction: column;
    width: calc(100% - 150px);
  }
}

.ontopcdn-tableDetails>.section .groupAttachments .attachment .info h2 {
  color: var(--color_primary);
  font-weight: 400;
  font-size: 1.4rem;
  padding-right: 10px;
}

.ontopcdn-tableDetails>.section .groupAttachments .attachment .info p {
  color: #78767a;
  font-weight: 400;
  font-size: 1.3rem;
}
.ontopcdn-tableDetails>.section .groupAttachments .attachment .info p a:hover {
  color: #7FC120;
}

.ontopcdn-tableDetails>.section .groupAttachments .attachment .button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

@media screen and (min-width: 600px) {
  .ontopcdn-tableDetails>.section .groupAttachments .attachment .button {
    width: 150px;
  }
}

.ontopcdn-tableDetails>.section .groupAttachments .attachment .button a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  width: 130px;
  min-height: 25px;
  padding: 5px;
  background-color: #fff;
  color: var(--color_primary);
  border: 1px solid var(--color_primary);
  border-radius: 5px;
  font-weight: 500;
  font-size: 1.2rem;
  font-family: var(--font_family);
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
}

.ontopcdn-tableDetails>.section .groupAttachments .attachment .button:hover a {
  transition: all 0.3s ease;
  background-color: var(--color_primary);
  color: #fff;
}

.ontopcdn-tableDetails>.section .groupAttachments .attachment .button a:focus {
  transition: all 0.3s ease;
  background-color: var(--color_primary);
  color: #fff;
}

.ontopcdn-tableDetails>.section .row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0;
}

.ontopcdn-tableDetails>.section .column {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

.ontopcdn-tableDetails>.section .bordered>div {
  padding: 5px 5px 5px 5px;
}

.ontopcdn-tableDetails>.section .bordered>div>div {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 10px;
}

@media screen and (min-width: 600px) {
  .ontopcdn-tableDetails>.section .bordered>div {
    border-right: 1px solid #e5e5e5;
    padding: 5px 20px 5px 20px;
  }

  .ontopcdn-tableDetails>.section .bordered>div:nth-of-type(2n) {
    border: 0;
    padding-right: 0;
  }

  .ontopcdn-tableDetails>.section .bordered>div:nth-of-type(2n + 1) {
    padding-left: 5px;
  }
}

@media screen and (min-width: 800px) {

  .ontopcdn-tableDetails>.section .bordered>div:nth-of-type(2n),
  .ontopcdn-tableDetails>.section .bordered>div:nth-of-type(2n + 1) {
    border-right: 1px solid #e5e5e5;
    padding: 5px 20px 5px 20px;
  }

  .ontopcdn-tableDetails>.section .bordered>div:nth-of-type(3n) {
    border: 0;
    padding-right: 0;
  }

  .ontopcdn-tableDetails>.section .bordered>div:nth-of-type(3n + 1) {
    padding-left: 5px;
  }
}

/* =================================================================
CDN SOCIAL MEDIA
================================================================= */
.ontopcdn-shareSocialMedia {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  width: 100%;
  font-family: var(--font_family);
}

@media screen and (min-width: 460px) {
  .ontopcdn-shareSocialMedia {
    justify-content: flex-end;
    margin-bottom: 20px;
  }
}

.ontopcdn-shareSocialMedia>.card {
  margin: 5px 10px 5px 0;
  min-width: 135px;
  border: 0;
}

@media screen and (min-width: 1024px) {
  .ontopcdn-shareSocialMedia>.card {
    margin: 10px 10px 0px 0;
    min-width: 120px;
  }
}

.ontopcdn-shareSocialMedia>.card>a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 7px 10px;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 5px;
  font-weight: 400;
  overflow: hidden;
  position: relative;
  height: 40px;
}

@media screen and (min-width: 1024px) {
  .ontopcdn-shareSocialMedia>.card>a {
    padding: 7px 5px;
    height: 30px;
  }
}

.ontopcdn-shareSocialMedia>.card>a span {
  width: 25px;
}

.ontopcdn-shareSocialMedia>.card>a span i {
  font-size: 1.6rem;
  margin-right: 5px;
  left: 10px;
  top: 10px;
  transition: all 0.3s ease;
  position: absolute;
}

@media screen and (min-width: 1024px) {
  .ontopcdn-shareSocialMedia>.card>a span i {
    left: 8px;
    top: 5px;
  }
}

.ontopcdn-shareSocialMedia>.card>a p {
  width: calc(100% - 25px);
  font-size: 1.4rem;
  top: 0;
  line-height: 0;
  padding-left: 0;
  margin-left: 0;
  margin-bottom: 0;
  padding-right: 5px;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.ontopcdn-shareSocialMedia>.card>a.filedownload {
  transition: all 0.3s ease;
  background-color: #525659;
  color: #ffffff;
}

.ontopcdn-shareSocialMedia>.card>a.facebook {
  transition: all 0.3s ease;
  background-color: #3b5998;
  color: #ffffff;
}

.ontopcdn-shareSocialMedia>.card>a.twitter {
  transition: all 0.3s ease;
  background-color: #50abf1;
  color: #ffffff;
}

.ontopcdn-shareSocialMedia>.card>a.whatsapp {
  transition: all 0.3s ease;
  background-color: #2ab540;
  color: #ffffff;
}

.ontopcdn-shareSocialMedia>.card>a:hover {
  text-decoration: none;
}

@media screen and (min-width: 1024px) {
  .ontopcdn-shareSocialMedia>.card>a:hover span i {
    position: absolute;
    width: 100%;
    height: 100%;
    left: calc(50% - 10px);
    transition: all 0.3s ease;
    top: 2px;
    font-size: 2.5rem;
  }
}

@media screen and (min-width: 1024px) {
  .ontopcdn-shareSocialMedia>.card>a:hover p {
    opacity: 0;
    transition: opacity 0.3s ease;
  }
}

.component-boxLinks {
  margin-bottom: 20px;
}

.component-archiveFiles>.card>.info a .title {
  color: var(--color_primary);
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 0;
  font-family: "Heebo", sans serif !important;
}

.component-archiveFiles>.card>.info a .date {
  color: var(--color_primary);
  font-size: 1.6rem;
  margin-bottom: 0;
}

.component-boxLinks ul li:before {
  content: "\e912";
}

.component-archiveFiles>.card>.info {
  justify-content: center;
}

.filtermonth {
  display: flex;
  justify-content: flex-end;
}

.filtermonth button[type="submit"] {
  border: 0;
  font-size: 1.2rem;
  font-family: var(--font_family);
  color: #fff;
  font-weight: 700;
  text-transform: lowercase;
  border-radius: 0 5px 5px 0;
  padding: 10px 30px;
  width: 120px;
  transition: all .3s ease;
  background-color: var(--color_primary);
  order: 2;
  cursor: pointer;
}

.filtermonth select {
  position: relative;
  margin-right: 1px;
  margin-right: -5px;
  border: 0;
  font-size: 1.2rem;
  font-family: var(--font_family);
  border-radius: 5px 0 0 5px;
  border-left: 1px solid #e5e5e5;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  padding: 10px;
  width: calc(100% - 120px);
  max-width: 400px;
  color: #78767a;
  outline: none;
}