/* body:has(#exitSurvey) {
    overflow: hidden;
} */
#exitSurvey {
	opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
	display: flex;
    position: fixed;
    top: 0;
    left: 0;
    background: #00000052;
    width: 100%;
    max-width: 100%;
    height: 100%;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.exitSurvey_inner {
    max-width: 550px;
    width: 100%;
    background: #fff;
    margin: 0px auto;
    overflow: auto;
    height: 100%;
    padding: 40px 20px 40px;
    border-radius: 20px;
    position: relative;
}
.exitSurvey_inner .exitSurvey_close {
    position: absolute;
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    border: none;
    background: #000;
    color: #fff;
    font-size: 18px;
}
.exitSurvey_inner .exitSurvey_close:focus {
	border: none;
	outline: none;
}
.exitSurvey_inner::-webkit-scrollbar {
    display: none;
}
.survey-content h2 {
    font-size: 25px;
    text-align: center;
    color: #000;
    margin: 0px 0px 10px;
}
.survey-content p {
    font-size: 16px;
    text-align: center;
    max-width: 70%;
    margin: 0px auto 20px;
    color: #353535;
}
#exitSurveyForm > label, .exitSurvey_input label {
    font-size: 16px;
    color: #000;
    margin: 0px 0px 5px;
    display: block;
    text-align: left;
}
.exitSurvey_inputs ul {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
    margin-bottom: 20px;
}
.exitSurvey_inputs ul label {
    font-size: 14px;
    margin: 0;
    color: #353535;
    display: flex;
    align-items: center;
    gap: 5px;
    width: max-content;
}
.exitSurvey_input textarea {
    width: 100%;
    height: 80px;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 10px;
    font-size: 14px;
	margin-bottom: 15px;
}
#exitSurveyForm button {
    background: none;
    border: 1px solid #000;
    padding: 10px 30px;
    border-radius: 5px;
    margin-top: 20px;
    font-size: 16px;
    cursor: pointer;
}
#exitSurveyForm button:focus {
    outline: none;
    box-shadow: none;
}
#exitSurvey.show {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}







@media (max-width:767px){
	#exitSurvey {
		padding: 15px 10px;
	}
	.survey-content h2 {
		font-size: 16px;
		line-height: 23px;
	}
	.survey-content p {
		font-size: 14px;
		line-height: 20px;
		max-width: 100%;
	}
	#exitSurveyForm > label, .exitSurvey_input label {
		font-size: 14px;
	}
	#exitSurveyForm button {
		padding: 8px 20px;
		font-size: 14px;
		cursor: pointer;
	}
	.exitSurvey_inputs ul {
		flex-flow: column;
		align-items: flex-start;
		gap: 10px;
	}



}















