#map {
  height: 600px;  /* The height is 400 pixels */
  width: 100%;  /* The width is the width of the web page */
  max-width: 100%;
}


.list {
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
}

.list-item {
  background-color: #ccc;
  display: flex;  
  
  margin-bottom: 20px;  
  width: 100%;

}

@media only screen and (min-width: 768px) {
  .list-item {
    width: calc(50% - 2%);
    margin-right: 2%;
  }
}

@media only screen and (min-width: 1025px) {
  .list-item {
    width: calc(33% - 2%);
    margin-right: 2%;
  }
}



.list-content {
  width: 100%;
}

.location-list__list_title h2{
  font-size: 27px;
  margin-bottom: 0;
  padding-bottom: 3px;
  border-bottom: 3px solid #FEBD69;
}

.location-list__country_heading:first-child  {
  margin-top:  50px;
}

.location-list__heading{
  padding-top: 20px;
}

.location-list__heading h3{
  font-size: 22px;
  color: #06314F;
  margin-bottom: 8px;
}

.location-list__item{
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0,0,0,.125);
  /* border-radius: .25rem; */
  border-radius: 0;
}

.location-list__item-body{
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 20px;
  /* padding: 0.75rem 1.25rem 1.25rem 1.25rem; */
}

.location-list__item-body .contact_container,
.location-list__item-body .location-list__address {
	font-size: 18px;
}

.location-list__item-body .contact_secondary {
	border-top: 1px solid rgba(0,0,0,.125);
  padding-top: 20px;
}

.location-list__label-badge{
  display: inline-block;
  padding: .25em .4em;
  padding-right: 0.4em;
  padding-left: 0.4em;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;

  padding-right: .6em;
  padding-left: .6em;
  /* border-radius: 10rem; */
  border-radius: 0.25rem;
  color: #fff;
  background-color: #6c757d;

  text-transform: uppercase;

}

.location-list__item.list-item .location-list__label-badge--lang{
  background-color: #06314F;
}

.location-list__item.list-item .location-list__label--status-enrolling {
  background-color: #FEBD69;
  color: #0A2149;
}

.location-list__item.list-item .location-list__label--status-soon,
.location-list__item.list-item .location-list__label--status-hold {
  background-color: #0E78C4;
}

.location-list__item.list-item .location-list__email a{
  color: #0E78C4;
  font-size: 18px;
  font-weight: bold;
  text-decoration: underline;
}

.location-list__item.list-item .location-list__title{
  margin-bottom: 20px;
}

.location-list__item.list-item .location-list__title h4{
  font-size: 22px;
  color: #06314F;
  line-height: 28px;
}

.location-list__item.list-item .location-list__email{
  padding-top: 30px;
}

.map-popup .location-list__item.list-item{
  margin:0;
  width: 100%;
  border: none;
}

.map-popup .location-list__item.list-item{
  padding: 0;
}



.map-popup .location-list__item-body.list-content{
  padding: 10px;
}

.gm-style .gm-style-iw{
  font-size: 15px;
}

#address-locator-form h2.map-inputs-head{
  font-size: 20px;
}

.map-inputs{
  margin-bottom: 20px;
}

#address-locator-form .inputs{
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}

#address-locator-form .inputs:last-child {
  margin-right: 0;
}

#address-locator-form .inputs #spanish-capable {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

#address-locator-form .inputs #submit-map-search {
  height: 50px;
  line-height: 10px;
}

#address-locator-form .inputs #spanish-capable:checked ~ .checkmark {
  background-color: #2196F3;
}

#address-locator-form .inputs ~ .checkmark {
  background-color: #ccc;
}

#address-locator-form .inputs.spanish-capable {
  position: relative;
  margin-left: 5px;
}

#address-locator-form .inputs.spanish-capable label {
  cursor: pointer;
  margin-left: 30px;
  display: flex;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  border: 4px solid #aaaaaa;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
#address-locator-form .inputs #spanish-capable:checked ~ .checkmark:after {
  display: block;
}

.checkmark:after {
  left: 4px;
  top: 0;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

#address-locator-form .inputs #spanish-capable:after {
  display: none;
}

/* #address-locator-form .inputs #spanish-capable:before {
    position: absolute;
    display: block;
    width: 110%;
    height: 110%;
    border: 10px solid #aaaa;
    content: "";
    background: #aaaaaa;
    z-index: -1;
    transform: translate3d(-50%, -50%, 0px);
    top: 50%;
    left: 50%;
} */

@media (max-width:920px) {
  #address-locator-form .inputs.spanish-capable {
    margin-left: 0;
    margin-top: 15px;
  }
}

@media (max-width:767px) {
  #address-locator-form .inputs{
    display: block;
    margin-bottom: 20px;
  }
  #address-locator-form button#submit-map-search{
    display: block;
    width: 100%;
  }
}

#map-address-field {
  max-width: 285px;
  vertical-align: middle;    
}

#map-miles-field {
  max-width: 190px;
  vertical-align: middle;
}

@media (max-width:767px) {
  #map-miles-field{
    width: 100%;
    max-width: 100%;
    display: block;
  }
  #map-address-field{
    width: 100%;
    max-width: 100%;
    display: block;
  }
}

.map-legend{
  margin-bottom: 20px;
}

.map-legend-circle{
  height: 17px;
  width: 17px;
  border-radius: 50%;
  display: inline-block;
}

.map-legend-circle-item1{
  background: #ED9A2E;
}

.map-legend-circle-item2{
  background: #0E78C4;
}

.map-legend-text{
  font-size: 18px;
  margin-right: 10px;
}


/*
 * Test
 */

input[type="date"], input[type="email"], input[type="number"], input[type="password"], input[type="search"], input[type="tel"], input[type="text"], input[type="url"], select, textarea,
[type="button"], [type="submit"], button{
  border-radius: 0;
  height: 55px;
}

[type="button"], [type="submit"], button{
  border: 0;  
  color: #000;
}

input[type="date"], input[type="email"], input[type="number"], input[type="password"], input[type="search"], input[type="tel"], input[type="text"], input[type="url"], select, textarea{  
  border-color: #D9D9D6;
}

