.dloc-filter form {
    display: flex;
    align-items: center;
}

.dloc-field {
    display: flex;
    align-items: center;
}

button[name="dloc_search"] {
    margin-left: auto;
    background-color: #8F6D4F;
    color: white;
    border: none;
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
}

.dloc-field-search label {width: 100%;}

.dloc-field.dloc-field-radius {
    margin-left: 50px;
}

.dloc-field label {
    margin-right: 20px;
}

.dloc-field-search input {
    min-width: 350px;
}

.dloc {
    margin-top: 40px;
}

.dloc-map {
    height: 500px;
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}

.dloc-brand-filter {
    width: 300px;
    background-color: #29403A;
    color: white;
    padding: 25px 40px;
}

#dloc-google-map {
    width: calc(100% - 300px);
    height: 100%;
}

.dloc-brand-filter h2 {
    color: white !important;
}

.dloc-brand-filter .dloc-field {
    flex-direction: column;
    align-items: flex-start;
    font-size: 20px;
}

.dloc-reset {
    margin-top: 30px;
    background-color: #8F6D4F;
    color: white;
    border: none;
    padding: 14px 25px;
    font-size: 16px;
    cursor: pointer;
}
.dloc-reset:disabled {
    background-color: #192724;
}

.dloc-brand-filter .dloc-field label {
    margin-top: 10px;
}

.dloc-dealer {
    border-bottom: 1px solid #ccc;
    display: flex;
    flex-wrap: wrap;
    max-width: 1130px;
    margin-left: auto;
    margin-right: auto;
    padding: 30px 15px;
    transition: all 0.3s;
    cursor: pointer;
}
.dloc-dealer:hover {
    background-color: #eee;
}

.dloc-dealer-header {
    width: 35%;
}

.dloc-dealer-brands {
    width: 65%;
    display: flex;
    align-items: center;
}

.dloc-dealer-header h3 {
    margin-bottom: 0;
    margin-top: 0;
}

.dloc-dealer-address {
    font-size: 14px;
}

.dloc-dealer-brand {
    margin-left: 12px;
    margin-right: 12px;
    background-color: #29403A;
    color: white;
    padding: 10px 30px;
}

.dloc-dealer:last-child {
    border-bottom: 0;
}

.switch {
    position: relative;
    display: inline-block;
    width: 45px;
    height: 22px;
	min-width: 45px;
  }
  
  .switch input { 
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255,255,255,0.4);
    -webkit-transition: .4s;
    transition: .4s;
    border: 1px solid white;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 15px;
    width: 15px;
    left: 4px;
    bottom: 3px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  input:checked + .slider {
    background-color: #8F6D4F;
  }
  
  input:focus + .slider {
    box-shadow: 0 0 1px #8F6D4F;
  }
  
  input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(20px);
  }
  
  .slider.round {
    border-radius: 34px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  }
  
  .dloc-brand-filter .dloc-field label {
      display: flex;
      align-items: center;
  }
  
  .label-text {
      margin-left: 15px;
      text-transform: uppercase;
  }
  .dloc-dealers {
      margin-top: 60px;
      position: relative;
  }
.dloc.loading #dloc-google-map:before,
.dloc.loading .dloc-dealers:before {
    content: '';
    position: absolute;
    background-image: url(/wp-content/plugins/dealer-locator/assets/images/ajax-loader.gif);
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    z-index: 99999;
    background-repeat: no-repeat;
    background-position: center;
    background-color: rgba(255,255,255,0.7);
}

  @media(max-width: 1000px) {
    .dloc-filter form {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .dloc-field.dloc-field-radius {
        margin-left: 0;
    }
    
    .dloc-filter .dloc-field {
        margin-top: 10px;
    }
    
    button[name="dloc_search"] {
        margin-left: 0;
        margin-top: 20px;
    }
    
    .dloc-map {
        flex-direction: column;
        flex-wrap: nowrap;
        height: auto;
    }
    
    .dloc-brand-filter {
        width: 100%;
        text-align: center;
    }
    .dloc-brand-filter .dloc-field {
        align-items: center;
    }
    #dloc-google-map {
        height: 500px;
        width: 100%;
    }
  }

  @media(max-width: 768px) {
    .dloc-dealer {
        flex-direction: column;
        text-align: center;
        flex-wrap: nowrap;
    }
    
    .dloc-dealer-header {
        width: 100%;
    }
    
    .dloc-dealer-brands {
        width: 100%;
        text-align: center;
        justify-content: center;
        margin-top: 12px;
    }
    
    .dloc-dealer-brand {
        margin-left: 5px;
        margin-right: 5px;
    }
  }