.map-container {
    position: relative;
    width: 800px;
    height: 600px;
}

#map {
    width: 100%;
    height: 100%;
    outline: none;
}

.open #sidebar {
    position: absolute;
    right: 1rem;
    top: 1rem;
    width: 20%;
    max-height: 90%;
    overflow-y: auto;
    border-radius: 10px;
    box-shadow: 0 3px 14px rgba(0,0,0,0.4);
    padding: 19px;
    background: #fff;
    z-index: 100000;
}

#sidebar div {
    cursor: pointer;
}

#sidebar .close {
    position: absolute;
    right: 0;
    top: 0;
    margin-right: 15px;
    color: #c3c3c3;
    text-decoration: none;
    margin-top: 15px;
}

#sidebar h3 {
    margin-top: 0;
}

.leaflet-popup-content-wrapper img {
    max-width: 150px;
    height: auto;
}

.leaflet-popup-content {
    width: 150px;
}

@media all and (max-width: 768px){
    .leaflet-popup-content-wrapper img {
        max-width: 100px;
        height: auto;
    }

    .leaflet-popup-content {
        width: 100px;
    }

}