
#list-spots-desktop-global{
    display: flex;
    flex-direction: column;
    position:absolute;
    top: 91px;
    z-index: 9999;
    right: 0px;
    width: 20rem;
    background-color: var(--transparent-background);
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    border-radius: 0.25rem;
    -webkit-border-radius: 0.25rem;
    -moz-border-radius: 0.25rem;
    -ms-border-radius: 0.25rem;
    -o-border-radius: 0.25rem;
    background: var(--transparent-background);
}
/************* TOGGLE LIST SPOT  ***********/
#toggleListSpots{
    width: 20rem;
    color: var(--text-color);
    /* background: var(--transparent-background); */
    font-family: 'SkateFont2', sans-serif;
    font-size: 1.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--text-color) 0px -12px 15px -18px inset;
}
.list-spots-desktop{
    max-height: 500px;
    overflow-y: scroll;
    max-width: 28rem;
}
/********************** LISTS **********************/
ul.list-spots{
    padding: 1rem;
    list-style: none;
}
.list-spots li{
    display: flex;
    justify-content: space-between;
    margin: 0.5rem 0;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    /* overflow-x: scroll; */
    color: white;
    height: 100px; 
    background-position: center center; 
    background-size: cover; 
}
li{
    transition: transform 0.3s ease-out;
}
.list-spots li:hover {
    cursor: default;
    transform: scale(1.025);
    -webkit-transform: scale(1.025);
    -moz-transform: scale(1.025);
    -ms-transform: scale(1.025);
    -o-transform: scale(1.025);
}
.list-spots li:nth-child(even){
    background-color: rgba(211, 211, 211, 0.466);
}
.list-spots li:nth-child(odd){
    background-color: rgba(173, 216, 230, 0.377);
}

ul.list-spots{
    width: 100%;
    /* overflow: scroll; */
}


ul.list-spots-desktop{
    width: 30%;
}


/*************- MINIATURE LISTE SPOT ************/
.miniatures-spot{
    display: flex;
    gap: 1px;
}
.right{
    color: var(--text-color);
    height: fit-content;
    text-shadow: 3px 3px 6px var(--text-color-opposite);
}
.list-spots .left{
    height: fit-content;

}
.list-spots .right{
    height: fit-content;
}
.title-li-spot{
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 6px;
    backdrop-filter: blur(2px);
    height: fit-content;
    background-color: rgb(255 255 255 / 24%);
}
/****OPTION MOBILE POUR LA CARTE*****/
@media screen and (max-width: 768px) {
    #toggleListSpots{
        display: none;
    }
}

.li-hover-container{
    display: none;
    width: 100%;
    height: 100%;
    background-color: rgb(255 255 255 / 24%);
    backdrop-filter: blur(2px);
    box-shadow: var(--text-color) 0px 5px 15px;
    
}

/* Cachez la div par défaut */
.li-hover-content {
    display: flex;
    width: 100%;
    height: 100%;
    padding: 0px 0px 0 6px;
    max-width: 100%;
    max-height: 100%;
    overflow: hidden;
}

/* Affichez la div lors du survol de l'élément <li> */
li:hover .title-li-spot{
    display: none;
}

li:hover .li-hover-container {
    display: flex;

}
.li-hover-title{
    display: flex;
    justify-content: space-between;
    width: 100%;
    color: white;
    height: fit-content;
    text-shadow: 3px 3px 6px black;
}
.li-hover-description{
    display: flex;
    justify-content: space-between;
    font-family: Annie Use Your Telescope;
    width: 100%;
    font-size: 1.15rem;
    color: white;
    height: fit-content;
    text-shadow: 3px 3px 6px black;
}
.li-hover-right{
    margin-right: 12px;
    width: 20%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
}
.li-hover-left{
    width: 80%;
    height: 100%;
}
.li-hover-icon{
    height: 40px;
    width: 31px;
}
.li-tools-left{
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}
.li-tools-right{
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}
.tools-note {
    position: relative;

}

.tools-note img {
    position: absolute;
    top: 0;
    left: 0;
}

.tools-note p {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%); /* Déplacer le paragraphe de moitié de sa taille vers le haut et la gauche pour le centrer */
    font-size: 0.75rem;
    text-shadow: 0px 3px 3px black;
}
.not-connected-icon{
    width: 40px;
    height: 40px;
}
.title-li-note{
    font-size: 0.55rem;
    color: white;
}
.title-li-star{
    width: 30px;
    height: 30px;
}

.admin-tools-delete{
    color:rgb(255, 82, 82);
    text-shadow: 1px 1px 0px white;
}
.admin-tools-modify{
    color: rgb(91, 91, 255);
    text-shadow: 1px 1px 0px white;}