.popup-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 998; /* A bit lower than popup */
}
.popup-container {
	display: block;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: #fff;
	z-index: 999;
	transform: translateY(100%); /* Initially off the screen */
	transition: transform 0.3s ease-in-out;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}

#close-popup {
	display: block;
	position: absolute;
	right: 30px;
	top: 30px;
	cursor: grab;
}

#step1 {
	max-width: 600px;
	margin: 0 auto;
	text-align: center;
	padding: 60px 0;
}
#step2 {
	max-width: 600px;
	margin: 0 auto;
	text-align: center;
	padding: 40px 0;;
}
/*Multi Step Form*/
.step {
	display: none;
}
#step1 {
	display: block;
}
.step1_heading h2 {
	color: ##000;
	text-align: center;
	font-family: Manrope;
	font-size: 40px;
	font-style: normal;
	font-weight: 600;
	line-height: 140%;
	text-transform: capitalize;
	margin-bottom: 0;
	margin-top: 20px;
}
.step1_heading h4 {
	color: #000;
	text-align: center;
	font-family: Manrope;
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: 30px;
	margin-top: 10px;
	margin-bottom: 30px;
}
.pup_mulitform {
	padding: 14px 16px;
	border-radius: 1px;
	border: 1px solid#D1D1D1;
	background: #FFF;
	color: #000;
	font-family: Manrope;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	text-transform: capitalize;
	width:100%;
}

.red_button {
	border-radius: 1px;
	background: #000;
	padding: 14px 20px;
	color: #fff;
	font-family: Manrope;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	text-transform: capitalize;
	width: 100%;
	margin-top: 25px;
	border: 1px solid #000;
	cursor: grab;
}
.white_button {
	border-radius: 1px;
	background: #fff;
	padding: 14px 20px;
	color: #000;
	font-family: Manrope;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	text-transform: capitalize;
	width: 100%;
	margin-top: 10px;
	border:1px solid #fff;
	cursor: grab;

}
.white_button:hover{
	border:1px solid #000;
	color: #fff;
	background: #000;
	}
/*Step 2*/

.box-row {
    display: flex;
    justify-content: space-between;
}

.popup-box {
	flex: 1;
	margin: 10px;
	padding: 16px;
	border-radius: 4px;
	background: #F6F6F6;
	cursor: grab;
	text-align: center;
	transition: background-color 0.3s ease;
}
.popup-box.selected {
	background: #000;
    color: #fff;
}

input[type="radio"] {
    display: none;
}
.circle-label {
	color: #000;
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: 24px;
	text-transform: uppercase;
	width: 50px;
	height: 50px;
	background: rgba(126, 126, 126, 0.20);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100px;
	margin: 0 auto;
	margin-bottom: 10px;
}
.popup-box label {
	color: #344054;
	text-align: center;
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: 16px;
	text-transform: capitalize;
}
.select_box {
	max-width: 70%;
	margin: 0 auto;
	margin-top: 20px;
}
.popup-box.selected .circle-label {
	background: #fff;
}
.popup-box.selected label {
	color: #fff;
}
.form-field input {
	border-radius: 1px;
	border: 1px solid #D1D1D1;
	background: #FFF;
	padding: 12px 16px;
	color: #ACACAC;
	font-family: Manrope;
	font-size: 13px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	width: 100%;
	box-sizing: border-box;
}
.form-field {
	margin: 15px 0;
}
#step3 {
	max-width: 880px;
	margin: 0 auto;
	text-align: center;
	padding: 20px 0;
}
.form-field textarea {
		border-radius: 1px;
	border: 1px solid #D1D1D1;
	background: #FFF;
	padding: 12px 16px;
	color: #ACACAC;
	font-family: Manrope;
	font-size: 13px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	width: 100%;
	box-sizing: border-box;

}
#step3 .step1_heading h4 {
	font-weight: 400;
	margin-bottom: 10px;
}
.step3_form {
	padding: 0 15%;
}
.step3_form .red_button {
	margin-top: 0;
}
.progress_image img {
	width: 60px;
}
.new-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 998; /* A bit lower than popup */
}
.new-popup-container {
	display: block;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: #fff;
	z-index: 999;
	transform: translateY(100%); /* Initially off the screen */
	transition: transform 0.3s ease-in-out;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}

.new-close-popup_btn {
	display: block;
	position: absolute;
	right: 30px;
	top: 30px;
	cursor: grab;
}
#step1.popup2_step1 {
	max-width: 940px;
}
.popup2_heading_main {
	display: flex;
	gap: 30px;
	align-items: center;
}
.popup2_heaidng h2 {
	color: #000;
	font-family: Manrope;
	font-size: 40px;
	font-style: normal;
	font-weight: 600;
	line-height: 140%;
	text-transform: capitalize;
	text-align: left;
	margin-bottom: 20px;
}
.popup2_img img {
	width: 75px;
}



#step2.popup2_step2 {
	max-width: 680px;
	text-align: left;
	padding: 20px 0;
}
.popup2_heading_main_stpe2 h2 {
	color: #000;
font-family: Manrope;
font-size: 24px;
font-style: normal;
font-weight: 600;
line-height: normal;
text-transform: capitalize;
}
.popup2_heading_main_stpe2 p {
color: rgba(84, 89, 94, 0.60);
font-family: Manrope;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 22px; /* 157.143% */
text-transform: capitalize;	
}
#step2.popup2_step2 .step3_form {
	padding: 0;
	margin-top:20px;
}
#step2.popup2_step2 p {
	color: rgba(84, 89, 94, 0.60);
	font-family: Manrope;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 22px;
	text-transform: capitalize;
}

/*Popup 3*/
/* Styles for the overlay */
.popup3-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998; /* A bit lower than popup */
}

.popup3-popup-container {
	display: block;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #fff;
	z-index: 999;
	border-radius: 2px;
	padding: 30px;
	max-width: 80%;
	box-sizing: border-box;
}

/* Styles for the close button */
.popup3-close-popup.new-close-popup_btn {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: grab;
}
.popup3_heaidng h2 {
	color: #000;
text-align: center;
font-family: Manrope;
font-size: 32px;
font-style: normal;
font-weight: 600;
line-height: 30px; /* 93.75% */
margin-bottom:10px;
}
.popup3_heaidng p {
	color: #000(47, 49, 51, 0.6);
text-align: center;
font-family: Manrope;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 22px; /* 157.143% */
text-transform: capitalize;
}
#step1.popup3_step1 {
	max-width: 500px;
}
.step.popup2_step2.popu3_step2 .popup2_heading_main_stpe2 h2 {
	font-size: 20px;
	margin-top: 0;
	margin-bottom: 0;
}
#step2.step.popup2_step2.popu3_step2 {
	padding: 0;
}
.popup3-close-popup.new-close-popup_btn img {
	width: 25px;
}
@media (max-width: 767px) {
#step1 {
	padding: 8% 5%;
}    
.step1_heading h2 {
	font-size: 18px;
}
.step1_heading h4 {
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
}
.progress_image img {
	width: 30px;
	position: absolute;
	left: 4%;
	top: 6%;
}
.step1_heading h2 {
	max-width: 78%;
	margin: 0 auto;
}
.pup_mulitform {
	padding: 12px 12px;
	font-size: 12px;
}
.red_button {
	padding: 12px 20px;
	font-family: Manrope;
	font-size: 12px;
	margin-top: 20px;
}
#close-popup {
	top: 5%;
	right: 5%;
}
#close-popup img {
	width: 25px;
}
.new-close-popup_btn {
    top: 2%;
    right: 3%;
}
	
.new-close-popup_btn img{
	width: 25px;
	}	
.select_box {
    max-width: 100%;
}
div#step2 {
    padding: 8% 5%;
}
.popup-box {
    margin: 5px;
}
#step3 {
    padding: 8% 5%;
}
.step3_form {
    padding: 0;
}
.circle-label {
    font-size: 16px;
    width: 40px;
    height: 40px;
}
.popup2_img img {
    width: 40px;
}
.popup2_heaidng h2 {
    font-size: 18px;
}
.popup2_heading_main {
    gap: 15px;
}
#step2.popup2_step2 {
    padding: 12% 5%;
}
.popup2_heading_main_stpe2 h2 {
    margin-top: 0;
}
#step2.popup2_step2 p {
    margin-bottom: 0;
}
   /* Make the popup full width on mobile */
    .popup3-popup-container {
        width: 90%;
        max-width: 90%;
    }

.popup3-popup-container {
    padding-left: 20px;
    padding-right: 20px;
}
.step.popup2_step2.popu3_step2 .popup2_heading_main_stpe2 h2 {
    font-size: 16px;
}






	
}



