body {
	width: 100%;
	height: 100%;
	font-family: 'Inter', sans-serif;
	font-size: 100%;
	font-weight: 400;
	margin: 0;
}

a,
button {
	text-decoration: none;
	transition: all 0.2s linear;
}

a:hover,
button:hover {
	text-decoration: none;
	transition: all 0.2s linear;
}

a:focus {
	outline: 0;
}

a img {
	border: none;
}

*:focus {
	outline: none;
}

button:focus {
	outline: 0 !important;
}

input[type=search]::-ms-clear {
	display: none;
	width: 0;
	height: 0;
}

input[type=search]::-ms-reveal {
	display: none;
	width: 0;
	height: 0;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
	display: none;
}

ul,
ol {
	list-style: none;
	margin: 0;
	padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
	margin: 0;
}

.transition {
	transition: all 0.2s linear;
}

hr {
	opacity: 1;
	border-color: #EEEFF6;
	margin: 40px 0;
}

header {
	background: #1B2D48;
	padding: 30px 0;
}

header .colBrand img{
    max-width: 200px;
}

header .btnOpenMenu {
	background: none;
	padding: 0;
	cursor: pointer;
    border: 2px solid #fff;
    padding: 0px;
    color: #fff;
    border-radius: 8px;
    font-size: 20px;
    line-height: 26px;
    width: 30px;
    display: block;
    text-align: center;
    vertical-align: middle;
    box-sizing: border-box;
}

header .btnOpenMenu {}


header .header-overlay {
	position: fixed;
	z-index: 99;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.85);
	transition: 0.45s;
	transform: translateX(-100%);
}

header .main-nav {
	display: flex;
	flex-direction: column;
	position: fixed;
	z-index: 100;
	top: 0;
	left: 0;
	bottom: 0;
	width: 300px;
	padding: 30px 0 0;
	background-color: #1B2D48;
	overflow-x: hidden;
	overflow-y: hidden;
	transition: 0.45s;
	transform: translateX(-100%);
	-webkit-overflow-scrolling: touch;
    overflow: visible;
}

.nav-is-toggled header .header-overlay,
.nav-is-toggled header .main-nav {
	transform: translateX(0);
}

header .main-nav .nav-header {
	margin-bottom: 25px;
    padding: 0 15px;
}

header .main-nav .nav-header .btnCloseMenu {
	font-size: 12px;
	font-weight: 600;
	color: var(--bs-white);
	line-height: 16px;
}

header .main-nav .nav-header .btnCloseMenu:hover {
	color: #9eb1ba;
}

header .main-nav .nav-header .btnCloseMenu i {
	font-size: 20px;
}

header .main-nav .nav-wrapper {
	height: calc(100% - 160px);
	position: relative;
}

header .nav-items {
	overflow: visible;
	height: 100%;
	width: 100%;
}

header .nav-items.no-scroll {
	overflow-y: hidden;
}

header .nav-items::-webkit-scrollbar {
	width: 8px;
}

header .nav-items::scrollbar {
	width: 8px;
}

header .nav-items::-webkit-scrollbar-track {
	background: none;
	border-radius: 4px;
}

header .nav-items::scrollbar-track {
	background: none;
	border-radius: 4px;
}

header .nav-items::-webkit-scrollbar-thumb {
	background: var(--bs-gray-300);
	border-radius: 4px;
}

header .nav-items::scrollbar-thumb {
	background: var(--bs-gray-300);
	border-radius: 4px;
}

header .nav-item:not(:last-child) {
	border-bottom: 1px solid #263C5E;
}

header .nav-item{
    position: relative;
    background-color: transparent;
}

header .nav-link {
	display: block;
	color: var(--bs-white);
	font-size: 16px;
	font-weight: 500;
	padding: 12px 30px 12px 15px;
	line-height: 20px;
	position: relative;
	text-decoration: none;
}

header .nav-link:hover {
	color: #9eb1ba;
}

header .sub-menu{
    visibility: hidden;
    height: 0;
    overflow: hidden;
    padding: 0;
    margin: 0;
    opacity: 0;
}

header .nav-item.menu-item-has-children .nav-link{
    padding-right: 20px;
    color: #fff;
}

header .submenu-icon{
    position: absolute;
    display: block;
    line-height: 48px;
    right: 10px;
    line-height: 48px;
    vertical-align: middle;
    top: 0;
    color: #fff;
    font-size: 12px;
}

header .nav-items>.menu-item.show-children{
    background-color: rgba(0, 0, 0, 0.5);
}

header .show-children .sub-menu{
    visibility: visible;
    height: auto;
    overflow: hidden;
    padding: 0;
    margin: 0;
    opacity: 1;
    padding-left: 20px;
}

header a.lkND {
	font-size: 15px;
	font-weight: 600;
	line-height: 22px;
	color: var(--bs-white);
	border-radius: 8px;
	background: #162238;
	padding: 14px 20px 12px;
}

header a.lkND:hover {
	background: #263C5E;
}

header a.lkND img {
	width: 40px;
	height: auto;
	margin: 0 0 0 5px;
	top: -4px;
}

footer {
	width: 100%;
	background: #1A2A42;
	padding-top: 40px;
}

footer .box {
	margin-bottom: 40px;
}

footer .box img {
	margin-bottom: 15px;
}

footer .footerLogo{
    max-height: 40px;
}

footer p {
	font-size: 15px;
	color: var(--bs-white);
}

footer a.lkND {
	font-size: 15px;
	font-weight: 600;
	line-height: 22px;
	color: var(--bs-white);
	border-radius: 8px;
	background: var(--bs-black);
	padding: 14px 20px 12px;
}

footer a.lkND:hover {
	background: #263C5E;
}

footer a.lkND img {
	width: 40px;
	height: auto;
	margin: 0 0 0 5px;
	top: -4px;
}

footer .copyright {
	background: #263C5E;
	padding: 12px 0;
}

footer .copyright p {
	font-size: 16px;
	margin-bottom: 10px;
}

footer .copyright a {
	font-size: 16px;
	color: var(--bs-white);
	margin: 0 15px;
}

footer .copyright a:hover {
	text-decoration: underline;
}

.voto-mais-section-title{
    font-size: 24px;
	font-weight: 700;
	color: #1B2D48;
}

.lista-items-local a{
    color: #5e5e5e;
}

.lista-items-destaque .item-destaque .card:hover{
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.slideLastPosts article {
	margin: 0;
	width: 100%;
}

.slideLastPosts article .linkImg {
    margin-bottom: 5px;
}

.slideLastPosts article img {
	border-radius: 8px;
    object-fit: cover;
}

.slideLastPosts article .categoria {
	font-size: 12px;
	font-weight: 500;
	color: #5D6F77;
	margin-bottom: 5px;
}

.slideLastPosts article h2,
.slideLastPosts article h2 a {
	font-size: 16px;
	font-weight: 500;
	color: #162337;
	line-height: 22px;
}

.slideLastPosts article h2 a:hover,
.slideLastPosts article .categoria:hover {
	color: #3A4F6F;
}

.slideLastPosts .post-pagination {
	text-align: center;
	margin-top: 35px;
}

.rank-math-breadcrumb{
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 1;
    display: inline-block;
    color: #5E5E5E;
}

.rank-math-breadcrumb a{
    color: #333;
}

/* width */
.scroll::-webkit-scrollbar {
    width: 10px;
}

/* Track */
.scroll::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.30);
    border-radius: 5px;
    overflow: hidden;
}

/* Handle */
.scroll::-webkit-scrollbar-thumb {
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
}

/* Handle on hover */
.scroll::-webkit-scrollbar-thumb:hover {
    background: #999;
}

.head-filtro,
.head-perfil {
	margin-top: 40px;
}

.head-filtro hr {
	margin-top: 30px;
}

.head-filtro h1 {
	font-size: 32px;
	font-weight: 700;
	color: #1B2D48;
	margin-bottom: 5px;
}

.head-filtro h4 {
	font-size: 15px;
	font-weight: 700;
	color: #656E72;
	margin-bottom: 10px;
}

.head-filtro .head-filtro-description {
	font-size: 16px;
	color: #1B2D48;
	margin-bottom: 20px;
	line-height: 24px;
}

.head-filtro .status {
	margin-bottom: 25px;
}

.head-filtro .status p {
	font-size: 14px;
	color: #333;
	font-weight: 500;
	margin-bottom: 10px;
	line-height: 16px;
	padding-left: 16px;
}

.head-filtro .status p strong {
	font-weight: 700;
}

.head-filtro .status .led {
	width: 8px;
	height: 8px;
	margin-right: 5px;
	background: #F00;
	top: 4px;
	left: 0;
	animation: blink 3s linear infinite;
}

.head-filtro .turnos a {
	font-size: 14px;
	font-weight: 600;
	color: var(--bs-white);
	background-color: #CCD2D6;
	padding: 7px 15px;
	border-radius: 5px;
	margin-right: 15px;
	text-decoration: none;
}

.head-filtro .turnos a:hover,
.head-filtro .turnos a.active {
	background-color: #1B2D48;
}

.head-filtro .filtro {
	margin-top: 25px;
}

.autoComplete_wrapper .dropdown {
	width: 100%;
    margin-top: 15px;
	margin-bottom: 15px;
    transition: all 0.2s linear;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    position: absolute;
    z-index: 99;
}

.autoComplete_wrapper .dropdown .dropdown-item {
	font-size: 16px;
	color: #58595B;
    cursor: pointer;
    padding: 15px 10px;
}

.autoComplete_wrapper .dropdown .dropdown-item:hover {
	color: #1B2D48;
	background-color: #F3F6F8;
}

.searchForm {
	width: 100%;
	border-radius: 8px;
	background-color: #F3F6F8;
	padding: 10px 10px 10px 24px;
    padding-right: 45px;
    height: 50px;
    outline: none;
	font-size: 14px;
	color: #58595B;
}

.searchFormIcon{
    position: absolute;
    width: 30px;
    height: 50px;
    vertical-align: middle;
    right: 0;
    top: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}




.lastPosts {
	margin-bottom: 70px;
}

.lastPosts h2 {
	font-size: 24px;
	font-weight: 700;
	color: #1B2D48;
	margin-bottom: 25px;
}

.lastPosts .control {
	margin-top: 15px;
}

.lastPosts .control .postsPrev,
.lastPosts .control .postsNext,
.listaCandidados .control .candPrev,
.listaCandidados .control .candNext {
	width: 28px;
	height: 28px;
	outline: none;
	background: #d2d2d2;
	padding: 0;
	cursor: pointer;
	font-size: 12px;
	color: var(--bs-white);
}

.lastPosts .control .postsPrev.swiper-button-disabled,
.lastPosts .control .postsNext.swiper-button-disabled,
.listaCandidados .control .candPrev.swiper-button-disabled,
.listaCandidados .control .candNext.swiper-button-disabled {
	opacity: 0.4;
}

.lastPosts .control .postsPrev:hover,
.lastPosts .control .postsNext:hover,
.listaCandidados .control .candPrev:hover,
.listaCandidados .control .candNext:hover {
	background: #0d1520;
}

.lastPosts .control .post-pagination {
	margin: 0 8px;
	transform: translateX(0) !important;
	width: auto;
}

.lastPosts .control .post-pagination span {
	min-width: 28px;
	height: 28px;
	background: #d2d2d2;
	padding: 0 3px;
	cursor: pointer;
	font-size: 14px;
	color: var(--bs-white);
	text-align: center;
	line-height: 28px;
	transform: none;
	opacity: 1;
}

.lastPosts .control .post-pagination span:hover,
.lastPosts .control .post-pagination span.swiper-pagination-bullet-active,
.lastPosts .control .postsPrev:hover,
.lastPosts .control .postsNext:hover {
	background: #0d1520;
}

.lkLoad {
    min-width: 120px;
    text-align: center;
	font-size: 12px;
	font-weight: 500;
	color:#666;
	text-decoration: none;
	padding: 10px 14px;
	border-radius: 5px;
	background-color: #eee;
	margin: 0 10px 15px 0;
}
.lkLoad.lkAll {
    color: #fff;
    background-color: #90A4AE;
}

.lkLoad:hover {
	background-color: #1B2D48;
    color: #fff;
}

.estatistica h5 {
	font-size: 12px;
	font-weight: 500;
	color: #878787;
	margin-bottom: 15px;
}

.estatistica p {
	font-size: 12px;
	font-weight: 500;
	color: #1B2D48;
	margin-bottom: 5px;
}

.estatistica p:last-child {
	margin-bottom: 0;
}

.estatistica p strong {
	font-weight: 700;
}


@media only screen and (min-width : 576px) {

	.dropdown {
		width: 48%;
		margin-bottom: 0;
	}

    .estatistica p {
		width: 40%;
	}

}


@media only screen and (min-width : 768px) {


	.head-filtro .filtro {
		margin-top: 0;
	}

	.dropdown {
		width: 100%;
		margin-bottom: 15px;
	}

    .estatistica p {
		width: 33%;
	}
	

	footer .copyright p {
		margin-bottom: 0
	}

	footer .copyright a {
		margin-left: 40px;
		margin-right: 0;
	}
}

@media only screen and (min-width : 992px) {
	header .main-nav {
		position: relative;
		top: inherit;
		left: inherit;
		bottom: inherit;
		width: auto;
		height: 48px;
		padding: 0;
		margin-right: 10px;
		transform: none;
	}

	header .main-nav .nav-wrapper {
		height: auto;
	}

	header .nav-items {
		display: flex;
	}

	header .nav-item {
		border: none !important;
		padding: 0 15px;
	}

    
    header .nav-items>.nav-item.show-children{
        background-color: #0c1627;
        border-radius: 8px 8px 0 0;
    } 

    header .nav-items>.nav-item.show-children>.nav-link {
        color: #fff;
    }

	header .nav-link {
		background: none;
		padding: 0;
		line-height: 48px;
	}

    header .show-children .sub-menu{
        position: absolute;
        background-color: #0c1627;
        width: 100%;
        left: 0;
        border-radius: 0 0 8px 8px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        padding-left:0;
    }

    .estatistica p {
		width: auto;
		margin: 0 25px 0 0;
	}

	.estatistica p:last-child {
		margin-right: 0;
	}

	footer a.lkND {
		margin-top: 30px;
	}

}

@media only screen and (min-width : 1200px) {

    .dropdown {
		width: 48%;
		margin-bottom: 0;
	}

    .lista-items-local .item-local{
        max-width: 20%;
    }

    .estatistica p {
		width: calc(33% - 25px);
	}

}


@media only screen and (min-width : 1400px) {
    .estatistica p {
        width: auto;
        margin: 0 0 15px;
    }
}