.content{
    position: relative;
    width: 100vw;
    height: 100vh;
}
.map-filter{
    position: absolute;
    width: 30vw;
    height: calc(100% - 150px);
    background-color: #FFF;
    box-shadow: 0px 2px 20px #ADBAAF4D;
    margin: 2rem;
    z-index: 999;
    bottom: 0;
    left: 0;
}
.recherche{
    width: 100%;
    background-color: var(--orange);
    padding: 16px 24px;
    display: block;
}
.form-search{
    width: 100%;
    height: 100%;
    background-color: white;
    color: #141F24;
    font-size: 23px;
    letter-spacing: -0.18px;
    border: 0;
    padding: 8px 16px 8px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#search{
    border: none;
    width: 100%;
    margin-right: 10px;
    font-size: 20px;
}
#search:focus{
    outline: none;
}
.form-search i{
    font-weight: bolder;
    color: var(--orange);
    font-size: 24px;
    cursor: pointer;
}
.recherche p{
    padding-bottom: 5px;
    color: #FFF;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: var(--condensed);
}
.filtres{
    display: block;
    padding: 16px 24px;
}
.filtres-box1{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.filtre{
    display: flex;
    gap: 20px;
    align-items: end;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: var(--condensed);
}
.filtre .btn,
.filtre .btn img{
    width: 26px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    cursor: pointer;
    background-color: white;
    border: none;
}
.btn.active {
    background-color: none;
    color: white;
}
.filtre .btn{
    opacity: 0.4;
    transition: 0.2s;
    width: fit-content;
    display: block;
}
.filtre .btn:hover{
    opacity: 1;
}
.filtre .btn.active{
    opacity: 1;
    transition: 0.2s;
}
.filtre-infos{
    width: 27px;
    height: 27px;
    background-size: cover;
    cursor: pointer;
    background-repeat: no-repeat;
    position: relative;
}
.filtre-infos p{
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 8px;
    background-color: #FFF;
    border: solid 1px var(--orange);
    letter-spacing: var(--condensed);
    opacity: 0;
    transition: 0.2s;
    color: var(--orange);
    white-space: nowrap;
    font-size: 12px;
}
.btn .red{
    color: var(--red);
}
.btn .blue{
    color: var(--blue);
}
.btn .green{
    color: var(--green);
}
.filtre-infos:hover p,
.btn:hover p{
    opacity: 1;
}
.filtres-box2{
    display: flex;
    justify-content: end;
}
.filtres-box2 .btn{
    font-size: 13px;
    letter-spacing: -0.05rem;
    color: #141F24;
    text-decoration: underline;
    background-color: white;
    border: solid 0px;
    cursor: pointer;
}
.filtres-box2 .btn:hover{
    text-decoration: none;
}

.all-parcours{
    margin-top: 20px;
    position: absolute;
    bottom: 0;
    height: calc(100% - 200px);
    width: calc(100%);
    padding: 0px 24px;
    overflow-y: scroll;
    overflow-x: hidden;
}
.result-filtre{
    padding: 10px 0px;
    letter-spacing: var(--condensed);
    font-size: 16px;
}
.result-filtre span{
    color: var(--orange);
    font-family: Helvetica, sans-serif;
    font-weight: bold;
}
.parcours{
    margin-bottom: 20px;
    text-decoration: none;
    color: #141F24;
    display: none;
    cursor: pointer;
}
.parcours__title{
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 20px;
    padding-bottom: 5px;
}
.parcours__title img{
    width: 19px;
    height: auto;
}
.parcours__image{
    position: relative;
    width: 100%;

    height: fit-content;
}
.image__hover{
    transition: 0.2s;
    opacity: 0;
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent linear-gradient(360deg, #141F23 0%, #7B787300 100%) 0% 0% no-repeat padding-box;
}
.parcours:hover .image__hover{
    opacity: 1;
}
.parcours__image > img{
    width: 100%;
    height: 156px;
    object-fit: cover;
    transition: 0.2s;
}
.parcours__infos{
    padding-top: 3px;
    display: flex;
    justify-content: space-between;
    color: var(--orange);
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 15px;
}
.parcours__infos div{
    display: flex;
    align-items: center;
    gap: 5px;
}
.parcours__infos img {
    max-height: 22px;
}
.parcours__infos img.yellow-filter{
    filter: brightness(0) saturate(100%) invert(71%) sepia(45%) saturate(535%) hue-rotate(356deg) brightness(99%) contrast(100%);
}
.show {
    display: block;
    animation-name: opacity;
    animation-duration: 0.5s;
}
.content > .filtre-infos{
    position: absolute;
    z-index: 1000;
    bottom: 115px;
    right: 115px;
    cursor: pointer;
}
.content > .filtre-infos img{
    width: 125px;
    height: auto;
}
.infos{
    position: absolute;
    z-index: 99999;
    margin-top: 42px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    height: calc(100% - 150px);
    background-color: #FFF;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 10px;
    padding: 16px 0;
    opacity: 1;
    transition: 0.5s;
    animation-name: opacity;
    animation-duration: 0.3s;
}
.infos.d-none{
    display: none;
    animation-name: opacity;
    animation-duration: 0.5s;
}
.infos > h3{
    color: #B8C3B9;
    letter-spacing: -0.24px;
    text-transform: uppercase;
    text-align: center;
    border-bottom: 1px solid #B8C3B9;
    margin: 0 24px;
    padding: 0 0 16px;
}
.infos-scroll{
    height: calc(100% - 30px);
    margin-top: auto !important;
    margin: 0;
    padding: 6px 24px;
    overflow-y: scroll;
}
.infos-content{
    position: relative;
    display: flex;
    margin: 16px 0;
    gap: 5px;
}
.infos-content img{
    width: 26px;
    height: 37px;
}
.infos-content div{
    display: block;
    margin-top: 5px;
    letter-spacing: var(--condensed);
}
.infos-content div p{
    margin-top: 5px;
    line-height: 1.5rem;
}
.d-none{
    display: none;
    transition: 0.5s;
}
.close{
    position: absolute;
    top: 10;
    cursor: pointer;
    margin-left: 20px;
}
.close i{
    font-size: 25px;
}
@media screen and (max-width:1450px) {
    .map-filter{
        width: 35vw;
    }
    .infos{
        width: 75%;
    }
}
@media screen and (max-width:1200px) {
    .map-filter{
        width: 40vw;
    }
    .infos{
        width: 75%;
    }
}
@media screen and (max-width:1100px) {
    .filtre .btn p{
        display: none;
    }
    .filtre{
        align-items: center;
    }
}

@media screen and (max-width:770px) {
    .map-filter{
        display: block;
        width:   100vw;
        top:     75%;
        margin:  0;
    }

    #map {
        height: 75vh;
    }

    .content > .filtre-infos{
        bottom: 60px;
        right: 60px;
    }
    .content > .filtre-infos img{
        width: 75px;
    }
    .infos{
        width: 90%;
    }
}



