@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
.store-locator-secA {
  padding: 30px 0 70px 0;
}
.store-locator-secA .flex-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 30px 0;
}
.store-locator-secA .flex-box h4 {
  font-weight: 500;
  font-size: 20px;
  color: black;
  font-family: "poppins";
}
.store-locator-secA .flex-box .search-group {
  background: rgba(255, 255, 255, 0.1019607843);
  border: 1px solid rgba(0, 0, 0, 0.2);
  line-height: 0;
  position: relative;
}
.store-locator-secA .flex-box .search-group input {
  padding: 10px 30px 10px 15px;
  width: 442px;
  font-weight: 400;
  font-size: 14px;
  color: var(--text);
  height: 100%;
  outline: none;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.store-locator-secA .flex-box .search-group img {
  width: 25px;
  filter: brightness(0) saturate(100%) invert(40%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(97%) contrast(91%);
  opacity: 0.5;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
.store-locator-secA .grid-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.store-locator-secA .grid-box .col {
  border: 1px solid #E6E6E6;
  transition: 0.5s ease;
  position: relative;
  padding: 30px;
}
.store-locator-secA .grid-box .col::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #FFF5F3 0%, #FFFFFF 50%, #FFF5F3 100%);
  z-index: -1;
  opacity: 0;
  transition: 0.5s ease;
}
.store-locator-secA .grid-box .col:hover {
  border: 1px solid #FFF5F3;
}
.store-locator-secA .grid-box .col:hover::before {
  opacity: 1;
}
.store-locator-secA .grid-box .col h3 {
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 25px;
}
.store-locator-secA .grid-box .col .inner-flex {
  display: flex;
  gap: 20px;
}
.store-locator-secA .grid-box .col .inner-flex:not(:last-child) {
  margin-bottom: 15px;
}
.store-locator-secA .grid-box .col .inner-flex figure {
  width: 35px;
  height: 35px;
}
.store-locator-secA .grid-box .col .inner-flex figure img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.store-locator-secA .grid-box .col .inner-flex a {
  font-weight: 400;
  font-size: 16px;
  color: var(--text);
  flex: 1;
  transition: 0.5s ease;
  line-height: 1.3;
}
.store-locator-secA .grid-box .col .inner-flex a:hover {
  color: var(--primary);
}/*# sourceMappingURL=store-locator.css.map */