input[type=time] {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 0;
  box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
  box-sizing: border-box;
  color: #333;
  font-size: .97em;
  height: 2.507em;
  max-width: 100%;
  padding: 0 .75em;
  transition: color .3s, border .3s, background .3s, opacity .3s;
  vertical-align: middle;
  width: 100%;
}

.popup-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 999999;
}

.popup-box {
  background: #fff;
  padding: 20px;
  border-radius: 6px;
  width: 500px;
  max-width: 95%;
  position: relative;
  margin: 40px auto;
}

.popup-close {
  position: absolute;
  top: -5px;
  right: 10px;
  font-size: 40px;
  cursor: pointer;
}

.form-group,
.form-row {
  margin-bottom: 15px;
}

.form-row {
  display: flex;
  gap: 10px;
}

.form-row input {
  flex: 1;
}

input,
textarea,
select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

textarea {
  resize: vertical;
}

.btn-submit {
  width: 100%;
  background: #333;
  color: #fff;
  padding: 12px;
  border: none;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input {
  display: none;
}

.sliderw {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
}

.sliderw:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .sliderw {
  background-color: #4caf50;
}

input:checked + .sliderw:before {
  transform: translateX(26px);
}

.fixed-booking {
  position: fixed;
  right: 10px;
  bottom: 200px;
  text-align: center;
  z-index: 9999;
  cursor: pointer;
}

.btn-text {
  background: #1976d2;
  color: #fff;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
}

.circle-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #1976d2;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  position: relative;
  animation: pulseZoom 1.5s infinite ease-in-out;
  top: 15px;
}

@keyframes pulseZoom {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(25,118,210,.5);
  }
  50% {
    transform: scale(1.15);
    box-shadow: 0 0 15px 10px rgba(25,118,210,.2);
  }
  100% {
    transform: scale(1);
    box-shado
