.custom-pointer {
    cursor: pointer !important;
}

.container-candidato {
    overflow-x: auto;
    width: 100%; /* Altera a largura para 100% */
}

.box-candidato {
    min-width: 360px;
}

.display-none-important {
    display: none !important;
}

.borda {
    border: 1px solid #bbb;
    border-radius: 10px;
    padding: 15px 0 15px 0;
    height: auto;
}

.box-titulo {
    padding: 15px;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    color: #555;
    text-align: center;
}

.header-descricao {
    font-size: 18px;
    font-weight: bold;
}

.font-size-13 {
    font-size: 13px;
}

.font-size-30 {
    font-size: 30px;
}

.box-classificacao {
    padding: 15px;
    color: #555;
    font-size: 22px;
}

.box-classificacao-descricao {
    font-size: 26px;
    font-weight: bold;
}

.move-candidato {
    cursor: move;
    user-select: none;
}

.excluir-candidato {
    cursor: pointer;
    margin-left: 20px;
}

.nav-btn {
    position: absolute;
    top: 50%;
    z-index: 10;
    background: rgba(0,0,0,0.3);
    border: none;
    color: white;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
}

    .nav-btn.left {
        left: 20px;
    }

    .nav-btn.right {
        right: 20px;
    }

.container-candidato::-webkit-scrollbar {
    height: 3px;
}

.container-candidato::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.container-candidato::-webkit-scrollbar-thumb {
    background: #0069d9;
    border-radius: 10px;
}

    .container-candidato::-webkit-scrollbar-thumb:hover {
        background: #0069d9;
    }

.box-informacoes-header {
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.box-informacoes-votos {
    text-align: right;
}

.text-verde-musgo {
    color: #556B2F !important;
}

.bg-verde-musgo {
    background-color: #556B2F !important;
}

.bordertop-verde-musgo {
    border-top: 3px solid #556B2F !important;
}

.box-informacao {
    font-size: 0.9rem;
    color: #888;
    text-align: right;
}

.box-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.box-votos-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 170px;
    white-space: normal;
}

.input-group .btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    height: 38px;
}

.custom-list {
    margin-left: 0 !important;
}

.color-picker-container {
    position: relative;
    display: inline-block;
}

.color-picker {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0;
    width: 25px;
    height: 25px;
    cursor: pointer;
}

.icon {
    font-size: 25px;
}

.dropdown-item {
    font-weight: 400;
    color: #212529 !important;
}

.hidden-column {
    display: none !important;
}

.spinner {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

.splash-politique {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    background-color: #f4f6f9;
    height: 100vh;
    width: 100%;
    transition: height .2s linear;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
}

.preloader {
    transition: height .8s linear;
}

.splash-politique h1 {
    color: #333;
    font-size: 2rem;
    animation: fadeIn 2s ease-in-out;
}

/* Classe para o preloader subir e desaparecer */
.splash-politique-hidden {
    transform: translateY(-100%);
    opacity: 0;
}

/* Animação de rotação */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Animação de desvanecimento do texto */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.sidebar-custom {
    -webkit-transform: translate(101%, 0);
    transform: translate(101%, 0);
    overflow: auto;
    position: absolute;
    color: #222;
    background-color: #f5f5f5;
    top: 0;
    right: 0;
    width: 340px;
    height: 100%;
}

.w100 {
    width: 100% !important;
}

#map {
    height: 100vh;
    width: 100%;
}

.marker-pointer {
    cursor: pointer;
}

.tooltip-votos {
    position: absolute;
    background-color: white;
    padding: 5px;
    font-size: 12px;
    z-index: 20000000;
    width: 290px;
    max-height: 260px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    overflow: hidden;
}

.tooltip-content {
    max-height: 250px;
    height: 250px;
    overflow-y: auto;
}

    .tooltip-content::-webkit-scrollbar {
        width: 3px;
    }

    .tooltip-content::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    .tooltip-content::-webkit-scrollbar-thumb {
        background: #0069d9;
        border-radius: 10px;
    }

        .tooltip-content::-webkit-scrollbar-thumb:hover {
            background: #0069d9;
        }

.ol-full-screen {
    background: #fff;
    color: #000;
    border: 1px solid #ccc;
    border-radius: 5px;
}