.tdMapInit {
    margin: 0;
    padding: 5px;
    font-size: 100%;
    font: inherit;
    vertical-align: middle;
}

.tdMapInitSearch {
    margin: 5;
    padding: 5px;
    font-size: 100%;
    font: inherit;
}
    .h2, h2 {
    font-size: 2rem;
    background-color: var(--FormCouleurFond);
}

.td,td {
    background-color: var(--FormCouleurFond);
    color: var(--FormCouleurCarac);
}

textarea {
    overflow: auto;
    resize: none;
        font-family: var(--FormPoliceChamp);
    font-size: var(--FormFontSizeCarac);
    color: var(--FormCouleurCarac);
}
         .overlayBody {
    background-color:#EFEFEF;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 1000;
    top: 0px;
    left: 0px;
    opacity: .5; /* in FireFox */ 
    filter: alpha(opacity=50); /* in IE */
}

.input100 {
    font-family: var(--FormPoliceChamp);
    font-size: var(--FormFontSizeCarac);
    color: var(--FormCouleurCarac);
    line-height: 1.2;
    display: block;
    width: 85%;
    height: var(--FormMargeHeight);
    background: transparent;
    padding: 0 20px 0 23px;
    border: 0px solid transparent;
    font-weight: var(--FormFontEpaisseur);
}

.disabledbutton {
    pointer-events: none;
    opacity: 0.4;
}


.image-icon img {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    border: solid;
    border-color: chartreuse;
    background-color: var(--BackgroundObservation);
}

.image-icon-public img {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    border: solid;
    border-color: gray;
    background-color: var(--BackgroundObservation);
}

.image-icon3 img, .image-icon-public3 img{
    height: 40px !important;
    width: 40px !important;
}

.image-circle {
    border-radius: 50%;
    border-top: 20px solid var(--FormCouleurSpin);
    border-right: 20px solid var(--FormCouleurSpin);
    border-left: 20px solid var(--FormCouleurCarac);
    border-bottom: 20px solid var(--FormCouleurCarac);
    animation: spin 10s infinite linear;
}
.image-circle img {
    animation: spin 10s infinite reverse linear;
    width: 100%;
    border-radius: 50%;
}

/* precision < 100m */
.image-icon-public.masked-loc-obs-yellow, .image-icon.masked-loc-obs-yellow {
    outline: 5px dashed rgba(241, 241, 23, 0.6) !important;
    outline-offset: 1px;
    border-radius: 50%;
}
.image-icon-public.masked-loc-obs-yellow img, .image-icon.masked-loc-obs-yellow img {
    outline: 7px dashed rgba(241, 241, 23, 0.3);
    outline-offset: 8px;
}
/* 100m < precision < 1000m */
.image-icon-public.masked-loc-obs-orange, .image-icon.masked-loc-obs-orange {
    outline: 5px dashed rgba(241, 132, 23, 0.6) !important;
    outline-offset: 1px;
    border-radius: 50%;
}
.image-icon-public.masked-loc-obs-orange img, .image-icon.masked-loc-obs-orange img {
    outline: 7px dashed rgba(241, 132, 23, 0.3);
    outline-offset: 8px;
}
/* precision > 1000m */
.image-icon-public.masked-loc-obs-red, .image-icon.masked-loc-obs-red {
    outline: 5px dashed rgba(241, 27, 23, 0.6) !important;
    outline-offset: 1px;
    border-radius: 50%;
}
.image-icon-public.masked-loc-obs-red img, .image-icon.masked-loc-obs-red img {
    outline: 7px dashed rgba(241, 27, 23, 0.3);
    outline-offset: 8px;
}

@keyframes spin {
    100% {
        transform: rotate(1turn);
    }
}

/*isVerified*/
.isVerified-container {
    position: absolute;
    left: 0;
    top: 8px;
}
/* Hide the browser's default checkbox */
.isVerified-container input {
    position: absolute;
    opacity: 0;
    height: 0;
    width: 0;
}  
/* Create a custom checkbox */
.isVerified-container span {
    position: absolute;
    top: 0;
    left: 0;
    height: 30px;
    width: 30px;
    cursor: help;
} 
/* When the checkbox is checked, add a blue background */
.isVerified-container input:checked ~ span {
    border-radius: 3px;
}
.isVerified-container input:checked ~ span.verified {
    border: 2px solid rgb(0, 152, 0);
}
.isVerified-container input:checked ~ span.notVerified {
    border: 2px solid #E99351;
}
/* Create the checkmark/indicator (hidden when not checked) */
span:after {
    content: "";
    position: absolute;
}  
/* Show the checkmark when checked */
.isVerified-container input:checked ~ span:after {
    display: block;
}
/* Style the checkmark/indicator */
.isVerified-container span:after {
    left: 9px;
    top: 3px;
    width: 9px;
    height: 16px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
/* NOT VERIFIED */
.isVerified-container span.verified:after {
    border: solid rgb(0, 152, 0);
    border-width: 0 3px 3px 0;
}
/* VERIFIED */
.isVerified-container span.notVerified:after {
    border: solid #E99351;
    border-width: 0 3px 3px 0;
}

/*tooltip obs verified*/
.tooltip-obsVerified-container {
    display: none;
}
.tooltip-obsVerified-container.show-tooltip-obsVerified {
    display: block;
}
.tooltip-obsVerified-container.show-tooltip-obsVerified span {
    font-size: 1.1em;
    font-weight: bold;
    width: 100%;
    padding: 2px 6px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #FFFFFF;
    text-align: center;
    border-radius: 6px;
    position: absolute;
    top: 2px;
    right: 100%;
    display: block;
    line-height: 2;
}
.tooltip-obsVerified-container.show-tooltip-obsVerified span::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -10px;
    border-width: 10px;
    border-style: solid;
    border-color: transparent transparent transparent rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 767px){
.imguicn {
    height: 22px !important;
    width: 22px !important;
    margin-top: -5px;
}
.leaflet-popup #imgObs {
    width: 145px !important;
    height: 125px !important;
  }

  #imgLike { margin-left: 0%;}
}

/*tooltip obs verified*/
.tooltip-obsUicn-container {
    display: none;
}
.tooltip-obsUicn-container.show-tooltip-obsUicn {
    display: block;
}
.tooltip-obsUicn-container.show-tooltip-obsUicn span {
    font-size: 1.1em;
    font-weight: bold;
    width: 100%;
    padding: 2px 6px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #FFFFFF;
    text-align: center;
    border-radius: 6px;
    position: absolute;
    top: 2px;
    left: 100%;
    display: block;
    line-height: 2;
}
.tooltip-obsUicn-container.show-tooltip-obsUicn span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 100%;
    margin-top: -10px;
    border-width: 10px;
    border-style: solid;
    border-color: transparent rgba(0, 0, 0, 0.5) transparent transparent;
}

.box {
    position: relative;
    width: 100%;
    display: inline-block; 
}
.box .text{
    position: absolute;
    z-index: 999;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 40%; 
    text-align: center;
    width: 60%; 
}

@media screen and (max-width: 1300px) {
    .select-large2 option {
        font-size: 60;
    }
}

@media screen and (min-width: 1300px) {
    .select-large2 option {
        font-size: 60;
    }
}

@media screen and (max-width: 1300px) and (orientation: landscape) {
    #imgObs1 {
        max-height: 300px;
    }
}

@media screen and (min-width: 1300px) and (orientation: landscape){
    #imgObs1 {
        max-height: 500px;
    }
}

.leaflet-control-nbobs-line {
    border: 2px solid #777;
    border-top: none;
    line-height: 1.1;
    padding: 2px 5px 1px;
    color: dodgerblue;
    font-weight: 700;
    min-width: 50px;
    width: auto;
    right: 5px;
    bottom: 5px;
    font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
}

@media screen and (max-width: 767px) {
    .leaflet-marker-icon:not(.marker-cluster-large, .marker-cluster-medium, .marker-cluster-small)  {
        margin-left: -20px !important;
        margin-top: -20px !important;
        transform-origin: 10px 10px 0px !important;
    }

    .image-icon img, .image-icon-public img {
        height: 40px !important;
        width: 40px !important;
    }

    .image-icon img {
        border: 2px solid chartreuse;
    }
    .image-icon-public img {
        border: 2px solid gray;
    }

    .leaflet-control-scale-line {
        transform: scale(0.5);
        transform-origin: 0% 100%;
    }


    /*verified obs*/
    .isVerified-container span {
        height: 15px;
        width: 15px;
    } 
    .isVerified-container span:after {
        left: 3px;
        top: 1px;
        width: 5px;
        height: 8px;
    }
    /* NOT VERIFIED */
    .isVerified-container span.verified:after {
        border-width: 0 2px 2px 0;
    }
    /* VERIFIED */
    .isVerified-container span.notVerified:after {
        border-width: 0 2px 2px 0;
    }
    .tooltip-obsVerified-container.show-tooltip-obsVerified span {
        width: 120%;
        top: -19px;
    }

    .tooltip-obsUicn-container.show-tooltip-obsUicn span {
        width: 120%;
        top: -19px;
    }
}

/* =========================================================
   TOOLTIP INFIRMER / CONFIRMER UNIQUEMENT
   Ne modifie jamais tooltip-obsVerified-container
   ========================================================= */

.like-dislike {
    position: relative;
}

/* Masqués tant que la souris n'est pas sur le bouton. */
.tooltip-obsunLike-container,
.tooltip-obsLike-container {
    display: none;
}

/* Classe réservée exclusivement aux boutons Like / Unlike. */
.tooltip-obsunLike-container.show-tooltip-vote,
.tooltip-obsLike-container.show-tooltip-vote {
    display: block;
}

/* Style identique au tooltip Verified, sans modifier son CSS. */
.tooltip-obsunLike-container.show-tooltip-vote span,
.tooltip-obsLike-container.show-tooltip-vote span {
    font-size: 1.1em;
    font-weight: bold;
    width: auto;
    min-width: 75px;
    padding: 2px 6px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #FFFFFF;
    text-align: center;
    border-radius: 6px;
    position: absolute;
    top: 8px;
    display: block;
    line-height: 2;
    white-space: nowrap;
    z-index: 9999;
}

/* Infirmer, au niveau du bouton dislike. */
.tooltip-obsunLike-container.show-tooltip-vote span {
    left: 28%;
    right: auto;
    transform: translateX(-50%);
}

/* Confirmer, au niveau du bouton like. */
.tooltip-obsLike-container.show-tooltip-vote span {
    left: auto;
    right: 15%;
    transform: translateX(50%);
}

/* Flèche sous le libellé. */
.tooltip-obsunLike-container.show-tooltip-vote span::after,
.tooltip-obsLike-container.show-tooltip-vote span::after {
    content: "";
    position: absolute;
    top: 100%;
    bottom: auto;
    left: 50%;
    right: auto;
    margin-top: 0;
    margin-left: -7px;
    border-width: 7px;
    border-style: solid;
    border-color:
        rgba(0, 0, 0, 0.5)
        transparent
        transparent
        transparent;
}

@media screen and (max-width: 767px) {
    .tooltip-obsunLike-container.show-tooltip-vote span,
    .tooltip-obsLike-container.show-tooltip-vote span {
        top: 6px;
        min-width: 65px;
        font-size: 0.9em;
    }

    .tooltip-obsunLike-container.show-tooltip-vote span {
        left: 18%;
    }

    .tooltip-obsLike-container.show-tooltip-vote span {
        right: 12%;
    }
}


/*
 * Rend réellement la zone Verified survolable.
 */
.custom-ficheObs {
    position: relative;
}

.isVerified-container {
    width: 34px;
    height: 34px;
    z-index: 10000;
    pointer-events: auto;
}

.isVerified-container > span.tooltipObsVerified {
    display: block;
    width: 30px;
    height: 30px;
    z-index: 10001;
    pointer-events: auto;
    cursor: help;
}

.tooltip-obsLike-container.show-tooltip-vote span {
    right: calc(17% + 40px);
}

/* Empêche les tooltips de capter la souris */
.tooltip-obsunLike-container,
.tooltip-obsunLike-container span,
.tooltip-obsLike-container,
.tooltip-obsLike-container span {
    pointer-events: none;
}

   .tooltip-obsunLike-container.show-tooltip-vote span,
.tooltip-obsLike-container.show-tooltip-vote span {
    font-size: 14px;
}

#extractResult {
    text-align: center !important;
}
