body {
    background: url("/static/img/banner.jpg") no-repeat center center fixed;
    background-blend-mode: soft-light;
    background-color: #27276B;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
}

/* CAMPOS COM FOCO */
.form-group > input:focus {
    background-color: rgba(6, 129, 138, 0.15);
!important;

}

.form-group > select:focus {
    background-color: rgba(6, 129, 138, 0.15);
!important;

}

.input-group > input:focus {
    background-color: rgba(6, 129, 138, 0.15);
!important;

}

.input-group > select:focus {
    background-color: rgba(6, 129, 138, 0.15);
!important;

}

label {
    font-weight: bold !important;
    margin-bottom: 0rem !important;
}

.center_text_on_div {
    display: -ms-flexbox !important;
    -ms-flex-direction: column !important;
    -ms-flex-pack: center !important;

    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;

}

/* Dual list box */
.bootstrap-duallistbox-container select {
    border: #E5E6E7 1px solid;
}

.bootstrap-duallistbox-container input:active {
    background-color: rgba(6, 129, 138, 0.15);
!important;
}

.bootstrap-duallistbox-container button {
    border: #1AB394 1px solid;
}

.bootstrap-duallistbox-container button:hover {
    background-color: #1AB394;
    border: #1AB394 1px solid;
    color: white;
}

.bootstrap-duallistbox-container option {
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 20px;
    border-bottom: rgba(184, 189, 192, 0.38) 1px solid;
}

.bootstrap-duallistbox-container option:hover {
    background-color: rgba(149, 154, 161, 0.33);
}

input[type="checkbox"] {
    width: 20px; /* Defina a largura desejada */
    height: 20px; /* Defina a altura desejada */
}

textarea {
    height: 60px;
    min-height: 60px; /* Defina a altura desejada */
    max-height: 85px; /* Defina a altura desejada */
}

.legenda > li {
    max-width: 250px;
    margin-top: 5px;
}

/*!* SweetAlert *!*/
.swal2-container {
    z-index: 10000 !important; /* Exemplo: Bootstrap modal z-index é 1040 */
}

.swal2-confirm, swal2-styled {
    min-width: 120px;
}

/* Utilizados para alinhamentos */
.flex-container {
    padding: 1rem;
    border-top: 1px solid #e9ecef;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: normal;
    align-content: normal;
}

.flex-items:nth-child(1) {
    display: block;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;
    align-self: auto;
    order: 0;
}

.flex-items:nth-child(2) {
    display: block;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;
    align-self: auto;
    order: 0;
}

/* Caixa de detalhe do mapa */
#world-map-detail {
    position: absolute;
    top: 4px;
    left: 0;
    width: 500px;
    max-height: 500px;
    overflow-y: auto;

    background-color: rgb(255, 255, 255);
    border: 1px solid rgba(26, 179, 148);
    color: #000000;
    padding: 5px;
    display: none;
    z-index: 1000;

    animation: slideInFromLeft 0.5s ease-out forwards; /* Aplica a animação */
}

/* Caixa de detalhe do mapa */
#calendar-detail {
    position: absolute;
    top: 70px; /* 20 pixels de distância do fundo */
    left: 0; /* 20 pixels de distância da direita */
    width: 550px;
    max-height: 500px;
    overflow-y: auto;

    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(237, 85, 101);
    color: #000000;
    padding: 5px;
    display: none;
    z-index: 1000;

    animation: slideInFromLeft 0.5s ease-out forwards; /* Aplica a animação */
}

@keyframes slideInFromLeft {
    from {
        transform: translateX(-100%); /* Começa fora da tela */
    }
    to {
        transform: translateX(100px); /* Termina 100 pixels à direita da margem esquerda */
    }
}

/* FIM - Caixa de detalhe do mapa */

/* Estilo personalizado para aumentar a altura do dropdown do SELECT2 */
.select2-dropdown.custom-dropdown {
    max-height: 500px !important; /* Ajuste este valor conforme necessário */
}

/* Estilo para ajustar a área de rolagem interna */
.select2-results__options {
    max-height: 500px !important; /* Ajuste este valor conforme necessário */
}

.titulo h3 {
    margin-bottom: 0;
}

/* FIM - Estilo personalizado para aumentar a altura do dropdown do SELECT2 */