.iti {
    width: 100%;
}

.error{
    color:#FF2027 ;
}


.loader {
  border: 4px solid #f3f3f3;
  border-top: 4px solid red;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 1s linear infinite;
  margin: 10px auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.footer-item a.active {
  color: #FF2027 !important; 
}


#editModal .search-box {
  max-width: 100%;
}


.pac-container {
           z-index: 999999999999999999
}
.open-search-modal {
  cursor: pointer;
}


.custom-suggestions {
    position: absolute;
    background: white;
    border: 1px solid #ddd;
    z-index: 9999;
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  
  }
  .suggestion-item {
    padding: 10px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
  }
  .suggestion-item:hover {
    background-color: #f1f1f1;
  }
  .suggestion-type {
    display: inline-block;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
    color: white;
    margin-top: 5px;
  }
  .suggestion-type.Airport { background-color: #f97316; }
  .suggestion-type.City { background-color: #2563eb; }
  .suggestion-type.District { background-color: #16a34a; }
  .suggestion-type.Place { background-color: #6b7280; }
  body.custom-autocomplete-active .pac-container {
  display: none !important;
}

.seaction-seacrh.fullWidth {
    width: 100%;
}

.hidden-options {
  display: none;
}

 .show-more {
    font-size: 14px;
    color: #007bff;
    cursor: pointer;
    margin-top: 5px;
  }

.filter-container {
    width: 100%;
    max-width: 500px;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
}

.range-slider-wrapper {
    width: 100%;
}

.range-value {
    font-size: 1rem;
    color: #333;
    margin-bottom:6px;
}

/* --- The Slider Wrapper --- */
.range-slider {
    position: relative;
    height: 20px; /* Provides vertical space for thumbs */
    display: flex;
    align-items: center;
}

.slider-track,
.slider-progress {
    position: absolute;
    height: 6px;
    border-radius: 3px;
    width: 100%;
}

.slider-track {
    background-color: #e9ecef;
    z-index: 1;
}

.slider-progress {
    background-color: #ff3838; /* The active red color */
    z-index: 2;
}

/* --- Styling the Input Range Elements --- */
.form-range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px; /* Match track height */
    background: transparent;
    position: absolute;
    /* This allows clicks to "pass through" to the track below */
    pointer-events: none;
    z-index: 3;
}
/* Hide the default track */
.form-range::-webkit-slider-runnable-track { background: transparent; border: none; }
.form-range::-moz-range-track { background: transparent; border: none; }


/* Styling the thumb (handle) */
.form-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    height: 20px;
    width: 20px;
    background-color: #ff3838;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    /* Re-enable pointer events only for the thumb */
    pointer-events: auto; 
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    margin-top: -7px; /* Vertically center thumb on the track */
}

.form-range::-moz-range-thumb {
    -moz-appearance: none;
    appearance: none;
    height: 20px;
    width: 20px;
    background-color: #ff3838;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    pointer-events: auto;
}


.gaoe span img{ margin-right:8px;}
button#filterApplyBtn {
    background: red;
    color: #fff;
}
.btn-deal{border:1px solid #dc3545;}
.btn-deal:hover{ background:none; border:1px solid #dc3545;color:#dc3545;}
a.btn-deal:hover{ background:none; border:1px solid #dc3545; }
a:hover {
    color: #f84c5c;
}
a.make-review-btn {
    color: #fff;
}

 .review-modal-content {
      background-color: #ffffff;
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      width: 100%;
      max-width: 500px;
      overflow: hidden;
      border: 1px solid #e5e7eb;
  }

  /* --- Header --- */
  .review-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 1.5rem;
      border-bottom: 1px solid #e5e7eb;
  }

  .review-header h2 {
      margin: 0;
      font-size: 1.25rem;
      font-weight: 600;
      color: #111827;
  }

  .close-btn {
      background: none;
      border: none;
      font-size: 1.75rem;
      color: #6b7280;
      cursor: pointer;
      padding: 0;
      line-height: 1;
      transition: color 0.2s ease;
  }

  .close-btn:hover {
      color: #111827;
  }

  /* --- Form Body --- */
  .review-body {
      padding: 1.5rem;
  }

  .form-group {
      margin-bottom: 1.5rem;
  }

  .form-group label {
      display: block;
      font-size: 0.875rem;
      font-weight: 500;
      color: #374151;
      margin-bottom: 0.5rem;
  }

  /* --- Interactive Star Rating --- */
  .star-rating {
      display: flex;
      gap: 0.5rem;
  }

  .star {
      font-size: 2rem;
      color: #d1d5db; /* Gray for unselected stars */
      cursor: pointer;
      transition: color 0.2s ease, transform 0.2s ease;
  }

  .star:hover {
      transform: scale(1.1);
  }

  .star.hover,
  .star.selected {
      color: #f59e0b; /* Gold/Yellow for selected/hovered stars */
  }

  /* --- Textarea & Submit Button --- */
  .review-textarea {
      width: 100%;
      padding: 0.75rem 1rem;
      border: 1px solid #d1d5db;
      border-radius: 8px;
      font-family: inherit;
      font-size: 1rem;
      min-height: 120px;
      resize: vertical;
      box-sizing: border-box; /* Important for correct width */
  }

  .review-textarea:focus {
      outline: none;
      border-color: #ef4444;
      box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2);
  }

  .form-actions {
      display: flex;
      justify-content: flex-end; /* Aligns button to the right */
      margin-top: 1.5rem;
  }

  .submit-btn {
      background-color: #ef4444; /* Red color from the image */
      color: #ffffff;
      border: none;
      padding: 0.75rem 1.5rem;
      border-radius: 8px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: background-color 0.2s ease;
  }

  .submit-btn:hover {
      background-color: #dc2626; /* Darker red on hover */
  }


