@media (max-width: 767px) {
	.popup-content {
  width: 350px;
}
	.close-btn {
    top: 15px;
    right: 30px;
}
}
@media (min-width: 768px) {
	.popup-content {
  width: 500px;
}
	.close-btn {
    top: 30px;
    right: 40px; 
		position: absolute;
    font-size: 23px!important;
    cursor: pointer;
    color: #888;
    border: 1px solid #999999;
    border-radius: 50px;
    width: 35px;
}
}

#popup-schedule-demo {
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
}

.popup-content {
  background: white;
  padding: 25px;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.close-btn {
  position: absolute;
  font-size: 30px;
  cursor: pointer;
  color: #888;
}

.close-btn:hover {
  color: #000;
}

#openPopupBtn {
  padding: 10px 20px;
  font-size: 16px;
  background-color: #0073aa;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#openPopupBtn:hover {
  background-color: #005f8d;
}
.pop-up-title{
  text-transform: uppercase;
  font-weight: 700;
  color: #328375;
  font-size: 25px;
  font-family: "Inter Tight", Sans-serif;
}
.popup-content .popup-bg{
  background-color: #eee;
  padding: 30px 0px 0px 0px;
}
#popup-schedule-demo .wpcf7-form input{
  border-radius: 5px;
  border:1px solid #ced4da;
	width:100%;
}
#popup-schedule-demo .cus-container-padding{
	padding:0px 20px 0 20px;
}
.wpcf7-not-valid-tip{
  text-align: left !important;
  font-family: "Inter Tight", Sans-serif;
  margin-top: 6px;
  margin-bottom: 0;
  font-size: 14px;
  color: #dc3232;
  display: block;
}
.wpcf7 form .wpcf7-response-output {
  margin:0!important;
	padding-bottom: 5px !important;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    color: #dc3232;
}
.wpcf7 form input[type="submit"] {
    display: block;
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    background-color: #318378; /* Optional: Customize */
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    margin:0!important;
}

.wpcf7 form input[type="submit"]:hover {
    background-color: #2D58FF; /* Optional hover effect */
}
/* Ensure the form is centered and inputs have consistent width */
#popup-schedule-demo .wpcf7-form {
    max-width: 500px;
    margin: 0 auto;
}

/* Ensure all inputs have full width */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="number"],
.wpcf7-form textarea,
.wpcf7-form select {
  width: 100%;
  padding: 12px;
  margin: 0;
  box-sizing: border-box;
}
/* Add space between form controls and error messages as a block */
.wpcf7-form .wpcf7-form-control-wrap {
  display: block;
  margin-bottom: 20px; /* spacing between fields */
}

.custom-button {
            display: inline-block;
            width: 90%px;
            padding: 15px 30px;
            font-size: 18px;
            font-weight: bold;
            color: white!important;
            background-color: #236860;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            text-align: center;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }
.custom-button:hover {
            background-color: #ca801f;
            box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
            transform: translateY(-3px);
        }
.custom-button:active {
            background-color: #3e8e41;
            box-shadow: none;
            transform: translateY(2px);
        }
.wpcf7 form.sent .wpcf7-response-output {
    color: #318378;
	
}
/* Remove arrows from number field in all browsers */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield; /* Firefox */
}

