.candidatos{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.container-card{
    background-color: #F2F2F2;
    border: 1px solid #F2F2F2;
    padding: 15px;
    border-radius: 10px;
    max-width: 400px;
    width: 100%;
}
.country p{
    margin: 0 0 10px 0;
    font-family: 'Roboto Condensed';
    font-size: 18px;
    height: 22px;
    color: var(--blackdefault);
}
.country .percentual{
    font-weight: 400 !important;
}
.progress-bar{
    background-color: #fff;
    border-radius: 5px;
    margin-bottom: 15px;
}
.percentual-progress{
    height: 5px;
    background-color: var(--bluedefault);
    border-radius: 5px;
}
.container-card  .candidato{
    margin-top: 15px;
}
.status{
    background-color: var(--bluedefault);
    color: #fff;
    font-size: 14px;
    padding: 0px 5px;
    height: 22px;
    line-height: 22px;
    margin-left: 10px;
    border-radius: 5px;
}
.status.eleito{
    background-color: #25C876;
}
.candidato figure{
    width: 50px;
    margin: 0 10px 0 0;
    height: 50px;
    border-radius: 9px;
}
.candidato.segundo-turno figure{
    border: 3px solid var(--bluedefault);
}
.candidato.eleito figure{
    border: 3px solid #25C876;
}
.candidato figure img{
    border-radius: 5px;
    width: 50px;
    height: 50px;
    object-fit: cover;
}
.description{
    width: 100%;
    max-width: 308px;
}
.description p{
    margin: 0;
    font-family: 'Roboto Condensed';
    color: #1E1E1E;
    font-size: 18px;
}
.description .partido{
    font-size: 16px;
    line-height: 18px;
}
/* ========= CARREGAR MAIS ==========*/
.btn-load-more {
    border: 1px solid var(--bluedefault);
    color: var(--bluedefault);
    font-weight: 700;
    border-radius: 4px;
    padding: 0.44rem 0.83rem;
    cursor: pointer;
    outline: none !important;
    position: relative;
    transition: 0.2s;
    margin-bottom: 50px;
}
.btn-load-more:hover {
    border: 1px solid var(--lightblue);
    color: var(--lightblue);
}
.btn-load-more.loading:before {
    border: 2px solid var(--bluedefault);
}
.btn-load-more.loading:before {
    content: "";
    position: absolute;
    left: calc(50% - 15px);
    top: calc(50% - 15px);
    border-top-color: var(--white);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    -webkit-animation-delay: 1s;
    -webkit-animation: spin 1s ease infinite;
    box-shadow: 0px 0px 5px #1B406D;
    background: #1B406D;
}
@-webkit-keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
/* ========= /CARREGAR MAIS ==========*/
@media (max-width: 991px){
    .candidatos{
        justify-content: center;
        gap: 20px 10px;
    }
    .container-card{
        max-width: 340px;
    }
}


/* CSS SELECT */

.container-list-municipio {
    max-width: 295px;
    margin: 0 auto 30px;
    font-family: var(--roboto);
}

.container-list-municipio>p {
    font-family: var(--roboto);
}
.container-select,
.list-client,
.item-client {
    max-width: 295px;
    width: 100%;
    padding: 6px 10px;
    font-size: 18px;
    color: var(--blackdefault);
    cursor: pointer;
}

.container-select {
    position: relative;
    height: 40px;
    border: 1px solid #666;
    border-radius: 5px;
    cursor: pointer;
}

.container-filter .text-select {
    margin: 0;
    width: 88%;
    -webkit-line-clamp: 1;
    border: none;
    outline: none;
}

.container-filter .text-select::placeholder {
    color: var(--blackdefault);
}

/* SELECT ACTIVE */
.container-select.active {
    border-radius: 5px 5px 0 0;
}

.container-select.active::after {
    transform: rotate(90deg);
}

/* SELECT ACTIVE */

.container-select::after {
    background-image: url(https://www.opovo.com.br/reboot/includes/assets/img/seta-prev-next.webp);
    background-repeat: no-repeat;
    content: "";
    width: 15px;
    height: 15px;

    position: absolute;
    right: 10px;
    transform: rotate(-90deg);
    transition: .2s;
    top: 10px;
}


/* LISTAS */
.list-client {
    margin: 0;
    list-style: none;

    width: 295px;
    max-height: 161px;

    position: absolute;
    top: 35px;
    left: -1px;

    padding: 0;

    background-color: #f3f3f3;

    z-index: 2;
    overflow: auto;

    font-family: var(--roboto);

    border: 1px solid #666;
    border-top: 0;
    border-radius: 0 0 5px 5px;

}

.item-client {
    background-color: #F2F2F2;
    transition: .2s;
}

.item-client:hover {
    background-color: #999999;
    color: #fff;
}

/* LISTAS */
@media (max-width: 743px) {
    .container-list-municipio>p {
        font-size: 21px;
    }

    .container-list-municipio {
        margin: 40px auto;
    }
}
/* CSS SELECT */