#container-list-results {
    overflow-y: auto;
}
#container-list-results::-webkit-scrollbar {
    display: none;
}
#informations-results {
    width: 100%;
    height: 135px;
}
#informations-results #results-navigation-phone {
    display: none;
}
#number-results {
    font-size: 30px;
    font-family: 'Migra bold';
}
#container-list-results {
    max-width: 350px;
    height: calc(100vh - 120px);
}
#results {
    margin: 0 60px;
    overflow-x: hidden;
    overflow-y: auto;
}
#results::-webkit-scrollbar {
    width: 0;
  }
#results .result {
    display: none;
    width: calc(50% - 25px);
    margin-bottom: 30px;
}
.result .picture {
    width: 100%;
    height: 14.5vw;
    margin-bottom: 30px;
    background-color: gray;
    overflow: hidden;
}
.result .picture a {
    display: block;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    transition: transform 0.3s ease;
} 
.result .picture:hover a {
    transform: scale(1.1);
}
.result .remove {
    position: absolute;
    top: 20px;
    right: -20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: #222;
    border-radius: 100%;
    cursor: pointer;
}
#results .result .place {
    margin-bottom: 2px;
    font-size: 22px;
    font-family: 'Migra semibold';
}
#results .result .type_activity {
    margin-bottom: 5px;
    font-size: 15px;
}
#results .result .city {
    font-size: 11px;
    color: darkgray;
    text-transform: uppercase;
}
#results .result h4,
#results .result p {
    margin-bottom: 5px;
}
.result {
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
}


#filter-results {
    height: calc(100% - 135px);
    padding: 0 60px;
}
#filter-results > div {
    padding: 20px 0;
    border-top: solid 1px #DDDDDD;
}
#filter-results > div > div > div {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
#filter-results p {
    position: relative;
    font-size: 20px;
    font-family: 'Migra bold';
    cursor: pointer;
}
#filter-results input {
    display: none;
}
#filter-results label {
    margin: 0;
    cursor: pointer;
}
#filter-results p .arrow {
    position: absolute;
    top: 4px;
    right: 0;
    width: 8px;
    fill: white;
    transform: rotate(0deg);
    transition: all .4s ease;
}
#filter-results p.hide .arrow {
    transform: rotate(180deg);
}
#filter-results .custom-checkbox {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 15px;
    border: 1px solid #DDDDDD;
    cursor: pointer;
    transition: all .3s ease;
}
#filter-results .custom-checkbox::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    background-color: transparent;
    transition: all .4s ease;
}
#filter-results input:checked + .custom-checkbox::after {
    background-color: #222222;
}


#map {
    position: relative;
    background-color: lightgray;
}
#map .result {
    position: absolute;
    bottom: 50px;
    left: calc(-100px + 14px);
    display: block;
    width: 200px;
    padding: 10px;
    background-color: white;
    transform: scale(0);
    opacity: 0;
    transition: all .2s ease;
}
#map .result.pop {
    transform: scale(1);
    opacity: 1;
}
#map .result .picture {
    width: 100%;
    height: 170px;
    margin-bottom: 20px;
}
#map .result .picture a {
    display: block;
    width: 100%;
    height: 170px;
    background-position: center;
    background-size: cover;
}
#map .result .place {
    margin-bottom: 2px;
    font-size: 22px;
    font-family: 'Migra semibold';
}
#map .result .type_activity {
    font-family: 'Maison Neue';
    margin-bottom: 5px;
    font-size: 15px;
}
#map .result .city {
    font-size: 11px;
    color: darkgray;
    text-transform: uppercase;
}



@media screen and (max-width: 1024px) {
    header.results .new-select {
        font-size: 20px;
    }
    #informations-results {
        height: 115px;
    }
    #number-results {
        padding: 50px 0 30px;
        line-height: 35px;
    }
    #results .result {
        margin-bottom: 20px;
    }
    #results .result .picture {
        margin-bottom: 33px;
    }
    #results .result .place {
        margin-bottom: 4px;
        line-height: 22px;
    }
}

@media screen and (max-width: 414px) {
    #page {
        overflow: hidden;
    }
    #show-form-on-phone {
        display: none;
    }
    #container-list-results {
        max-width: none;
        overflow-y: visible;
    }
    #number-results,
    #results-navigation-phone {
        padding: 30px 0;
    }
    #results {
        margin: 0 30px;
    }
    #informations-results {
        height: inherit;
    }
    #filter-results {
        position: absolute;
        width: 100%;
        height: calc(100vh - 215px);
        left: -100vw;
        padding: 0;
        overflow-y: auto;
        transition: all .2s ease;
    }
    #filter-results.active {
        left: 0;
    }
    #filter-results > div > * {
        margin-right: 30px;
        margin-left: 30px;
    }
  

    #map {
        position: absolute;
        bottom: 0;
        left: 101vw;
        height: calc(100vh - 215px);
        z-index: 10;
        transition: all .2s ease;
    }
    #map.active {
        left: 0;
    }

    #informations-results #results-navigation-phone {
        display: block;
    }
    #informations-results #results-navigation-phone button,
    #informations-results #results-navigation-phone button:focus {
        padding: 0 0 0 15px;
        box-shadow: none;
    }
    #informations-results #results-navigation-phone button svg {
        font-size: 20px;
    }
}