| 1 |
#dw-wpmcs-survey-form-wrap { |
| 2 |
display: none; |
| 3 |
position: fixed; |
| 4 |
top: 0; |
| 5 |
bottom: 0; |
| 6 |
left: 0; |
| 7 |
right: 0; |
| 8 |
z-index: 10000; |
| 9 |
background: rgba(0, 0, 0, 0.6); |
| 10 |
} |
| 11 |
|
| 12 |
#dw-wpmcs-survey-form { |
| 13 |
margin-top: 15px; |
| 14 |
position: fixed; |
| 15 |
text-align: left; |
| 16 |
width: 40%; |
| 17 |
max-width: 600px; |
| 18 |
min-width: 350px; |
| 19 |
z-index: 100; |
| 20 |
top: 50%; |
| 21 |
left: 50%; |
| 22 |
transform: translate(-50%, -50%); |
| 23 |
background: #ffffff; |
| 24 |
padding: 30px; |
| 25 |
border-radius: 8px; |
| 26 |
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); |
| 27 |
font-size: 14px; |
| 28 |
line-height: 24px; |
| 29 |
} |
| 30 |
|
| 31 |
#dw-wpmcs-survey-form h2 { |
| 32 |
font-size: 18px; |
| 33 |
margin-bottom: 10px; |
| 34 |
color: #333333; |
| 35 |
} |
| 36 |
|
| 37 |
#dw-wpmcs-survey-form p { |
| 38 |
font-size: 14px; |
| 39 |
line-height: 1.5; |
| 40 |
margin-bottom: 20px; |
| 41 |
} |
| 42 |
|
| 43 |
#dw-wpmcs-survey-form .dw-wpmcs-reason label { |
| 44 |
display: block; |
| 45 |
margin-bottom: 10px; |
| 46 |
font-size: 14px; |
| 47 |
cursor: pointer; |
| 48 |
} |
| 49 |
|
| 50 |
#dw-wpmcs-survey-form .dw-wpmcs-reason input { |
| 51 |
margin-right: 10px; |
| 52 |
} |
| 53 |
|
| 54 |
#dw-wpmcs-survey-form .dw-wpmcs-comments { |
| 55 |
margin-top: 15px; |
| 56 |
} |
| 57 |
|
| 58 |
#dw-wpmcs-survey-form .dw-wpmcs-comments textarea { |
| 59 |
width: 100%; |
| 60 |
padding: 10px; |
| 61 |
border: 1px solid #ddd; |
| 62 |
border-radius: 4px; |
| 63 |
font-size: 14px; |
| 64 |
resize: none; |
| 65 |
} |
| 66 |
|
| 67 |
#dw-wpmcs-survey-form .dw-wpmcs-actions { |
| 68 |
margin-top: 20px; |
| 69 |
} |
| 70 |
|
| 71 |
.dw-button { |
| 72 |
display: inline-block; |
| 73 |
padding: 10px 20px; |
| 74 |
font-size: 14px; |
| 75 |
font-weight: bold; |
| 76 |
text-decoration: none; |
| 77 |
border: none; |
| 78 |
border-radius: 4px; |
| 79 |
cursor: pointer; |
| 80 |
} |
| 81 |
|
| 82 |
.dw-primary { |
| 83 |
background-color: #007bff; |
| 84 |
color: #ffffff; |
| 85 |
} |
| 86 |
|
| 87 |
.dw-secondary { |
| 88 |
background-color: #f8f9fa; |
| 89 |
color: #6c757d; |
| 90 |
} |
| 91 |
|
| 92 |
.dw-skip { |
| 93 |
background: none; |
| 94 |
color: #6c757d; |
| 95 |
font-weight: normal; |
| 96 |
} |
| 97 |
|
| 98 |
#dw-wpmcs-error { |
| 99 |
color: #dc3545; |
| 100 |
font-size: 12px; |
| 101 |
} |
| 102 |
|