#distributors-map {
    height: 100%;
    min-height: 600px;
}
#distributors-map .infowindow .label {
    font-weight: bold;
}
#distributors-list {
    display:flex;
    flex-wrap: wrap;
}
#distributors-list > div {
    flex: 0 1 33.333%; 
    text-align: left; 
    box-sizing: border-box; 
    padding: 0px 10px 20px 10px; 
    transition: all 0.3s  ease-in-out;
    border-left:0px solid #ed2224;
}
#distributors-list > div:hover {
    background:#c3c3c333;
    transition: all 0.3s ease-in-out;
    border-left:3px solid #ed2224;
}
.country_select {
    margin-bottom:80px;
    text-align:center;
}
.country_select label {
    padding-bottom: 10px;
    display:block;
    color:#9d9595;
}
a.dealer_form, a.dealer_form:visited {
    background: #304F4F;
    display: block;
    margin: 80px auto 10px;
    padding: 15px 5px;
    width: 33.33%;
    text-align: center;
    border:1px solid #304F4F;
    border-radius: 6px;
    color:white;
    transition: all 0.3s ease-in-out;
}
a.dealer_form:hover {
    background: #ed2224;
    transition: all 0.3s ease-in-out;
    color:white;
    text-decoration:none;
    box-shadow: 3px 4px 2px #c3c3c3;
}
@media screen and (max-width: 600px) {
    #distributors-list > div {
        flex: 1 1 50%; /* Grow, shrink, and basis */
    }
    .dealer_form {
        width: 66.66%;
    } 
}