/* Container for the progress bar */
.progress-bar {
  display: flex;
  align-items: center;
  justify-content: center; 
  width: 100%; 
  max-width: 525px;
  margin: 20px auto;
}

/* Each progress step */
.progress-step {
  display: flex;
  align-items: center;
  position: relative;
  width: 100px;
}

/* Circle for each step */
.circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #e0e0e0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

/* Active circle styling */
.circle.active {
  background: var(--primary_color);
}

/* Connecting line between steps */
.line {
  height: 4px;
  background: #e0e0e0;
  margin-left: 5px;
  margin-right: 5px;
  transition: background-color 0.3s ease;
}

/* Active line styling */
.line.active {
  background: var(--primary_color);
}

@media (max-width: 600px) {
  .progress-bar{
    max-width: 230px;
    margin-left: 25px;
  }
  /* .line{
    width: 100%;
  } */
  .circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #e0e0e0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 400;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
}
@media (max-width: 400px) {
  .progress-bar{
    max-width: 150px;
    margin-left: 15px;
  }
  /* .line{
    width: 80%;
  } */
  .circle {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #e0e0e0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 400;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
}
/* CSS variables. */
:root {
	--PhoneInput-color--focus: #03b2cb;
	--PhoneInputInternationalIconPhone-opacity: 0.8;
	--PhoneInputInternationalIconGlobe-opacity: 0.65;
	--PhoneInputCountrySelect-marginRight: 0.35em;
	--PhoneInputCountrySelectArrow-width: 0.3em;
	--PhoneInputCountrySelectArrow-marginLeft: var(--PhoneInputCountrySelect-marginRight);
	--PhoneInputCountrySelectArrow-borderWidth: 1px;
	--PhoneInputCountrySelectArrow-opacity: 0.45;
	--PhoneInputCountrySelectArrow-color: currentColor;
	--PhoneInputCountrySelectArrow-color--focus: var(--PhoneInput-color--focus);
	--PhoneInputCountrySelectArrow-transform: rotate(45deg);
	--PhoneInputCountryFlag-aspectRatio: 1.5;
	--PhoneInputCountryFlag-height: 1em;
	--PhoneInputCountryFlag-borderWidth: 1px;
	--PhoneInputCountryFlag-borderColor: rgba(0,0,0,0.5);
	--PhoneInputCountryFlag-borderColor--focus: var(--PhoneInput-color--focus);
	--PhoneInputCountryFlag-backgroundColor--loading: rgba(0,0,0,0.1);
}

.PhoneInput {
	/* This is done to stretch the contents of this component. */
	display: flex;
	align-items: center;
}

.PhoneInputInput {
	/* The phone number input stretches to fill all empty space */
	flex: 1;
	/* The phone number input should shrink
	   to make room for the extension input */
	min-width: 0;
}

.PhoneInputCountryIcon {
	width: calc(var(--PhoneInputCountryFlag-height) * var(--PhoneInputCountryFlag-aspectRatio));
	height: var(--PhoneInputCountryFlag-height);
}

.PhoneInputCountryIcon--square {
	width: var(--PhoneInputCountryFlag-height);
}

.PhoneInputCountryIcon--border {
	/* Removed `background-color` because when an `<img/>` was still loading
	   it would show a dark gray rectangle. */
	/* For some reason the `<img/>` is not stretched to 100% width and height
	   and sometime there can be seen white pixels of the background at top and bottom. */
	background-color: var(--PhoneInputCountryFlag-backgroundColor--loading);
	/* Border is added via `box-shadow` because `border` interferes with `width`/`height`. */
	/* For some reason the `<img/>` is not stretched to 100% width and height
	   and sometime there can be seen white pixels of the background at top and bottom,
	   so an additional "inset" border is added. */
	box-shadow: 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor),
		inset 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor);
}

.PhoneInputCountryIconImg {
	/* Fixes weird vertical space above the flag icon. */
	/* https://gitlab.com/catamphetamine/react-phone-number-input/-/issues/7#note_348586559 */
	display: block;
	/* 3rd party <SVG/> flag icons won't stretch if they have `width` and `height`.
	   Also, if an <SVG/> icon's aspect ratio was different, it wouldn't fit too. */
	width: 100%;
	height: 100%;
}

.PhoneInputInternationalIconPhone {
	opacity: var(--PhoneInputInternationalIconPhone-opacity);
}

.PhoneInputInternationalIconGlobe {
	opacity: var(--PhoneInputInternationalIconGlobe-opacity);
}

/* Styling native country `<select/>`. */

.PhoneInputCountry {
	position: relative;
	align-self: stretch;
	display: flex;
	align-items: center;
	margin-right: var(--PhoneInputCountrySelect-marginRight);
}

.PhoneInputCountrySelect {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 1;
	border: 0;
	opacity: 0;
	cursor: pointer;
}

.PhoneInputCountrySelect[disabled],
.PhoneInputCountrySelect[readonly] {
	cursor: default;
}

.PhoneInputCountrySelectArrow {
	display: block;
	content: '';
	width: var(--PhoneInputCountrySelectArrow-width);
	height: var(--PhoneInputCountrySelectArrow-width);
	margin-left: var(--PhoneInputCountrySelectArrow-marginLeft);
	border-style: solid;
	border-color: var(--PhoneInputCountrySelectArrow-color);
	border-top-width: 0;
	border-bottom-width: var(--PhoneInputCountrySelectArrow-borderWidth);
	border-left-width: 0;
	border-right-width: var(--PhoneInputCountrySelectArrow-borderWidth);
	transform: var(--PhoneInputCountrySelectArrow-transform);
	opacity: var(--PhoneInputCountrySelectArrow-opacity);
}

.PhoneInputCountrySelect:focus + .PhoneInputCountryIcon + .PhoneInputCountrySelectArrow {
	opacity: 1;
	color: var(--PhoneInputCountrySelectArrow-color--focus);
}

.PhoneInputCountrySelect:focus + .PhoneInputCountryIcon--border {
	box-shadow: 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor--focus),
		inset 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor--focus);
}

.PhoneInputCountrySelect:focus + .PhoneInputCountryIcon .PhoneInputInternationalIconGlobe {
	opacity: 1;
	color: var(--PhoneInputCountrySelectArrow-color--focus);
}
.PhoneInputInput {
  outline: none !important;
}
.checkbox-orange {
  accent-color: var(--primary_color);
  color: white;
}


/* Hide the default select */
.hidden-select {
  display: none;
}

/* Custom switch container */
.switch-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
}

/* Custom switch design */
.custom-switch {
  position: relative;
  display: flex;
  width: 300px;
  height: 50px;
  background: #e0e0e0;
  border-radius: 30px;
  cursor: pointer;
  overflow: hidden;
}

/* Individual options */
.switch-option {
  flex: 1;
  text-align: center;
  line-height: 50px;
  color: #666;
  font-size: 14px;
  font-weight: bold;
  z-index: 2;
  transition: color 0.3s ease;
}

/* Active state styling */
.switch-option.active {
  color: #fff;
}

/* Toggle slider */
.switch-toggle {
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 5px;
  width: 48%;
  background: var(--primary_color);
  border-radius: 50px;
  transition: all 0.3s ease;
  z-index: 1;
}







/* Toggle Switch */
.toggle-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 20px;
  margin-right: 10px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  border-radius: 20px;
  transition: 0.3s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  border-radius: 50%;
  transition: 0.3s;
}

input:checked + .slider {
  background-color: var(--primary_color);
}

input:checked + .slider:before {
  transform: translateX(20px);
}

/* Parking Options */
.parking-options {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 10px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  background-color: #fff;
}

.parking-button {
  flex: 1;
  margin: 0 5px;
  padding:  10px;
  border: 1px solid var(--primary_color);
  border-radius: 5px;
  background-color: #fff;
  color: var(--primary_color);
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.parking-button.active {
  background-color: var(--primary_color);
  color: #fff;
}

@media screen and (max-width: 576px) {
  .parking-options {
    padding: 5px;
  }

  .parking-button {
    flex: 1;
    margin: 0 5px;
    padding:  5px;
    border: 1px solid var(--primary_color);
    border-radius: 5px;
    background-color: #fff;
    color: var(--primary_color);
    font-size: 13px;
    font-weight: 600;
  }
}
/* Address Input */
.address-input {
  display: flex;
  /* align-items: center; */
  padding: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  background-color: #fff;
}

.address-input input {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px;
  font-size: 14px;
}

.add-button {
  padding: 10px 20px;
  background-color: var(--primary_color);
  border: none;
  border-radius: 5px;
  color: white;
  /* font-weight: bold; */
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.add-button:hover {
  background-color: var(--primary_color);
}
/* Container */
.service-form {
  max-width: 600px;
  margin: 0 auto;
  font-family: Arial, sans-serif;
}

h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

/* Progress Bar */
.progress-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.step {
  display: flex;
  align-items: center;
}

.circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #e0e0e0;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.step.active .circle {
  background: var(--primary_color);
}

.line {
  width: 60px;
  height: 4px;
  background: #e0e0e0;
}

.line.filled {
  background: var(--primary_color);
}

/* Form Groups */
.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #333;
}

select,
textarea,
input{
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  background-color: #fff;
  outline: none;
}

textarea {
  resize: none;
  height: 100px;
}

/* Continue Button */
.continue-button {
  width: 100%;
  padding: 15px;
  background-color: var(--primary_color);
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.continue-button:hover {
  background-color: var(--primary_hover_color);
}


@media (max-width: 600px) {
  .progress-bar {
    width: 100%;
  }
  .line {
    width: 25px;
  }
}
