html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.btn.btn-primary {
    background: #e3b04b !important;
    border: 1px solid #e3b04b !important;
    color: #fff !important;
}

    .btn.btn-primary:active {
        background: #757575 !important;
        border: 1px solid #e3b04b !important;
        color: #fff !important;
    }

    .btn.btn-primary:hover {
        border: 1px solid #e3b04b;
        background-color: #393939;
    }

    .btn.btn-primary:focus,
    .btn-primary-light:focus,
    .btn-outline-primary:focus,
    .btn-primary-light:active .btn.btn-primary.focus,
    .btn-primary-light.focus,
    .btn-outline-primary.focus {
        outline: none !important;
        box-shadow: none !important;
    }

.btn-outline-primary {
    border: 1px solid #e3b04b;
    background: transparent;
    color: #e3b04b;
}

    .btn-outline-primary:hover,
    .btn-outline-primary:active {
        border: 1px solid transparent !important;
        background: #9c9c9c !important;
        color: #fff;
    }

.btn-primary-light {
    background: #fffbe6 !important;
    border: 1px solid #e3b04b !important;
    color: #545454 !important;
}

.btn-outline-secondary:hover {
    background: transparent;
    color: #545454 !important;
}

.form-control-file.bg-primary {
    background-color: #e3b04b !important;
}

.text-primary {
    /*color: #3b2900 !important;*/
    color: #282828 !important;
}

a {
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    color: #616161;
    text-decoration: none;
}

    a:hover,
    a:focus {
        text-decoration: none !important;
        outline: none !important;
        -webkit-box-shadow: none;
        box-shadow: none;
        color: #616161;
    }

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
    background: #f5f5f5;
}

.obrigatorio::after {
    content: " *";
    color: red;
}

.custom-btn {
    background-color: #E3B04B; /* Cor de fundo */
    color: #000000; /* Cor do texto */
    border: 2px solid #C6973F; /* Cor da borda */
    padding: 10px 20px; /* Espaçamento interno */
    font-size: 16px; /* Tamanho da fonte */
    border-radius: 5px; /* Borda arredondada */
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-weight: 600;
    gap: 16px;
    margin-right: 16px;
}

    .custom-btn:hover {
        background-color: #C6973F; /* Cor ao passar o mouse */
        transform: scale(1.05); /* Efeito de zoom ao passar o mouse */
    }

.custom-btn-green {
    background-color: #008000; /* Cor de fundo */
    color: #ffffff; /* Cor do texto */
    border: 2px solid #006600; /* Cor da borda */
    padding: 10px 20px; /* Espaçamento interno */
    font-size: 16px; /* Tamanho da fonte */
    border-radius: 5px; /* Borda arredondada */
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-weight: 600;
    margin-right: 16px;
    margin-bottom: 8px;
    margin-top: 8px;
}

    .custom-btn-green:hover {
        background-color: #006600; /* Cor ao passar o mouse */
        transform: scale(1.2); /* Efeito de zoom ao passar o mouse */
        color: #ffffff;
    }

.align-content-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .align-content-center a {
        margin-right: 10px; /* Adiciona um pequeno espaço entre os ícones */
    }

.custom-btn-back {
    background-color: #ffffff; /* Cor de fundo */
    color: #008000; /* Cor do texto */
    border: 2px solid #006600; /* Cor da borda */
    padding: 10px 20px; /* Espaçamento interno */
    font-size: 16px; /* Tamanho da fonte */
    border-radius: 5px; /* Borda arredondada */
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-weight: 600;
    margin-right: 16px;
    margin-bottom: 8px;
    margin-top: 8px;
    width: 122px;
}

    .custom-btn-back:hover {
        background-color: #f5f5f5; /* Cor ao passar o mouse */
        transform: scale(1.05); /* Efeito de zoom ao passar o mouse */
    }

tr.odd {
    background-color: #f9f9f9;
    padding: 16px;
}

tr.even {
    background-color: #ffffff;
    padding: 16px;
    margin: 16px;
}

td.text-right {
    text-align: right;
    margin: 8px;
    border-style: none;
}

td.text-left {
    font-weight: 600;
    text-align: left;
    margin: 8px;
    border-style: none;
}

.element-details {
    align-content: center;
    align-items: center;
    margin-right: 10rem;
}

.element-box {
    padding: 1.5rem 2rem;
    margin-bottom: 1rem;
    border-radius: 6px;
    background-color: #fff;
    -webkit-box-shadow: 0px 2px 4px rgba(126, 142, 177, 0.12);
    box-shadow: 0px 2px 4px rgba(126, 142, 177, 0.12);
    height: auto;
}



.btn-edit-table, .btn-details-table, .btn-delete-table, .btn-documents-table {
    color: #E3B04B;
}

    .btn-edit-table:hover, .btn-details-table:hover, .btn-delete-table:hover, .btn-documents-table:hover {
        color: #C6973F;
        transform: scale(1.05);
    }

.toast-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: fixed;
    z-index: 9999;
    text-align: center;
}

.toast-success {
    background-color: #28a745 !important;
    color: white !important;
}

.toast-error {
    background-color: #dc3545 !important;
    color: white !important;
}

.toast-warning {
    background-color: #ffc107 !important;
    color: black !important;
}

.toast-info {
    background-color: #17a2b8 !important;
    color: white !important;
}

.toast-close-button {
    color: white !important;
}

#loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
}

.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.amarelo {
    color: #C6973F;
}

.link-none, link-nome:has(:hover) {
    text-decoration: none;
    color: black;
}

.container-map {
    width: 100%;
}

#map {
    width: 100%;
    max-height: 480px;
    height: auto;
    object-fit: cover;
    margin-bottom
}

.img-banner-login {
    vertical-align: baseline;
    border-style: none;
    max-width: 100%;
    max-height: none;
    width: 440px;
    height: 420px;
    margin-left: auto;
    margin-top: 8px;
    display: flex;
    justify-content: end;
}

@media (min-width: 320px) and (max-width: 359px) {
    table.dataTable {
        margin-left: -30px !important;
        zoom: 56% !important;
    }
}

@media (max-width: 768px) {
    table.dataTable {
        margin-left: -15px;
        zoom: 88%;
    }
}

.font-bold {
    font-weight: 600;
}

select.form-control {
    -webkit-appearance: menulist;
    -moz-appearance: menulist;
    appearance: menulist;
}

.form-control:focus {
    border-color: #ffecc5;
    box-shadow: 0 0 0 0.2rem rgba(255, 236, 197, 0.25);
    outline: none;
}

.form-check-inline {
    display: inline-block;
    margin-right: 14px;
}

.loading {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

    .loading::after {
        content: "";
        width: 40px;
        height: 40px;
        border: 4px solid #f3f3f3;
        border-top: 4px solid #3498db;
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

.btn:focus, .btn:active:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #ccc !important;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/*
 @media (max-width: 1398px) {
    .navbar-toggler {
        display: block !important;
    }

    .navbar-collapse {
        display: none !important;
    }
}

@media (min-width: 1399px) {
    .navbar-toggler {
        display: none !important;
    }

    .navbar-collapse {
        display: flex !important;
    }
}*/
