/* Links */
/* Footer top region */
/* Footer middle region */
/* Footer bottom region */
/* Submit button */
/* Button variant 1 */
/* Button variant 1 - alternative */
/* Button variant 2 */
/* Button variant 2 - alternative*/
/* Box shadow colors */
/* Container colors */
/* Search colors */
/* Menu colors */
/** General **/
/** Mobile **/
/* Navigation colors */
/* @font-face {
  font-display: block;
  font-family: Poppins;
  src: url(../assets/fonts/Poppins/Poppins-Thin.ttf);
  font-weight: 200;
}

@font-face {
  font-display: block;
  font-family: Poppins;
  src: url(../assets/fonts/Poppins/Poppins-Light.ttf);
  font-weight: 300;
}

@font-face {
  font-display: block;
  font-family: Poppins;
  src: url(../assets/fonts/Poppins/Poppins-Regular.ttf);
  font-weight: 400;
}

@font-face {
  font-display: block;
  font-family: Poppins;
  src: url(../assets/fonts/Poppins/Poppins-Medium.ttf);
  font-weight: 500;
}

@font-face {
  font-display: block;
  font-family: Poppins;
  src: url(../assets/fonts/Poppins/Poppins-SemiBold.ttf);
  font-weight: 600;
}

@font-face {
  font-display: block;
  font-family: Poppins;
  src: url(../assets/fonts/Poppins/Poppins-Bold.ttf);
  font-weight: 700;
}

@font-face {
  font-display: block;
  font-family: Poppins;
  src: url(../assets/fonts/Poppins/Poppins-Black.ttf);
  font-weight: 900;
} */
@keyframes load {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}
.layout-item-location-widget {
  width: 100%;
  background-color: #223B73;
  padding: 40px;
  margin-bottom: 10vh;
}
.layout-item-location-widget--title {
  display: flex;
  font-family: "Poppins";
  font-size: 25px;
  font-weight: 600;
  line-height: 37.5px;
  text-align: left;
  color: white;
  margin-bottom: 20px;
}
.layout-item-location-widget__container {
  max-width: 880px;
  margin: auto;
}
.layout-item-location-widget__container #location-widget {
  position: relative;
}
.layout-item-location-widget__container .search-input {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0 20px;
  height: 48px;
  background-color: white;
  border: 1px solid #ced4da;
}
.layout-item-location-widget__container .search-input input {
  margin-left: 10px;
  width: 100%;
  border: none;
  height: 46px;
  font-family: "Poppins";
  color: #231B73;
  line-height: 25.5px;
  font-size: 17px;
  font-weight: 500;
}
.layout-item-location-widget__container .search-input input:focus {
  outline: none;
}
.layout-item-location-widget__container .search-input input::-moz-placeholder {
  font-family: "Poppins";
  color: #231B73;
  font-size: 17px;
  line-height: 25.5px;
  font-weight: 500;
}
.layout-item-location-widget__container .search-input input::placeholder {
  font-family: "Poppins";
  color: #231B73;
  font-size: 17px;
  line-height: 25.5px;
  font-weight: 500;
}

.no-results {
  text-align: center;
  font-size: 20px;
}

.alamo-locations-all .page-title {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 50px;
}

/* Limit to 3 per row using existing view classes */
.locations-view {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.locations-view .more-link {
  display: none;
}

.locations-view .views-row {
  flex: 0 1 calc(33.333% - 30px);
  max-width: 380px;
}

@media (min-width: 1600px) {
  .locations-view {
    /* 3 * 380px cards + 2 * 30px gaps = 1200px */
    max-width: 1200px;
    /* 1200px */
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 1024px) {
  .locations-view .views-row {
    flex-basis: calc(50% - 30px);
  }
}
@media (max-width: 640px) {
  .locations-view .views-row {
    flex-basis: 100%;
  }
}
