

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}
main{
    display: grid;
    grid-template-columns: 350px 1fr;
    

}

#map{
    height: 100vh;

}
.storeList{
    height: 100vh;
    overflow: auto;
    background-color: whitesmoke;
}
.storeList .heading{
    background-color: #ff6900;
    color: white;
    
}
.storeList .heading h2{
    padding: 1rem;
}

::-webkit-scrollbar{
    width: 3px;
    height: 3px;
    border-left: 0;
    background-color: rgba(0,0,0,.1);
}

::-webkit-scrollbar-thumb{
    background-color: #ff6900;
    border-radius: 0;
}

.storeList ul.list{
    padding: 0 1rem;
    list-style-type: none;
}

.storeList .shopItem{
    margin: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,.1);
    padding-bottom: 1rem;
}

.storeList li:last-child .shopItem{
   border: none;
}

.shopItem a{
    color: #ff6900;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
}

.leaflet-popup-content-wrapper{
    padding: 0;
    overflow: hidden;
}
.leaflet-popup-content-wrapper .leaflet-popup-content{
    margin: 0;

}
.leaflet-popup-content-wrapper h4{
    padding: 1rem;
    color: white;
    background-color: #ff6900;
    font-size: 16px;
}

.leaflet-popup-content-wrapper p{
    padding: 0 16px;
    font-size: 14px;
    margin-bottom: 14px;
}

.leaflet-popup-content-wrapper .leaflet-popup-content .phoneNumber{
    padding: 16px;
    padding-top: 0;
}

.leaflet-popup-content-wrapper .leaflet-popup-content .phoneNumber a{
    color: #ff6900;
    font-size: 14px;
}