| 1 |
#wpbc_deactivate-feedback-popup-wrapper { |
| 2 |
align-items: center; |
| 3 |
background-color: rgba(0, 0, 0, .5); |
| 4 |
bottom: 0; |
| 5 |
display: none; |
| 6 |
justify-content: center; |
| 7 |
left: 0; |
| 8 |
padding: 1rem; |
| 9 |
position: fixed; |
| 10 |
right: 0; |
| 11 |
top: 0; |
| 12 |
z-index: 999999; |
| 13 |
} |
| 14 |
#wpbc_deactivate-feedback-popup-wrapper.active { |
| 15 |
display: flex; |
| 16 |
} |
| 17 |
#wpbc_deactivate-feedback-popup-wrapper .wpbc_deactivate-feedback-popup-inner { |
| 18 |
animation: modalFadeIn .3s ease; |
| 19 |
background-color: #fff; |
| 20 |
border-radius: 8px; |
| 21 |
box-shadow: 0 4px 12px rgba(0, 0, 0, .15); |
| 22 |
max-height: 550px; |
| 23 |
max-width: calc(100vw - 145px); |
| 24 |
overflow: auto; |
| 25 |
padding: 14px; |
| 26 |
scrollbar-width: thin; |
| 27 |
width: 600px; |
| 28 |
} |
| 29 |
#wpbc_deactivate-feedback-popup-wrapper .wpbc_deactivate-feedback-popup-inner .wpbc_deactivate-feedback-popup-header { |
| 30 |
border-bottom: 1px solid #cdd0d8; |
| 31 |
align-items: center; |
| 32 |
display: flex; |
| 33 |
justify-content: space-between; |
| 34 |
padding: 0 0 10px; |
| 35 |
} |
| 36 |
#wpbc_deactivate-feedback-popup-wrapper .wpbc_deactivate-feedback-popup-inner .wpbc_deactivate-feedback-popup-header__logo-wrap { |
| 37 |
display: flex; |
| 38 |
align-items: center; |
| 39 |
} |
| 40 |
#wpbc_deactivate-feedback-popup-wrapper .wpbc_deactivate-feedback-popup-inner .wpbc_deactivate-feedback-popup-header__logo-wrap .wpbc_deactivate-feedback-popup-header__logo-icon { |
| 41 |
margin-right: 16px; |
| 42 |
} |
| 43 |
#wpbc_deactivate-feedback-popup-wrapper .wpbc_deactivate-feedback-popup-inner .wpbc_deactivate-feedback-popup-header__logo-wrap .wpbc_deactivate-feedback-popup-header-title { |
| 44 |
font-size: 20px; |
| 45 |
font-weight: 500; |
| 46 |
line-height: 1.4; |
| 47 |
margin: 0; |
| 48 |
} |
| 49 |
#wpbc_deactivate-feedback-popup-wrapper .wpbc_deactivate-feedback-popup-inner .close-deactivate-feedback-popup { |
| 50 |
background: none; |
| 51 |
border: none; |
| 52 |
color: #718096; |
| 53 |
cursor: pointer; |
| 54 |
font-size: 24px; |
| 55 |
line-height: 1; |
| 56 |
padding: 0; |
| 57 |
} |
| 58 |
#wpbc_deactivate-feedback-popup-wrapper .wpbc_deactivate-feedback-popup-inner .wpbc_deactivate-feedback-popup-form-caption { |
| 59 |
color: #4a5568; |
| 60 |
font-size: 17px; |
| 61 |
font-weight: 500; |
| 62 |
margin: 15px 0; |
| 63 |
} |
| 64 |
#wpbc_deactivate-feedback-popup-wrapper .wpbc_deactivate-feedback-popup-inner .wpbc_deactivate-feedback-form { |
| 65 |
padding: 0 10px; |
| 66 |
text-align: left; |
| 67 |
font-size: 15px; |
| 68 |
color: #495157; |
| 69 |
line-height: 2; |
| 70 |
} |
| 71 |
#wpbc_deactivate-feedback-popup-wrapper .wpbc_deactivate-feedback-popup-inner .wpbc_deactivate-feedback-popup-form-questions { |
| 72 |
display: grid; |
| 73 |
gap: 6px; |
| 74 |
grid-template-columns: 1fr 1fr; |
| 75 |
margin: 16px 0; |
| 76 |
} |
| 77 |
#wpbc_deactivate-feedback-popup-wrapper .wpbc_deactivate-feedback-popup-inner .wpbc_deactivate-feedback-popup-form-more-details { |
| 78 |
display: none; |
| 79 |
} |
| 80 |
.wpbc_deactivate-feedback-popup-input-wrapper { |
| 81 |
display: flex; |
| 82 |
flex-flow: row nowrap; |
| 83 |
justify-content: flex-start; |
| 84 |
align-items: center; |
| 85 |
gap: 5px |
| 86 |
} |
| 87 |
.wpbc_deactivate-feedback-popup-input-wrapper input { |
| 88 |
line-height: 2.3; |
| 89 |
margin-top: 1px; |
| 90 |
} |
| 91 |
#wpbc_deactivate-feedback-popup-wrapper .wpbc_deactivate-feedback-popup-inner .wpbc_deactivate-feedback-popup-form-footer { |
| 92 |
overflow: hidden; |
| 93 |
display: flex; |
| 94 |
justify-content: space-between; |
| 95 |
align-items: center; |
| 96 |
font-size: 14px; |
| 97 |
border-top: 1px solid #ccc; |
| 98 |
padding: 10px 0 0; |
| 99 |
margin: 15px 0 0; |
| 100 |
gap: 25px; |
| 101 |
} |
| 102 |
#wpbc_deactivate-feedback-popup-wrapper .wpbc_deactivate-feedback-popup-inner .wpbc_deactivate-feedback-popup-form-footer .feedback-textarea { |
| 103 |
width: 100%; |
| 104 |
margin: 5px 0 10px; |
| 105 |
} |
| 106 |
#wpbc_deactivate-feedback-popup-wrapper .wpbc_deactivate-feedback-popup-inner .wpbc_deactivate-feedback-popup-form-footer .feedback-textarea::placeholder { |
| 107 |
color: #ccc; |
| 108 |
} |
| 109 |
#wpbc_deactivate-feedback-popup-wrapper .wpbc_deactivate-feedback-popup-inner .wpbc_deactivate-feedback-popup-form-footer button.submit { |
| 110 |
background-color: #475bb2; |
| 111 |
color: white; |
| 112 |
padding: 8px 16px; |
| 113 |
border-radius: 4px; |
| 114 |
border: none; |
| 115 |
cursor: pointer; |
| 116 |
float: right; |
| 117 |
|
| 118 |
border-radius: 6px; |
| 119 |
cursor: pointer; |
| 120 |
display: inline-flex; |
| 121 |
font-size: 14px; |
| 122 |
font-weight: 500; |
| 123 |
height: 40px; |
| 124 |
justify-content: center; |
| 125 |
padding: 0 16px; |
| 126 |
transition: all .2s ease; |
| 127 |
align-items: center; |
| 128 |
flex: 0 0 auto; |
| 129 |
align-self: center; |
| 130 |
} |
| 131 |
#wpbc_deactivate-feedback-popup-wrapper .wpbc_deactivate-feedback-popup-inner .wpbc_deactivate-feedback-popup-form-footer button.submit:hover { |
| 132 |
background-color: #38488e; |
| 133 |
} |
| 134 |
#wpbc_deactivate-feedback-popup-wrapper .wpbc_deactivate-feedback-popup-inner .wpbc_deactivate-feedback-popup-form-footer a.skip { |
| 135 |
color: #a4afb7; |
| 136 |
background: none; |
| 137 |
float: left; |
| 138 |
width: auto; |
| 139 |
border: none; |
| 140 |
cursor: pointer; |
| 141 |
} |
| 142 |
#wpbc_deactivate-feedback-popup-wrapper .wpbc_deactivate-feedback-popup-inner .consent { |
| 143 |
font-size: 10px; |
| 144 |
color: #8f8f8f; |
| 145 |
background: none; |
| 146 |
width: auto; |
| 147 |
border: none; |
| 148 |
} |
| 149 |
@keyframes modalFadeIn { |
| 150 |
0% { |
| 151 |
opacity: 0; |
| 152 |
transform: translateY(-20px) |
| 153 |
} |
| 154 |
to { |
| 155 |
opacity: 1; |
| 156 |
transform: translateY(0) |
| 157 |
} |
| 158 |
} |
| 159 |
|