body{
    background-color: #ebeff4;
    margin: unset;
    min-height: 100vh;
    font-size: 1.2rem;
}


#map { 
    height: calc(100vh - 76px); 
    width: 100%;
}

#uploaded-data-map {
    height: 500px; 
    border-radius: 8px;
}

.color-primary{
    color: #43a842;
    border:#43a842;
}

.bg-color-primary{
    background-color: #43a842;
    border:#43a842;
}

.bg-color-primary:hover{
    background-color: #43a842;
    border:#43a842;
}



.bg-color-yellow{
    background-color: #e5cc00;
    border:#e5cc00;
}

.bg-color-yellow:hover{
    background-color: #e5cc00;
    border:#e5cc00;
}


.flex {
    display: flex;
}

.flex-row {
    flex-direction: row;
}

.flex-col {
    flex-direction: column;
}

.data-sidebox {
    height: calc(100vh - 76px);
    overflow-y: scroll;
    width: 400px;
}

.data-list-card {
    background-color: white;
    cursor: pointer;
}

.datum-infos{
    color: gray;
    font-size: 13px;
}

.data-list-card.active{
    background-color: #e9f7f7;
    border-left: 4px solid black;
}

.flex.justify-between{
    justify-content: space-between;
}

.flex.justify-center{
    justify-content: center;
}


.flex.align-center{
    align-items: center;
}

.logo{
    color: black;
    text-decoration: none;
}


a{
    color: black;
    text-decoration: none;
}

ul li{
    list-style-type: none;
}

.data-card {
    height: 300px;
    background-color: white;
    border-radius: 0.625rem;
    border: 2px solid #e9f7f7;;
}


.overlay
{
    position: absolute;
    transition: all .3s ease;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.7);
}


.overlay.effect
{
    height: 15%;
    padding: 10px;
    opacity: 0.5;
}

.overlay-text{
    color: white;
    align-items: center;
    font-weight: bold;
    font-size: 1rem;
}

td {
    padding-top:20px;
    padding-bottom:20px;
    padding-right:20px;   
}

td:first-child {
    padding-left:20px;
    padding-right:0;
}


.map-wrapper {
    margin-top: 20px;
}

.data-type-title{
 /*Ok*/
    background-color: transparent;
}

nav {
    background: linear-gradient(270.01deg, #116e9b -23.45%, #006a4f 99.99%);
}


.nav-item{
    color: white;
}


.nav-item>a{
    color: white;
}

.logo {
    margin: 10px;
}

.logo>img{
    border-radius: 8px;
}

footer {
    background-color: white;
    font-size: 0.9rem;
    height: 76px;
}

.py-custom {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}


.copyright{
    font-size: 0.7rem;
}


.divider{
    border-top: 1px solid #dee2e6!important;
    width: 500px;
}

.default-btn {
    min-width: 150px;
}


div:where(.swal2-container) button:where(.swal2-styled).swal2-confirm {
    border: 0;
    border-radius: 0.25em;
    background: initial;
    background-color: #43a842 !important;
    border:#43a842 !important;
    color: #fff;
    font-size: 1em;
}



.swal2-confirm:focus{
    box-shadow: 0 0 0 .25rem #43a842 !important;
    background-color: #43a842;
    border:#43a842;
}


.swal2-confirm:hover{
    box-shadow: 0 0 0 .25rem #43a842 !important;
    background-color: #43a842;
    border:#43a842;
}


.font-bold {
    font-weight: bold !important;
}

.pl-3 {
    padding-left: 1rem !important;
}

.text-justify{
    text-align: justify;
}