.stores-offline {
  text-align: center;
}

.stores-offline-title {
  font-size: 26px;
}

.radio-tile-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.radio-tile-group .input-container {
  position: relative;
  height: 80px;
  width: 100px;
  margin: 12px 6px;
}

@media (max-width: 991px) {
  .radio-tile-group {
    justify-content: space-around;
  }
  .radio-tile-group .input-container {
    position: relative;
    height: 74px !important;
    width: 46% !important;
    margin: 12px 4px;
  }
  #enter-delivery-address-modal .modal-body {
    padding-bottom: 0;
  }
  #enter-delivery-address-modal .modal-footer {
    padding-top: 0;
  }
  #enter-delivery-address-modal .modal-footer button {
    margin-top: 12px;
  }
}

#enter-delivery-address-modal .inputs-address-form{
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}


.radio-tile-group .input-container .radio-button {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  margin: 0;
  cursor: pointer;
}
.radio-tile-group .input-container .radio-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border: 2px solid var(--secondary);
  border-radius: 5px;
  padding: 1rem;
  transition: transform 300ms ease;
}
.radio-tile-group .input-container .icon svg {
  fill: var(--secondary);
  width: 3rem;
  height: 3rem;
}
.radio-tile-group .input-container .radio-tile-label {
  text-align: center;
  /* font-size: 0.75rem; */
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--secondary);
  margin-top: 4px;
}
.radio-tile-group .input-container .radio-button:checked + .radio-tile {
  background-color: var(--secondary);
  border: 2px solid var(--secondary);
  color: white;
  transform: scale(1.1, 1.1);
}
.radio-tile-group .input-container .radio-button:checked + .radio-tile .icon svg {
  fill: white;
  background-color: var(--secondary);
}
.radio-tile-group .input-container .radio-button:checked + .radio-tile .radio-tile-label {
  color: white;
  background-color: var(--secondary);
}

.radio-tile-group .radio-tile i {
  color: var(--secondary);
}
.radio-tile-group .input-container .radio-button:checked + .radio-tile i {
  color: white;
}

#selStore .store-online {
  background-color: rgba(2, 156, 212, 0.25);
}
#selStore .store-offline {
  background-color: rgba(205, 32, 40, 0.1);
}