.store_grid {
  margin: 20px 0;

}

.store_filter {
  position: relative;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}



.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(19%, 18%));
  column-gap: 13px;
  row-gap: 20px;
}



.filter_title {
  font-size: 16px;
}


@media(max-width: 768px) {
  .grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .store_filter {
    position: relative;
    padding: 10px;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    margin-bottom: 10px;
  }

  .filter_title {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .filter_section {
    padding: 0 10px;
    cursor: pointer;
  }
}


.loader svg {
  width: 30px;
  height: 30px;

}

.loader svg circle {
  fill: var(--teritary-text);
}


.custonBTN {
  margin: 0 auto;
  display: block;
  font-size: 15px;
  font-weight: 300;
}

.emptyClass {

  height: 20vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

}

.exist_error {
  height: auto;
}

.heading {
  margin-top: 20px;
}


.section {
  padding: 5px;
}

@media(max-width: 320px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

.btnSection {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  align-items: center;
}

.btnSection_btn {
  min-width: 100px;
}