body {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
}

.form-section {
  padding: 50px;
}

.form-background {
  background-color: #e0dcdc;
  border-radius: 6px;
  padding: 20px;
  max-width: 400px;
  margin: auto;
}

.form-group {
  position: relative;
}

.form-control {
  border-radius: 6px;
  background-color: #fff;
  color: #000;
  padding-right: 30px;
  /* Adjusted for custom icon */
}

.icon {
  position: absolute;
  top: 70%;
  right: 10px;
  transform: translateY(-50%);
  color: #000;
  width: 20px;
}

.icon_location {
  position: absolute;
  top: 70%;
  right: 10px;
  transform: translateY(-50%);
  color: #000;
  width: 25px;
}

.icon_location_via {
  position: absolute;
  top: 55%;
  right: 10px;
  transform: translateY(-50%);
  color: #000;
  width: 25px;
}

.icon_location_dropoff {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  color: #000;
  width: 25px;
}

/* Gradient button */
.btn-get-quote {
  background: linear-gradient(to right, #ed8302, #f79f1a);
  color: #fff;
  border: none;
  padding: 10px 0;
  border-radius: 6px;
  width: 100%;
}

.btn-footer {
  background: linear-gradient(to right, #ed8302, #f79f1a);
  color: #fff !important;
  border: none;
  padding: 10px 0;
  border-radius: 6px;
  width: 20%;
}

.divider-rights {
  border-top: 2px solid #ed8302;
}

.btn-account {
  background: linear-gradient(to right, #ed8302, #f79f1a);
  color: #fff;
  border: none;
  padding: 10px 0;
  border-radius: 6px;
  width: 50%;
}

.btn-guest {
  background: #000000;
  color: #fff;
  border: none;
  padding: 10px 0;
  border-radius: 6px;
  width: 50%;
}
.btn-guest:hover {
  background: #000000;
  color: #fff;
  border: none;
  padding: 10px 0;
  border-radius: 6px;
  width: 50%;
}

.service-section {
  background-color: black;
  padding: 50px;
}

.service-text {
  color: white;
  text-align: center;
}

.orange-word {
  color: #ed8302;
}

/* Label and input placeholder color adjustment */
label,
::placeholder {
  color: black;
  font-size: 14px;
}

select::-ms-expand {
  display: none;
}

select::-webkit-select-arrow {
  display: none;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: "";
}

.hidden {
  display: none;
}

.via-close-btn {
  color: #000;
}

#toggle-icon {
  margin-left: 5px;
}

.toggle-design {
  background-color: #fff;
  border-radius: 6px;
}

.selected-items {
  display: flex;
  flex-wrap: wrap;
}

.selected-item {
  display: flex;
  align-items: center;
  margin-top: 10px;
  /* Adjust as needed */
  margin-right: 10px;
  /* Adjust as needed */
  padding: 7px;
  background-color: #fff;
  border: 1px solid #ddd;
  color: #000000;
  /* Border for separation */
  border-radius: 5px;
}

.selected-item i {
  margin-right: 5px;
  /* Adjust as needed */
  cursor: pointer;
}

.selected-items-return {
  display: flex;
  flex-wrap: wrap;
}

.selected-item-return {
  display: flex;
  align-items: center;
  margin-top: 10px;
  /* Adjust as needed */
  margin-right: 10px;
  /* Adjust as needed */
  padding: 7px;
  background-color: #fff;
  border: 1px solid #ddd;
  color: #000000;
  /* Border for separation */
  border-radius: 5px;
}

.selected-item-return i {
  margin-right: 5px;
  /* Adjust as needed */
  cursor: pointer;
}

.quantity {
  margin-right: 5px;
  /* Adjust as needed */
}

.loader {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  z-index: 999;
  border: 16px solid #f3f3f3;
  border-top: 16px solid #ed8302;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 2s linear infinite;
}

/* Add this CSS to your stylesheet */
.message-show {
  opacity: 0;
  transition: opacity 0.5s ease-out;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Custom styling for cards */
.card-header {
  background-color: #fff5c6;
  color: #000;
}

.card-body {
  padding: 1.25rem;
}

.card-img-top {
  width: 80px;
  margin-top: 10px;
}

.button-container {
  text-align: center;
  margin-top: 15px;
}

/* Ensure three cards per row */
.card-group {
  display: flex;
  flex-wrap: wrap;
  border-radius: 6px;
}

.icon-wrapper {
  margin-bottom: 5px;
}

.nav-tabs .nav-item .nav-link {
  border-radius: 6px 6px 0 0;
  margin-right: 10px;
  background-color: #d9d9d9;
  color: black;
  border: 1px solid #d9d9d9;
  width: 170px;
}

.nav-tabs .nav-item .nav-link.active {
  background: linear-gradient(to right, #ed8302, #f79f1a);
  color: white;
  border: 1px solid orange;
}

.tab-content {
  border-radius: 10px;
  border: 1px solid #d9d9d9;
  padding: 10px;
  background-color: #e0dcdc;
}

.tab-pane input[type="text"],
.tab-pane input[type="email"],
.tab-pane input[type="password"] {
  margin: 10px 0;
}

.tab-pane button {
  margin-top: 10px;
}

#success-message {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
}

#success-message-login {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
}

#error-message {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
}

#voucher-message {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
}

.bg-light {
  background-color: #f5f5f5;
  /* Light grey background */
}

.border-right {
  border-right: 1px solid #ccc;
  /* Vertical divider */
}

.bg-orange {
  background-color: orange;
  color: white;
  border-radius: 6px;
}

.bg-black {
  background-color: #343a40;
  color: white;
  border-radius: 6px;
}

.payment-content {
  border-radius: 10px;
  border: 1px solid #d9d9d9;
  padding: 10px;
  background-color: #e0dcdc;
}

.payment-content-guest {
  border-radius: 10px;
  border: 1px solid #d9d9d9;
  padding: 10px;
  background-color: #e0dcdc;
}

.via-close-btn {
  margin-top: -35px;
  margin-right: -20px;
  font-size: 16px;
  cursor: default;
}

.via-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: smaller;
}

/* Media Queries */
@media (max-width: 576px) {
  .form-section {
    padding: 30px;
  }

  .form-background {
    padding: 15px;
  }

  .btn-footer {
    width:100%;
  }
}
