/* Variables */

:root {
  --default-bg-color: #245c4c;
  --top-bg-color: #103128;
  --btn-hover-color: #103128;
  --content-gradient-color: #103128;
  --content-hover-color: #245c4c;
}


body {
  background-color: #fff;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
  padding-right: 0 !important;
}

::selection {
  background: var(--default-bg-color);
  color: #ffffff;
}

::-moz-selection {
  background: var(--default-bg-color);
  color: #ffffff;
}

*::-webkit-input-placeholder {
  color: #8d99ae !important;
}

*:-moz-placeholder {
  /* FF 4-18 */
  color: #8d99ae !important;
}

*::-moz-placeholder {
  /* FF 19+ */
  color: #8d99ae !important;
}

*:-ms-input-placeholder {
  /* IE 10+ */
  color: #8d99ae !important;
}

h1, h3 {
  margin: 0;
  font-weight: 800;
}

h2, h4 {
  margin: 0;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
}

p {
  color: #2b2d42;
  font-weight: 400;
}

a {
  text-decoration: none !important;
  outline: 0;
  transition: all 0.3s ease-in-out;
}

.btn {
  padding: 0.8em 2em;
  color: #ffffff;
  background-color: var(--default-bg-color);
  font-size: 14px;
  border-radius: 5px;
  font-weight: 600;
  text-align: center;
}

.btn-outline {
  background-color: transparent;
  color: inherit;
  transition: all .5s;
} 

.btn-primary {
  color: var(--default-bg-color) !important;
}

.btn-primary.btn-outline {
  color: #428bca;
}

.btn-success.btn-outline {
  color: #5cb85c;
}

.btn-info.btn-outline {
  color: #5bc0de;
}

.btn-warning.btn-outline {
  color: #f0ad4e;
}

.btn-danger.btn-outline {
  color: #d9534f;
}

.btn-primary.btn-outline:hover,
.btn-success.btn-outline:hover,
.btn-info.btn-outline:hover,
.btn-warning.btn-outline:hover,
.btn-danger.btn-outline:hover {
  color: #fff;
}

.btn:hover {
  color: #ffffff;
  background-color: var(--default-bg-color);
}

.breadcrumb-item a {
  color: var(--default-bg-color);
  font-weight: 600;
}
.breadcrumb-item a:hover {
  color: var(--btn-hover-color);
  font-weight: 600;
}
.topnav {
  overflow: hidden;
  background-color: var(--top-bg-color);
	z-index: 5;
	position: fixed;
	width: 100%;
	/* height: 30px; */
	/* padding: 0 85px; */
}

.topnav a {
  float: left;
  color: #fff;
  text-align: center;
  padding: 6px 16px;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 15px;
}

.topnav a:hover {
  /* background-color: #ddd; */
  color: #ddd;
}

.topnav a.active {
  background-color: #4CAF50;
	color: white;}

.no-list-style {
	list-style:none; 
	text-transform: uppercase;
}

.navbar {
  background-color: #ffffff !important;
  border-bottom: 1px solid #edf2f4;
}

.navbar .nav-wrapper {
  padding: 0;
}

@media (max-width: 992px) {
  .navbar .nav-wrapper {
    justify-content: flex-end;
  }
}

@media (max-width: 992px) {
  .navbar .nav-wrapper .navbar-nav {
    text-align: center;
    margin: 1.5em 0;
  }
}

.navbar .nav-wrapper .navbar-nav .nav-link {
  font-weight: 500;
  margin: 0 1em;
  position: relative;
  cursor: pointer;
}

.navbar .nav-wrapper .navbar-nav .nav-link:hover, .navbar .nav-wrapper .navbar-nav .nav-link:focus, .navbar .nav-wrapper .navbar-nav .nav-link.active {
  color: var(--default-bg-color);
}

.navbar .nav-wrapper .navbar-nav .nav-link:first-child {
  margin-left: 0;
}

@media (max-width: 992px) {
  .navbar .nav-wrapper .navbar-nav .nav-link {
    margin: 0;
  }
}
.navbar .nav-wrapper .navbar-nav .dropdown .dropdown-menu .dropdown-item a {
  color: #2b2d42;
  font-weight: 400;
  font-size: 14px !important;
}
.navbar .nav-wrapper .navbar-nav .dropdown .dropdown-menu .dropdown-item a:hover, .navbar .nav-wrapper .navbar-nav .dropdown .dropdown-menu .dropdown-item a:focus, .navbar .nav-wrapper .navbar-nav .dropdown .dropdown-menu .dropdown-item a.active {
  color: var(--default-bg-color);
  background-color: white;
}
.navbar .nav-wrapper .navbar-nav .dropdown .dropdown-menu .dropdown-item:hover, .navbar .nav-wrapper .navbar-nav .dropdown .dropdown-menu .dropdown-item:focus, .navbar .nav-wrapper .navbar-nav .dropdown .dropdown-menu .dropdown-item.active {
  color: var(--default-bg-color);
  background-color: white;
}
.navbar .nav-wrapper .navbar-nav .dropdown .dropdown-menu .dropdown-submenu {
  position: relative;
}

.navbar .nav-wrapper .navbar-nav .dropdown .dropdown-menu .dropdown-submenu>.dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -6px;
  margin-left: -1px;
  -webkit-border-radius: 0 6px 6px 6px;
  -moz-border-radius: 0 6px 6px;
  border-radius: 0 6px 6px 6px;
}

.navbar .nav-wrapper .navbar-nav .dropdown .dropdown-menu .dropdown-submenu:hover > .dropdown-menu {
  display: block;
}

.navbar .nav-wrapper .navbar-nav .dropdown .dropdown-menu .dropdown-submenu > a:after {
  display: block;
  content: "";
  float: right;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-left-color: #ccc;
  margin-top: 5px;
  margin-right: -10px;
}
.navbar .nav-wrapper .navbar-nav .dropdown .dropdown-menu .dropdown-submenu:hover > a:after {
  border-left-color: #fff;
}
.navbar .nav-wrapper .navbar-nav .dropdown .dropdown-menu .dropdown-submenu > .dropdown-item {
  font-weight: 400;
  font-size: 14px;
}
.navbar .nav-wrapper .navbar-nav .dropdown .dropdown-menu .dropdown-submenu > .dropdown-item:hover {
  color: var(--default-bg-color);
}
.navbar .nav-wrapper .navbar-nav .dropdown .dropdown-menu .dropdown-submenu.pull-left {
  float: none;
}
.navbar .nav-wrapper .navbar-nav .dropdown .dropdown-menu .dropdown-submenu.pull-left > .dropdown-menu {
  left: -100%;
  margin-left: 10px;
  -webkit-border-radius: 6px 0 6px 6px;
  -moz-border-radius: 6px 0 6px 6px;
  border-radius: 6px 0 6px 6px;
}

.top {
  background-color: var(--top-bg-color);
  height: 37px;
}
@media (max-width: 768px) {
  .top {
    display: none;
  }
}
.top .top__bar {
  padding: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}
.top .top__bar .top__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.top .top__bar .top__list:first-child::before {
  content: "";
  position: absolute;
  top: 0;
  margin-left: -1em;
  width: 18px;
  height: 37px;
  background-image: url("../images/colors-item.svg");
}
.top .top__bar .top__list .list-item {
  display: inline;
  margin-left: 1.5em;
}
.top .top__bar .top__list .list-item a {
  font-size: 11px;
  font-weight: 600;
  line-height: 16px;
  text-transform: uppercase;
  color: #ffffff;
  opacity: 0.6;
  transition: all 0.3s ease-in-out;
}
.top .top__bar .top__list .list-item a:hover {
  opacity: 1;
}

.top-header {
  padding: 2em 0;
  background-color: var(--default-bg-color);
}
.top-header .top-header__wrapper {
  padding: 0;
  display: flex;
  flex-direction: row;
  /*justify-content: space-between;*/
  align-items: center;
}
/*.top-header .top-header__wrapper::before {*/
  /*content: "";*/
  /*position: absolute;*/
  /*top: 0;*/
  /*margin-left: -1em;*/
  /*width: 18px;*/
  /*height: 37px;*/
  /*background-image: url("../images/colors-item.svg");*/
/*}*/
@media (max-width: 576px) {
  .top-header .top-header__wrapper {
    flex-direction: column;
  }
}

@media(max-width: 576px){
  .top-header .top-header__wrapper::before {
    display:none;
  }
}
@media (max-width: 576px) {
  .top-header .top-header__wrapper .home-search {
    margin-top: 1.5em;
  }
}
.top-header .top-header__wrapper .home-search .form-control {
  background-color: #fff;
  border: none !important;
  height: 45px;
  /*width: 300px;*/
  color: var(--default-bg-color);
}
.top-header .top-header__wrapper .home-search .form-control::-webkit-input-placeholder {
  font-size: 14px;
  font-weight: 600;
  color: var(--default-bg-color)!important;
  opacity: 0.6;
}
.top-header .top-header__wrapper .home-search .input-group-append button {
  background-color: var(--top-bg-color);
  padding: 0 1.5em;
  border: solid;
}
.top-header .top-header__wrapper .home-search .input-group-append button .fa-search {
  color: #ffffff;
  opacity: 0.6;
}

.top-header .top-header__wrapper .brand {
  padding-left: 30px;
}

.form-items {
  padding: 1.5em 0 0.5em;
  background-color: #ffffff;
}
.form-items .form-group label {
  color: var(--default-bg-color);
  font-size: 14px;
  font-weight: 600;
}
.form-items .form-group .form-control {
  height: 45px;
  font-size: 14px;
  font-weight: 600;
  color: #8d99ae;
}
.form-items .form-group .btn-wrapper {
  display: flex;
  justify-content: flex-end;
}
.form-items .form-group .btn-wrapper .btn {
  margin-top: 1em;
}
.form-items .form-group .items-group {
  margin-top: 1em;
  display: grid;
  grid-gap: 5px;
  grid-template-columns: 1fr 1fr auto;
}
.form-items .form-group .items-group .btn {
  padding: 0.8em 1.5em;
}

.content {
  margin-top: 3em;
}
.content .content__wrapper {
  padding: 0;
  display: grid;
  /* grid-template-columns: 352px 1fr; */
  grid-gap: 20px;
}
.card-header{
  padding: .75rem 0rem .75rem 4rem; 
  background-color: transparent; 
  border-bottom: none;
}
.content .content__wrapper .card .card-header{
  border: 0;
  padding: 0;
  background-color: #edf2f4;
}

.content .content__wrapper .menu .card{
  max-width: 135px;
}

.content .content__wrapper .card .card-img{
  text-align: center;
  padding-top: 10%;
  padding-bottom: 10%;
}

.content .content__wrapper .card .card-img img{
  width: 100px;
}

.content .content__wrapper .home-search .form-control {
  border: 1px solid var(--top-bg-color)!important;
  height: 45px;
  width: 210px;
}

.top-header .top-header__wrapper .header-title {
  padding-left: 30px;
}

.top-header .top-header__wrapper .header-subtitle {
  padding-left: 30px;
}

.content .content__wrapper .header-title {
  height: 45px;
  width: 210px;
}
.content .content__wrapper .header-subtitle {
  height: 45px;
  width: 210px;
}

@media (max-width: 576px) {
  .header-title {
    padding-top: 10px;  
    padding-left: 0 !important;
    text-align:center
  }
  .header-title h2{
    font-size: 20px;
  }
  .header-subtitle {
    display:none;
  }
  .card-header{
    padding: 0;
  }
  .top-header .top-header__wrapper .brand {	
    /* padding-left: 0px; */
 }

}

.content .content__wrapper .card .list-group .list-group-item {
  background-color: var(--default-bg-color);
  color: #ffffff;
  margin-top: 10px;
}

.content .content__wrapper .card .list-group .list-group-item a {
  color: #ffffff;
}

@media (max-width: 992px) {
  .content .content__wrapper {
    grid-template-columns: 1fr;
  }
}

.title {
  margin-bottom: 3em;
}

.title .title-container {
  color: var(--default-bg-color);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  background-color: none !important;
}

.title .title-container::after {
  content: "";
  display: block;
  width: 60px;
  margin: 0.5em 0;
  height: 4px;
  left: 0;
  background-color: var(--default-bg-color);
  position: absolute;
}

.content .content__wrapper .feature {
  padding: 2em;
  background-size: cover;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.content .content__wrapper .feature::before {
  content: "";
  display: block;
  position: absolute;
  opacity: 0.9;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.content .content__wrapper .feature .title-feature {
  width: 175px;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 33px;
  line-height: 39px;
  font-weight: 700;
}
.content .content__wrapper .feature .resume-feature {
  margin-top: 2.5em;
  width: 275px;
  color: #ffffff;
}
.content .content__wrapper .feature .btn {
  padding: 0.8em 2em;
  background-color: #ffffff;
  color: var(--top-bg-color);
}
.content .content__wrapper .menu {
  background-color: #ffffff;
  border-radius: 4px;
  padding: 2em;
}


@media (max-width: 576px) {
  .content .content__wrapper .menu {
    width: 100%;
  }
  .content .content__wrapper .menu .container{
    max-width: 100%;
  }
}

/*.content .content__wrapper .menu .title-principal {*/
  /*color: var(--top-bg-color);*/
  /*font-size: 18px;*/
  /*font-weight: 700;*/
  /*text-transform: uppercase;*/
  /*margin: 0;*/
  /*grid-column: 1/-1;*/
/*}*/
/*.content .content__wrapper .menu .menu {*/
  /*margin-top: 2em;*/
  /*padding: 0 1em;*/
/*}*/
/*@media (max-width: 992px) {*/
  /*.content .content__wrapper .menu .menu--item {*/
    /*grid-column: 1/-1;*/
    /*padding: 0 1em 0.5em 0;*/
    /*border-bottom: 1px solid #edf2f4;*/
  /*}*/
  /*.content .content__wrapper .menu .menu--item:last-child {*/
    /*border-bottom: none;*/
  /*}*/
/*}*/
/*.content .content__wrapper .menu .menu--item .date {*/
  /*font-size: 11px;*/
  /*text-transform: uppercase;*/
  /*color: #8d99ae;*/
  /*font-weight: 700;*/
/*}*/
/*.content .content__wrapper .menu .menu--item .title-menu {*/
  /*font-size: 18px;*/
  /*font-weight: 600;*/
  /*line-height: 22px;*/
/*}*/
/*.content .content__wrapper .menu .menu--item .title-menu a {*/
  /*color: var(--top-bg-color);*/
/*}*/
/*.content .content__wrapper .menu .menu-item .menu a:hover {*/
  /*color: var(--content-hover-color);*/
  /*text-decoration: underline;*/
/*}*/
/*.content .content__wrapper .menu .menu-item .resume-menu {*/
  /*margin-top: 0.5em;*/
/*}*/

.search-top {
  background-color: #ffffff;
  padding: 3em 0;
}
.search-top .search-info__box {
  padding: 1.5em;
  background-color: #edf2f4;
  border-radius: 4px;
  width: 450px;
}
@media (max-width: 576px) {
  .search-top .search-info__box {
    width: 100%;
    padding: 1.5em;
  }
}
.search-top .search-info__box .title-info {
  color: var(--top-bg-color);
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
}
.search-top .search-info__box .title-info i {
  margin-right: 0.5em;
}
.search-top .search-info__box .resume-info {
  width: 100%;
  margin: 0.5em 0 0;
  font-size: 14px;
}
.search-top .search-top__title {
  color: var(--top-bg-color);
  margin-top: 2em;
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
  text-transform: uppercase;
}
.search-top .search-top__title i {
  margin-right: 0.5em;
}
.search-top form {
  margin-top: 1.5em;
}
.search-top form .form-row {
  width: 400px;
}
@media (max-width: 576px) {
  .search-top form .form-row {
    width: 100%;
  }
}
.search-top form .form-row label {
  color: var(--top-bg-color);
  font-size: 14px;
  font-weight: 600;
}
.search-top form .form-row .form-control {
  height: 45px;
  font-size: 14px;
  font-weight: 600;
  color: #8d99ae;
}
.search-top form .form-row .btn {
  margin-top: 0.5em;
}

.search-result {
  margin-top: 3em;
}
.search-result .search-top__title {
  color: var(--top-bg-color);
  margin-top: 2em;
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
  text-transform: uppercase;
}
.search-result .search-top__title i {
  margin-right: 0.5em;
}
.search-result .search-result__items {
  margin-top: 1.5em;
}
.search-result .search-result__items::after {
  content: "";
  display: block;
  margin-top: 3em;
  width: 780px;
  border-bottom: 1px solid #707070;
  opacity: 0.2;
}
@media (max-width: 992px) {
  .search-result .search-result__items::after {
    width: 100%;
  }
}
.search-result .search-result__items .result-columns {
  width: 800px;
  margin-top: 1em;
  display: flex;
}
@media (max-width: 992px) {
  .search-result .search-result__items .result-columns {
    width: 100%;
  }
}
.search-result .search-result__items .result-columns .title-result {
  margin: 0;
  flex: 1;
  padding-right: 3em;
  font-size: 14px;
  font-weight: 600;
}
.search-result .search-result__items .result-columns .title-result-full {
  margin: 0;
  padding-right: 3em;
  font-size: 14px;
  font-weight: 600;
}
.search-result .search-result__items .result-columns .description-result {
  text-align: left;
  margin: 0;
  flex: 6;
}
@media (max-width: 992px) {
  .search-result .search-result__items .result-columns .description-result {
    flex: 4;
    padding-right: 2em;
  }
}
@media (max-width: 576px) {
  .search-result .search-result__items .result-columns .description-result {
    flex: 3;
  }
}

.transactions {
  margin-top: 3em;
}
.transactions .search-top__title {
  color: var(--top-bg-color);
  margin-top: 2em;
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
  text-transform: uppercase;
}
.transactions .search-top__title i {
  margin-right: 0.5em;
}
.transactions .table-custom {
  margin-top: 2em;
  width: 800px;
}
@media (max-width: 992px) {
  .transactions .table-custom {
    width: 100%;
  }
}
.transactions .table-custom .thead-custom th {
  background-color: var(--top-bg-color);
  border: none;
  color: #ffffff;
}
.transactions .table-custom .thead-custom th:first-child {
  border-radius: 4px 0 0 0;
}
.transactions .table-custom .thead-custom th:last-child {
  border-radius: 0 4px 0 0;
}
.transactions .table-custom tbody th {
  font-weight: 400;
}
.transactions .table-custom tbody .align-icon {
  padding-top: 1.3em;
  text-align: center;
}
.transactions .table-custom tbody .align-icon a {
  color: var(--top-bg-color);
}
.transactions .table-custom tbody .align-icon a:hover {
  color: var(--content-hover-color);
}
.transactions .table-custom tbody .align-icon a i {
  font-size: 18px;
}

.news {
  margin-top: 3em;
}
.news .news__wrapper {
  padding: 0;
  display: grid;
  grid-gap: 20px;
  grid-template-columns: 1fr auto;
}
@media (max-width: 992px) {
  .news .news__wrapper {
    grid-template-columns: 1fr;
  }
}
.news .news__wrapper .notices {
  background-color: #ffffff;
  display: grid;
  grid-template-columns: 1fr;
  border-radius: 4px;
  padding: 2em;
}
@media (max-width: 1200px) {
  .news .news__wrapper .notices {
    padding: 2em;
  }
}
.news .news__wrapper .notices .title-principal {
  color: var(--default-bg-color);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  grid-column: 1/-1;
}
.news .news__wrapper .notices .notices--item {
  margin-top: 2em;
  padding: 0 1em 0.5em 0;
  border-bottom: 1px solid #edf2f4;
}
.news .news__wrapper .notices .notices--item:last-child {
  border-bottom: none;
}
.news .news__wrapper .notices .notices--item .date {
  font-size: 11px;
  text-transform: uppercase;
  color: #8d99ae;
  font-weight: 700;
}
.news .news__wrapper .notices .notices--item .title-notices {
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
}
.news .news__wrapper .notices .notices--item .title-notices a {
  color: var(--default-bg-color);
}
.news .news__wrapper .notices .notices--item .title-notices a:hover {
  color: var(--content-hover-color);
  text-decoration: underline;
}
.news .news__wrapper .notices .notices--item .resume-notices {
  margin-top: 0.5em;
}
.news .news__wrapper .feature {
  padding: 2em;
  background-size: cover;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  height: 360px;
}
.news .news__wrapper .feature::before {
  content: "";
  display: block;
  position: absolute;
  opacity: 0.9;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.news .news__wrapper .feature .title-feature {
  width: 175px;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 33px;
  line-height: 39px;
  font-weight: 700;
}
.news .news__wrapper .feature .resume-feature {
  margin-top: 2.5em;
  width: 275px;
  color: #ffffff;
}
.news .news__wrapper .feature .btn {
  padding: 0.8em 2em;
  background-color: #ffffff;
  color: var(--default-bg-color);
}

.news-single {
  margin-top: 3em;
}
.news-single .news-single__wrapper {
  padding: 0;
  display: grid;
  grid-gap: 20px;
  grid-template-columns: 720px 1fr;
}
@media (max-width: 1200px) {
  .news-single .news-single__wrapper {
    grid-template-columns: 1fr;
    width: 800px;
  }
}
@media (max-width: 992px) {
  .news-single .news-single__wrapper {
    grid-template-columns: 1fr;
    width: 100%;
  }
}
.news-single .news-single__wrapper .news-item {
  background-color: #ffffff;
  border-radius: 4px;
  padding: 2em;
}
.news-single .news-single__wrapper .news-item .img-feature img {
  border-radius: 4px;
}
.news-single .news-single__wrapper .news-item .title-item {
  margin-top: 1.5em;
  color: var(--default-bg-color);
  font-size: 24px;
  line-height: 29px;
  font-weight: 600;
}
.news-single .news-single__wrapper .news-item .info-group {
  margin: 1em 0;
}
.news-single .news-single__wrapper .news-item .info-group .item {
  display: inline;
  color: #8d99ae;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  position: relative;
}
.news-single .news-single__wrapper .news-item .info-group .item:first-child {
  margin-right: 1.5em;
}
.news-single .news-single__wrapper .news-item .info-group .item:first-child::after {
  content: "";
  display: block;
  position: absolute;
  top: 40%;
  right: -13px;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background-color: #8d99ae;
}
.news-single .news-single__wrapper .news-item .feature-post {
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.58;
}
.news-single .news-single__wrapper .news-item .action {
  display: block;
  margin: 2.5em 0 1.5em;
  color: var(--default-bg-color);
  font-size: 16px;
  font-weight: 600;
}
.news-single .news-single__wrapper .news-item .action:hover {
  color: var(--content-hover-color);
}
.news-single .news-single__wrapper .news-item .action i {
  margin-right: 0.5em;
}
.news-single .news-single__wrapper .news-single__notices {
  background-color: #ffffff;
  display: grid;
  grid-template-columns: 1fr;
  border-radius: 4px;
  padding: 2em;
}
@media (max-width: 1200px) {
  .news-single .news-single__wrapper .news-single__notices {
    padding: 2em;
    height: 100%;
  }
}
.news-single .news-single__wrapper .news-single__notices .title-principal {
  color: var(--default-bg-color);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  grid-column: 1/-1;
}
.news-single .news-single__wrapper .news-single__notices .news-single__item {
  margin-top: 2em;
  grid-column: 1/-1;
  padding: 0 1em 0.5em 0;
  border-bottom: 1px solid #edf2f4;
}
.news-single .news-single__wrapper .news-single__notices .news-single__item:last-child {
  border-bottom: none;
}
.news-single .news-single__wrapper .news-single__notices .news-single__item:last-child {
  border-bottom: none;
}
.news-single .news-single__wrapper .news-single__notices .news-single__item .date {
  font-size: 11px;
  text-transform: uppercase;
  color: #8d99ae;
  font-weight: 700;
}
.news-single .news-single__wrapper .news-single__notices .news-single__item .title-notices {
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
}
.news-single .news-single__wrapper .news-single__notices .news-single__item .title-notices a {
  color: var(--default-bg-color);
}
.news-single .news-single__wrapper .news-single__notices .news-single__item .title-notices a:hover {
  color: var(--content-hover-color);
  text-decoration: underline;
}
.news-single .news-single__wrapper .news-single__notices .news-single__item .resume-notices {
  margin-top: 0.5em;
}

.biography {
  margin-top: 3em;
}
.biography .biography__wrapper {
  display: flex;
  flex-direction: row;
}
@media (max-width: 767px) {
  .biography .biography__wrapper {
    flex-direction: column;
  }
}
.biography .biography__wrapper .img-wrapper {
  height: auto;
}
.biography .biography__wrapper .img-wrapper .img-bio {
  width: 300px;
  height: 300px;
  border-radius: 4px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media (max-width: 767px) {
  .biography .biography__wrapper .img-wrapper .img-bio {
    width: 100%;
  }
}
.biography .biography__wrapper .biography__group {
  padding-left: 3em;
}
@media (max-width: 767px) {
  .biography .biography__wrapper .biography__group {
    width: 100%;
    padding: 3em 0 0 0;
  }
}
.biography .biography__wrapper .biography__group .bio-title {
  color: var(--default-bg-color);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
}
.biography .biography__wrapper .biography__group .bio-title::after {
  content: "";
  display: block;
  width: 60px;
  margin: 0.5em 0;
  height: 4px;
  left: 0;
  background-color: var(--default-bg-color);
  position: absolute;
}
.biography .biography__wrapper .biography__group .bio-description {
  margin-top: 2em;
}

.candidate {
  margin-top: 3em;
}
.candidate .title-candidate {
  color: var(--default-bg-color);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
}
.candidate .title-candidate::after {
  content: "";
  display: block;
  width: 60px;
  margin: 0.5em 0;
  height: 4px;
  left: 0;
  background-color: var(--default-bg-color);
  position: absolute;
}
.candidate .candidate__cards {
  margin-top: 3em;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 3rem;
}
.candidate .candidate__cards .candidate__item {
  display: flex;
  flex-flow: column;
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 4px;
  text-align: center;
}
.candidate .candidate__cards .candidate__item .candidate-image {
  width: 130px;
  height: 130px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 50%;
  align-self: center;
  order: -1;
}
.candidate .candidate__cards .candidate__item .candidate-name {
  color: var(--default-bg-color);
  margin-top: 1em;
  font-size: 18px;
  font-weight: 600;
}
.candidate .candidate__cards .candidate__item .candidate-post {
  margin-top: 0.5em;
  color: #8d99ae;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}
.candidate .candidate__cards .candidate__item .candidate-resume {
  margin-top: 0.5em;
}
.candidate .candidate__cards .candidate__item .btn {
  align-self: center;
  border-radius: 4px;
  width: 180px;
  border: 1px solid var(--default-bg-color);
  background-color: transparent;
  color: var(--default-bg-color);
}
.candidate .candidate__cards .candidate__item .btn:hover {
  background-color: var(--default-bg-color);
  color: #ffffff;
}
.candidate .candidate__cards .candidate__item .links-candidate__icons {
  margin-top: 1.2em;
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .candidate .candidate__cards .candidate__item .links-candidate__icons {
    justify-content: center;
  }
}
.candidate .candidate__cards .candidate__item .links-candidate__icons .icon-item {
  width: 36px;
  height: 36px;
  border-radius: 100%;
  border: 1px solid var(--default-bg-color);
  color: var(--default-bg-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5em;
}
.candidate .candidate__cards .candidate__item .links-candidate__icons .icon-item:hover {
  color: #ffffff;
  background-color: var(--default-bg-color);
}
.candidate .candidate__cards .candidate__item .links-candidate__icons .icon-item i {
  font-size: 16px;
}

.single-candidate {
  margin-top: 3em;
}
.single-candidate .nav .nav-item .active {
  padding: 0.8em 2em;
  color: #ffffff !important;
  background-color: var(--default-bg-color);
  font-size: 14px;
  border-radius: 5px;
  font-weight: 600;
  text-align: center;
}
.single-candidate .nav .nav-item .nav-link {
  padding: 0.8em 2em;
  color: #8d99ae;
  font-size: 14px;
  border-radius: 5px;
  font-weight: 600;
  text-align: center;
}
.single-candidate .tab-content {
  min-height: 500px;
  height: auto;
}
.single-candidate .tab-content .tab-pane {
  margin-top: 2em;
}
.single-candidate .tab-content .tab-pane .bio-wrapper {
  display: flex;
}
@media (max-width: 768px) {
  .single-candidate .tab-content .tab-pane .bio-wrapper {
    flex-flow: column;
  }
}
.single-candidate .tab-content .tab-pane .bio-wrapper .img-candidate {
  height: auto;
}
.single-candidate .tab-content .tab-pane .bio-wrapper .img-candidate .img-bio {
  width: 300px;
  height: 300px;
  border-radius: 4px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media (max-width: 768px) {
  .single-candidate .tab-content .tab-pane .bio-wrapper .img-candidate .img-bio {
    width: 100%;
  }
}
.single-candidate .tab-content .tab-pane .bio-wrapper .candidate__info {
  margin-left: 2em;
}
@media (max-width: 768px) {
  .single-candidate .tab-content .tab-pane .bio-wrapper .candidate__info {
    margin: 2em 0;
  }
}
.single-candidate .tab-content .tab-pane .bio-wrapper .candidate__info .candidate-title {
  margin-bottom: 1em;
  color: #8d99ae;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}
.single-candidate .tab-content .tab-pane .bio-wrapper .candidate__info .info {
  margin: 0 0 0.6em 0;
}
.single-candidate .tab-content .tab-pane .bio-wrapper .candidate__info .info span {
  font-weight: 600;
}

.directors {
  margin-top: 3em;
}
.directors .title-directors {
  color: var(--default-bg-color);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
}
.directors .title-directors::after {
  content: "";
  display: block;
  width: 60px;
  margin: 0.5em 0;
  height: 4px;
  left: 0;
  background-color: var(--default-bg-color);
  position: absolute;
}
.directors .directors__cards {
  margin-top: 3em;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 2rem;
}
@media (max-width: 992px) {
  .directors .directors__cards {
    grid-template-columns: 100%;
  }
}
.directors .directors__cards .directors__item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 4px;
}
@media (max-width: 1200px) {
  .directors .directors__cards .directors__item {
    flex-flow: column;
  }
}
@media (max-width: 992px) {
  .directors .directors__cards .directors__item {
    flex-flow: row;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .directors .directors__cards .directors__item {
    flex-flow: column;
  }
}
.directors .directors__cards .directors__item .directors-image {
  width: 180px;
  height: 180px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 4px;
  order: -1;
}

@media (max-width: 1200px) {
  .directors .directors__cards .directors__item .directors-image {
    width: 100%;
    height: 280px;
    align-self: center;
  }
}
@media (max-width: 992px) {
  .directors .directors__cards .directors__item .directors-image {
    align-self: flex-start;
  }
}
.directors .directors__cards .directors__item .directors__group {
  margin-left: 1em;
  flex-basis: 60%;
}
@media (max-width: 1200px) {
  .directors .directors__cards .directors__item .directors__group {
    margin: 1.5em 0;
    text-align: center; }
}
@media (max-width: 992px) {
  .directors .directors__cards .directors__item .directors__group {
    margin: 0 0 0 1em;
    text-align: left; }
}
@media (max-width: 768px) {
  .directors .directors__cards .directors__item .directors__group {
    margin: 1.5em 0;
    text-align: center;
  }
}
.directors .directors__cards .directors__item .directors__group .directors-name {
  color: var(--default-bg-color);
  font-size: 18px;
  font-weight: 600;
}
.directors .directors__cards .directors__item .directors__group .directors-post {
  margin-top: 0.5em;
  color: #8d99ae;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}
.directors .directors__cards .directors__item .directors__group .directors-resume {
  max-width: 350px;
  margin-top: 0.5em;
}
@media (max-width: 1200px) {
  .directors .directors__cards .directors__item .directors__group .directors-resume {
    max-width: 100%;
    margin-top: 1em;
    padding: 0 1em; }
}
@media (max-width: 992px) {
  .directors .directors__cards .directors__item .directors__group .directors-resume {
    max-width: 900px;
    padding: 0;
  }
}
.directors .directors__cards .directors__item .directors__group .links-directors__icons {
  margin-top: 1.2em;
  display: flex;
  justify-content: flex-start;
}
@media (max-width: 1200px) {
  .directors .directors__cards .directors__item .directors__group .links-directors__icons {
    justify-content: center;
  }
}
@media (max-width: 992px) {
  .directors .directors__cards .directors__item .directors__group .links-directors__icons {
    justify-content: flex-start;
  }
}
@media (max-width: 768px) {
  .directors .directors__cards .directors__item .directors__group .links-directors__icons {
    justify-content: center;
  }
}
.directors .directors__cards .directors__item .directors__group .links-directors__icons .icon-item {
  width: 36px;
  height: 36px;
  border-radius: 100%;
  border: 1px solid var(--default-bg-color);
  color: var(--default-bg-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5em;
}
.directors .directors__cards .directors__item .directors__group .links-directors__icons .icon-item:hover {
  color: #ffffff;
  background-color: var(--default-bg-color);
}
.directors .directors__cards .directors__item .directors__group .links-directors__icons .icon-item i {
  font-size: 16px;
}

.structure {
  margin-top: 3em;
}
.structure .structure-title {
  margin-bottom: 1.5em;
  color: var(--default-bg-color);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
}
.structure .structure-title::after {
  content: "";
  display: block;
  width: 60px;
  margin: 0.5em 0;
  height: 4px;
  left: 0;
  background-color: var(--default-bg-color);
  position: relative;
}
.structure .structure-item {
  margin: 0.8em 0;
}
.structure .structure-item span {
  font-weight: 600;
}
.structure .structure-resume {
  margin-top: 1em;
}

.acesso-footer h4{padding-bottom: 20px;}
.links-footer {
  padding: 3em 0;
  margin-top: 3em;
  background-color: var(--default-bg-color);
}
.links-footer .links__wrapper {
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 768px) {
  .links-footer .links__wrapper {
    grid-template-columns: 1fr !important;
    text-align: center;
  }
  .acesso-footer h4{padding-bottom: 10px; text-align: center;}
  .logo-footer{justify-content: center;}
}
.footer-col{grid-template-columns: repeat(3, 1fr) !important;}
.links-footer .links__wrapper .links-footer__brand img {
  width: 245px;
  margin-bottom: 0.5em;
}
.links-footer .links__wrapper .links-footer__brand .location-footer {
  color: #ffffff;
  width: 200px;
  margin-top: 6px;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .links-footer .links__wrapper .links-footer__brand .location-footer {
    margin: 1em auto;
    width: 300px;
  }
}
@media (max-width: 768px) {
  .links-footer .links__wrapper .links-footer__useful {
    margin-top: 2em;
  }
}
.links-footer .links__wrapper .links-footer__useful .link-title-footer {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
}
.links-footer .links__wrapper .links-footer__useful ul {
  margin-top: 1em;
  list-style-type: none;
  padding: 0;
}
.links-footer .links__wrapper .links-footer__useful ul .item-footer {
  margin-top: 0.4em;
}
.links-footer .links__wrapper .links-footer__useful ul .item-footer a {
  color: #ffffff;
}
.links-footer .links__wrapper .links-footer__useful ul .item-footer a:hover {
  opacity: 0.6;
}

@media (max-width: 768px) {
  .links-footer .links__wrapper .links-footer__quick-access {
    margin-top: 1.5em;
  }
}
.links-footer .links__wrapper .links-footer__quick-access .link-title-footer {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
}
.links-footer .links__wrapper .links-footer__quick-access ul {
  color: #ffffff;
  margin-top: 1em;
  list-style-type: none;
  padding: 0;
}
.links-footer .links__wrapper .links-footer__quick-access ul .item-footer {
  margin-top: 0.4em;
}
.links-footer .links__wrapper .links-footer__quick-access ul .item-footer a {
  color: #ffffff;
}
.links-footer .links__wrapper .links-footer__quick-access ul .item-footer a:hover {
  opacity: 0.6;
}
@media (max-width: 768px) {
  .links-footer .links__wrapper .links-footer__social {
    margin-top: 1.5em;
  }
}
.links-footer .links__wrapper .links-footer__social .link-title-footer {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
}
.links-footer .links__wrapper .links-footer__social .links-footer__icons {
  margin-top: 1em;
  display: flex;
  /* justify-content: left; */
}
@media (max-width: 768px) {
  .links-footer .links__wrapper .links-footer__social .links-footer__icons {
    justify-content: center;
  }
}
.links-footer .links__wrapper .links-footer__social .links-footer__icons .icon-item {
  width: 36px;
  height: 36px;
  border-radius: 100%;
  background-color: var(--btn-hover-color);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5em;
}
.links-footer .links__wrapper .links-footer__social .links-footer__icons .icon-item:hover {
  background-color: var(--content-hover-color);
}
.links-footer .links__wrapper .links-footer__social .links-footer__icons .icon-item i {
  font-size: 25px;
}


input[type='checkbox'] { display: none; } 
.wrap-collabsible { margin: 0; } 
.lbl-toggle {color: #ffffff; font-size: 16px; font-weight: 600; line-height: 22px; } 
.lbl-toggle:hover { color: #FFF; } .lbl-toggle::before { content: ' '; display: inline-block; border-top: 5px solid transparent; border-bottom: 5px solid transparent; border-left: 5px solid currentColor; vertical-align: middle; margin-right: .7rem; transform: translateY(-2px); transition: transform .2s ease-out; } 
.toggle:checked+.lbl-toggle::before { transform: rotate(90deg) translateX(-3px); } 
.collapsible-content { max-height: 0px; overflow: hidden; transition: max-height .25s ease-in-out; } 
.toggle:checked + .lbl-toggle + .collapsible-content { max-height: 350px; } 
.toggle:checked+.lbl-toggle { border-bottom-right-radius: 0; border-bottom-left-radius: 0; } 
.collapsible-content .content-inner {padding: .5rem 1rem; } 
.collapsible-content p { margin-bottom: 0; }


.copyright {
  background-color: var(--top-bg-color);
  padding: 8px 0;
}

.copyright .row{
    margin: 0;
}

.copyright .copyright-text {
  color: #ffffff;
  margin: 0;
  text-align: center;
  font-size: 13px;
  line-height: 20px;
}

.copyright img {
    width: 100px;
}

@media (max-width: 768px) {
  .copyright .copyright-text {
    margin: 0 auto;
    width: 300px;
  }
}

table.dataTable tbody td {
  vertical-align: middle;
}

.search-top-geral {
  padding: 3em 0;
}
.search-top-geral .search-info__box {
  padding: 1.5em;
  background-color: #edf2f4;
  border-radius: 4px;
  width: 450px;
}
@media (max-width: 576px) {
  .search-top-geral .search-info__box {
    width: 100%;
    padding: 1.5em;
  }
}
.search-top-geral .search-info__box .title-info {
  color: var(--default-bg-color);
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
}
.search-top-geral .search-info__box .title-info i {
  margin-right: 0.5em;
}
.search-top-geral .search-info__box .resume-info {
  width: 100%;
  margin: 0.5em 0 0;
  font-size: 14px;
}
.search-top-geral .search-top-geral__title {
  color: var(--default-bg-color);
  margin-top: 2em;
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
  text-transform: uppercase;
}
.search-top-geral .search-top-geral__title i {
  margin-right: 0.5em;
}
.search-top-geral form {
  margin-top: 1.5em;
}
.search-top-geral form .form-row {
  width: 400px;
}
@media (max-width: 576px) {
  .search-top-geral form .form-row {
    width: 100%;
  }
}
.search-top-geral form .form-row label {
  color: var(--default-bg-color);
  font-size: 14px;
  font-weight: 600;
}
.search-top-geral form .form-row .form-control {
  height: 45px;
  font-size: 14px;
  font-weight: 600;
}
.search-top-geral form .form-row .btn {
  margin-top: 0.5em;
}

label.error{
  color: red;
  font-size: 88%;
}

/* Linha do Tempo Solicitações */
.timeline {
  list-style: none;
  padding: 20px 0 20px;
  position: relative;
}
.timeline:before {
  top: 0;
  bottom: 0;
  position: absolute;
  content: " ";
  width: 3px;
  background-color: #eeeeee;
  left: 50%;
  margin-left: -1.5px;
}
.timeline > li {
  margin-bottom: 20px;
  position: relative;
}
.timeline > li:before,
.timeline > li:after {
  content: " ";
  display: table;
}
.timeline > li:after {
  clear: both;
}
.timeline > li:before,
.timeline > li:after {
  content: " ";
  display: table;
}
.timeline > li:after {
  clear: both;
}
.timeline > li > .timeline-panel {
  width: 50%;
  float: left;
  border: 1px solid #d4d4d4;
  border-radius: 2px;
  padding: 20px;
  position: relative;
  -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
}
.timeline > li.timeline-inverted + li:not(.timeline-inverted),
.timeline > li:not(.timeline-inverted) + li.timeline-inverted {
  margin-top: -60px;
}

.timeline > li:not(.timeline-inverted) {
  padding-right:90px;
}

.timeline > li.timeline-inverted {
  padding-left:90px;
}
.timeline > li > .timeline-panel:before {
  position: absolute;
  top: 26px;
  right: -15px;
  display: inline-block;
  border-top: 15px solid transparent;
  border-left: 15px solid #ccc;
  border-right: 0 solid #ccc;
  border-bottom: 15px solid transparent;
  content: " ";
}
.timeline > li > .timeline-panel:after {
  position: absolute;
  top: 27px;
  right: -14px;
  display: inline-block;
  border-top: 14px solid transparent;
  border-left: 14px solid #fff;
  border-right: 0 solid #fff;
  border-bottom: 14px solid transparent;
  content: " ";
}
.timeline > li > .timeline-badge {
  color: #fff;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 2em;
  text-align: center;
  position: absolute;
  padding: 10;
  top: 20px;
  left: 50%;
  margin-left: -25px;
  background-color: #999999;
  z-index: 100;
  border-top-right-radius: 50%;
  border-top-left-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
}
.timeline > li.timeline-inverted > .timeline-panel {
  float: right;
}
.timeline > li.timeline-inverted > .timeline-panel:before {
  border-left-width: 0;
  border-right-width: 15px;
  left: -15px;
  right: auto;
}
.timeline > li.timeline-inverted > .timeline-panel:after {
  border-left-width: 0;
  border-right-width: 14px;
  left: -14px;
  right: auto;
}
.timeline-badge.primary {
  background-color: #2e6da4 !important;
}
.timeline-badge.success {
  background-color: #3f903f !important;
}
.timeline-badge.warning {
  background-color: #f0ad4e !important;
}
.timeline-badge.danger {
  background-color: #d9534f !important;
}
.timeline-badge.info {
  background-color: #5bc0de !important;
}
.timeline-title {
  margin-top: 0;
  color: inherit;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0.5em;
}
.timeline-body > p,
.timeline-body > ul {
  margin-bottom: 0;
}
.timeline-body > p + p {
  margin-top: 5px;
}

/***** Modal Video*****/
.video .modal-content {
  background: none;
  border: 0;
  -moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0;
  -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none;
}

.video .modal-body {
  padding: 0 25px 25px 25px;
}

.video .modal-header {
  padding: 25px 25px 15px 25px;
  text-align: right;
  border: 0;
}

.custom .modal-header, .modal-footer {
  border: 0;
}

.video .modal-header .close {
  float: none;
  font-size: 36px;
  color: #fff;
  font-weight: 300;
  text-shadow: none;
  opacity: 1;
}

.card-menu {
  background-color: #ffffff;
  border-radius: 4px;
  padding-left: 2.3rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  @media(max-width: 576rem) {
    width: 100%;
  }
}

.card-home{
  border: 1px solid var(--default-bg-color);
  margin-bottom: 30px !important;
  height: 80%;
}
.card-home-icon{
  background: #edf2f4;
  border-radius: .25rem;
  padding: 0;
  margin: 0;
}
.card-footer {
  border-top: none
}
.card-footer:last-child {
  border-radius: 0 0 calc(.25rem - 2px) calc(.25rem - 2px);
} 
/* icones  */
.icon-home-covid {
  background: url(/images/icons/home1/icon-color-principal-coronavirus.svg) no-repeat;
  height: 176.52px;
  background-position: center;
  
}
.icon-home-covid:hover, .icon-home-covid:focus{
  background: url(/images/icons/home2/icon-white-principal-coronavirus.svg) no-repeat;
  background-position: center;
}

.icon-home-legislacoes {
  background: url(/images/icons/home1/icon-color-principal-legislacao.svg) no-repeat;
  height: 176.52px;
  background-position: center;
  
}
.icon-home-legislacoes:hover, .icon-home-legislacoes:focus{
  background: url(/images/icons/home2/icon-white-principal-legislacao.svg) no-repeat;
  background-position: center;
}

.icon-home-estrutura {
  background: url(/images/icons/home1/icon-color-principal-estrutura.svg) no-repeat;
  height: 176.52px;
  background-position: center;
  
}
.icon-home-estrutura:hover, .icon-home-estrutura:focus{
  background: url(/images/icons/home2/icon-white-principal-estrutura.svg) no-repeat;
  background-position: center;
}

.icon-home-servidores {
  background: url(/images/icons/home1/icon-color-principal-servidores.svg) no-repeat;
  height: 176.52px;
  background-position: center;
  
}
.icon-home-servidores:hover, .icon-home-servidores:focus{
  background: url(/images/icons/home2/icon-white-principal-servidores.svg) no-repeat;
  background-position: center;
}

.icon-home-licitacoes {
  background: url(/images/icons/home1/icon-color-principal-licitacoes.svg) no-repeat;
  height: 176.52px;
  background-position: center;
  
}
.icon-home-licitacoes:hover, .icon-home-licitacoes:focus{
  background: url(/images/icons/home2/icon-white-principal-licitacoes.svg) no-repeat;
  background-position: center;
}

.icon-home-contratos {
  background: url(/images/icons/home1/icon-color-principal-contratos.svg) no-repeat;
  height: 176.52px;
  background-position: center;
  
}
.icon-home-contratos:hover, .icon-home-contratos:focus{
  background: url(/images/icons/home2/icon-white-principal-contratos.svg) no-repeat;
  background-position: center;
}

.icon-home-receitas {
  background: url(/images/icons/home1/icon-color-principal-receitas.svg) no-repeat;
  height: 176.52px;
  background-position: center;
  
}
.icon-home-receitas:hover, .icon-home-receitas:focus{
  background: url(/images/icons/home2/icon-white-principal-receitas.svg) no-repeat;
  background-position: center;
}

.icon-home-lrf {
  background: url(/images/icons/home1/icon-color-principal-lrf.svg) no-repeat;
  height: 176.52px;
  background-position: center;
  
}
.icon-home-lrf:hover, .icon-home-lrf:focus{
  background: url(/images/icons/home2/icon-white-principal-lrf.svg) no-repeat;
  background-position: center;
}

.icon-home-prestacao {
  background: url(/images/icons/home1/icon-color-principal-prestacao.svg) no-repeat;
  height: 176.52px;
  background-position: center;
  
}
.icon-home-prestacao:hover, .icon-home-prestacao:focus{
  background: url(/images/icons/home2/icon-white-principal-prestacao.svg) no-repeat;
  background-position: center;
}

.icon-home-controle {
  background: url(/images/icons/home1/icon-color-principal-controle.svg) no-repeat;
  height: 176.52px;
  background-position: center;
  
}
.icon-home-controle:hover, .icon-home-controle:focus{
  background: url(/images/icons/home2/icon-white-principal-controle.svg) no-repeat;
  background-position: center;
}

.icon-home-orgaos {
  background: url(/images/icons/home1/icon-color-principal-orgaos.svg) no-repeat;
  height: 176.52px;
  background-position: center;
  
}
.icon-home-orgaos:hover, .icon-home-orgaos:focus{
  background: url(/images/icons/home2/icon-white-principal-orgaos.svg) no-repeat;
  background-position: center;
}

.icon-home-patrimonio {
  background: url(/images/icons/home1/icon-color-principal-patrimonio.svg) no-repeat;
  height: 176.52px;
  background-position: center;
  
}
.icon-home-patrimonio:hover, .icon-home-patrimonio:focus{
  background: url(/images/icons/home2/icon-white-principal-patrimonio.svg) no-repeat;
  background-position: center;
}
/* icones  */

.card-home-icon:hover, .card-home-icon:focus{
  background: var(--default-bg-color);
  /* transform-origin:bottom center;
  transform: scale3d(1, 1, 1);
  transition:.6s; */
  border-radius: 0;
}
.card-home-text p{
  color: var(--default-bg-color);
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin: 0;
  padding: 20px 0;
}
.card-home-text p:focus, .card-home-text p:hover{
  color: #fff;
}
.card-home-footer{
  background-color:  var(--default-bg-color);
  border-top: none;
  text-align: center;
}
.card-home-footer small{
  color: #fff!important;
  font-size: 15px;
  font-weight: bold;
}
.card-home-footer2{
  background-color:  var(--default-bg-color);
  padding: 3px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  /* align-items: center; */
}

.cards__item {
  display: flex;
  padding-right: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  max-width: 170px;
  @media(min-width: 40rem) {
    width: 50%;
  }
  @media(min-width: 56rem) {
    width: 33.3333%;
  }
}

.cards__item .card {
  max-height: 15rem;
  border: 0;
  background-color: #edf2f4;
  border-radius: 0.25rem;
  box-shadow: 0 20px 40px -14px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  &:hover {
    .card__image {
      filter: contrast(100%);
    }
  }
}

.card__content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  width: 125px;
  /*padding-left: 1rem;*/
  /*padding-right: 1rem;*/
  /*padding-bottom: 1rem;*/
}

.card__image {
  width: 100px;
  border-radius: 4px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 60%;
  margin-left: 20%;
  margin-top: 15px;
}

.card__title {
  color: @gray-dark;
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.card__content .card-body{
  padding: 10px;
  height: 60px;
  background-color: var(--default-bg-color);
  border-bottom-left-radius: calc(.25rem - 1px);
  border-bottom-right-radius: calc(.25rem - 1px);
}

.card__content .card-body .card-text{
  color: #ffffff;
  text-align: center;
  font-size: 14px;
  text-transform: uppercase;
}

.card__content  .card-body .card-text-small{
  color: #ffffff;
  text-align: center;
  font-size: 14px;
  padding-top: 10px;
  text-transform: uppercase;
}

@media (max-width: 576px) {
  .card-columns {
    column-count: 2;
  }
  .card-home{
    min-width: 255px;
  }
  .cards_m{align-items: center;}
}

@media (min-width: 768px) {
  .card-columns {
    column-count: 3;
  }
}

@media (min-width: 992px) {
  .card-columns {
    column-count: 4;
  }
}

@media (min-width: 1200px) {
  .card-columns {
    column-count: 5;
  }
}

/* Agenda */
.agenda{
  background-color: #ffffff;
  padding: 0 0 5em
}

.row-striped:nth-of-type(odd){
  background-color: rgba(31, 66, 109, 0.144);
  border-left: 4px var(--default-bg-color) solid;
}
.row-striped:nth-of-type(odd) h2{
  font-size: 30px;
  text-align: center;
  color: var(--default-bg-color);
}
.row-striped:nth-of-type(odd) h3 {
  margin-top: 25px;
  color: var(--default-bg-color);
}
.row-striped:nth-of-type(odd) strong {
  margin-top: 25px;
  color: var(--default-bg-color);
}

@media (max-width: 576px) {
  .row-striped:nth-of-type(odd){
    text-align: left;
  }
}

@media (max-width: 576px) {
  .row-striped:nth-of-type(odd) h1{
    font-size: 50px;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .row-striped:nth-of-type(odd) h2{
    color: var(--default-bg-color);
    text-align: center;
    padding: 0px 5px;
  }
}

@media (max-width: 576px) {
  .row-striped:nth-of-type(odd) h3{
    color: var(--default-bg-color);
    margin-top: 10px;
    padding-left: 30px;
  }
}

@media (max-width: 576px) {
  .row-striped:nth-of-type(odd) ul {
    text-align: left;
    padding-left: 25px;
  }
}

.row-striped:nth-of-type(even){
  background-color: rgba(216, 216, 216, 0.253);
  border-left: 4px #efefef solid;
}
.row-striped:nth-of-type(even) h2{
  font-size: 30px;
  text-align: center;
  color: var(--default-bg-color);
}
.row-striped:nth-of-type(even) h3 {
  margin-top: 25px;
  color: var(--default-bg-color);
}
.row-striped:nth-of-type(even) strong {
  margin-top: 25px;
  color: var(--default-bg-color);
}


@media (max-width: 576px) {
  .row-striped:nth-of-type(even){
    text-align: left;
  }
}

@media (max-width: 576px) {
  .row-striped:nth-of-type(even) h1{
    font-size: 50px;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .row-striped:nth-of-type(even) h2{
    color: var(--default-bg-color);
    text-align: center;
    padding: 0px 5px;
  }
}

@media (max-width: 576px) {
  .row-striped:nth-of-type(even) h3{
    color: var(--default-bg-color);
    margin-top: 10px;
    padding-left: 30px;
  }
}

@media (max-width: 576px) {
  .row-striped:nth-of-type(even) ul {
    text-align: left;
    padding-left: 25px;
  }
}

.row-striped {
  padding: 10px 0 0 1px;
}

/* POPUP */
.img-replace {
  /* replace text with an image */
  display: inline-block;
  overflow: hidden;
  text-indent: 100%;
  color: transparent;
  white-space: nowrap;
}
.bts-popup {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  transition: opacity 0.3s 0s, visibility 0s 0.3s;
  z-index: 9999999;
}
.bts-popup.is-visible {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0s;
}

.bts-popup-container {
  position: relative;
  width: 90%;
  max-width: 600px;
  margin: 10em auto;
  background: #a0cff1;
  border-radius: none;
  text-align: center;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  -webkit-transform: translateY(-40px);
  -moz-transform: translateY(-40px);
  -ms-transform: translateY(-40px);
  -o-transform: translateY(-40px);
  transform: translateY(-40px);
  /* Force Hardware Acceleration in WebKit */
  -webkit-backface-visibility: hidden;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.bts-popup-container img {
  padding: 0;
}
.bts-popup-container p {
  color: white;
  padding: 10px 40px;
}
.bts-popup-container .bts-popup-button {
  padding: 5px 25px;
  border: 2px solid white;
  display: inline-block;
  margin-bottom: 10px;
}

.bts-popup-container a {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
}

.bts-popup-container .bts-popup-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 30px;
  height: 30px;
}
.bts-popup-container .bts-popup-close::before, .bts-popup-container .bts-popup-close::after {
  content: '';
  position: absolute;
  top: 12px;
  width: 16px;
  height: 3px;
  background-color: white;
}
.bts-popup-container .bts-popup-close::before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  left: 8px;
}
.bts-popup-container .bts-popup-close::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  right: 6px;
  top: 13px;
}
.is-visible .bts-popup-container {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
@media only screen and (min-width: 1170px) {
  .bts-popup-container {
    margin: 10em auto;
  }
}