
.mapSuperContainer{
    border: 1px solid #eee;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 3rem;
}
.mapSuperContainer > h2{
    background-color: var(--secondary);
    color:#fff;
    display:block;
    padding:10px;
    margin:0;
    text-align: left;
}
.mapListContainer{

}
.mapList{
    max-height:400px;
    overflow-y: scroll;
    list-style: none;
    margin:0;
    padding:0;
    width:100%;
    float:left;
}
.mapList li{
    padding: 15px;
    border-bottom:1px solid #eee;
    margin:0;
}
.mapList p,
.mapList h3{
    padding:0;
    margin:0;
    font-size: 14px;
}
.mapList h3{
    font-size: 14px;
    color:var(--secondary);
}
.mapContainer{
    width:100%;
    height:400px;
    max-height:400px;
}
.mapList {
    counter-reset: loc-cntr;
}
.mapList > li {
    counter-increment: loc-cntr;
    position: relative;
    padding-left: 48px;
    background: #efefef;
    margin-top: 1px;
    margin-left: 0;
}

.mapList > li:last-of-type{
    border-bottom:0px solid #eee;
}
.mapList > li:before {
    position: absolute;
    top: 26px;
    left: 6px;
    content: ' ';
    width: 34px;
    height: 32px;
    background-size: contain;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-image: var(--map-marker);
    filter: var(--color-to-secondary);
}
.mapList > li:after {
    position: absolute;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    top: 30px;
    left: 15px;
    content: counter(loc-cntr);
    width: 16px;
    height: 16px;
    background: #efefef;
    border-radius: 50%;
    color: var(--secondary);
}


/* GMAPS FIXES */
.gm-control-active>img {
    width: 14px!important;
    height: 14px!important;
}
.gm-style-mtc * {
    font-size: 14px!important;
}
.gmnoprint .gm-control-active {
    left: 12px!important;
    width: 14px!important;
    height: 14px!important;
    min-height: 40px!important;
}
@media only screen and (min-width: 48em) {
    .mapContainer{
        width:50%;
    }

    .mapList{
        width:50%;
    }
}