/***************************************************
** STYLES FOR WIDGET
***************************************************/
.location-widget {
  background: #fff;
  padding-top: 2.5em;
  padding-bottom: 2.5em;
}
.location-widget__title {
  font-size: 2.3rem;
  font-weight: bold;
  color: #305992;
  display: block;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .location-widget__title {
    font-size: 1.8rem;
  }
}
.location-widget__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
}

.single-location-link {
  width: 100%;
  padding: 10px;
}
@media screen and (min-width: 600px) {
  .single-location-link {
    width: 50%;
  }
}
@media screen and (min-width: 960px) {
  .single-location-link {
    width: 33.3333%;
  }
}
.single-location-link__inner {
  display: block;
  color: #004E97;
  padding: .5rem 1.5rem .5rem 0%;
  text-transform: uppercase;
  margin-bottom: 2px;
  transition: .5s;
  position: relative;
  border-bottom: solid 1px rgba(0, 78, 151, 0.349);
  font-weight: bold;
  text-decoration: none;
  font-size: 1em;
}
.single-location-link__inner:before {
  content: '';
  position: absolute;
  width: 0;
  left: 0;
  height: 1px;
  background-color: #B4252D;
  transition: 0.5s ease;
  top: 100%;
}
.single-location-link__inner:after {
  content: '\f105';
  position: absolute;
  right: 2%;
  font-family: 'Font Awesome 5 Free';
  font-size: 1.2em;
  top: 0.2em;
}
.single-location-link__inner:hover {
  color: #343434;
  padding-left: 3%;
  text-decoration: none;
}
.single-location-link__inner:hover:before {
  width: 100%;
}

.location-widget-spanish .wrapper {
  max-width: 1600px;
}
.location-widget-spanish .single-location-link__inner {
  font-size: 15px;
  padding-top: 4px;
}
