#multi-step-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 0px;
    background-image: url(/wp-content/plugins/demo-bookings/public/img/Prospus_icon.png);
    background-repeat: no-repeat;
    background-position: center 144px;
    background-size: 36%;
}

.form-step {
    padding: 0;
}

label {
    display: block;
    margin-bottom: 5px;
}




.form-step {
    display: flex;
    flex-direction: column; /* Stack items vertically */
}

.form-row {
    display: flex; /* Use Flexbox for the row */
    justify-content: space-between; /* Space between columns */
    margin-bottom: 20px; /* Space between rows */
}

#multi-step-form input, #multi-step-form select {
    border: none; /* Remove all borders */
    border-bottom: 1px solid #bfc3c8; /* Add bottom border */
    outline: none; /* Remove the default outline */
    padding: 8px 0; /* Add some vertical padding */
    width: 48%; /* Adjust width to fit two columns */
    font-size: 13px; /* Adjust font size as needed */
    color: #5c5c5c !important;
    background: transparent;
}
#multi-step-form input:focus, #multi-step-form select:focus {
    border-bottom: 1px solid #1b1b1b; /* Change to a different color when focused */
}

/* Adjust the select field appearance */
#multi-step-form select {
    appearance: none; /* Remove default arrow */
    background: none; /* Transparent background */
    cursor: pointer; /* Pointer cursor on hover */
}

/* Submit button styles */
#multi-step-form .button-container {
    border-top: 1px solid #DADADB;
    padding: 10px 6px 0px;
    position: relative;
    text-align: right;
}

#multi-step-form .button {
    color: #4440DB; /* Default text color */
    background-color: rgba(1, 110, 204, 0); /* Default background color */
    border: 2px solid #4440DB; /* Default border */
    padding: 10px 20px 10px 20px;
    cursor: pointer; /* Pointer cursor on hover */
    font-size: 16px; /* Adjust font size */
    transition: background-color 0.3s, color 0.3s, border-color 0.3s; /* Smooth transition */
}

#multi-step-form .button:hover {
    color: #fff; /* Text color on hover */
    background-color: #4440DB; /* Background color on hover */
    border-color: #4440DB; /* Border color on hover */
}

/* Additional styles for the cancel button */
#multi-step-form .cancel {
    color: #1b1b1b;
    background: none;
    border: none;
}

#multi-step-form .cancel:hover {
    color: #1b1b1b;
    background: none;
    border: none;
}


#multi-step-form .button.disabled {
    cursor: not-allowed;
    background: none;
    border-color: #bfc3c8;
    color: #bfc3c8;
}
.hidden {
    display: none;
}

#multi-step-form hr {
    height: 1px;
    border-bottom: 1px solid #bfc3c8;
    width: 100%;
    margin: 5px 0;
    border-top: none;
}

#multi-step-form.success h6 {
    display:none;
}

#multi-step-form h6.schedule_title {
    margin-bottom: 15px;
    margin-top: 0px;
}


.step-2 {
    padding: 64px 0;
}
.step-2 p {
    text-align: center;
    font-size: 17px;
    font-family: inherit;
}
.step-2 h4 {
    text-align: center;
    font-family: inherit;
}
.step-2 img {
    width: 40%;
}



@media (max-width: 768px) {
    #multi-step-form {
        padding: 15px;
    }

    .button {
        width: 100%;
        padding: 15px;
    }
}

/* Preloader spinner */
#preloader {
    position: absolute;
    top: -28px;
    left: -40px;
    width: 122%;
    height: 106%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(0, 0, 0, 0.1);
    border-top: 5px solid #379E4A;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


/** POPUP CSS ****/
/* General popup styles */
.popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 450px;
    max-width: 90%;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
    display: none;
    z-index: 1000;
  }
  
  /* Popup header */
  .popup-header {
    background-color: #000000;
    color: white;
    padding: 10px;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .popup-header h3 {
    color: inherit;
  }
  
  /* Close button */
  .close-btn {
    cursor: pointer;
    font-size: 24px;
    font-weight: bold;
    color: white;
  }
  
  /* Popup content */
  .popup-content {
    padding: 10px;
    font-size: 16px;
  }
  
  /* Popup toggle button */
  .popup-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #000000;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 1001;
    font-size: 16px;
  }
  
  /* Responsive design */
  @media (max-width: 400px) {
    .popup {
      width: 100%;
      right: 0;
      border-radius: 0;
    }
    .popup-button {
      right: 10px;
      bottom: 10px;
    }
  }
  