#storesTitle{
    text-align: center;
    font-weight: bold;
    color: #4d5550;
    margin-bottom: 30px;
    color: black;
    letter-spacing: 2px;
    font-size: 19px;
    margin-bottom: 50px;
    margin-top: 56px;
    color: #123457;
    text-transform: uppercase;
    font-family: 'Lato-Black', sans-serif;
}
#mapFiltersDiv{
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}
.filterDiv{
    position: relative;
    float: left;
    height: auto;
    overflow: hidden;
    border-bottom: 1px solid black;
    margin-right: 30px;
}
.filterSelect{
    position: relative;
    float: left;
    width: 190px;
    background-color: transparent;
    border: none;
    font-family: 'Lato-Light', sans-serif;
    font-size: 14px;
    margin-top: 5px;
    cursor: pointer;
    color: #162554;
    border-radius: 0px;
    font-size: 14px;
    padding-bottom: 2px;
}
.filterArrow{
    position: absolute;
    right: 10px;
    color: #12225a;
    font-size: 13px;
    top: 5px;
    pointer-events: none;
}
#openFilters{
    position: relative;
    float: right;
    width: 55px;
    background-color: transparent;
    border: none;
    font-family: 'Lato-Bold', sans-serif;
    text-align: center;
    color: #13335a;
    text-transform: uppercase;
    border-bottom: 1px solid black;
    padding-bottom: 2px;
    margin-top: 8px;
    cursor:pointer;
}
#mapDiv{
    position:relative;
    width:100%;
    height:500px;
    overflow:hidden;
    margin-top:20px;
    margin-bottom:20px;
}
store{
    display:block;
    position:relative;
    width:100%;
    height:auto;
    overflow:hidden;
    font-family:'Lato-Bold', sans-serif;
    color:#162554;
    font-size:14px;
    margin-bottom:10px;
}
storeInfo{
    display:block;
    position:relative;
    width:100%;
    height:auto;
    overflow:hidden;
    font-family:'Lato-Light', sans-serif;
    color:#162554;
    font-size:13px;
    margin-bottom:10px;
}
.storeTitle{
    position: relative;
    margin-top: 14px;
}
.cityDiv{
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    color: #162554;
}
.cityName{
    position: relative;
    width: calc(100% - 15px);
    height: 40px;
    font-size: 15px;
    font-family: 'Lato-Bold', sans-serif;
    color: #162554;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 40px;
    padding-left: 15px;
    cursor:pointer;
    background-color: rgba(22, 37, 84, 0.1);
}
.storesDiv{
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 10px;
    height: 0px;
    padding-bottom: 0px;
    border: none;
}
.open + .storesDiv{
    padding-bottom: 20px;
    height:auto;
}
.storeDiv{
    position: relative;
    float: left;
    width: calc((100%/ 3) - 16px);
    margin-left: 8px;
    margin-right: 8px;
    min-height: 120px;
    margin-top:10px;
}
.storeName{
    position: relative;
    width: 100%;
    text-transform: uppercase;
    font-family: 'Lato-Bold', sans-serif;
    font-size: 13px;
}
.storeInfo{
    position: relative;
    width: 100%;
    font-size: 13px;
    font-family: 'Lato-Light', sans-serif;
    margin-top: 10px;
}
.storeLocationDiv{
    position:relative;
    height:15px;
    width:100%;
    margin-top: 10px;
    cursor:pointer;
}
.storeLocationIcon{
    position: relative;
    float: left;
    height: 15px;
}
.storeLocation{
    position: relative;
    float: left;
    font-size: 11px;
    margin-top: 2px;
    margin-left: 6px;
    font-family: 'Lato-Bold', sans-serif;
}
.cityNameArrow{
    position: relative;
    float: right;
    display: block;
    margin-right: 30px;
    margin-top: 12px;
    height: 10px;
    line-height: 10px;
    transition: transform .1s ease-out;
    -moz-transition: -moz-transform .1s ease-out;
    -webkit-transition: -webkit-transform .1s ease-out;
    -o-transition: -o-transform .1s ease-out;
    -ms-transition: -ms-transform .1s ease-out;
}

@media screen and (max-width:768px){
    #mapDiv{
        height:90vw;
    }
    .storeDiv{
        width:calc(50% - 20px);
        margin-left:10px;
        margin-right:10px;
    }
}