* 
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body
{
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#modal-overlay 
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/*
    .modal 
    {
        background: white !important;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        width: 90%;
        max-width: 800px;
        max-height: 80%;
        padding: 20px;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow-y: auto; 
        animation: fadeIn 0.3s ease-in-out;
        padding-top: 30px;
    }
*/

.modal 
{
    width: 80%;
    height: 80vh;
    background: white !important;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-y: hidden; 
    animation: fadeIn 0.3s ease-in-out;
    padding-top: 30px;
}

.modal .close-modal 
{
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}

#iframe_content 
{
    background: white;
    width: 100%;
    height: 100%;
    max-height: 80%;
    max-width: 90%;
}

.no-scroll{
    overflow: hidden;
}

/*
    #iframe_content 
    {
        background: white;
        max-width: 90%;
        width: 800px;
        height: 600px;
        max-height: 80%;
    }
*/

@keyframes fadeIn 
{
    from 
    {
        opacity: 0;
        transform: scale(0.9);
    }
    to 
    {
        opacity: 1;
        transform: scale(1);
    }
}

.column, .columns 
{
	width: 100%;
  	float: left;
  	box-sizing: border-box;
	padding: 0px;
	margin: 0px;
	text-align: left;
}

.container 
{
    display: flex;
    flex-direction: column;
    height: auto; 
    padding: 1rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.header 
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.header h1 
{
    font-size: 18px;
    color: #2c3e50;
}

.icone_cadastrar 
{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0e0eef;
    color: white;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.icone_cadastrar:hover 
{
    background-color: #0c0cca;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
}

.barra_pesquisa 
{
    display: flex;
    flex-wrap: wrap; 
    justify-content: flex-start;
    align-items: flex-end;
    margin-bottom: 10px;
}

.barra_pesquisa  label 
{
    font-size: 0.85rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.barra_pesquisa  input[type=text], .barra_pesquisa  input[type=email], .barra_pesquisa  input[type=date], .barra_pesquisa  input[type=file], .barra_pesquisa  input[type=password], .barra_pesquisa  input[type=number], .barra_pesquisa  input[type=time], .barra_pesquisa  select
{
    padding: 10px;
    border: 1.5px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
    width: 100%; 
    font-family: 'Poppins', sans-serif;
}

.barra_pesquisa  input[type=time]
{
    padding: 5px;
}

.barra_pesquisa  input:focus
{
    border-color: #0e0563;
}

.linha_botoes{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    -webkit-justify-itens: center;
    -webkit-justify-content: center;
    text-align: center;    
    justify-content: center; 
    gap: 30px; 
    flex-wrap: wrap;
    align-items: center;
}

.list-header 
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #e9eef3;
    border-radius: 5px;
    padding: 0.6rem 1rem;
    font-weight: bold;
    font-size: 0.85rem;
    color: #2c3e50;
    text-transform: uppercase;
}

.list-container 
{
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex-grow: 1; 
    overflow-y: auto;
}

.list-item 
{
    display: flex;
    background: #f8f9fa;
    border: 1px solid #e5e5e5;
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    font-size: 15px;
}

.list-item:hover 
{
    background: #eef2f5;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.1);
}

.list-item .div_status
{
    display: flex; 
    margin: auto;
}

.list-item .div_status .status
{
    color: #FFF; 
    padding: 2px; 
    border-radius: 3px; 
    width: 70px; 
    text-align: center; 
    font-size: 12px;
    text-transform: uppercase;
    font-weight: bold;
}

.icone_excluir 
{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e74c3c;
    color: white;
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.icone_excluir .material-icons
{
    font-size: 18px;
}

.icone_excluir:hover 
{
    background-color: #c0392b;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
}

.icone_ativar
{    
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #08dc28;
    color: white;
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.icone_ativar .material-icons
{
    font-size: 20.5px;
}

.icone_ativar:hover 
{
    background-color: #06a91e;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
}

.botao_salvar 
{
    padding: 12px 18px;
    font-size: 14px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    background-color: #2562c4;
    color: white;
}

.botao_salvar:hover 
{
    background-color: #1353b9;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.botao_cadastrar 
{
    padding: 12px 18px;
    font-size: 15px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    background-color: #1abc9c;
    color: white;
    width: 100px;
    text-transform: capitalize;
}

.botao_cadastrar:hover 
{
    background-color: #16a085;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    font-weight: bold;
}

.botao_cancelar 
{
    padding: 12px 18px;
    font-size: 14px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    background-color: #e74c3c;
    color: white;
}

.botao_cancelar:hover 
{
    background-color: #c0392b;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.botao_ativar 
{
    padding: 12px 18px;
    font-size: 14px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    background-color: #10d416;
    color: white;
}

.botao_ativar:hover 
{
    background-color: #0ec514;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.avaliacao-container 
{
    display: flex;
    align-items: center;
    justify-content: center; 
    gap: 10px; 
    padding: 10px 15px;
    border-radius: 5px;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    width: 100%;
}

.estrelas 
{
    font-size: 24px;
    position: relative;
    display: inline-block;
    color: #ccc; 
    letter-spacing: 2px;
}

.estrelas::before 
{
    content: "★★★★★"; 
    display: block;
    color: #ccc;
}

.estrelas-overlay 
{
    position: absolute;
    top: 0;
    left: 0;
    white-space: nowrap;
    overflow: hidden;
    color: #FFD700; 
}

.estrelas-overlay::before 
{
    content: "★★★★★"; 
    display: block;
}

.avaliacao-count 
{
    margin-left: 10px;
    font-size: 16px;
    color: #4a4a4a;
    margin-top: 5px;
}

a
{
    text-decoration: none; 
    color: inherit; 
    display: inline-block;
    text-align: center;
}

.formulario 
{
    background: #ffffff;
    border-radius: 12px;
    width: 70%;
    margin: auto;
}

.form-header 
{
    margin-bottom: 20px;
    text-align: center;
}

.form-header h1 
{
    font-size: 16px;
    color: #34495e;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.formulario label 
{
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 0px;
}

.formulario input[type=text], .formulario input[type=email], .formulario input[type=date], .formulario input[type=datetime-local], .formulario input[type=file], .formulario input[type=password], .formulario input[type=number], .formulario input[type=time], .formulario select, .formulario textarea
{
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    width: 100%;
    outline: none;
    transition: all 0.3s ease;
    background: linear-gradient(to right,rgb(236, 235, 235), #f7f7f7); 
    color: #333; 
    font-weight: 500;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    font-family: 'Poppins', sans-serif;
    resize: none;
}

.formulario input[type=date]{
    font-size: 15px;
}

.formulario textarea
{
    min-height: 70px;
    font-family: 'Poppins', sans-serif;
}

.formulario input::placeholder, .formulario textarea::placeholder  
{
    color: #a1a1a1; 
    font-style: italic;
}

.formulario input:focus, .formulario textarea:focus 
{
    border-color:rgb(91, 127, 175);
    background: linear-gradient(to right, #f7f7f7, rgb(236, 235, 235)); 
    box-shadow: 0 0 5px rgba(102, 136, 182, 0.3); 
}

select option[value=""] 
{
    color: #a1a1a1;
    font-style: italic;
}

.select2-container .select2-selection--single
{
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    width: 100%;
    outline: none;
    transition: all 0.3s ease;
    background: linear-gradient(to right, rgb(236, 235, 235), #f7f7f7); 
    color: #333; 
    font-weight: 500;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    height: 43px;
    display: flex;
    align-items: center;
}

.select2-container--default .select2-selection--single{
    height: 50px !important;
}

.select2-container--default .select2-selection--single:focus 
{
    border-color: rgb(91, 127, 175);
    background: linear-gradient(to right, #f7f7f7, rgb(236, 235, 235)); 
    box-shadow: 0 0 5px rgba(102, 136, 182, 0.3);
}

.select2-container--default .select2-selection--single .select2-selection__rendered 
{
    color: #333;
    font-weight: 500;
    padding-left: 10px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow 
{
    height: 100% !important;
    right: 10px !important;
}

.select2-container--default .select2-dropdown 
{
    background: white;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.select2-container--default .select2-results__option 
{
    padding: 10px;
    font-size: 14px;
    color: #333;
    transition: background 0.3s ease;
}

.select2-container--default .select2-results__option--highlighted 
{
    background: rgb(134, 155, 182);
    color: white;
}

/* Estiliza a área de seleção do select2 multiple */
.select2-container--default .select2-selection--multiple 
{
    padding: 7px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    width: 100%;
    outline: none;
    transition: all 0.3s ease;
    background: linear-gradient(to right, rgb(236, 235, 235), #f7f7f7);
    color: #333;
    font-weight: 500;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    min-height: 45px; /* Ajusta o tamanho mínimo */
    display: flex;
    align-items: center;
}

/* Efeito ao focar no campo */
.select2-container--default .select2-selection--multiple:focus 
{
    border-color: rgb(91, 127, 175);
    background: linear-gradient(to right, #f7f7f7, rgb(236, 235, 235));
    box-shadow: 0 0 5px rgba(102, 136, 182, 0.3);
}

/* Estiliza os itens selecionados */
.select2-container--default .select2-selection--multiple .select2-selection__choice 
{
    background-color: #5b8ccb;
    color: #ffffff;
    border-radius: 5px;
    padding: 3px 7px;
    margin: 4px 3px;
    font-weight: bold;
}

/* Estiliza o botão de remoção dos itens */
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove 
{
    color: #ffffff;
    margin-left: 5px;
    cursor: pointer;
    font-size: 14px;
}

/* Efeito hover no botão de remoção */
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover 
{
    color: #ff0000;
}

/* Dropdown (lista de opções) */
.select2-container--default .select2-dropdown 
{
    background: white;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Opções dentro do dropdown */
.select2-container--default .select2-results__option 
{
    padding: 10px;
    font-size: 14px;
    color: #333;
    transition: background 0.3s ease;
}

/* Efeito ao passar o mouse nas opções */
.select2-container--default .select2-results__option--highlighted 
{
    background: rgb(91, 127, 175);
    color: white;
}

.formulario form label
{
    width: 100%;
    font-size: 17px;
    color: black;
}

.formulario form input, .formulario form select, .formulario form .select2, .formulario form textarea
{
    margin-top: 10px;
    margin-bottom: 10px;
}
.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
    padding: 4px !important;
}
.formulario .center_botao
{
    text-align: center;
    margin-top: 10px;
}

.botoes_container 
{
    display: flex;
    align-items: center;
    gap: 2px; 
    justify-content: center;
}

.botoes_container .css_botao 
{
    background-color: #28a745; 
    border: none;
    color: white;
    font-size: 20px; 
    width: 30px; 
    height: 30px; 
    border-radius: 50%; 
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 10px;
    margin-bottom: 10px;
}

.botoes_container .css_botao:hover 
{
    background-color: #218838; 
    transform: scale(1.1); 
}

.botoes_container .css_botao:active 
{
    background-color: #1e7e34; 
    transform: scale(0.95); 
}

.botoes_container .css_botao.botao_remover 
{
    background-color: #dc3545; 
}

.botoes_container .css_botao.botao_remover:hover 
{
    background-color: #c82333; 
}

.botoes_container .css_botao.botao_remover:active
{
    background-color: #bd2130; 
    transform: scale(0.95);
}

.abas 
{
    display: flex;
    justify-content: center;
    gap: 10px;
    border-bottom: 2px solid #ddd;
    margin-bottom: 20px;
}

.aba-link 
{
    padding: 10px 15px;
    cursor: pointer;
    border: none;
    background: none;
    font-weight: bold;
    transition: 0.3s;
    font-size: 17px;
}

.aba-link.active 
{
    border-bottom: 3px solid #1abc9c;
    color: #1abc9c;
}

.aba-content 
{
    display: none;
    width: 100%;
    padding: 1rem; 
    background: #fff; 
    border-radius: 10px; 
}

.aba-content.active 
{
    display: flex;
    flex-direction: column; 
    width: 100%;
}

.aba-content .container 
{
    width: 100%; 
    margin: 0 auto; 
}

.permissoes 
{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.checkbox-container 
{
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
}

.checkbox-container input 
{
    margin-right: 5px;
}

.permissoes-container 
{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modulo 
{
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%; 
    max-width: 250px;
}

.modulo h3
{
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: bold;
}

.modulo h4
{
    text-transform: uppercase;
}

.modulos-grid 
{
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 10px;
}

.permissoes-list 
{
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.botao_marcar_desmarcar 
{
    padding: 10px 15px;
    background-color: #1abc9c;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.botao_marcar_desmarcar:hover 
{
    background-color: #16a085;
}


@media (min-width: 900px){
    .list-item label
    {
        display: none;
    }

    .columns
    {
        margin-left: 0%; 
        padding: 3px; 
        text-align: left;
    }

    .columns:first-child
    {
        margin-left: 0;
    }

    .col4.columns{ width: 4%;}
    .col5.columns{ width: 5%;}
    .col6.columns{ width: 6%;}
    .col7.columns{ width: 7%;}
    .col8.columns{ width: 8%;}
    .col9.columns{ width: 9%;}
    .col10.columns{ width: 10%;}
    .col13.columns{ width: 13%;}
    .col15.columns{ width: 15%;}
    .col16.columns{ width: 16.66%;}
    .col20.columns{ width: 20%;}
    .col25.columns{ width: 25%;}
    .col30.columns{ width: 30%;}
    .col33.columns{ width: 33.33%;}
    .col35.columns{ width: 35%;}
    .col40.columns{ width: 40%;}
    .col45.columns{ width: 45%;}
    .col45.columns{ width: 45%;}
    .col49.columns{ width: 49%;}
    .col50.columns{ width: 50%;}
    .col55.columns{ width: 55%;}
    .col60.columns{ width: 60%;}
    .col65.columns{ width: 65%;}
    .col67.columns{ width: 67.77%;}
    .col70.columns{ width: 70%;}
    .col75.columns{ width: 75%;}
    .col80.columns{ width: 80%;}
    .col85.columns{ width: 85%;}
    .col90.columns{ width: 90%;}
    .col100.columns{ width: 100%;}
}

@media (max-width: 900px) 
{
    .formulario{
        width: 100%;
    }
    .linha_botoes{
        flex-direction: column;
    }
    
    .botoes_acoes{
        justify-items: center;
    }
    
	.list-header
	{
		display: none;
	}

    .list-total{
        flex-wrap: wrap;
    }
	
	.list-item
	{
        display: block;
		border: 1px solid #a6e5e0; 
		margin-bottom: 10px; 
		background:linear-gradient(to bottom, var(--branco), #f1f1f1); 
		padding: 10px; 
		border-radius: 10px;
	}

    .list-item div
	{
        justify-items: center;        
        margin-bottom: 4px;
    }

    .list-item label
	{
        font-weight: bold;
    }

    .list-item .div_status .status
    {
        margin-left: 5px;
    }

    .list-item .botoes
    {
        padding-top: 10px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        -webkit-justify-itens: center;
        -webkit-justify-content: center;
        justify-items: center;
        text-align: center;    
        justify-content: center; 
    }
}

@media (max-width: 900px)
{
    .linha_botoes{
        flex-direction: column;
    }
    
    .botoes_acoes{
        justify-items: center;
    }

	.list-header
	{
		display: none;
	}
    
    .list-total{
        flex-wrap: wrap;
    }
	
	.list-item
	{
        display: block;
		border: 1px solid #a6e5e0;
		margin-bottom: 10px;
		background:linear-gradient(to bottom, #FFF, #f1f1f1);
		padding:10px;
		border-radius: 10px;
	}

    .list-item div
	{
        justify-items: center;        
        margin-bottom: 4px;
    }

    .list-item label
	{
        font-weight: bold;
    }

    .list-item .div_status .status
    {
        margin-left: 5px;
    }

    .list-item .botoes
    {
        padding-top: 10px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        -webkit-justify-itens: center;
        -webkit-justify-content: center;
        justify-items: center;
        text-align: center;    
        justify-content: center; 
    }
}

.modal_desktop{
    width: 45% !important;
}

.modal_tablet{
    width: 65% !important;
}

.modal_mobile{
    width: 90% !important;
}

.desktop .list-item label {
    display: none;
}

.desktop .columns:first-child {
    margin-left: 0;
}

.desktop .columns {
    margin-left: 0%; 
    padding: 3px; 
}

.desktop .columns.linha_botoes{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    -webkit-justify-itens: center;
    -webkit-justify-content: center;
    text-align: center;    
    justify-content: center; 
    gap: 30px; 
    flex-wrap: wrap;
    align-items: center;
    flex-direction: row;
}

.desktop .col4.columns { width: 4%; }
.desktop .col5.columns { width: 5%; }
.desktop .col6.columns { width: 6%; }
.desktop .col7.columns { width: 7%; }
.desktop .col8.columns { width: 8%; }
.desktop .col9.columns { width: 9%; }
.desktop .col10.columns { width: 10%; }
.desktop .col13.columns { width: 13%; }
.desktop .col15.columns { width: 15%; }
.desktop .col16.columns { width: 16.66%; }
.desktop .col20.columns { width: 20%; }
.desktop .col25.columns { width: 25%; }
.desktop .col30.columns { width: 30%; }
.desktop .col33.columns { width: 33.33%; }
.desktop .col35.columns { width: 35%; }
.desktop .col40.columns { width: 40%; }
.desktop .col45.columns { width: 45%; }
.desktop .col49.columns { width: 49%; }
.desktop .col50.columns { width: 50%; }
.desktop .col55.columns { width: 55%; }
.desktop .col60.columns { width: 60%; }
.desktop .col65.columns { width: 65%; }
.desktop .col67.columns { width: 67.77%; }
.desktop .col70.columns { width: 70%; }
.desktop .col75.columns { width: 75%; }
.desktop .col80.columns { width: 80%; }
.desktop .col85.columns { width: 85%; }
.desktop .col90.columns { width: 90%; }
.desktop .col100.columns { width: 100%; }


.status.ativo{
    font-weight: 700 !important;
    color: green !important;
}

.status.inativo{
    font-weight: 700 !important;
    color: red !important;
}

input [readonly], input:disabled, textarea:disabled
{
    background: linear-gradient(to right,#d7d6d6, #d8d8d8) !important;
    color: #303030 !important;
    border-color: #b3b3b3 !important;
    box-shadow: none !important;
    cursor: not-allowed !important;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeOut {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(20px);}
}

.overlay_modal_geral{
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    position: fixed;
    display: none;
}

.custom-toast {
    color: white !important; 
    font-weight: bold;
    font-family: Arial, sans-serif;
}

.miniaturas 
{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 30px;
}
.miniaturas div 
{
    position: relative;
}
.miniaturas img 
{
    width: 100px;
    height: 100px;
    object-fit: cover;
    cursor: pointer;
    border: 1px solid #ccc;
    border-radius: 6px;
}
.miniaturas input[type="checkbox"] 
{
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 10;
}

#map {
    height: 600px;
    width: 100%;
    z-index: 0;
}
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom{
    border: 2px solid black;
}

.list-total{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #e9eef3;
    border-radius: 5px;
    padding: 0.6rem 1rem;
    font-weight: bold;
    font-size: 0.85rem;
    color: #2c3e50;
    text-transform: uppercase;
}

.total_coluna{
    font-size: 19px;
    color: green;
}

.valor_total_relatorio{
    text-align: center;
}

form{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}