| 1 |
/* Modal container styles */ |
| 2 |
#propertyhive_survey_modal { |
| 3 |
display: none; /* Ensure the modal is hidden by default */ |
| 4 |
position: fixed; |
| 5 |
z-index: 9999; |
| 6 |
left: 0; |
| 7 |
top: 0; |
| 8 |
width: 100%; |
| 9 |
height: 100%; |
| 10 |
background-color: rgba(0, 0, 0, 0.5); |
| 11 |
justify-content: center; |
| 12 |
align-items: center; |
| 13 |
} |
| 14 |
|
| 15 |
/* Modal inner container */ |
| 16 |
#propertyhive_survey_modal .modal-container { |
| 17 |
background-color: #fff; |
| 18 |
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); |
| 19 |
overflow: hidden; |
| 20 |
width: 596px; |
| 21 |
} |
| 22 |
|
| 23 |
/* Modal header */ |
| 24 |
#propertyhive_survey_modal .modal-header { |
| 25 |
background-color: #fbfbfb; |
| 26 |
border-bottom:1px solid #eee; |
| 27 |
padding: 15px 20px; |
| 28 |
font-size: 17px; |
| 29 |
font-weight: bold; |
| 30 |
text-align: left; |
| 31 |
text-transform: uppercase; |
| 32 |
color:#CCC; |
| 33 |
} |
| 34 |
|
| 35 |
/* Modal content */ |
| 36 |
#propertyhive_survey_modal .modal-content { |
| 37 |
padding: 20px; |
| 38 |
text-align: left; |
| 39 |
} |
| 40 |
#propertyhive_survey_modal .modal-content h3 { |
| 41 |
margin-top:0; |
| 42 |
margin-bottom:1.2em; |
| 43 |
font-size:16px; |
| 44 |
} |
| 45 |
#propertyhive_survey_modal .modal-content label { |
| 46 |
display:block; |
| 47 |
margin-bottom:8px; |
| 48 |
} |
| 49 |
|
| 50 |
/* Modal footer */ |
| 51 |
#propertyhive_survey_modal .modal-footer { |
| 52 |
position:relative; |
| 53 |
border-top:1px solid #F3F3F3; |
| 54 |
padding: 10px 20px; |
| 55 |
text-align: right; |
| 56 |
} |
| 57 |
#propertyhive_survey_modal .anonymous { |
| 58 |
position:absolute; |
| 59 |
display:none; |
| 60 |
left:20px; |
| 61 |
top:11px; |
| 62 |
} |
| 63 |
|
| 64 |
/* Text area for "Other" reason */ |
| 65 |
#phOtherReasonBox { |
| 66 |
width: 100%; |
| 67 |
} |
| 68 |
|