.territories_map{
    position: relative;
    margin-bottom: 50px;
}
.territories_map label{
    display: block;
    text-align: center;
    margin-bottom: 15px;
}
.territories_map .state-info {
    margin-top: 10px;
    margin-bottom: 30px;
}
.territories_map .state-info .state-name {
    color: #007ea8;
    text-transform: uppercase;
}
.territories_map ul{
    margin: 0 !important;
}
.territories_map ul li{
    list-style: none;
    display: block;
}
.territories_map ul li span:before{
    display: inline-block;
    content: '';
    width: 11px;
    height: 11px;
    margin-right: 5px;
}
.territories_map ul li .locations-yes{
    color: #003ca7;
}
.territories_map ul li .locations-yes:before{
    background-color: #003ca7;
}
.territories_map ul li .locations-no{
    color: #000000;
}
.territories_map ul li .locations-no:before{
    background-color: #000000;
}
.territories_map ul li .type-new{
    color: #007ea8;
}
.territories_map ul li .type-new:before{
    background-color: #007ea8;
    border-radius: 50%;
}
.territories_map ul li .type-resale{
    color: #898d8e;
}
.territories_map ul li .type-resale:before{
    background-color: #898d8e;
    border-radius: 50%;
}

#states path:hover,
#states path:focus{
    fill: #bfcee9;
}

#map-tip {
    position: absolute;
    display: none;
    background: white;
    border: 1px solid #898d8e;
    width: 250px;
    height: auto;
    padding: 15px 10px;
    z-index: 2;
    color: #75757a;
}
#map-tip .state-name {
    color: #007ea8;
    text-transform: uppercase;
}

@media only screen and (max-width: 768px){
    .territories_map .column{
        padding-top: 0px;
        padding-bottom: 0px;
    }
    #mapwrapper{
        margin-top: 30px;
    }
    #map-tip {
        display: none !important;
    }
}