.header-icon {
    font-size: large !important;
}

.two-line-text {
  display: -webkit-box;
  -webkit-line-clamp: 2;         /* Limit to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 3em;               /* Approx height for 2 lines */
  line-height: 1.5em;
}
.location-modal-title {
    font-size: 1rem !important;
}
.location-input{
    margin-left: 10px !important;
}
.location-label {
    margin-left: 20px !important;
}

.pac-container {
  z-index: 2000 !important; /* Higher than Bootstrap modal */
}
.dots-loader {
  display: flex;
}

.dots-loader span {
  width: 8px;
  height: 8px;
  margin: 0 4px;
  background-color: #007bff;
  border-radius: 50%;
  display: inline-block;
  animation: dots-bounce 1.4s infinite ease-in-out both;
}

.dots-loader span:nth-child(1) {
  animation-delay: -0.32s;
}
.dots-loader span:nth-child(2) {
  animation-delay: -0.16s;
}
.dots-loader span:nth-child(3) {
  animation-delay: 0;
}

@keyframes dots-bounce {
  0%, 80%, 100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}
.preparing {
  margin-top: -7px;
  margin-left: 20px;
}
.delivery-time {
  font-weight: 800;
    margin-bottom: 6px;
    font-size: 14px;
}
   

/* .location-wrap {
  max-width: 250px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.location-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
  vertical-align: middle;
} */