.carte-desc-conteneur {
    display: flex;
    justify-content: center;
    position: absolute;
    transform: translate(-50%, -50%);
    background-color: #f5f2ec;
    width: 88%;
    height: 70%;
    box-shadow: 0 3px 68px var(--ombre-accueil);
    transition: .6s;
}

.description,
.navigation-mobile,
.liste-prisons-desktop {
    margin: 30px 15px 15px 30px;
    overflow: scroll;
    color: #585653;
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

.plus-icone {
    height: 1em;
    transition: .4s ease;
    transform: translateY(3px)
}

#navigation-toggle {
    display: none;
}

.navigation-mobile {
    display: none;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.description::-webkit-scrollbar {
    display: none;
}

.carte {
    min-width: calc(50% - 60px);
    min-height: calc(100% - 60px);
    margin: 30px 30px 30px 15px;
    overflow: hidden;
}

.description h2,
.navigation-mobile h2 {
    font-size: 1.3em;
    margin: 5px 0;
}

.liste-prisons-desktop {
    display: block;
    margin: 30px 0 15px 0;
}

.liste-prisons-desktop ul,
.popup ul {
    padding-left: 0;
    list-style: none;
}

.liste-prisons-desktop li {
    margin: .5em 0;
}

.liste-prisons-desktop p {
    margin: .5em 0;
}

.liens-desc {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin: 16px 35px;
}

.liens-desc a {
    font-size: 1.1em;
}

.liens-desc a:hover {
    color: var(--couleur-dominante);
}

.bi-caret-up-fill {
    display: none;
}

.prison-desc {
    display: none;
}

.prison {
    cursor: pointer;
}

.prison-cont {
    display: flex;
    justify-content: space-between;
    width: 200%;
}

#liste-chant-par-prison {
    overflow: hidden;
}

.rond-carte {
    cursor: pointer;
    transition: .3s ease;
}

.popup {
    display: none;
    position: absolute;
    transition: .6s ease;
    opacity: 0;
    background-color: #f5f2ed;
    border-radius: 15px;
    padding: 10px;
    font-family: "Cormorant Garamond", serif;
    color: var(--noir);
    border: 2px solid var(--couleur-dominante);
}

.closePopup{
    height: 1em; float: right; transform: rotate(45deg); cursor: pointer;
}

.popup a {
    text-decoration: none;
}

.popup p,
.popup ul {
    margin: .5em 0;
}

.liste {
    width: 50%;
}

#desktop {
    display: block;
}

#mobile {
    display: none;
}

@media only screen and (max-width: 700px), (max-height: 500px) {
    #desktop {
        display: none;
    }

    #mobile {
        display: block;
    }

    .carte-desc-conteneur {
        flex-wrap: wrap;
        left: 0;
        width: 100%;
        min-height: calc(100% - 60px);
        transform: translate(0, 0);
        overflow: scroll;
        scroll-behavior: smooth;
    }

    .description,
    .navigation-mobile {
        min-width: calc(100% - 30px);
        margin: 15px;
        font-size: 1.1em;
        font-weight: 500;
        overflow: visible;
    }

    .carte {
        min-width: calc(100% - 30px);
        min-height: 0;
        margin: 15px;
        height: 100vw;
    }

    .liens-desc {
        flex-wrap: wrap;
    }

    .liens-desc a {
        text-align: center;
        margin: 15px;
        font-size: 1.2em;
    }

    .liste-prisons-desktop {
    / / display: none;
    }

    .navigation-mobile {
        display: block;
    }

    .navigation-mobile ul {
        padding-left: 20px;
        list-style: none;
    }

    .navigation-mobile li {
        margin: .5em 0;
    }

    .navigation-mobile p {
        padding-left: 20px;
        margin: .5em 0;
    }

    .prison-round {
        background-color: #666;
        display: none;
    / / display: inline-block;
        height: 12px;
        width: 12px;
        border-radius: 50%
    }

    .prison-desc {
        width: 100%;
        margin-right: 30px;
    }
}