.flex {
  display: flex;
}

.relative {
  position: relative;
}
.store-map-locator__input {
  max-width: 240px;
  border-radius: 0px !important;
}

.store-map-locator__button {
  border-radius: 0px !important;
  height: 42px !important;
  display: flex !important;
  align-items: center !important;
  padding: 0 20px !important;
  justify-content: center !important;
  gap:7px !important;
  color:white !important;
}

.store-map-locator__button:hover{
    background:#ec1535 !important;
    color:white !important;
}

.store-map-locator__input-button-wrap{
    display:flex;
}

@media (max-width: 480px) {
    .store-map-locator__input-button-wrap{
        flex-direction:column;
    }
}

.store_map_locator-input-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.store-map-locator__address-options-wrapper {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  z-index: 1;
  box-shadow: 0 5px 15px rgb(0 0 0 / 20%);
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #ccc;
  width: 99%;
  left: 0.5%;
  gap: 1px;
}

.store-map-locator__address-option {
  display: flex;
  color: #c60c29;
  padding: 6px 20px;
  padding-left: 25px;
  transition: background-color 100ms;
  cursor: pointer;
  position: relative;
  line-height: 1.3em;
  font-size: 14px;
  background: rgba(255, 255, 255, 1);
}

.store-map-locator__address-option:hover {
  background: rgba(255, 255, 255, 0.5);
}

.no-location-text{
  background:white;
}