| 1 |
.ui_element .wpbc_button_as_icon, |
| 2 |
.ui_element .wpbc_ui_button { |
| 3 |
display: -ms-flexbox; |
| 4 |
display: flex; |
| 5 |
-ms-flex-flow: row nowrap; |
| 6 |
flex-flow: row nowrap; |
| 7 |
-ms-flex-pack: start; |
| 8 |
justify-content: flex-start; |
| 9 |
-ms-flex-align: center; |
| 10 |
align-items: center; |
| 11 |
text-decoration: none; |
| 12 |
min-height: 24px; |
| 13 |
margin: 0; |
| 14 |
padding: 0 10px 1px; |
| 15 |
cursor: pointer; |
| 16 |
border-style: solid; |
| 17 |
-webkit-appearance: none; |
| 18 |
white-space: nowrap; |
| 19 |
box-sizing: border-box |
| 20 |
} |
| 21 |
.ui_element .wpbc_button_as_icon { |
| 22 |
border: none |
| 23 |
} |
| 24 |
.ui_element .wpbc_ui_button, |
| 25 |
.ui_element .wpbc_ui_button-secondary { |
| 26 |
color: #555; |
| 27 |
border-color: #d7d7d7; |
| 28 |
background: #fdfdfd; |
| 29 |
vertical-align: top |
| 30 |
} |
| 31 |
.ui_element .wpbc_ui_button-secondary:hover:not(.inactive), |
| 32 |
.ui_element .wpbc_ui_button.hover:not(.inactive), |
| 33 |
.ui_element .wpbc_ui_button:hover:not(.inactive) { |
| 34 |
background: #fafafa; |
| 35 |
border-color: #d8d8d8; |
| 36 |
color: #23282d; |
| 37 |
text-decoration: none |
| 38 |
} |
| 39 |
.ui_element .wpbc_ui_button-secondary.inactive:hover, |
| 40 |
.ui_element .wpbc_ui_button.hover.inactive, |
| 41 |
.ui_element .wpbc_ui_button.inactive:hover { |
| 42 |
cursor: default |
| 43 |
} |
| 44 |
.ui_element .wpbc_ui_button-secondary:focus, |
| 45 |
.ui_element .wpbc_ui_button.focus, |
| 46 |
.ui_element .wpbc_ui_button:focus { |
| 47 |
background: #fafafa; |
| 48 |
border-color: #d8d8d8; |
| 49 |
color: #23282d; |
| 50 |
box-shadow: 0 0 0 0 #4f94d4,0 0 1px 1px rgba(79,148,212,.8); |
| 51 |
box-shadow: 0 0 0 1px #fff,0 0 0 3px #2271b1; |
| 52 |
z-index: 1; |
| 53 |
text-decoration: none; |
| 54 |
outline: transparent solid 2px; |
| 55 |
outline-offset: 0 |
| 56 |
} |
| 57 |
.ui_element .wpbc_ui_button-secondary:active:not(.inactive), |
| 58 |
.ui_element .wpbc_ui_button:active:not(.inactive), |
| 59 |
.wpbc_ui_dropdown.open > .wpbc_ui_button:not(.inactive) { |
| 60 |
border-color: #d8d8d8; |
| 61 |
outline: 0; |
| 62 |
text-decoration: none; |
| 63 |
background: #fff; |
| 64 |
box-shadow: inset 0 5px 20px -3px rgba(0,0,0,.06) |
| 65 |
} |
| 66 |
.ui_element .wpbc_ui_button-disabled, |
| 67 |
.ui_element .wpbc_ui_button-secondary.disabled, |
| 68 |
.ui_element .wpbc_ui_button-secondary:disabled, |
| 69 |
.ui_element .wpbc_ui_button-secondary[disabled], |
| 70 |
.ui_element .wpbc_ui_button.disabled, |
| 71 |
.ui_element .wpbc_ui_button:disabled, |
| 72 |
.ui_element .wpbc_ui_button[disabled], |
| 73 |
.ui_element.disabled .wpbc_ui_button { |
| 74 |
color: #a7aaad!important; |
| 75 |
border-color: #dcdcde!important; |
| 76 |
background: #f6f7f7!important; |
| 77 |
box-shadow: none!important; |
| 78 |
cursor: default; |
| 79 |
-ms-transform: none!important; |
| 80 |
transform: none!important |
| 81 |
} |
| 82 |
.ui_element .wpbc_ui_button.active:hover:not(.inactive), |
| 83 |
.ui_element .wpbc_ui_button.active:not(.inactive) { |
| 84 |
background: #f6f7f7; |
| 85 |
border-color: #d8d8d8; |
| 86 |
box-shadow: inset 0 1px 7px -3px rgba(0,0,0,.3); |
| 87 |
-ms-transform: translateY(1px); |
| 88 |
transform: translateY(1px); |
| 89 |
outline: 0; |
| 90 |
text-decoration: none |
| 91 |
} |
| 92 |
.ui_element .wpbc_ui_button.active:focus:not(.inactive) { |
| 93 |
border-color: #3582c4; |
| 94 |
box-shadow: inset 0 1px 5px -3px #0a4b78,0 0 1px 1px rgba(79,148,212,.1) |
| 95 |
} |
| 96 |
.ui_element .wpbc_ui_button_primary { |
| 97 |
background: #0085ba; |
| 98 |
border-color: #0073aa #006799 #006799; |
| 99 |
color: #fff; |
| 100 |
text-shadow: 0 -1px 1px #006799,1px 0 1px #006799,0 1px 1px #006799,-1px 0 1px #006799; |
| 101 |
text-decoration: none; |
| 102 |
box-shadow: 0 1px 0 #f1f1f1 |
| 103 |
} |
| 104 |
.ui_element .wpbc_ui_button_primary.focus:not(.inactive), |
| 105 |
.ui_element .wpbc_ui_button_primary.hover:not(.inactive), |
| 106 |
.ui_element .wpbc_ui_button_primary:focus:not(.inactive), |
| 107 |
.ui_element .wpbc_ui_button_primary:hover:not(.inactive) { |
| 108 |
background: #008ec2; |
| 109 |
border-color: #006799; |
| 110 |
color: #fff |
| 111 |
} |
| 112 |
.ui_element .wpbc_ui_button_primary.focus:not(.inactive), |
| 113 |
.ui_element .wpbc_ui_button_primary:focus:not(.inactive) { |
| 114 |
box-shadow: 0 0 0 0 #fff,0 0 2px 1px #a4d7ff; |
| 115 |
box-shadow: 0 0 0 1.5px #fff,0 0 0 3px #2271b1 |
| 116 |
} |
| 117 |
.ui_element .wpbc_ui_button_primary.active:focus:not(.inactive), |
| 118 |
.ui_element .wpbc_ui_button_primary.active:hover:not(.inactive), |
| 119 |
.ui_element .wpbc_ui_button_primary.active:not(.inactive), |
| 120 |
.ui_element .wpbc_ui_button_primary:active:not(.inactive) { |
| 121 |
background: #0c7ca8; |
| 122 |
border-color: #0b79a4; |
| 123 |
box-shadow: inset 0 1px 7px -3px rgba(0,0,0,.3); |
| 124 |
color: #fff |
| 125 |
} |
| 126 |
.ui_element .wpbc_ui_button_primary-disabled, |
| 127 |
.ui_element .wpbc_ui_button_primary.disabled, |
| 128 |
.ui_element .wpbc_ui_button_primary:disabled, |
| 129 |
.ui_element .wpbc_ui_button_primary[disabled] { |
| 130 |
color: #a7aaad!important; |
| 131 |
background: #f6f7f7!important; |
| 132 |
border-color: #dcdcde!important; |
| 133 |
box-shadow: none!important; |
| 134 |
text-shadow: none!important; |
| 135 |
cursor: default |
| 136 |
} |
| 137 |
.ui_element .wpbc_ui_button_danger { |
| 138 |
background: #de605c; |
| 139 |
border-color: #c05d5a; |
| 140 |
color: #f7f7f7; |
| 141 |
text-shadow: 0 0 #ba5956; |
| 142 |
text-decoration: none; |
| 143 |
box-shadow: 0 1px 0 #f1f1f1 |
| 144 |
} |
| 145 |
.ui_element .wpbc_ui_button_danger.focus:not(.inactive), |
| 146 |
.ui_element .wpbc_ui_button_danger.hover:not(.inactive), |
| 147 |
.ui_element .wpbc_ui_button_danger:focus:not(.inactive), |
| 148 |
.ui_element .wpbc_ui_button_danger:hover:not(.inactive) { |
| 149 |
background: #e6716f; |
| 150 |
border-color: transparent; |
| 151 |
color: #fdfdfd; |
| 152 |
text-shadow: none; |
| 153 |
box-shadow: 0 0 0 1.5px #fff,0 0 0 3px #2271b1 |
| 154 |
} |
| 155 |
.ui_element .wpbc_ui_button_danger.focus:not(.inactive), |
| 156 |
.ui_element .wpbc_ui_button_danger:focus:not(.inactive) { |
| 157 |
box-shadow: 0 0 0 0 #fff,0 0 2px 1px #a4d7ff; |
| 158 |
box-shadow: 0 0 0 1.5px #fff,0 0 0 3px #2271b1; |
| 159 |
border-color: transparent |
| 160 |
} |
| 161 |
.ui_element .wpbc_ui_button_danger.active:focus:not(.inactive), |
| 162 |
.ui_element .wpbc_ui_button_danger.active:hover:not(.inactive), |
| 163 |
.ui_element .wpbc_ui_button_danger.active:not(.inactive), |
| 164 |
.ui_element .wpbc_ui_button_danger:active:not(.inactive) { |
| 165 |
background: #ba4c48; |
| 166 |
border-color: transparent; |
| 167 |
box-shadow: inset 0 1px 7px -3px rgba(0,0,0,.1); |
| 168 |
color: #f3f2f2; |
| 169 |
box-shadow: 0 0 0 1.5px #fff,0 0 0 3px #2271b1 |
| 170 |
} |
| 171 |
.ui_element .wpbc_ui_button_danger-disabled, |
| 172 |
.ui_element .wpbc_ui_button_danger.disabled, |
| 173 |
.ui_element .wpbc_ui_button_danger:disabled, |
| 174 |
.ui_element .wpbc_ui_button_danger[disabled] { |
| 175 |
color: #a7aaad!important; |
| 176 |
background: #f6f7f7!important; |
| 177 |
border-color: #dcdcde!important; |
| 178 |
box-shadow: none!important; |
| 179 |
text-shadow: none!important; |
| 180 |
cursor: default |
| 181 |
} |
| 182 |
@media (max-width:782px) { |
| 183 |
.ui_element .in-button-text { |
| 184 |
display: none |
| 185 |
} |
| 186 |
} |
| 187 |
.ui_element .wpbc_ui_text { |
| 188 |
border: 1px solid #d6d6d6; |
| 189 |
-ms-flex: 1 1 120px; |
| 190 |
flex: 1 1 120px |
| 191 |
} |
| 192 |
.ui_element .wpbc_ui_text.focus, |
| 193 |
.ui_element .wpbc_ui_text:focus { |
| 194 |
border-color: #d8d8d8; |
| 195 |
box-shadow: 0 0 0 1px #2271b1; |
| 196 |
box-shadow: 0 0 0 0 #4f94d4,0 0 1px 1px rgba(79,148,212,.8); |
| 197 |
z-index: 1; |
| 198 |
outline: transparent solid 2px |
| 199 |
} |
| 200 |
.ui_element .wpbc_ui_select { |
| 201 |
border: 1px solid #d6d6d6; |
| 202 |
-ms-flex: 1 1 auto; |
| 203 |
flex: 1 1 auto |
| 204 |
} |
| 205 |
.ui_element .wpbc_ui_select.focus, |
| 206 |
.ui_element .wpbc_ui_select:focus { |
| 207 |
border-color: #d8d8d8; |
| 208 |
box-shadow: 0 0 0 1px #2271b1; |
| 209 |
box-shadow: 0 0 0 0 #4f94d4,0 0 1px 1px rgba(79,148,212,.8); |
| 210 |
z-index: 1; |
| 211 |
outline: transparent solid 2px |
| 212 |
} |
| 213 |
.ui_element .wpbc_ui_checkbox, |
| 214 |
.ui_element .wpbc_ui_radio { |
| 215 |
border: 1px solid #bcbcbc; |
| 216 |
border-radius: 4px; |
| 217 |
background: #fff; |
| 218 |
color: #50575e; |
| 219 |
clear: none; |
| 220 |
cursor: pointer; |
| 221 |
display: inline-block; |
| 222 |
line-height: 0!important; |
| 223 |
height: 1rem!important; |
| 224 |
margin: 0; |
| 225 |
outline: 0; |
| 226 |
padding: 0!important; |
| 227 |
text-align: center; |
| 228 |
vertical-align: middle; |
| 229 |
width: 1rem; |
| 230 |
min-width: 1rem; |
| 231 |
-webkit-appearance: none; |
| 232 |
box-shadow: inset 0 1px 2px rgba(0,0,0,.1); |
| 233 |
transition: border-color .05s ease-in-out; |
| 234 |
-ms-flex-item-align: center; |
| 235 |
align-self: center |
| 236 |
} |
| 237 |
.ui_element .wpbc_ui_radio { |
| 238 |
border-radius: 50%; |
| 239 |
margin-right: .25rem; |
| 240 |
line-height: .71428571 |
| 241 |
} |
| 242 |
.ui_element .wpbc_ui_checkbox.focus, |
| 243 |
.ui_element .wpbc_ui_checkbox:focus, |
| 244 |
.ui_element .wpbc_ui_radio.focus, |
| 245 |
.ui_element .wpbc_ui_radio:focus { |
| 246 |
border-color: #d8d8d8; |
| 247 |
box-shadow: 0 0 0 1px #2271b1; |
| 248 |
box-shadow: 0 0 0 0 #4f94d4,0 0 1px 1px rgba(79,148,212,.8); |
| 249 |
z-index: 1; |
| 250 |
outline: transparent solid 2px!important |
| 251 |
} |
| 252 |
.ui_element .wpbc_ui_checkbox + .wpbc_ui_control_label, |
| 253 |
.ui_element .wpbc_ui_radio + .wpbc_ui_control_label { |
| 254 |
padding-left: 5px; |
| 255 |
padding-right: 5px |
| 256 |
} |
| 257 |
.ui_element .wpbc_ui_control.wpbc_ui_button .wpbc_ui_checkbox + .wpbc_ui_control_label, |
| 258 |
.ui_element .wpbc_ui_control.wpbc_ui_button .wpbc_ui_radio + .wpbc_ui_control_label { |
| 259 |
margin: 0 |
| 260 |
} |
| 261 |
@media screen and (max-width:782px) { |
| 262 |
.ui_element .wpbc_ui_checkbox, |
| 263 |
.ui_element .wpbc_ui_radio { |
| 264 |
height: 1.5625rem!important; |
| 265 |
width: 1.5625rem |
| 266 |
} |
| 267 |
} |
| 268 |
.wpbc_ui__toggle { |
| 269 |
-ms-flex-align: start; |
| 270 |
align-items: flex-start; |
| 271 |
display: -ms-flexbox; |
| 272 |
display: flex; |
| 273 |
gap: 10px |
| 274 |
} |
| 275 |
.wpbc_ui__toggle input[type=checkbox] { |
| 276 |
display: none; |
| 277 |
height: 0; |
| 278 |
width: 0 |
| 279 |
} |
| 280 |
.wpbc_ui__toggle input[type=checkbox]:checked + label.wpbc_ui__toggle_icon { |
| 281 |
background-color: #036aab |
| 282 |
} |
| 283 |
.wpbc_ui__toggle input[type=checkbox]:checked + label.wpbc_ui__toggle_icon:after { |
| 284 |
left: calc(100% - 13px - 2px) |
| 285 |
} |
| 286 |
.wpbc_ui__toggle label, |
| 287 |
.wpbc_ui__toggle span { |
| 288 |
-ms-flex-align: start; |
| 289 |
align-items: flex-start; |
| 290 |
display: -ms-flexbox; |
| 291 |
display: flex; |
| 292 |
gap: 10px; |
| 293 |
margin: 0; |
| 294 |
vertical-align: unset |
| 295 |
} |
| 296 |
.wpbc_ui__toggle .wpbc_ui__toggle_label:hover { |
| 297 |
cursor: pointer |
| 298 |
} |
| 299 |
.wpbc_ui__toggle .wpbc_ui__toggle_status { |
| 300 |
color: #86919e; |
| 301 |
font-size: 12px; |
| 302 |
line-height: 14px; |
| 303 |
margin: 2px 5px |
| 304 |
} |
| 305 |
.wpbc_ui__toggle .wpbc_ui__toggle_icon { |
| 306 |
background-color: #bbb; |
| 307 |
border-radius: 8.5px; |
| 308 |
cursor: pointer; |
| 309 |
display: inline-block; |
| 310 |
height: 17px; |
| 311 |
margin: 0 1px; |
| 312 |
position: relative; |
| 313 |
text-indent: -9999px; |
| 314 |
width: 27px; |
| 315 |
-ms-flex: 0 0 auto; |
| 316 |
flex: 0 0 auto |
| 317 |
} |
| 318 |
.wpbc_ui__toggle .wpbc_ui__toggle_icon:after { |
| 319 |
background: #fff; |
| 320 |
border-radius: 50%; |
| 321 |
content: ""; |
| 322 |
height: 13px; |
| 323 |
left: 2px; |
| 324 |
position: absolute; |
| 325 |
top: 2px; |
| 326 |
width: 13px; |
| 327 |
transition-property: all; |
| 328 |
transition-duration: .25s; |
| 329 |
transition-timing-function: ease-out |
| 330 |
} |
| 331 |
.wpbc_ui__toggle .wpbc-help-tooltip { |
| 332 |
margin: 0!important |
| 333 |
} |
| 334 |
.wpbc_ui__toggle:hover input:checked + label.wpbc_ui__toggle_icon { |
| 335 |
background-color: #215d8f |
| 336 |
} |
| 337 |
.wpbc_ui__toggle:hover .wpbc_ui__toggle_icon { |
| 338 |
background-color: #777 |
| 339 |
} |
| 340 |
.wpbc_ui__toggle input[type=checkbox]:disabled + label.wpbc_ui__toggle_icon, |
| 341 |
.wpbc_ui__toggle:hover input:disabled + label.wpbc_ui__toggle_icon { |
| 342 |
background-color: #ddd; |
| 343 |
cursor: not-allowed |
| 344 |
} |
| 345 |
.wpbc_ui__toggle input[type=checkbox]:checked:disabled + label.wpbc_ui__toggle_icon { |
| 346 |
background-color: #c9dbe6 |
| 347 |
} |
| 348 |
.ui_element .wpbc_ui__toggle { |
| 349 |
-ms-flex-align: center; |
| 350 |
align-items: center |
| 351 |
} |
| 352 |
.wpbc_ajx_toolbar .ui_container.ui_container_small .ui_group .ui_element .wpbc_ui__toggle > * { |
| 353 |
margin: 0 |
| 354 |
} |
| 355 |
.form-table td fieldset .wpbc_ui__toggle { |
| 356 |
margin: 5px 0; |
| 357 |
display: -ms-inline-flexbox; |
| 358 |
display: inline-flex |
| 359 |
} |
| 360 |
.form-table td fieldset .wpbc_ui__toggle input[type=checkbox] + label.wpbc_ui__toggle_icon { |
| 361 |
margin: 3px 0 .5em!important |
| 362 |
} |
| 363 |
.form-table td fieldset .wpbc_ui__toggle label, |
| 364 |
.form-table td fieldset .wpbc_ui__toggle label * { |
| 365 |
line-height: 1.6; |
| 366 |
margin: 0 1px!important |
| 367 |
} |
| 368 |
.wpbc_ui__toggle input[type=checkbox].wpbc_visible_but_out_screen { |
| 369 |
display: block; |
| 370 |
visibility: hidden; |
| 371 |
position: absolute |
| 372 |
} |
| 373 |
.wpbc_toggle_danger.wpbc_ui__toggle input[type=checkbox]:checked+label.wpbc_ui__toggle_icon, |
| 374 |
.wpbc_toggle_danger.wpbc_ui__toggle:hover input:checked+label.wpbc_ui__toggle_icon { |
| 375 |
background-color: #d63638 |
| 376 |
} |
| 377 |
.ui_element .wpbc_ui_addon { |
| 378 |
-ms-flex: 0 1 auto; |
| 379 |
flex: 0 1 auto; |
| 380 |
display: -ms-flexbox; |
| 381 |
display: flex; |
| 382 |
-ms-flex-flow: row wrap; |
| 383 |
flex-flow: row wrap; |
| 384 |
-ms-flex-pack: stretch; |
| 385 |
justify-content: stretch; |
| 386 |
-ms-flex-align: center; |
| 387 |
align-items: center |
| 388 |
} |
| 389 |
.ui_element label.wpbc_ui_control_label { |
| 390 |
-ms-flex: 0 1 auto; |
| 391 |
flex: 0 1 auto; |
| 392 |
display: -ms-flexbox; |
| 393 |
display: flex; |
| 394 |
-ms-flex-flow: row wrap; |
| 395 |
flex-flow: row wrap; |
| 396 |
-ms-flex-pack: start; |
| 397 |
justify-content: flex-start; |
| 398 |
-ms-flex-align: center; |
| 399 |
align-items: center; |
| 400 |
padding: 0 5px 1px 0 |
| 401 |
} |
| 402 |
.ui_element label.wpbc_ui_control_label + .wpbc_ui_control:first-of-type { |
| 403 |
border-top-left-radius: 3px!important; |
| 404 |
border-bottom-left-radius: 3px!important |
| 405 |
} |
| 406 |
.ui_element .wpbc_ui_separtor { |
| 407 |
-ms-flex: 0 1 auto; |
| 408 |
flex: 0 1 auto; |
| 409 |
display: -ms-flexbox; |
| 410 |
display: flex; |
| 411 |
-ms-flex-flow: row wrap; |
| 412 |
flex-flow: row wrap; |
| 413 |
-ms-flex-pack: stretch; |
| 414 |
justify-content: stretch; |
| 415 |
-ms-flex-align: center; |
| 416 |
align-items: center; |
| 417 |
border-right: 1px solid #ccc |
| 418 |
} |
| 419 |
.ui_element .wpbc_option_separator, |
| 420 |
.ui_element .wpbc_option_step { |
| 421 |
padding-right: 10px; |
| 422 |
padding-left: 10px; |
| 423 |
font-weight: 600; |
| 424 |
border-bottom: 4px solid transparent; |
| 425 |
padding-bottom: 9px; |
| 426 |
margin-bottom: -9px |
| 427 |
} |
| 428 |
.ui_element .wpbc_passed_step { |
| 429 |
border-bottom: 4px solid #d0d3c0 |
| 430 |
} |
| 431 |
.ui_element .wpbc_selected_step { |
| 432 |
border-bottom: 4px solid #aac71e |
| 433 |
} |
| 434 |
.ui_element .wpbc_ui_dropdown__outside_label { |
| 435 |
-ms-flex: 0 1 auto; |
| 436 |
flex: 0 1 auto; |
| 437 |
display: -ms-flexbox; |
| 438 |
display: flex; |
| 439 |
-ms-flex-flow: row nowrap; |
| 440 |
flex-flow: row nowrap; |
| 441 |
-ms-flex-pack: start; |
| 442 |
justify-content: flex-start; |
| 443 |
-ms-flex-align: center; |
| 444 |
align-items: center; |
| 445 |
padding: 0 10px 1px 0 |
| 446 |
} |
| 447 |
.ui_element .wpbc_ui_dropdown { |
| 448 |
-ms-flex: 0 1 auto; |
| 449 |
flex: 0 1 auto; |
| 450 |
display: -ms-flexbox; |
| 451 |
display: flex; |
| 452 |
-ms-flex-flow: row nowrap; |
| 453 |
flex-flow: row nowrap; |
| 454 |
-ms-flex-pack: start; |
| 455 |
justify-content: flex-start; |
| 456 |
-ms-flex-align: stretch; |
| 457 |
align-items: stretch; |
| 458 |
position: relative |
| 459 |
} |
| 460 |
.ui_element .wpbc_ui_dropdown * { |
| 461 |
box-sizing: border-box |
| 462 |
} |
| 463 |
.ui_element .wpbc_ui_dropdown .wpbc_ui_dropdown__inside_label { |
| 464 |
font-weight: 600; |
| 465 |
margin: 0; |
| 466 |
padding: 0 .5em 0 0 |
| 467 |
} |
| 468 |
.ui_element .wpbc_ui_dropdown .wpbc_ui_dropdown__inside_caret { |
| 469 |
display: inline-block; |
| 470 |
width: 0; |
| 471 |
height: 0; |
| 472 |
margin-left: 7px; |
| 473 |
vertical-align: middle; |
| 474 |
border-top: 4px dashed; |
| 475 |
border-right: 4px solid transparent; |
| 476 |
border-left: 4px solid transparent |
| 477 |
} |
| 478 |
.ui_element .wpbc_ui_dropdown:last-child > .wpbc_ui_button:last-of-type { |
| 479 |
border-top-right-radius: 3px; |
| 480 |
border-bottom-right-radius: 3px |
| 481 |
} |
| 482 |
.ui_element .wpbc_ui_dropdown:not(:first-child) > .wpbc_ui_button:first-child { |
| 483 |
border-top-left-radius: 0; |
| 484 |
border-bottom-left-radius: 0 |
| 485 |
} |
| 486 |
.ui_element .wpbc_ui_dropdown:not(:last-child) > .wpbc_ui_button:last-child { |
| 487 |
border-top-right-radius: 0; |
| 488 |
border-bottom-right-radius: 0 |
| 489 |
} |
| 490 |
.ui_element .wpbc_ui_dropdown__outside_label + .wpbc_ui_dropdown > .wpbc_ui_button:first-child { |
| 491 |
border-top-left-radius: 3px; |
| 492 |
border-bottom-left-radius: 3px |
| 493 |
} |
| 494 |
.wpbc_ui_dropdown .ui_dropdown_menu li.ui_complex_option_element { |
| 495 |
display: -ms-flexbox; |
| 496 |
display: flex; |
| 497 |
-ms-flex-flow: row wrap; |
| 498 |
flex-flow: row wrap; |
| 499 |
-ms-flex-pack: start; |
| 500 |
justify-content: flex-start; |
| 501 |
-ms-flex-align: center; |
| 502 |
align-items: center; |
| 503 |
margin: 0; |
| 504 |
padding: 0 15px |
| 505 |
} |
| 506 |
.wpbc_ui_dropdown ul.ui_dropdown_menu li.ui_complex_option_element .ui_element { |
| 507 |
-ms-flex: 0 1 50%; |
| 508 |
flex: 0 1 50%; |
| 509 |
display: -ms-flexbox; |
| 510 |
display: flex; |
| 511 |
-ms-flex-flow: row nowrap; |
| 512 |
flex-flow: row nowrap; |
| 513 |
-ms-flex-pack: start; |
| 514 |
justify-content: flex-start; |
| 515 |
-ms-flex-align: center; |
| 516 |
align-items: center; |
| 517 |
margin: 0; |
| 518 |
padding: 4px 0 |
| 519 |
} |
| 520 |
.wpbc_ui_dropdown ul.ui_dropdown_menu li.ui_complex_option_element .ui_element > * { |
| 521 |
-ms-flex: 0 1 auto; |
| 522 |
flex: 0 1 auto; |
| 523 |
margin: 0; |
| 524 |
height: auto; |
| 525 |
max-width: 210px |
| 526 |
} |
| 527 |
.ui_element .wpbc_ui_dropdown .ui_dropdown_menu { |
| 528 |
display: none; |
| 529 |
position: absolute; |
| 530 |
top: 100%; |
| 531 |
left: 0; |
| 532 |
z-index: 1000; |
| 533 |
float: left; |
| 534 |
min-width: 190px; |
| 535 |
padding: 5px 0; |
| 536 |
margin: 0; |
| 537 |
list-style: none; |
| 538 |
text-align: left; |
| 539 |
background-color: #fff; |
| 540 |
box-shadow: 0 6px 12px rgba(0,0,0,.175); |
| 541 |
border: 1px solid rgba(0,0,0,.15); |
| 542 |
border-radius: 0 0 3px 3px; |
| 543 |
background-clip: padding-box |
| 544 |
} |
| 545 |
.ui_element .wpbc_ui_dropdown.open .ui_dropdown_menu { |
| 546 |
animation: .2s ease-in-out forwards ui_dropdown_menu__anim__grow_down; |
| 547 |
-ms-transform-origin: top center; |
| 548 |
transform-origin: top center |
| 549 |
} |
| 550 |
@keyframes ui_dropdown_menu__anim__grow_down { |
| 551 |
0% { |
| 552 |
transform: scaleY(0) |
| 553 |
} |
| 554 |
50% { |
| 555 |
transform: scaleY(.8) |
| 556 |
} |
| 557 |
100% { |
| 558 |
transform: scaleY(1) |
| 559 |
} |
| 560 |
} |
| 561 |
@keyframes ui_dropdown_menu__anim__pop_up_animation { |
| 562 |
0% { |
| 563 |
transform: scale(0) |
| 564 |
} |
| 565 |
50% { |
| 566 |
transform: scale(1.1) |
| 567 |
} |
| 568 |
100% { |
| 569 |
transform: scale(1) |
| 570 |
} |
| 571 |
} |
| 572 |
@keyframes ui_dropdown_menu__anim__fade_in { |
| 573 |
0% { |
| 574 |
opacity: 0 |
| 575 |
} |
| 576 |
33% { |
| 577 |
opacity: .1 |
| 578 |
} |
| 579 |
66% { |
| 580 |
opacity: .2 |
| 581 |
} |
| 582 |
100% { |
| 583 |
opacity: 1 |
| 584 |
} |
| 585 |
} |
| 586 |
.ui_element .wpbc_ui_dropdown .ui_dropdown_menu-right { |
| 587 |
left: auto; |
| 588 |
right: 0 |
| 589 |
} |
| 590 |
.ui_element .wpbc_ui_dropdown ul.ui_dropdown_menu * { |
| 591 |
font-size: 13px |
| 592 |
} |
| 593 |
@media screen and (max-width:782px) { |
| 594 |
.ui_element .wpbc_ui_dropdown ul.ui_dropdown_menu * { |
| 595 |
font-size: 14px; |
| 596 |
line-height: 2em |
| 597 |
} |
| 598 |
} |
| 599 |
.ui_element .wpbc_ui_dropdown.open > .ui_dropdown_menu { |
| 600 |
display: block |
| 601 |
} |
| 602 |
.ui_element .wpbc_ui_dropdown .ui_dropdown_menu.pull-right, |
| 603 |
.ui_element .wpbc_ui_dropdown .ui_dropdown_menu.ui_dropdown_menu_right { |
| 604 |
left: auto; |
| 605 |
right: 0 |
| 606 |
} |
| 607 |
.ui_element .wpbc_ui_dropdown .ui_dropdown_menu.ui_dropdown_menu_left { |
| 608 |
left: 0; |
| 609 |
right: auto |
| 610 |
} |
| 611 |
.ui_element .wpbc_ui_dropdown .ui_dropdown_menu hr { |
| 612 |
height: 1px; |
| 613 |
margin: 5px 0; |
| 614 |
overflow: hidden; |
| 615 |
background: 0 0; |
| 616 |
border: 0; |
| 617 |
border-top: 1px solid #eee |
| 618 |
} |
| 619 |
.wpbc_ui_dropdown .ui_dropdown_menu li.dropdown-header { |
| 620 |
padding: 0 15px; |
| 621 |
color: #999; |
| 622 |
font-size: .8em; |
| 623 |
font-style: italic; |
| 624 |
font-weight: 600 |
| 625 |
} |
| 626 |
.wpbc_ui_dropdown .ui_dropdown_menu li { |
| 627 |
padding: 0; |
| 628 |
margin: 0 |
| 629 |
} |
| 630 |
.ui_element .wpbc_ui_dropdown .ui_dropdown_menu a { |
| 631 |
clear: both; |
| 632 |
display: block; |
| 633 |
font-weight: 400; |
| 634 |
padding: 5px 15px; |
| 635 |
white-space: nowrap; |
| 636 |
line-height: 18px |
| 637 |
} |
| 638 |
.ui_element .wpbc_ui_dropdown .ui_dropdown_menu > li > a { |
| 639 |
color: #333; |
| 640 |
text-decoration: none; |
| 641 |
font-weight: 400; |
| 642 |
padding: 8px 15px; |
| 643 |
white-space: nowrap; |
| 644 |
display: block; |
| 645 |
clear: both; |
| 646 |
font-size: 1em; |
| 647 |
line-height: 1.42857143; |
| 648 |
margin: 1px 5px; |
| 649 |
border-radius: 2px |
| 650 |
} |
| 651 |
.ui_element .wpbc_ui_dropdown .ui_dropdown_menu > .active > a, |
| 652 |
.ui_element .wpbc_ui_dropdown .ui_dropdown_menu > .active > a:focus, |
| 653 |
.ui_element .wpbc_ui_dropdown .ui_dropdown_menu > .active > a:hover, |
| 654 |
.ui_element .wpbc_ui_dropdown .ui_dropdown_menu > li > a:focus, |
| 655 |
.ui_element .wpbc_ui_dropdown .ui_dropdown_menu > li > a:hover { |
| 656 |
color: #fff; |
| 657 |
background: #08c; |
| 658 |
background: var(--wpbc_ui_dropdown__active-a-background); |
| 659 |
text-decoration: none; |
| 660 |
outline: 0; |
| 661 |
box-shadow: none |
| 662 |
} |
| 663 |
.ui_element .wpbc_ui_dropdown .ui_dropdown_menu > .disabled > a, |
| 664 |
.ui_element .wpbc_ui_dropdown .ui_dropdown_menu > .disabled > a:focus, |
| 665 |
.ui_element .wpbc_ui_dropdown .ui_dropdown_menu > .disabled > a:hover { |
| 666 |
color: #ccc |
| 667 |
} |
| 668 |
.ui_element .wpbc_ui_dropdown .ui_dropdown_menu > .disabled > a:focus, |
| 669 |
.ui_element .wpbc_ui_dropdown .ui_dropdown_menu > .disabled > a:hover { |
| 670 |
text-decoration: none; |
| 671 |
background-color: transparent; |
| 672 |
background-image: none; |
| 673 |
cursor: not-allowed |
| 674 |
} |
| 675 |
.ui_element .wpbc_ui_dropdown .dropdown-backdrop { |
| 676 |
position: fixed; |
| 677 |
left: 0; |
| 678 |
right: 0; |
| 679 |
bottom: 0; |
| 680 |
top: 0; |
| 681 |
z-index: 990 |
| 682 |
} |
| 683 |
.ui_element .wpbc_ui_control { |
| 684 |
border-radius: 0; |
| 685 |
border-width: 1px; |
| 686 |
margin-right: -1px!important |
| 687 |
} |
| 688 |
.ui_element .wpbc_ui_control:first-child { |
| 689 |
border-radius: 3px 0 0 3px |
| 690 |
} |
| 691 |
.ui_element .wpbc_ui_control:last-child { |
| 692 |
border-radius: 0 3px 3px 0; |
| 693 |
border-width: 1px |
| 694 |
} |
| 695 |
.ui_element .wpbc_ui_control:first-child:last-child { |
| 696 |
border-radius: 3px |
| 697 |
} |
| 698 |
.ui_nowrap { |
| 699 |
-ms-flex-wrap: nowrap!important; |
| 700 |
flex-wrap: nowrap!important |
| 701 |
} |
| 702 |
.wpbc_ajx_toolbar { |
| 703 |
position: relative; |
| 704 |
margin: 0 0 10px 50px |
| 705 |
} |
| 706 |
.wpbc_ajx_toolbar * { |
| 707 |
box-sizing: border-box |
| 708 |
} |
| 709 |
.wpbc_ajx_toolbar.wpbc_buttons_row { |
| 710 |
position: initial; |
| 711 |
margin: 0; |
| 712 |
float: left |
| 713 |
} |
| 714 |
.wpbc_ajx_toolbar.wpbc_buttons_row .ui_container, |
| 715 |
.wpbc_ajx_toolbar.wpbc_no_background .ui_container { |
| 716 |
background: 0 0; |
| 717 |
border: none; |
| 718 |
margin: 0; |
| 719 |
padding: 0 |
| 720 |
} |
| 721 |
.wpbc_ajx_toolbar.wpbc_background_transparent .ui_container { |
| 722 |
background: 0 0; |
| 723 |
border: none |
| 724 |
} |
| 725 |
.wpbc_ajx_toolbar .ui_container { |
| 726 |
display: -ms-flexbox; |
| 727 |
display: flex; |
| 728 |
-ms-flex-flow: row wrap; |
| 729 |
flex-flow: row wrap; |
| 730 |
-ms-flex-pack: start; |
| 731 |
justify-content: flex-start; |
| 732 |
-ms-flex-align: stretch; |
| 733 |
align-items: stretch; |
| 734 |
margin: 0; |
| 735 |
box-shadow: none; |
| 736 |
border: 1px solid #dadada; |
| 737 |
border-top: none; |
| 738 |
background: #f7f7f7; |
| 739 |
font-size: 14px; |
| 740 |
padding: 6px 15px |
| 741 |
} |
| 742 |
.wpbc_ajx_toolbar .ui_container:last-child { |
| 743 |
border-radius: 0 0 2px 2px |
| 744 |
} |
| 745 |
.wpbc_ajx_toolbar.wpbc_no_borders .ui_container { |
| 746 |
border: none; |
| 747 |
background: 0 0; |
| 748 |
padding: 0 |
| 749 |
} |
| 750 |
div.wpbc_ajx_toolbar.wpbc_no_borders { |
| 751 |
margin: 0 |
| 752 |
} |
| 753 |
.wpbc_flex_toolbar_container { |
| 754 |
display: -ms-flexbox; |
| 755 |
display: flex; |
| 756 |
-ms-flex-flow: row wrap; |
| 757 |
flex-flow: row wrap; |
| 758 |
-ms-flex-pack: start; |
| 759 |
justify-content: flex-start; |
| 760 |
-ms-flex-align: stretch; |
| 761 |
align-items: stretch; |
| 762 |
background: #f7f7f7; |
| 763 |
border: 1px solid #dadada; |
| 764 |
box-shadow: none; |
| 765 |
border-radius: 2px; |
| 766 |
margin: 0 0 10px; |
| 767 |
padding: 6px 15px; |
| 768 |
font-size: 14px |
| 769 |
} |
| 770 |
.wpbc_ajx_under_toolbar_row { |
| 771 |
display: -ms-flexbox; |
| 772 |
display: flex; |
| 773 |
-ms-flex-flow: row wrap; |
| 774 |
flex-flow: row wrap; |
| 775 |
-ms-flex-pack: start; |
| 776 |
justify-content: flex-start; |
| 777 |
-ms-flex-align: center; |
| 778 |
align-items: center |
| 779 |
} |
| 780 |
.wpbc_ajx_under_toolbar_row .wpbc_ajx_booking_pagination { |
| 781 |
margin-left: auto |
| 782 |
} |
| 783 |
.wpbc_ajx_toolbar .ui_container .ui_group { |
| 784 |
-ms-flex: 0 1 auto; |
| 785 |
flex: 0 1 auto; |
| 786 |
padding: 0; |
| 787 |
display: -ms-flexbox; |
| 788 |
display: flex; |
| 789 |
-ms-flex-flow: row wrap; |
| 790 |
flex-flow: row wrap; |
| 791 |
-ms-flex-pack: start; |
| 792 |
justify-content: flex-start; |
| 793 |
-ms-flex-align: stretch; |
| 794 |
align-items: stretch; |
| 795 |
border: none; |
| 796 |
margin: 0 20px 0 0 |
| 797 |
} |
| 798 |
.wpbc_ajx_toolbar .ui_container .ui_group:last-child { |
| 799 |
margin: 0 |
| 800 |
} |
| 801 |
.wpbc_not_toolbar_is_send_emails { |
| 802 |
border-left: 1px solid #dbdbdb; |
| 803 |
padding-left: 10px |
| 804 |
} |
| 805 |
.wpbc_ajx_toolbar .ui_container .ui_group .ui_element { |
| 806 |
display: -ms-flexbox; |
| 807 |
display: flex; |
| 808 |
-ms-flex-flow: row wrap; |
| 809 |
flex-flow: row wrap; |
| 810 |
-ms-flex-pack: start; |
| 811 |
justify-content: flex-start; |
| 812 |
-ms-flex-align: stretch; |
| 813 |
align-items: stretch; |
| 814 |
-ms-flex: 0 1 auto; |
| 815 |
flex: 0 1 auto; |
| 816 |
position: relative; |
| 817 |
margin: 0 15px 0 0 |
| 818 |
} |
| 819 |
.wpbc_ajx_toolbar .ui_container .ui_group .ui_element:last-child { |
| 820 |
margin-right: 0 |
| 821 |
} |
| 822 |
.wpbc_ajx_toolbar .ui_container .ui_group .ui_element > * { |
| 823 |
margin: 5px 0; |
| 824 |
height: 38px |
| 825 |
} |
| 826 |
.ui_elements_divider { |
| 827 |
margin-left: 15px |
| 828 |
} |
| 829 |
.wpbc_ajx_toolbar .ui_container.ui_container_micro *, |
| 830 |
.wpbc_ajx_toolbar .ui_container.ui_container_mini *, |
| 831 |
.wpbc_ajx_toolbar .ui_container.ui_container_small * { |
| 832 |
font-size: 13px |
| 833 |
} |
| 834 |
.wpbc_ajx_toolbar .ui_container.ui_container_mini { |
| 835 |
padding: 3px 15px |
| 836 |
} |
| 837 |
.wpbc_ajx_toolbar .ui_container.ui_container_mini .ui_group .ui_element > *, |
| 838 |
.wpbc_ajx_toolbar .ui_container.ui_container_small .ui_group .ui_element > * { |
| 839 |
height: 30px |
| 840 |
} |
| 841 |
.wpbc_ajx_toolbar .ui_container .ui_group .ui_element.ui_element_micro > *, |
| 842 |
.wpbc_ajx_toolbar .ui_container.ui_container_micro .ui_group .ui_element > * { |
| 843 |
height: 22px; |
| 844 |
line-height: 1 |
| 845 |
} |
| 846 |
.wpbc_ajx_toolbar .ui_container .ui_group .ui_element.ui_element_micro { |
| 847 |
margin-right: 5px; |
| 848 |
-ms-flex-align: center; |
| 849 |
align-items: center |
| 850 |
} |
| 851 |
.wpbc_ajx_toolbar .ui_container .ui_group .ui_element.ui_element_micro:last-child { |
| 852 |
margin-right: 0 |
| 853 |
} |
| 854 |
@media (max-width:782px) { |
| 855 |
.wpbc_ajx_toolbar .ui_container.ui_container_micro *, |
| 856 |
.wpbc_ajx_toolbar .ui_container.ui_container_mini *, |
| 857 |
.wpbc_ajx_toolbar .ui_container.ui_container_small * { |
| 858 |
font-size: 14px |
| 859 |
} |
| 860 |
#toolbar_booking_listing.wpbc_ajx_toolbar .ui_container .ui_group .ui_element > *, |
| 861 |
.wpbc_ajx_toolbar.wpbc_buttons_row .ui_container .ui_group .ui_element > * { |
| 862 |
height: 38px |
| 863 |
} |
| 864 |
#toolbar_booking_listing.wpbc_ajx_toolbar .ui_container .ui_group .ui_element > .wpbc_ui_button, |
| 865 |
.wpbc_ajx_toolbar.wpbc_buttons_row .ui_container .ui_group .ui_element > .wpbc_ui_button { |
| 866 |
padding: 0 15px 1px; |
| 867 |
display: -ms-flexbox; |
| 868 |
display: flex; |
| 869 |
-ms-flex-flow: row wrap; |
| 870 |
flex-flow: row wrap; |
| 871 |
-ms-flex-pack: center; |
| 872 |
justify-content: center; |
| 873 |
-ms-flex-align: center; |
| 874 |
align-items: center |
| 875 |
} |
| 876 |
} |
| 877 |
.wpbc_ajx_toolbar .ui_container .ui_group.ui_group__dates_status { |
| 878 |
margin-right: 2.5em |
| 879 |
} |
| 880 |
.wpbc_ajx_toolbar .ui_container .ui_group.ui_group__keyword, |
| 881 |
.wpbc_ajx_toolbar .ui_container .ui_group.ui_group__keyword .ui_element { |
| 882 |
-ms-flex: 1 1 auto; |
| 883 |
flex: 1 1 auto |
| 884 |
} |
| 885 |
.wpbc_ajx_toolbar .ui_container .ui_group.ui_group__keyword .ui_element .wpbc_search_field { |
| 886 |
width: 100% |
| 887 |
} |
| 888 |
.wpbc_ajx_toolbar .ui_container.ui_container_filter_row_2 { |
| 889 |
padding: 4px 15px |
| 890 |
} |
| 891 |
.wpbc_ajx_toolbar .ui_container.ui_container_filter_row_2 .ui_group.ui_group__statuses { |
| 892 |
-ms-flex: 1 1 auto; |
| 893 |
flex: 1 1 auto |
| 894 |
} |
| 895 |
.ui_container .ui_group .ui_element .chzn-container.chzn-container-multi { |
| 896 |
-ms-flex: 1 1 auto; |
| 897 |
flex: 1 1 auto; |
| 898 |
display: -ms-flexbox; |
| 899 |
display: flex; |
| 900 |
-ms-flex-flow: column wrap; |
| 901 |
flex-flow: column wrap; |
| 902 |
-ms-flex-pack: center; |
| 903 |
justify-content: center; |
| 904 |
-ms-flex-align: center; |
| 905 |
align-items: center; |
| 906 |
height: initial; |
| 907 |
width: auto!important; |
| 908 |
min-width: 10em; |
| 909 |
margin-right: -1px |
| 910 |
} |
| 911 |
@media (max-width:782px) { |
| 912 |
.ui_container .ui_group .ui_element .chzn-container.chzn-container-multi { |
| 913 |
height: initial!important |
| 914 |
} |
| 915 |
} |
| 916 |
.ui_container .ui_group .ui_element .chzn-container.chzn-container-multi ul.chzn-choices { |
| 917 |
-ms-flex: 1 1 auto; |
| 918 |
flex: 1 1 auto; |
| 919 |
display: -ms-flexbox; |
| 920 |
display: flex; |
| 921 |
-ms-flex-flow: row wrap; |
| 922 |
flex-flow: row wrap; |
| 923 |
-ms-flex-pack: start; |
| 924 |
justify-content: flex-start; |
| 925 |
-ms-flex-align: center; |
| 926 |
align-items: center; |
| 927 |
-ms-flex-line-pack: center; |
| 928 |
align-content: center; |
| 929 |
margin: 0; |
| 930 |
padding: 0 0 0 5px; |
| 931 |
height: auto; |
| 932 |
min-height: 28px!important; |
| 933 |
border-radius: 3px 0 0 3px |
| 934 |
} |
| 935 |
.ui_container .ui_group .ui_element .chzn-container.chzn-container-multi.chzn-container-active ul.chzn-choices { |
| 936 |
border-color: #d8d8d8!important; |
| 937 |
box-shadow: 0 0 0 0 #4f94d4,0 0 1px 1px rgba(79,148,212,.8)!important; |
| 938 |
z-index: 1; |
| 939 |
outline: transparent solid 2px |
| 940 |
} |
| 941 |
.ui_container .ui_group .ui_element .chzn-container.chzn-container-multi ul.chzn-choices li.search-choice { |
| 942 |
-ms-flex: 0 1 auto; |
| 943 |
flex: 0 1 auto; |
| 944 |
display: -ms-flexbox; |
| 945 |
display: flex; |
| 946 |
-ms-flex-flow: row nowrap; |
| 947 |
flex-flow: row nowrap; |
| 948 |
-ms-flex-pack: start; |
| 949 |
justify-content: flex-start; |
| 950 |
-ms-flex-align: baseline; |
| 951 |
align-items: baseline; |
| 952 |
margin: 3px 7px 3px 0; |
| 953 |
padding: 4px 7px 3px 8px |
| 954 |
} |
| 955 |
.ui_container .ui_group .ui_element .chzn-container.chzn-container-multi ul.chzn-choices li.search-choice span { |
| 956 |
word-wrap: break-word |
| 957 |
} |
| 958 |
.ui_container .ui_group .ui_element .chzn-container.chzn-container-multi ul.chzn-choices li.search-choice a.search-choice-close0 { |
| 959 |
font-family: "Glyphicons Halflings"; |
| 960 |
font-style: normal; |
| 961 |
font-weight: 400; |
| 962 |
font-size: 9px; |
| 963 |
color: #555; |
| 964 |
text-decoration: none; |
| 965 |
position: relative; |
| 966 |
top: auto; |
| 967 |
left: auto; |
| 968 |
right: auto; |
| 969 |
bottom: auto; |
| 970 |
margin: 0 0 0 1em; |
| 971 |
display: -ms-flexbox; |
| 972 |
display: flex; |
| 973 |
-ms-flex-flow: column wrap; |
| 974 |
flex-flow: column wrap; |
| 975 |
-ms-flex-pack: center; |
| 976 |
justify-content: center; |
| 977 |
-ms-flex-line-pack: center; |
| 978 |
align-content: center; |
| 979 |
width: auto; |
| 980 |
height: auto |
| 981 |
} |
| 982 |
.ui_container .ui_group .ui_element .chzn-container.chzn-container-multi ul.chzn-choices li.search-choice a.search-choice-close0:before { |
| 983 |
content: "\e014" |
| 984 |
} |
| 985 |
.ui_container .ui_group .ui_element .chzn-container.chzn-container-multi ul.chzn-choices li.search-choice a.search-choice-close0:hover { |
| 986 |
text-decoration: none |
| 987 |
} |
| 988 |
.ui_container .ui_group .ui_element .chzn-container.chzn-container-multi ul.chzn-choices li.search-field { |
| 989 |
-ms-flex: 0 1 1px; |
| 990 |
flex: 0 1 1px; |
| 991 |
display: -ms-flexbox; |
| 992 |
display: flex; |
| 993 |
-ms-flex-flow: row wrap; |
| 994 |
flex-flow: row wrap; |
| 995 |
-ms-flex-pack: start; |
| 996 |
justify-content: flex-start; |
| 997 |
-ms-flex-align: center; |
| 998 |
align-items: center; |
| 999 |
margin: 0; |
| 1000 |
padding: 0; |
| 1001 |
white-space: nowrap |
| 1002 |
} |
| 1003 |
.ui_container .ui_group .ui_element .chzn-container.chzn-container-multi ul.chzn-choices li.search-field input[type=text].default { |
| 1004 |
min-width: 12em |
| 1005 |
} |
| 1006 |
.ui_container .ui_group .ui_element .chzn-container.chzn-container-multi ul.chzn-choices li.search-field input[type=text] { |
| 1007 |
font-family: inherit |
| 1008 |
} |
| 1009 |
.ui_container .ui_group .ui_element .chzn-container div.chzn-drop ul.chzn-results li.highlighted { |
| 1010 |
color: #fff; |
| 1011 |
background: #08c; |
| 1012 |
text-decoration: none; |
| 1013 |
outline: 0; |
| 1014 |
box-shadow: none |
| 1015 |
} |
| 1016 |
.wpbc_blur { |
| 1017 |
filter: blur(1px); |
| 1018 |
pointer-events: none; |
| 1019 |
-webkit-user-select: none; |
| 1020 |
-ms-user-select: none; |
| 1021 |
user-select: none |
| 1022 |
} |
| 1023 |
.wpbc_upgrade_note { |
| 1024 |
position: absolute; |
| 1025 |
top: 50%; |
| 1026 |
background-color: #fff; |
| 1027 |
padding: 10px; |
| 1028 |
border: 1px solid #d1d1d1; |
| 1029 |
box-shadow: 0 3px 10px #5e5e5e33; |
| 1030 |
color: #141b38; |
| 1031 |
font-size: 15px; |
| 1032 |
font-weight: 600; |
| 1033 |
width: 100%; |
| 1034 |
text-align: center; |
| 1035 |
line-height: 2em; |
| 1036 |
z-index: 99; |
| 1037 |
left: 50%; |
| 1038 |
-ms-transform: translate(-50%) translateY(-50%); |
| 1039 |
transform: translate(-50%) translateY(-50%) |
| 1040 |
} |
| 1041 |
.wpbc_upgrade_note a { |
| 1042 |
text-decoration: none; |
| 1043 |
border-bottom: 1px dashed |
| 1044 |
} |
| 1045 |
.wpbc_upgrade_note a:hover { |
| 1046 |
text-decoration: none; |
| 1047 |
border-bottom: 1px solid |
| 1048 |
} |
| 1049 |
.wpbc_upgrade_note.wpbc_upgrade_theme_green { |
| 1050 |
width: 70%; |
| 1051 |
height: 4em; |
| 1052 |
display: -ms-flexbox; |
| 1053 |
display: flex; |
| 1054 |
-ms-flex-flow: column wrap; |
| 1055 |
flex-flow: column wrap; |
| 1056 |
-ms-flex-pack: center; |
| 1057 |
justify-content: center; |
| 1058 |
-ms-flex-line-pack: center; |
| 1059 |
align-content: center; |
| 1060 |
-ms-flex-align: center; |
| 1061 |
align-items: center; |
| 1062 |
border: 3px solid #5e9b05bd; |
| 1063 |
border-radius: 10px; |
| 1064 |
font-size: 16px |
| 1065 |
} |
| 1066 |
.wpbc_upgrade_widget { |
| 1067 |
-ms-transform: translate(0) translateY(0); |
| 1068 |
transform: translate(0) translateY(0); |
| 1069 |
position: relative; |
| 1070 |
z-index: 999 |
| 1071 |
} |
| 1072 |
.wpbc_upgrade_widget .wpbc_upgrade_widget_container { |
| 1073 |
background: #fff; |
| 1074 |
position: relative |
| 1075 |
} |
| 1076 |
.wpbc_upgrade_widget .wpbc_upgrade_widget_container .wpbc_upgrade_note { |
| 1077 |
width: 70%; |
| 1078 |
height: auto; |
| 1079 |
display: -ms-flexbox; |
| 1080 |
display: flex; |
| 1081 |
-ms-flex-flow: row nowrap; |
| 1082 |
flex-flow: row nowrap; |
| 1083 |
-ms-flex-pack: center; |
| 1084 |
justify-content: center; |
| 1085 |
-ms-flex-line-pack: start; |
| 1086 |
align-content: flex-start; |
| 1087 |
-ms-flex-align: center; |
| 1088 |
align-items: center |
| 1089 |
} |
| 1090 |
.wpbc_upgrade_widget .wpbc_upgrade_widget_container .wpbc_upgrade_note div:first-child { |
| 1091 |
margin: auto |
| 1092 |
} |
| 1093 |
.wpbc_upgrade_widget .wpbc_upgrade_widget_container .wpbc_upgrade_note .wpbc_panel_get_started_dismiss { |
| 1094 |
-ms-flex-item-align: start; |
| 1095 |
align-self: flex-start; |
| 1096 |
margin-left: auto; |
| 1097 |
padding: 4px 10px; |
| 1098 |
text-decoration: none; |
| 1099 |
font-weight: 600; |
| 1100 |
background: #fff; |
| 1101 |
border-radius: 7px; |
| 1102 |
border: none |
| 1103 |
} |