base.css
5727 lines
| 1 | :root { |
| 2 | /* Brand — follows the active WordPress admin color scheme */ |
| 3 | --admin-color: #3b74d5; |
| 4 | --admin-color-hover: #4280ea; |
| 5 | --admin-color-active: #2e5cab; |
| 6 | --admin-color-rgb: 59, 116, 213; |
| 7 | |
| 8 | /* Primary alias (kept in sync with the admin brand color) */ |
| 9 | --color-primary: var(--admin-color); |
| 10 | --color-primary-hover: var(--admin-color-hover); |
| 11 | --color-primary-active: var(--admin-color-active); |
| 12 | --color-primary-rgb: var(--admin-color-rgb); |
| 13 | |
| 14 | /* Secondary (neutral / slate) */ |
| 15 | --clr-sec: #94a3b8; |
| 16 | --clr-sec-hover: #64748b; |
| 17 | --color-secondary: var(--clr-sec); |
| 18 | --color-secondary-hover: var(--clr-sec-hover); |
| 19 | |
| 20 | /* Semantic palette */ |
| 21 | --color-info: #3b82f6; |
| 22 | --color-info-hover: #2563eb; |
| 23 | --color-info-rgb: 59, 130, 246; |
| 24 | --color-success: #10b981; |
| 25 | --color-success-hover: #059669; |
| 26 | --color-success-rgb: 16, 185, 129; |
| 27 | --color-warning: #f59e0b; |
| 28 | --color-warning-hover: #d97706; |
| 29 | --color-warning-rgb: 245, 158, 11; |
| 30 | --color-danger: #ef4444; |
| 31 | --color-danger-hover: #dc2626; |
| 32 | --color-danger-rgb: 239, 68, 68; |
| 33 | |
| 34 | /* Surfaces (legacy aliases) */ |
| 35 | --border-color: #dde6ee; |
| 36 | --bg-light: #f7fafd; |
| 37 | --bg-lighter: #fbfdff; |
| 38 | |
| 39 | /* ===== WPDM structural design tokens ===== */ |
| 40 | --wpdm-surface: #ffffff; |
| 41 | --wpdm-surface-muted: #f8fafc; |
| 42 | --wpdm-surface-sunken: #f1f5f9; |
| 43 | --wpdm-page-bg: #f8fbfd; |
| 44 | |
| 45 | --wpdm-border: #e5e7eb; |
| 46 | --wpdm-border-strong: #cbd5e1; |
| 47 | |
| 48 | --wpdm-text: #1e293b; |
| 49 | --wpdm-text-muted: #64748b; |
| 50 | --wpdm-text-subtle: #94a3b8; |
| 51 | |
| 52 | --wpdm-radius-sm: 4px; |
| 53 | --wpdm-radius-control: 6px; |
| 54 | --wpdm-radius: 8px; |
| 55 | --wpdm-radius-lg: 12px; |
| 56 | --wpdm-radius-pill: 500px; |
| 57 | |
| 58 | --wpdm-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02); |
| 59 | --wpdm-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04); |
| 60 | --wpdm-shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.06); |
| 61 | |
| 62 | --wpdm-transition-fast: all 0.15s ease; |
| 63 | --wpdm-transition: all 0.2s ease; |
| 64 | --wpdm-transition-slow: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); |
| 65 | } |
| 66 | .w3eden html { |
| 67 | font-family: sans-serif; |
| 68 | -webkit-text-size-adjust: 100%; |
| 69 | -ms-text-size-adjust: 100%; |
| 70 | } |
| 71 | .w3eden body { |
| 72 | margin: 0; |
| 73 | } |
| 74 | .w3eden article, |
| 75 | .w3eden aside, |
| 76 | .w3eden details, |
| 77 | .w3eden figcaption, |
| 78 | .w3eden figure, |
| 79 | .w3eden footer, |
| 80 | .w3eden header, |
| 81 | .w3eden hgroup, |
| 82 | .w3eden main, |
| 83 | .w3eden menu, |
| 84 | .w3eden nav, |
| 85 | .w3eden section, |
| 86 | .w3eden summary { |
| 87 | display: block; |
| 88 | } |
| 89 | .w3eden audio, |
| 90 | .w3eden canvas, |
| 91 | .w3eden progress, |
| 92 | .w3eden video { |
| 93 | display: inline-block; |
| 94 | vertical-align: baseline; |
| 95 | } |
| 96 | .w3eden audio:not([controls]) { |
| 97 | display: none; |
| 98 | height: 0; |
| 99 | } |
| 100 | .w3eden [hidden], |
| 101 | .w3eden template { |
| 102 | display: none; |
| 103 | } |
| 104 | .w3eden a { |
| 105 | background-color: transparent; |
| 106 | } |
| 107 | .w3eden a:active, |
| 108 | .w3eden a:hover { |
| 109 | outline: 0; |
| 110 | } |
| 111 | .w3eden abbr[title] { |
| 112 | border-bottom: 1px dotted; |
| 113 | } |
| 114 | .w3eden b, |
| 115 | .w3eden strong { |
| 116 | font-weight: 700; |
| 117 | } |
| 118 | .w3eden dfn { |
| 119 | font-style: italic; |
| 120 | } |
| 121 | .w3eden h1 { |
| 122 | margin: .67em 0; |
| 123 | font-size: 2em; |
| 124 | } |
| 125 | .w3eden mark { |
| 126 | color: #000; |
| 127 | background: #ffff00; |
| 128 | } |
| 129 | .w3eden small { |
| 130 | font-size: 80%; |
| 131 | } |
| 132 | .w3eden sub, |
| 133 | .w3eden sup { |
| 134 | position: relative; |
| 135 | font-size: 75%; |
| 136 | line-height: 0; |
| 137 | vertical-align: baseline; |
| 138 | } |
| 139 | .w3eden sup { |
| 140 | top: -0.5em; |
| 141 | } |
| 142 | .w3eden sub { |
| 143 | bottom: -0.25em; |
| 144 | } |
| 145 | .w3eden img { |
| 146 | border: 0; |
| 147 | } |
| 148 | .w3eden svg:not(:root) { |
| 149 | overflow: hidden; |
| 150 | } |
| 151 | .w3eden figure { |
| 152 | margin: 1em 40px; |
| 153 | } |
| 154 | .w3eden hr { |
| 155 | height: 0; |
| 156 | -webkit-box-sizing: content-box; |
| 157 | -moz-box-sizing: content-box; |
| 158 | box-sizing: content-box; |
| 159 | } |
| 160 | .w3eden pre { |
| 161 | overflow: auto; |
| 162 | } |
| 163 | .w3eden code, |
| 164 | .w3eden kbd, |
| 165 | .w3eden pre, |
| 166 | .w3eden samp { |
| 167 | font-family: monospace,monospace; |
| 168 | font-size: 1em; |
| 169 | } |
| 170 | .w3eden button, |
| 171 | .w3eden input, |
| 172 | .w3eden optgroup, |
| 173 | .w3eden select, |
| 174 | .w3eden textarea { |
| 175 | margin: 0; |
| 176 | font: inherit; |
| 177 | color: inherit; |
| 178 | } |
| 179 | .w3eden button { |
| 180 | overflow: visible; |
| 181 | } |
| 182 | .w3eden button, |
| 183 | .w3eden select { |
| 184 | text-transform: none; |
| 185 | } |
| 186 | .w3eden button, |
| 187 | .w3eden html input[type=button], |
| 188 | .w3eden input[type=reset], |
| 189 | .w3eden input[type=submit] { |
| 190 | -webkit-appearance: button; |
| 191 | cursor: pointer; |
| 192 | } |
| 193 | .w3eden button[disabled], |
| 194 | .w3eden html input[disabled] { |
| 195 | cursor: default; |
| 196 | } |
| 197 | .w3eden button::-moz-focus-inner, |
| 198 | .w3eden input::-moz-focus-inner { |
| 199 | padding: 0; |
| 200 | border: 0; |
| 201 | } |
| 202 | .w3eden input { |
| 203 | line-height: normal; |
| 204 | } |
| 205 | .w3eden input[type=checkbox], |
| 206 | .w3eden input[type=radio] { |
| 207 | -webkit-box-sizing: border-box; |
| 208 | -moz-box-sizing: border-box; |
| 209 | box-sizing: border-box; |
| 210 | padding: 0; |
| 211 | } |
| 212 | .w3eden input[type=number]::-webkit-inner-spin-button, |
| 213 | .w3eden input[type=number]::-webkit-outer-spin-button { |
| 214 | height: auto; |
| 215 | } |
| 216 | .w3eden input[type=search] { |
| 217 | -webkit-box-sizing: content-box; |
| 218 | -moz-box-sizing: content-box; |
| 219 | box-sizing: content-box; |
| 220 | -webkit-appearance: textfield; |
| 221 | } |
| 222 | .w3eden input[type=search]::-webkit-search-cancel-button, |
| 223 | .w3eden input[type=search]::-webkit-search-decoration { |
| 224 | -webkit-appearance: none; |
| 225 | } |
| 226 | .w3eden fieldset { |
| 227 | padding: .35em .625em .75em; |
| 228 | margin: 0 2px; |
| 229 | border: 1px solid #c0c0c0; |
| 230 | } |
| 231 | .w3eden legend { |
| 232 | padding: 0; |
| 233 | border: 0; |
| 234 | } |
| 235 | .w3eden textarea { |
| 236 | overflow: auto; |
| 237 | } |
| 238 | .w3eden optgroup { |
| 239 | font-weight: 700; |
| 240 | } |
| 241 | .w3eden table { |
| 242 | border-spacing: 0; |
| 243 | border-collapse: collapse; |
| 244 | } |
| 245 | .w3eden td, |
| 246 | .w3eden th { |
| 247 | padding: 0; |
| 248 | } |
| 249 | @media print { |
| 250 | .w3eden *, |
| 251 | .w3eden :after, |
| 252 | .w3eden :before { |
| 253 | color: #000!important; |
| 254 | text-shadow: none!important; |
| 255 | background: 0 0!important; |
| 256 | -webkit-box-shadow: none!important; |
| 257 | box-shadow: none !important; |
| 258 | } |
| 259 | .w3eden a, |
| 260 | .w3eden a:visited { |
| 261 | text-decoration: underline; |
| 262 | } |
| 263 | .w3eden a[href]:after { |
| 264 | content: " (" attr(href) ")"; |
| 265 | } |
| 266 | .w3eden abbr[title]:after { |
| 267 | content: " (" attr(title) ")"; |
| 268 | } |
| 269 | .w3eden a[href^="javascript:"]:after, |
| 270 | .w3eden a[href^="#"]:after { |
| 271 | content: ""; |
| 272 | } |
| 273 | .w3eden blockquote, |
| 274 | .w3eden pre { |
| 275 | border: 1px solid #999; |
| 276 | page-break-inside: avoid; |
| 277 | } |
| 278 | .w3eden thead { |
| 279 | display: table-header-group; |
| 280 | } |
| 281 | .w3eden img, |
| 282 | .w3eden tr { |
| 283 | page-break-inside: avoid; |
| 284 | } |
| 285 | .w3eden img { |
| 286 | max-width: 100% !important; |
| 287 | } |
| 288 | .w3eden h2, |
| 289 | .w3eden h3, |
| 290 | .w3eden p { |
| 291 | orphans: 3; |
| 292 | widows: 3; |
| 293 | } |
| 294 | .w3eden h2, |
| 295 | .w3eden h3 { |
| 296 | page-break-after: avoid; |
| 297 | } |
| 298 | .w3eden select { |
| 299 | background: #ffffff !important; |
| 300 | } |
| 301 | .w3eden .navbar { |
| 302 | display: none; |
| 303 | } |
| 304 | .w3eden .btn > .caret, |
| 305 | .w3eden .dropup > .btn > .caret { |
| 306 | border-top-color: #000000 !important; |
| 307 | } |
| 308 | .w3eden .label { |
| 309 | border: 1px solid #000000; |
| 310 | } |
| 311 | .w3eden .table { |
| 312 | border-collapse: collapse !important; |
| 313 | } |
| 314 | .w3eden .table td, |
| 315 | .w3eden .table th { |
| 316 | background-color: #ffffff !important; |
| 317 | } |
| 318 | .w3eden .table-bordered td, |
| 319 | .w3eden .table-bordered th { |
| 320 | border: 1px solid #dddddd !important; |
| 321 | } |
| 322 | } |
| 323 | |
| 324 | .w3eden * { |
| 325 | -webkit-box-sizing: border-box; |
| 326 | -moz-box-sizing: border-box; |
| 327 | box-sizing: border-box; |
| 328 | } |
| 329 | .w3eden :after, |
| 330 | .w3eden :before { |
| 331 | -webkit-box-sizing: border-box; |
| 332 | -moz-box-sizing: border-box; |
| 333 | box-sizing: border-box; |
| 334 | } |
| 335 | .w3eden html { |
| 336 | font-size: 10px; |
| 337 | -webkit-tap-highlight-color: rgba(0, 0, 0, 0); |
| 338 | } |
| 339 | .w3eden body { |
| 340 | font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; |
| 341 | font-size: 14px; |
| 342 | line-height: 1.42857143; |
| 343 | color: #333; |
| 344 | background-color: #ffffff; |
| 345 | } |
| 346 | .w3eden button, |
| 347 | .w3eden input, |
| 348 | .w3eden select, |
| 349 | .w3eden textarea { |
| 350 | font-family: inherit; |
| 351 | font-size: inherit; |
| 352 | line-height: inherit; |
| 353 | } |
| 354 | .w3eden a { |
| 355 | color: var(--color-primary); |
| 356 | text-decoration: none; |
| 357 | } |
| 358 | .w3eden a:focus, |
| 359 | .w3eden a:hover { |
| 360 | color: #23527c; |
| 361 | text-decoration: underline; |
| 362 | } |
| 363 | .w3eden a:focus { |
| 364 | outline: thin dotted; |
| 365 | outline: 5px auto -webkit-focus-ring-color; |
| 366 | outline-offset: -2px; |
| 367 | } |
| 368 | .w3eden figure { |
| 369 | margin: 0; |
| 370 | } |
| 371 | .w3eden img { |
| 372 | vertical-align: middle; |
| 373 | } |
| 374 | .w3eden .carousel-inner > .item > a > img, |
| 375 | .w3eden .carousel-inner > .item > img, |
| 376 | .w3eden .img-responsive, |
| 377 | .w3eden .thumbnail a > img, |
| 378 | .w3eden .thumbnail > img { |
| 379 | display: block; |
| 380 | max-width: 100%; |
| 381 | height: auto; |
| 382 | } |
| 383 | .w3eden .img-rounded { |
| 384 | border-radius: 6px; |
| 385 | } |
| 386 | .w3eden .img-thumbnail { |
| 387 | display: inline-block; |
| 388 | max-width: 100%; |
| 389 | height: auto; |
| 390 | padding: 4px; |
| 391 | line-height: 1.42857143; |
| 392 | background-color: #fff; |
| 393 | border: 1px solid #ddd; |
| 394 | border-radius: 4px; |
| 395 | -webkit-transition: all 0.2s ease-in-out; |
| 396 | -o-transition: all 0.2s ease-in-out; |
| 397 | transition: all 0.2s ease-in-out; |
| 398 | } |
| 399 | .w3eden .img-circle { |
| 400 | border-radius: 50%; |
| 401 | } |
| 402 | .w3eden hr { |
| 403 | margin-top: 20px; |
| 404 | margin-bottom: 20px; |
| 405 | border: 0; |
| 406 | border-top: 1px solid #eeeeee; |
| 407 | } |
| 408 | .w3eden .sr-only { |
| 409 | position: absolute; |
| 410 | width: 1px; |
| 411 | height: 1px; |
| 412 | padding: 0; |
| 413 | margin: -1px; |
| 414 | overflow: hidden; |
| 415 | clip: rect(0, 0, 0, 0); |
| 416 | border: 0; |
| 417 | } |
| 418 | .w3eden .sr-only-focusable:active, |
| 419 | .w3eden .sr-only-focusable:focus { |
| 420 | position: static; |
| 421 | width: auto; |
| 422 | height: auto; |
| 423 | margin: 0; |
| 424 | overflow: visible; |
| 425 | clip: auto; |
| 426 | } |
| 427 | .w3eden [role=button] { |
| 428 | cursor: pointer; |
| 429 | } |
| 430 | .w3eden .h1, |
| 431 | .w3eden .h2, |
| 432 | .w3eden .h3, |
| 433 | .w3eden .h4, |
| 434 | .w3eden .h5, |
| 435 | .w3eden .h6, |
| 436 | .w3eden h1, |
| 437 | .w3eden h2, |
| 438 | .w3eden h3, |
| 439 | .w3eden h4, |
| 440 | .w3eden h5, |
| 441 | .w3eden h6 { |
| 442 | font-family: inherit; |
| 443 | font-weight: 500; |
| 444 | line-height: 1.1; |
| 445 | color: inherit; |
| 446 | } |
| 447 | .w3eden .h1 .small, |
| 448 | .w3eden .h1 small, |
| 449 | .w3eden .h2 .small, |
| 450 | .w3eden .h2 small, |
| 451 | .w3eden .h3 .small, |
| 452 | .w3eden .h3 small, |
| 453 | .w3eden .h4 .small, |
| 454 | .w3eden .h4 small, |
| 455 | .w3eden .h5 .small, |
| 456 | .w3eden .h5 small, |
| 457 | .w3eden .h6 .small, |
| 458 | .w3eden .h6 small, |
| 459 | .w3eden h1 .small, |
| 460 | .w3eden h1 small, |
| 461 | .w3eden h2 .small, |
| 462 | .w3eden h2 small, |
| 463 | .w3eden h3 .small, |
| 464 | .w3eden h3 small, |
| 465 | .w3eden h4 .small, |
| 466 | .w3eden h4 small, |
| 467 | .w3eden h5 .small, |
| 468 | .w3eden h5 small, |
| 469 | .w3eden h6 .small, |
| 470 | .w3eden h6 small { |
| 471 | font-weight: 400; |
| 472 | line-height: 1; |
| 473 | color: #777777; |
| 474 | } |
| 475 | .w3eden .h1, |
| 476 | .w3eden .h2, |
| 477 | .w3eden .h3, |
| 478 | .w3eden h1, |
| 479 | .w3eden h2, |
| 480 | .w3eden h3 { |
| 481 | margin-top: 20px; |
| 482 | margin-bottom: 10px; |
| 483 | } |
| 484 | .w3eden .h1 .small, |
| 485 | .w3eden .h1 small, |
| 486 | .w3eden .h2 .small, |
| 487 | .w3eden .h2 small, |
| 488 | .w3eden .h3 .small, |
| 489 | .w3eden .h3 small, |
| 490 | .w3eden h1 .small, |
| 491 | .w3eden h1 small, |
| 492 | .w3eden h2 .small, |
| 493 | .w3eden h2 small, |
| 494 | .w3eden h3 .small, |
| 495 | .w3eden h3 small { |
| 496 | font-size: 65%; |
| 497 | } |
| 498 | .w3eden .h4, |
| 499 | .w3eden .h5, |
| 500 | .w3eden .h6, |
| 501 | .w3eden h4, |
| 502 | .w3eden h5, |
| 503 | .w3eden h6 { |
| 504 | margin-top: 10px; |
| 505 | margin-bottom: 10px; |
| 506 | } |
| 507 | .w3eden .h4 .small, |
| 508 | .w3eden .h4 small, |
| 509 | .w3eden .h5 .small, |
| 510 | .w3eden .h5 small, |
| 511 | .w3eden .h6 .small, |
| 512 | .w3eden .h6 small, |
| 513 | .w3eden h4 .small, |
| 514 | .w3eden h4 small, |
| 515 | .w3eden h5 .small, |
| 516 | .w3eden h5 small, |
| 517 | .w3eden h6 .small, |
| 518 | .w3eden h6 small { |
| 519 | font-size: 75%; |
| 520 | } |
| 521 | .w3eden .h1, |
| 522 | .w3eden h1 { |
| 523 | font-size: 36px; |
| 524 | } |
| 525 | .w3eden .h2, |
| 526 | .w3eden h2 { |
| 527 | font-size: 30px; |
| 528 | } |
| 529 | .w3eden .h3, |
| 530 | .w3eden h3 { |
| 531 | font-size: 24px; |
| 532 | } |
| 533 | .w3eden .h4, |
| 534 | .w3eden h4 { |
| 535 | font-size: 18px; |
| 536 | } |
| 537 | .w3eden .h5, |
| 538 | .w3eden h5 { |
| 539 | font-size: 14px; |
| 540 | } |
| 541 | .w3eden .h6, |
| 542 | .w3eden h6 { |
| 543 | font-size: 12px; |
| 544 | } |
| 545 | .w3eden p { |
| 546 | margin: 0 0 10px; |
| 547 | } |
| 548 | .w3eden .lead { |
| 549 | margin-bottom: 20px; |
| 550 | font-size: 16px; |
| 551 | font-weight: 300; |
| 552 | line-height: 1.4; |
| 553 | } |
| 554 | @media (min-width: 768px) { |
| 555 | .w3eden .lead { |
| 556 | font-size: 21px; |
| 557 | } |
| 558 | } |
| 559 | .w3eden .small, |
| 560 | .w3eden small { |
| 561 | font-size: 85%; |
| 562 | } |
| 563 | .w3eden .mark, |
| 564 | .w3eden mark { |
| 565 | padding: .2em; |
| 566 | background-color: #fcf8e3; |
| 567 | } |
| 568 | .w3eden .text-left { |
| 569 | text-align: left; |
| 570 | } |
| 571 | .w3eden .text-right { |
| 572 | text-align: right; |
| 573 | } |
| 574 | .w3eden .text-center { |
| 575 | text-align: center; |
| 576 | } |
| 577 | .w3eden .text-justify { |
| 578 | text-align: justify; |
| 579 | } |
| 580 | .w3eden .text-nowrap { |
| 581 | white-space: nowrap; |
| 582 | } |
| 583 | .w3eden .text-lowercase { |
| 584 | text-transform: lowercase; |
| 585 | } |
| 586 | .w3eden .text-uppercase { |
| 587 | text-transform: uppercase; |
| 588 | } |
| 589 | .w3eden .text-capitalize { |
| 590 | text-transform: capitalize; |
| 591 | } |
| 592 | .w3eden .text-muted { |
| 593 | color: #777777; |
| 594 | } |
| 595 | .w3eden .text-primary { |
| 596 | color: var(--color-primary); |
| 597 | } |
| 598 | .w3eden a.text-primary:hover { |
| 599 | color: var(--color-primary-hover); |
| 600 | } |
| 601 | .w3eden .text-success { |
| 602 | color: #3c763d; |
| 603 | } |
| 604 | .w3eden a.text-success:hover { |
| 605 | color: #2b542c; |
| 606 | } |
| 607 | .w3eden .text-info { |
| 608 | color: #31708f; |
| 609 | } |
| 610 | .w3eden a.text-info:hover { |
| 611 | color: #245269; |
| 612 | } |
| 613 | .w3eden .text-warning { |
| 614 | color: #8a6d3b; |
| 615 | } |
| 616 | .w3eden a.text-warning:hover { |
| 617 | color: #66512c; |
| 618 | } |
| 619 | .w3eden .text-danger { |
| 620 | color: #a94442; |
| 621 | } |
| 622 | .w3eden a.text-danger:hover { |
| 623 | color: #843534; |
| 624 | } |
| 625 | .w3eden .bg-primary { |
| 626 | color: #fff; |
| 627 | background-color: var(--color-primary); |
| 628 | } |
| 629 | .w3eden a.bg-primary:hover { |
| 630 | background-color: var(--color-primary-hover); |
| 631 | } |
| 632 | .w3eden .bg-success { |
| 633 | background-color: #dff0d8; |
| 634 | } |
| 635 | .w3eden a.bg-success:hover { |
| 636 | background-color: #c1e2b3; |
| 637 | } |
| 638 | .w3eden .bg-info { |
| 639 | background-color: #d9edf7; |
| 640 | } |
| 641 | .w3eden a.bg-info:hover { |
| 642 | background-color: #afd9ee; |
| 643 | } |
| 644 | .w3eden .bg-warning { |
| 645 | background-color: #fcf8e3; |
| 646 | } |
| 647 | .w3eden a.bg-warning:hover { |
| 648 | background-color: #f7ecb5; |
| 649 | } |
| 650 | .w3eden .bg-danger { |
| 651 | background-color: #f2dede; |
| 652 | } |
| 653 | .w3eden a.bg-danger:hover { |
| 654 | background-color: #e4b9b9; |
| 655 | } |
| 656 | .w3eden .page-header { |
| 657 | padding-bottom: 9px; |
| 658 | margin: 40px 0 20px; |
| 659 | border-bottom: 1px solid #eeeeee; |
| 660 | } |
| 661 | .w3eden ol, |
| 662 | .w3eden ul { |
| 663 | margin-top: 0; |
| 664 | margin-bottom: 10px; |
| 665 | } |
| 666 | .w3eden ol ol, |
| 667 | .w3eden ol ul, |
| 668 | .w3eden ul ol, |
| 669 | .w3eden ul ul { |
| 670 | margin-bottom: 0; |
| 671 | } |
| 672 | .w3eden .list-unstyled { |
| 673 | padding-left: 0; |
| 674 | list-style: none; |
| 675 | } |
| 676 | .w3eden .list-inline { |
| 677 | padding-left: 0; |
| 678 | margin-left: -5px; |
| 679 | list-style: none; |
| 680 | } |
| 681 | .w3eden .list-inline > li { |
| 682 | display: inline-block; |
| 683 | padding-right: 5px; |
| 684 | padding-left: 5px; |
| 685 | } |
| 686 | .w3eden dl { |
| 687 | margin-top: 0; |
| 688 | margin-bottom: 20px; |
| 689 | } |
| 690 | .w3eden dd, |
| 691 | .w3eden dt { |
| 692 | line-height: 1.42857143; |
| 693 | } |
| 694 | .w3eden dt { |
| 695 | font-weight: 700; |
| 696 | } |
| 697 | .w3eden dd { |
| 698 | margin-left: 0; |
| 699 | } |
| 700 | @media (min-width: 768px) { |
| 701 | .w3eden .dl-horizontal dt { |
| 702 | float: left; |
| 703 | width: 160px; |
| 704 | overflow: hidden; |
| 705 | clear: left; |
| 706 | text-align: right; |
| 707 | text-overflow: ellipsis; |
| 708 | white-space: nowrap; |
| 709 | } |
| 710 | .w3eden .dl-horizontal dd { |
| 711 | margin-left: 180px; |
| 712 | } |
| 713 | } |
| 714 | .w3eden abbr[data-original-title], |
| 715 | .w3eden abbr[title] { |
| 716 | cursor: help; |
| 717 | border-bottom: 1px dotted #777777; |
| 718 | } |
| 719 | .w3eden .initialism { |
| 720 | font-size: 90%; |
| 721 | text-transform: uppercase; |
| 722 | } |
| 723 | .w3eden blockquote { |
| 724 | padding: 10px 20px; |
| 725 | margin: 0 0 20px; |
| 726 | font-size: 17.5px; |
| 727 | border-left: 5px solid #eeeeee; |
| 728 | } |
| 729 | .w3eden blockquote ol:last-child, |
| 730 | .w3eden blockquote p:last-child, |
| 731 | .w3eden blockquote ul:last-child { |
| 732 | margin-bottom: 0; |
| 733 | } |
| 734 | .w3eden blockquote .small, |
| 735 | .w3eden blockquote footer, |
| 736 | .w3eden blockquote small { |
| 737 | display: block; |
| 738 | font-size: 80%; |
| 739 | line-height: 1.42857143; |
| 740 | color: #777777; |
| 741 | } |
| 742 | .w3eden blockquote .small:before, |
| 743 | .w3eden blockquote footer:before, |
| 744 | .w3eden blockquote small:before { |
| 745 | content: '\2014 \00A0'; |
| 746 | } |
| 747 | .w3eden code, |
| 748 | .w3eden kbd, |
| 749 | .w3eden pre, |
| 750 | .w3eden samp { |
| 751 | font-family: Menlo, Monaco, Consolas, "Courier New", monospace; |
| 752 | } |
| 753 | .w3eden code { |
| 754 | padding: 2px 4px; |
| 755 | font-size: 90%; |
| 756 | color: #c7254e; |
| 757 | background-color: #f9f2f4; |
| 758 | border-radius: 4px; |
| 759 | } |
| 760 | .w3eden kbd { |
| 761 | padding: 2px 4px; |
| 762 | font-size: 90%; |
| 763 | color: #fff; |
| 764 | background-color: #333; |
| 765 | border-radius: 3px; |
| 766 | -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25); |
| 767 | box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25); |
| 768 | } |
| 769 | .w3eden kbd kbd { |
| 770 | padding: 0; |
| 771 | font-size: 100%; |
| 772 | font-weight: 700; |
| 773 | -webkit-box-shadow: none; |
| 774 | box-shadow: none; |
| 775 | } |
| 776 | .w3eden pre { |
| 777 | display: block; |
| 778 | padding: 9.5px; |
| 779 | margin: 0 0 10px; |
| 780 | font-size: 13px; |
| 781 | line-height: 1.42857143; |
| 782 | color: #333; |
| 783 | word-break: break-all; |
| 784 | word-wrap: break-word; |
| 785 | background-color: #f5f5f5; |
| 786 | border: 1px solid #ccc; |
| 787 | border-radius: 4px; |
| 788 | } |
| 789 | .w3eden pre code { |
| 790 | padding: 0; |
| 791 | font-size: inherit; |
| 792 | color: inherit; |
| 793 | white-space: pre-wrap; |
| 794 | background-color: transparent; |
| 795 | border-radius: 0; |
| 796 | } |
| 797 | .w3eden .pre-scrollable { |
| 798 | max-height: 340px; |
| 799 | overflow-y: scroll; |
| 800 | } |
| 801 | .w3eden .container { |
| 802 | padding-right: 15px; |
| 803 | padding-left: 15px; |
| 804 | margin-right: auto; |
| 805 | margin-left: auto; |
| 806 | } |
| 807 | @media (min-width: 768px) { |
| 808 | .w3eden .container { |
| 809 | width: 750px; |
| 810 | } |
| 811 | } |
| 812 | @media (min-width: 992px) { |
| 813 | .w3eden .container { |
| 814 | width: 970px; |
| 815 | } |
| 816 | } |
| 817 | @media (min-width: 1200px) { |
| 818 | .w3eden .container { |
| 819 | width: 1170px; |
| 820 | } |
| 821 | } |
| 822 | .w3eden .container-fluid { |
| 823 | padding-right: 15px; |
| 824 | padding-left: 15px; |
| 825 | margin-right: auto; |
| 826 | margin-left: auto; |
| 827 | } |
| 828 | .w3eden .row { |
| 829 | margin-right: -15px; |
| 830 | margin-left: -15px; |
| 831 | } |
| 832 | .w3eden .col-lg-1, |
| 833 | .w3eden .col-lg-10, |
| 834 | .w3eden .col-lg-11, |
| 835 | .w3eden .col-lg-12, |
| 836 | .w3eden .col-lg-2, |
| 837 | .w3eden .col-lg-3, |
| 838 | .w3eden .col-lg-4, |
| 839 | .w3eden .col-lg-5, |
| 840 | .w3eden .col-lg-6, |
| 841 | .w3eden .col-lg-7, |
| 842 | .w3eden .col-lg-8, |
| 843 | .w3eden .col-lg-9, |
| 844 | .w3eden .col-md-1, |
| 845 | .w3eden .col-md-10, |
| 846 | .w3eden .col-md-11, |
| 847 | .w3eden .col-md-12, |
| 848 | .w3eden .col-md-2, |
| 849 | .w3eden .col-md-3, |
| 850 | .w3eden .col-md-4, |
| 851 | .w3eden .col-md-5, |
| 852 | .w3eden .col-md-6, |
| 853 | .w3eden .col-md-7, |
| 854 | .w3eden .col-md-8, |
| 855 | .w3eden .col-md-9, |
| 856 | .w3eden .col-sm-1, |
| 857 | .w3eden .col-sm-10, |
| 858 | .w3eden .col-sm-11, |
| 859 | .w3eden .col-sm-12, |
| 860 | .w3eden .col-sm-2, |
| 861 | .w3eden .col-sm-3, |
| 862 | .w3eden .col-sm-4, |
| 863 | .w3eden .col-sm-5, |
| 864 | .w3eden .col-sm-6, |
| 865 | .w3eden .col-sm-7, |
| 866 | .w3eden .col-sm-8, |
| 867 | .w3eden .col-sm-9, |
| 868 | .w3eden .col-xs-1, |
| 869 | .w3eden .col-xs-10, |
| 870 | .w3eden .col-xs-11, |
| 871 | .w3eden .col-xs-12, |
| 872 | .w3eden .col-xs-2, |
| 873 | .w3eden .col-xs-3, |
| 874 | .w3eden .col-xs-4, |
| 875 | .w3eden .col-xs-5, |
| 876 | .w3eden .col-xs-6, |
| 877 | .w3eden .col-xs-7, |
| 878 | .w3eden .col-xs-8, |
| 879 | .w3eden .col-xs-9 { |
| 880 | position: relative; |
| 881 | min-height: 1px; |
| 882 | padding-right: 15px; |
| 883 | padding-left: 15px; |
| 884 | } |
| 885 | .w3eden .col-xs-1, |
| 886 | .w3eden .col-xs-10, |
| 887 | .w3eden .col-xs-11, |
| 888 | .w3eden .col-xs-12, |
| 889 | .w3eden .col-xs-2, |
| 890 | .w3eden .col-xs-3, |
| 891 | .w3eden .col-xs-4, |
| 892 | .w3eden .col-xs-5, |
| 893 | .w3eden .col-xs-6, |
| 894 | .w3eden .col-xs-7, |
| 895 | .w3eden .col-xs-8, |
| 896 | .w3eden .col-xs-9 { |
| 897 | float: left; |
| 898 | } |
| 899 | .w3eden .col-xs-12 { |
| 900 | width: 100%; |
| 901 | } |
| 902 | .w3eden .col-xs-11 { |
| 903 | width: 91.66666667%; |
| 904 | } |
| 905 | .w3eden .col-xs-10 { |
| 906 | width: 83.33333333%; |
| 907 | } |
| 908 | .w3eden .col-xs-9 { |
| 909 | width: 75%; |
| 910 | } |
| 911 | .w3eden .col-xs-8 { |
| 912 | width: 66.66666667%; |
| 913 | } |
| 914 | .w3eden .col-xs-7 { |
| 915 | width: 58.33333333%; |
| 916 | } |
| 917 | .w3eden .col-xs-6 { |
| 918 | width: 50%; |
| 919 | } |
| 920 | .w3eden .col-xs-5 { |
| 921 | width: 41.66666667%; |
| 922 | } |
| 923 | .w3eden .col-xs-4 { |
| 924 | width: 33.33333333%; |
| 925 | } |
| 926 | .w3eden .col-xs-3 { |
| 927 | width: 25%; |
| 928 | } |
| 929 | .w3eden .col-xs-2 { |
| 930 | width: 16.66666667%; |
| 931 | } |
| 932 | .w3eden .col-xs-1 { |
| 933 | width: 8.33333333%; |
| 934 | } |
| 935 | .w3eden .col-xs-pull-12 { |
| 936 | right: 100%; |
| 937 | } |
| 938 | .w3eden .col-xs-pull-11 { |
| 939 | right: 91.66666667%; |
| 940 | } |
| 941 | .w3eden .col-xs-pull-10 { |
| 942 | right: 83.33333333%; |
| 943 | } |
| 944 | .w3eden .col-xs-pull-9 { |
| 945 | right: 75%; |
| 946 | } |
| 947 | .w3eden .col-xs-pull-8 { |
| 948 | right: 66.66666667%; |
| 949 | } |
| 950 | .w3eden .col-xs-pull-7 { |
| 951 | right: 58.33333333%; |
| 952 | } |
| 953 | .w3eden .col-xs-pull-6 { |
| 954 | right: 50%; |
| 955 | } |
| 956 | .w3eden .col-xs-pull-5 { |
| 957 | right: 41.66666667%; |
| 958 | } |
| 959 | .w3eden .col-xs-pull-4 { |
| 960 | right: 33.33333333%; |
| 961 | } |
| 962 | .w3eden .col-xs-pull-3 { |
| 963 | right: 25%; |
| 964 | } |
| 965 | .w3eden .col-xs-pull-2 { |
| 966 | right: 16.66666667%; |
| 967 | } |
| 968 | .w3eden .col-xs-pull-1 { |
| 969 | right: 8.33333333%; |
| 970 | } |
| 971 | .w3eden .col-xs-pull-0 { |
| 972 | right: auto; |
| 973 | } |
| 974 | .w3eden .col-xs-push-12 { |
| 975 | left: 100%; |
| 976 | } |
| 977 | .w3eden .col-xs-push-11 { |
| 978 | left: 91.66666667%; |
| 979 | } |
| 980 | .w3eden .col-xs-push-10 { |
| 981 | left: 83.33333333%; |
| 982 | } |
| 983 | .w3eden .col-xs-push-9 { |
| 984 | left: 75%; |
| 985 | } |
| 986 | .w3eden .col-xs-push-8 { |
| 987 | left: 66.66666667%; |
| 988 | } |
| 989 | .w3eden .col-xs-push-7 { |
| 990 | left: 58.33333333%; |
| 991 | } |
| 992 | .w3eden .col-xs-push-6 { |
| 993 | left: 50%; |
| 994 | } |
| 995 | .w3eden .col-xs-push-5 { |
| 996 | left: 41.66666667%; |
| 997 | } |
| 998 | .w3eden .col-xs-push-4 { |
| 999 | left: 33.33333333%; |
| 1000 | } |
| 1001 | .w3eden .col-xs-push-3 { |
| 1002 | left: 25%; |
| 1003 | } |
| 1004 | .w3eden .col-xs-push-2 { |
| 1005 | left: 16.66666667%; |
| 1006 | } |
| 1007 | .w3eden .col-xs-push-1 { |
| 1008 | left: 8.33333333%; |
| 1009 | } |
| 1010 | .w3eden .col-xs-push-0 { |
| 1011 | left: auto; |
| 1012 | } |
| 1013 | .w3eden .col-xs-offset-12 { |
| 1014 | margin-left: 100%; |
| 1015 | } |
| 1016 | .w3eden .col-xs-offset-11 { |
| 1017 | margin-left: 91.66666667%; |
| 1018 | } |
| 1019 | .w3eden .col-xs-offset-10 { |
| 1020 | margin-left: 83.33333333%; |
| 1021 | } |
| 1022 | .w3eden .col-xs-offset-9 { |
| 1023 | margin-left: 75%; |
| 1024 | } |
| 1025 | .w3eden .col-xs-offset-8 { |
| 1026 | margin-left: 66.66666667%; |
| 1027 | } |
| 1028 | .w3eden .col-xs-offset-7 { |
| 1029 | margin-left: 58.33333333%; |
| 1030 | } |
| 1031 | .w3eden .col-xs-offset-6 { |
| 1032 | margin-left: 50%; |
| 1033 | } |
| 1034 | .w3eden .col-xs-offset-5 { |
| 1035 | margin-left: 41.66666667%; |
| 1036 | } |
| 1037 | .w3eden .col-xs-offset-4 { |
| 1038 | margin-left: 33.33333333%; |
| 1039 | } |
| 1040 | .w3eden .col-xs-offset-3 { |
| 1041 | margin-left: 25%; |
| 1042 | } |
| 1043 | .w3eden .col-xs-offset-2 { |
| 1044 | margin-left: 16.66666667%; |
| 1045 | } |
| 1046 | .w3eden .col-xs-offset-1 { |
| 1047 | margin-left: 8.33333333%; |
| 1048 | } |
| 1049 | .w3eden .col-xs-offset-0 { |
| 1050 | margin-left: 0; |
| 1051 | } |
| 1052 | @media (min-width: 768px) { |
| 1053 | .w3eden .col-sm-1, |
| 1054 | .w3eden .col-sm-10, |
| 1055 | .w3eden .col-sm-11, |
| 1056 | .w3eden .col-sm-12, |
| 1057 | .w3eden .col-sm-2, |
| 1058 | .w3eden .col-sm-3, |
| 1059 | .w3eden .col-sm-4, |
| 1060 | .w3eden .col-sm-5, |
| 1061 | .w3eden .col-sm-6, |
| 1062 | .w3eden .col-sm-7, |
| 1063 | .w3eden .col-sm-8, |
| 1064 | .w3eden .col-sm-9 { |
| 1065 | float: left; |
| 1066 | } |
| 1067 | .w3eden .col-sm-12 { |
| 1068 | width: 100%; |
| 1069 | } |
| 1070 | .w3eden .col-sm-11 { |
| 1071 | width: 91.66666667%; |
| 1072 | } |
| 1073 | .w3eden .col-sm-10 { |
| 1074 | width: 83.33333333%; |
| 1075 | } |
| 1076 | .w3eden .col-sm-9 { |
| 1077 | width: 75%; |
| 1078 | } |
| 1079 | .w3eden .col-sm-8 { |
| 1080 | width: 66.66666667%; |
| 1081 | } |
| 1082 | .w3eden .col-sm-7 { |
| 1083 | width: 58.33333333%; |
| 1084 | } |
| 1085 | .w3eden .col-sm-6 { |
| 1086 | width: 50%; |
| 1087 | } |
| 1088 | .w3eden .col-sm-5 { |
| 1089 | width: 41.66666667%; |
| 1090 | } |
| 1091 | .w3eden .col-sm-4 { |
| 1092 | width: 33.33333333%; |
| 1093 | } |
| 1094 | .w3eden .col-sm-3 { |
| 1095 | width: 25%; |
| 1096 | } |
| 1097 | .w3eden .col-sm-2 { |
| 1098 | width: 16.66666667%; |
| 1099 | } |
| 1100 | .w3eden .col-sm-1 { |
| 1101 | width: 8.33333333%; |
| 1102 | } |
| 1103 | |
| 1104 | .w3eden .col-sm-offset-12 { |
| 1105 | margin-left: 100%; |
| 1106 | } |
| 1107 | .w3eden .col-sm-offset-11 { |
| 1108 | margin-left: 91.66666667%; |
| 1109 | } |
| 1110 | .w3eden .col-sm-offset-10 { |
| 1111 | margin-left: 83.33333333%; |
| 1112 | } |
| 1113 | .w3eden .col-sm-offset-9 { |
| 1114 | margin-left: 75%; |
| 1115 | } |
| 1116 | .w3eden .col-sm-offset-8 { |
| 1117 | margin-left: 66.66666667%; |
| 1118 | } |
| 1119 | .w3eden .col-sm-offset-7 { |
| 1120 | margin-left: 58.33333333%; |
| 1121 | } |
| 1122 | .w3eden .col-sm-offset-6 { |
| 1123 | margin-left: 50%; |
| 1124 | } |
| 1125 | .w3eden .col-sm-offset-5 { |
| 1126 | margin-left: 41.66666667%; |
| 1127 | } |
| 1128 | .w3eden .col-sm-offset-4 { |
| 1129 | margin-left: 33.33333333%; |
| 1130 | } |
| 1131 | .w3eden .col-sm-offset-3 { |
| 1132 | margin-left: 25%; |
| 1133 | } |
| 1134 | .w3eden .col-sm-offset-2 { |
| 1135 | margin-left: 16.66666667%; |
| 1136 | } |
| 1137 | .w3eden .col-sm-offset-1 { |
| 1138 | margin-left: 8.33333333%; |
| 1139 | } |
| 1140 | .w3eden .col-sm-offset-0 { |
| 1141 | margin-left: 0; |
| 1142 | } |
| 1143 | } |
| 1144 | @media (min-width: 992px) { |
| 1145 | .w3eden .col-md-1, |
| 1146 | .w3eden .col-md-10, |
| 1147 | .w3eden .col-md-11, |
| 1148 | .w3eden .col-md-12, |
| 1149 | .w3eden .col-md-2, |
| 1150 | .w3eden .col-md-3, |
| 1151 | .w3eden .col-md-4, |
| 1152 | .w3eden .col-md-5, |
| 1153 | .w3eden .col-md-6, |
| 1154 | .w3eden .col-md-7, |
| 1155 | .w3eden .col-md-8, |
| 1156 | .w3eden .col-md-9 { |
| 1157 | float: left; |
| 1158 | } |
| 1159 | .w3eden .col-md-12 { |
| 1160 | width: 100%; |
| 1161 | } |
| 1162 | .w3eden .col-md-11 { |
| 1163 | width: 91.66666667%; |
| 1164 | } |
| 1165 | .w3eden .col-md-10 { |
| 1166 | width: 83.33333333%; |
| 1167 | } |
| 1168 | .w3eden .col-md-9 { |
| 1169 | width: 75%; |
| 1170 | } |
| 1171 | .w3eden .col-md-8 { |
| 1172 | width: 66.66666667%; |
| 1173 | } |
| 1174 | .w3eden .col-md-7 { |
| 1175 | width: 58.33333333%; |
| 1176 | } |
| 1177 | .w3eden .col-md-6 { |
| 1178 | width: 50%; |
| 1179 | } |
| 1180 | .w3eden .col-md-5 { |
| 1181 | width: 41.66666667%; |
| 1182 | } |
| 1183 | .w3eden .col-md-4 { |
| 1184 | width: 33.33333333%; |
| 1185 | } |
| 1186 | .w3eden .col-md-3 { |
| 1187 | width: 25%; |
| 1188 | } |
| 1189 | .w3eden .col-md-2 { |
| 1190 | width: 16.66666667%; |
| 1191 | } |
| 1192 | .w3eden .col-md-1 { |
| 1193 | width: 8.33333333%; |
| 1194 | } |
| 1195 | |
| 1196 | .w3eden .col-md-offset-12 { |
| 1197 | margin-left: 100%; |
| 1198 | } |
| 1199 | .w3eden .col-md-offset-11 { |
| 1200 | margin-left: 91.66666667%; |
| 1201 | } |
| 1202 | .w3eden .col-md-offset-10 { |
| 1203 | margin-left: 83.33333333%; |
| 1204 | } |
| 1205 | .w3eden .col-md-offset-9 { |
| 1206 | margin-left: 75%; |
| 1207 | } |
| 1208 | .w3eden .col-md-offset-8 { |
| 1209 | margin-left: 66.66666667%; |
| 1210 | } |
| 1211 | .w3eden .col-md-offset-7 { |
| 1212 | margin-left: 58.33333333%; |
| 1213 | } |
| 1214 | .w3eden .col-md-offset-6 { |
| 1215 | margin-left: 50%; |
| 1216 | } |
| 1217 | .w3eden .col-md-offset-5 { |
| 1218 | margin-left: 41.66666667%; |
| 1219 | } |
| 1220 | .w3eden .col-md-offset-4 { |
| 1221 | margin-left: 33.33333333%; |
| 1222 | } |
| 1223 | .w3eden .col-md-offset-3 { |
| 1224 | margin-left: 25%; |
| 1225 | } |
| 1226 | .w3eden .col-md-offset-2 { |
| 1227 | margin-left: 16.66666667%; |
| 1228 | } |
| 1229 | .w3eden .col-md-offset-1 { |
| 1230 | margin-left: 8.33333333%; |
| 1231 | } |
| 1232 | .w3eden .col-md-offset-0 { |
| 1233 | margin-left: 0; |
| 1234 | } |
| 1235 | } |
| 1236 | @media (min-width: 1200px) { |
| 1237 | .w3eden .col-lg-1, |
| 1238 | .w3eden .col-lg-10, |
| 1239 | .w3eden .col-lg-11, |
| 1240 | .w3eden .col-lg-12, |
| 1241 | .w3eden .col-lg-2, |
| 1242 | .w3eden .col-lg-3, |
| 1243 | .w3eden .col-lg-4, |
| 1244 | .w3eden .col-lg-5, |
| 1245 | .w3eden .col-lg-6, |
| 1246 | .w3eden .col-lg-7, |
| 1247 | .w3eden .col-lg-8, |
| 1248 | .w3eden .col-lg-9 { |
| 1249 | float: left; |
| 1250 | } |
| 1251 | .w3eden .col-lg-12 { |
| 1252 | width: 100%; |
| 1253 | } |
| 1254 | .w3eden .col-lg-11 { |
| 1255 | width: 91.66666667%; |
| 1256 | } |
| 1257 | .w3eden .col-lg-10 { |
| 1258 | width: 83.33333333%; |
| 1259 | } |
| 1260 | .w3eden .col-lg-9 { |
| 1261 | width: 75%; |
| 1262 | } |
| 1263 | .w3eden .col-lg-8 { |
| 1264 | width: 66.66666667%; |
| 1265 | } |
| 1266 | .w3eden .col-lg-7 { |
| 1267 | width: 58.33333333%; |
| 1268 | } |
| 1269 | .w3eden .col-lg-6 { |
| 1270 | width: 50%; |
| 1271 | } |
| 1272 | .w3eden .col-lg-5 { |
| 1273 | width: 41.66666667%; |
| 1274 | } |
| 1275 | .w3eden .col-lg-4 { |
| 1276 | width: 33.33333333%; |
| 1277 | } |
| 1278 | .w3eden .col-lg-3 { |
| 1279 | width: 25%; |
| 1280 | } |
| 1281 | .w3eden .col-lg-2 { |
| 1282 | width: 16.66666667%; |
| 1283 | } |
| 1284 | .w3eden .col-lg-1 { |
| 1285 | width: 8.33333333%; |
| 1286 | } |
| 1287 | |
| 1288 | .w3eden .col-lg-offset-12 { |
| 1289 | margin-left: 100%; |
| 1290 | } |
| 1291 | .w3eden .col-lg-offset-11 { |
| 1292 | margin-left: 91.66666667%; |
| 1293 | } |
| 1294 | .w3eden .col-lg-offset-10 { |
| 1295 | margin-left: 83.33333333%; |
| 1296 | } |
| 1297 | .w3eden .col-lg-offset-9 { |
| 1298 | margin-left: 75%; |
| 1299 | } |
| 1300 | .w3eden .col-lg-offset-8 { |
| 1301 | margin-left: 66.66666667%; |
| 1302 | } |
| 1303 | .w3eden .col-lg-offset-7 { |
| 1304 | margin-left: 58.33333333%; |
| 1305 | } |
| 1306 | .w3eden .col-lg-offset-6 { |
| 1307 | margin-left: 50%; |
| 1308 | } |
| 1309 | .w3eden .col-lg-offset-5 { |
| 1310 | margin-left: 41.66666667%; |
| 1311 | } |
| 1312 | .w3eden .col-lg-offset-4 { |
| 1313 | margin-left: 33.33333333%; |
| 1314 | } |
| 1315 | .w3eden .col-lg-offset-3 { |
| 1316 | margin-left: 25%; |
| 1317 | } |
| 1318 | .w3eden .col-lg-offset-2 { |
| 1319 | margin-left: 16.66666667%; |
| 1320 | } |
| 1321 | .w3eden .col-lg-offset-1 { |
| 1322 | margin-left: 8.33333333%; |
| 1323 | } |
| 1324 | .w3eden .col-lg-offset-0 { |
| 1325 | margin-left: 0; |
| 1326 | } |
| 1327 | } |
| 1328 | .w3eden table { |
| 1329 | background-color: transparent; |
| 1330 | } |
| 1331 | .w3eden caption { |
| 1332 | padding-top: 8px; |
| 1333 | padding-bottom: 8px; |
| 1334 | color: #777; |
| 1335 | text-align: left; |
| 1336 | } |
| 1337 | .w3eden th { |
| 1338 | text-align: left; |
| 1339 | } |
| 1340 | .w3eden .table { |
| 1341 | width: 100%; |
| 1342 | max-width: 100%; |
| 1343 | border: 0; |
| 1344 | margin-bottom: 20px; |
| 1345 | } |
| 1346 | .w3eden .table > tbody > tr > td, |
| 1347 | .w3eden .table > tbody > tr > th, |
| 1348 | .w3eden .table > tfoot > tr > td, |
| 1349 | .w3eden .table > tfoot > tr > th, |
| 1350 | .w3eden .table > thead > tr > td, |
| 1351 | .w3eden .table > thead > tr > th { |
| 1352 | padding: 8px; |
| 1353 | line-height: 1.42857143; |
| 1354 | vertical-align: top; |
| 1355 | border: 0; |
| 1356 | border-top: 1px solid var(--border-color); |
| 1357 | } |
| 1358 | .w3eden .table > thead > tr > th { |
| 1359 | vertical-align: bottom; |
| 1360 | border-bottom: 2px solid var(--border-color); |
| 1361 | } |
| 1362 | .w3eden .table > caption + thead > tr:first-child > td, |
| 1363 | .w3eden .table > caption + thead > tr:first-child > th, |
| 1364 | .w3eden .table > colgroup + thead > tr:first-child > td, |
| 1365 | .w3eden .table > colgroup + thead > tr:first-child > th, |
| 1366 | .w3eden .table > thead:first-child > tr:first-child > td, |
| 1367 | .w3eden .table > thead:first-child > tr:first-child > th { |
| 1368 | border-top: 0; |
| 1369 | } |
| 1370 | .w3eden .table > tbody + tbody { |
| 1371 | border-top: 2px solid var(--border-color); |
| 1372 | } |
| 1373 | .w3eden .table .table { |
| 1374 | background-color: #ffffff; |
| 1375 | } |
| 1376 | .w3eden .table-condensed > tbody > tr > td, |
| 1377 | .w3eden .table-condensed > tbody > tr > th, |
| 1378 | .w3eden .table-condensed > tfoot > tr > td, |
| 1379 | .w3eden .table-condensed > tfoot > tr > th, |
| 1380 | .w3eden .table-condensed > thead > tr > td, |
| 1381 | .w3eden .table-condensed > thead > tr > th { |
| 1382 | padding: 5px; |
| 1383 | } |
| 1384 | .w3eden .table-bordered { |
| 1385 | border: 1px solid #dddddd; |
| 1386 | } |
| 1387 | .w3eden .table-bordered > tbody > tr > td, |
| 1388 | .w3eden .table-bordered > tbody > tr > th, |
| 1389 | .w3eden .table-bordered > tfoot > tr > td, |
| 1390 | .w3eden .table-bordered > tfoot > tr > th, |
| 1391 | .w3eden .table-bordered > thead > tr > td, |
| 1392 | .w3eden .table-bordered > thead > tr > th { |
| 1393 | border: 1px solid #dddddd; |
| 1394 | } |
| 1395 | .w3eden .table-bordered > thead > tr > td, |
| 1396 | .w3eden .table-bordered > thead > tr > th { |
| 1397 | border-bottom-width: 2px; |
| 1398 | } |
| 1399 | .w3eden .table-striped > tbody > tr:nth-of-type(odd) { |
| 1400 | background-color: #fbfdff; |
| 1401 | } |
| 1402 | .w3eden .table-hover > tbody > tr:hover { |
| 1403 | background-color: #f5f5f5; |
| 1404 | } |
| 1405 | .w3eden table col[class*=col-] { |
| 1406 | position: static; |
| 1407 | display: table-column; |
| 1408 | float: none; |
| 1409 | } |
| 1410 | .w3eden table td[class*=col-], |
| 1411 | .w3eden table th[class*=col-] { |
| 1412 | position: static; |
| 1413 | display: table-cell; |
| 1414 | float: none; |
| 1415 | } |
| 1416 | .w3eden .table > tbody > tr.active > td, |
| 1417 | .w3eden .table > tbody > tr.active > th, |
| 1418 | .w3eden .table > tbody > tr > td.active, |
| 1419 | .w3eden .table > tbody > tr > th.active, |
| 1420 | .w3eden .table > tfoot > tr.active > td, |
| 1421 | .w3eden .table > tfoot > tr.active > th, |
| 1422 | .w3eden .table > tfoot > tr > td.active, |
| 1423 | .w3eden .table > tfoot > tr > th.active, |
| 1424 | .w3eden .table > thead > tr.active > td, |
| 1425 | .w3eden .table > thead > tr.active > th, |
| 1426 | .w3eden .table > thead > tr > td.active, |
| 1427 | .w3eden .table > thead > tr > th.active { |
| 1428 | background-color: #f5f5f5; |
| 1429 | } |
| 1430 | .w3eden .table-hover > tbody > tr.active:hover > td, |
| 1431 | .w3eden .table-hover > tbody > tr.active:hover > th, |
| 1432 | .w3eden .table-hover > tbody > tr:hover > .active, |
| 1433 | .w3eden .table-hover > tbody > tr > td.active:hover, |
| 1434 | .w3eden .table-hover > tbody > tr > th.active:hover { |
| 1435 | background-color: #e8e8e8; |
| 1436 | } |
| 1437 | |
| 1438 | .w3eden .table-responsive { |
| 1439 | min-height: .01%; |
| 1440 | overflow-x: auto; |
| 1441 | } |
| 1442 | @media screen and (max-width: 767px) { |
| 1443 | .w3eden .table-responsive { |
| 1444 | width: 100%; |
| 1445 | margin-bottom: 15px; |
| 1446 | overflow-y: hidden; |
| 1447 | -ms-overflow-style: -ms-autohiding-scrollbar; |
| 1448 | border: 1px solid #dddddd; |
| 1449 | } |
| 1450 | .w3eden .table-responsive > .table { |
| 1451 | margin-bottom: 0; |
| 1452 | } |
| 1453 | .w3eden .table-responsive > .table > tbody > tr > td, |
| 1454 | .w3eden .table-responsive > .table > tbody > tr > th, |
| 1455 | .w3eden .table-responsive > .table > tfoot > tr > td, |
| 1456 | .w3eden .table-responsive > .table > tfoot > tr > th, |
| 1457 | .w3eden .table-responsive > .table > thead > tr > td, |
| 1458 | .w3eden .table-responsive > .table > thead > tr > th { |
| 1459 | white-space: nowrap; |
| 1460 | } |
| 1461 | .w3eden .table-responsive > .table-bordered { |
| 1462 | border: 0; |
| 1463 | } |
| 1464 | .w3eden .table-responsive > .table-bordered > tbody > tr > td:first-child, |
| 1465 | .w3eden .table-responsive > .table-bordered > tbody > tr > th:first-child, |
| 1466 | .w3eden .table-responsive > .table-bordered > tfoot > tr > td:first-child, |
| 1467 | .w3eden .table-responsive > .table-bordered > tfoot > tr > th:first-child, |
| 1468 | .w3eden .table-responsive > .table-bordered > thead > tr > td:first-child, |
| 1469 | .w3eden .table-responsive > .table-bordered > thead > tr > th:first-child { |
| 1470 | border-left: 0; |
| 1471 | } |
| 1472 | .w3eden .table-responsive > .table-bordered > tbody > tr > td:last-child, |
| 1473 | .w3eden .table-responsive > .table-bordered > tbody > tr > th:last-child, |
| 1474 | .w3eden .table-responsive > .table-bordered > tfoot > tr > td:last-child, |
| 1475 | .w3eden .table-responsive > .table-bordered > tfoot > tr > th:last-child, |
| 1476 | .w3eden .table-responsive > .table-bordered > thead > tr > td:last-child, |
| 1477 | .w3eden .table-responsive > .table-bordered > thead > tr > th:last-child { |
| 1478 | border-right: 0; |
| 1479 | } |
| 1480 | .w3eden .table-responsive > .table-bordered > tbody > tr:last-child > td, |
| 1481 | .w3eden .table-responsive > .table-bordered > tbody > tr:last-child > th, |
| 1482 | .w3eden .table-responsive > .table-bordered > tfoot > tr:last-child > td, |
| 1483 | .w3eden .table-responsive > .table-bordered > tfoot > tr:last-child > th { |
| 1484 | border-bottom: 0; |
| 1485 | } |
| 1486 | } |
| 1487 | .w3eden fieldset { |
| 1488 | min-width: 0; |
| 1489 | padding: 0; |
| 1490 | margin: 0; |
| 1491 | border: 0; |
| 1492 | } |
| 1493 | .w3eden legend { |
| 1494 | display: block; |
| 1495 | width: 100%; |
| 1496 | padding: 0; |
| 1497 | margin-bottom: 20px; |
| 1498 | font-size: 21px; |
| 1499 | line-height: inherit; |
| 1500 | color: #333; |
| 1501 | border: 0; |
| 1502 | border-bottom: 1px solid #e5e5e5; |
| 1503 | } |
| 1504 | .w3eden label { |
| 1505 | display: inline-block; |
| 1506 | max-width: 100%; |
| 1507 | margin-bottom: 5px; |
| 1508 | font-weight: 700; |
| 1509 | } |
| 1510 | .w3eden input[type=search] { |
| 1511 | -webkit-box-sizing: border-box; |
| 1512 | -moz-box-sizing: border-box; |
| 1513 | box-sizing: border-box; |
| 1514 | } |
| 1515 | .w3eden input[type=checkbox], |
| 1516 | .w3eden input[type=radio] { |
| 1517 | margin: 4px 0 0; |
| 1518 | margin-top: 1px \9; |
| 1519 | line-height: normal; |
| 1520 | } |
| 1521 | .w3eden input[type=file] { |
| 1522 | display: block; |
| 1523 | } |
| 1524 | .w3eden input[type=range] { |
| 1525 | display: block; |
| 1526 | width: 100%; |
| 1527 | } |
| 1528 | .w3eden select[multiple], |
| 1529 | .w3eden select[size] { |
| 1530 | height: auto; |
| 1531 | } |
| 1532 | .w3eden input[type=file]:focus, |
| 1533 | .w3eden input[type=checkbox]:focus, |
| 1534 | .w3eden input[type=radio]:focus { |
| 1535 | outline: thin dotted; |
| 1536 | outline: 5px auto -webkit-focus-ring-color; |
| 1537 | outline-offset: -2px; |
| 1538 | } |
| 1539 | .w3eden output { |
| 1540 | display: block; |
| 1541 | padding-top: 7px; |
| 1542 | font-size: 14px; |
| 1543 | line-height: 1.42857143; |
| 1544 | color: #555555; |
| 1545 | } |
| 1546 | .w3eden .form-control { |
| 1547 | display: block; |
| 1548 | width: 100%; |
| 1549 | height: 40px; |
| 1550 | font-size: 14px; |
| 1551 | line-height: 1.42857143; |
| 1552 | color: #555; |
| 1553 | background-color: #fff; |
| 1554 | background-image: none; |
| 1555 | border: 1px solid var(--border-color); |
| 1556 | border-radius: 6px; |
| 1557 | box-shadow: none; |
| 1558 | transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; |
| 1559 | } |
| 1560 | .w3eden .form-control:focus { |
| 1561 | border-color: var(--admin-color); |
| 1562 | outline: 0; |
| 1563 | box-shadow: 0 0 0 2px rgba(var(--admin-color-rgb), 0.2); |
| 1564 | } |
| 1565 | .w3eden .form-control::-moz-placeholder { |
| 1566 | color: #999; |
| 1567 | opacity: 1; |
| 1568 | } |
| 1569 | .w3eden .form-control:-ms-input-placeholder { |
| 1570 | color: #999999; |
| 1571 | } |
| 1572 | .w3eden .form-control::-webkit-input-placeholder { |
| 1573 | color: #999999; |
| 1574 | } |
| 1575 | .w3eden .form-control[disabled], |
| 1576 | .w3eden .form-control[readonly], |
| 1577 | .w3eden fieldset[disabled] .form-control { |
| 1578 | background-color: #eee; |
| 1579 | opacity: 1; |
| 1580 | } |
| 1581 | .w3eden .form-control[disabled], |
| 1582 | .w3eden fieldset[disabled] .form-control { |
| 1583 | cursor: not-allowed; |
| 1584 | } |
| 1585 | .w3eden textarea.form-control { |
| 1586 | height: auto; |
| 1587 | } |
| 1588 | .w3eden input[type=search] { |
| 1589 | -webkit-appearance: none; |
| 1590 | } |
| 1591 | |
| 1592 | .w3eden .form-group { |
| 1593 | margin-bottom: 15px; |
| 1594 | } |
| 1595 | .w3eden .checkbox, |
| 1596 | .w3eden .radio { |
| 1597 | position: relative; |
| 1598 | display: block; |
| 1599 | margin-top: 10px; |
| 1600 | margin-bottom: 10px; |
| 1601 | } |
| 1602 | .w3eden .checkbox label, |
| 1603 | .w3eden .radio label { |
| 1604 | min-height: 20px; |
| 1605 | padding-left: 20px; |
| 1606 | margin-bottom: 0; |
| 1607 | font-weight: 400; |
| 1608 | cursor: pointer; |
| 1609 | } |
| 1610 | .w3eden .checkbox input[type=checkbox], |
| 1611 | .w3eden .checkbox-inline input[type=checkbox], |
| 1612 | .w3eden .radio input[type=radio], |
| 1613 | .w3eden .radio-inline input[type=radio] { |
| 1614 | position: absolute; |
| 1615 | margin-top: 4px \9; |
| 1616 | margin-left: -20px; |
| 1617 | } |
| 1618 | .w3eden .checkbox + .checkbox, |
| 1619 | .w3eden .radio + .radio { |
| 1620 | margin-top: -5px; |
| 1621 | } |
| 1622 | .w3eden .checkbox-inline, |
| 1623 | .w3eden .radio-inline { |
| 1624 | position: relative; |
| 1625 | display: inline-block; |
| 1626 | padding-left: 20px; |
| 1627 | margin-bottom: 0; |
| 1628 | font-weight: 400; |
| 1629 | vertical-align: middle; |
| 1630 | cursor: pointer; |
| 1631 | } |
| 1632 | .w3eden .checkbox-inline + .checkbox-inline, |
| 1633 | .w3eden .radio-inline + .radio-inline { |
| 1634 | margin-top: 0; |
| 1635 | margin-left: 10px; |
| 1636 | } |
| 1637 | .w3eden fieldset[disabled] input[type=checkbox], |
| 1638 | .w3eden fieldset[disabled] input[type=radio], |
| 1639 | .w3eden input[type=checkbox].disabled, |
| 1640 | .w3eden input[type=checkbox][disabled], |
| 1641 | .w3eden input[type=radio].disabled, |
| 1642 | .w3eden input[type=radio][disabled] { |
| 1643 | cursor: not-allowed; |
| 1644 | } |
| 1645 | .w3eden .checkbox-inline.disabled, |
| 1646 | .w3eden .radio-inline.disabled, |
| 1647 | .w3eden fieldset[disabled] .checkbox-inline, |
| 1648 | .w3eden fieldset[disabled] .radio-inline { |
| 1649 | cursor: not-allowed; |
| 1650 | } |
| 1651 | .w3eden .checkbox.disabled label, |
| 1652 | .w3eden .radio.disabled label, |
| 1653 | .w3eden fieldset[disabled] .checkbox label, |
| 1654 | .w3eden fieldset[disabled] .radio label { |
| 1655 | cursor: not-allowed; |
| 1656 | } |
| 1657 | .w3eden .form-control-static { |
| 1658 | min-height: 34px; |
| 1659 | padding-top: 7px; |
| 1660 | padding-bottom: 7px; |
| 1661 | margin-bottom: 0; |
| 1662 | } |
| 1663 | .w3eden .form-control-static.input-lg, |
| 1664 | .w3eden .form-control-static.input-sm { |
| 1665 | padding-right: 0; |
| 1666 | padding-left: 0; |
| 1667 | } |
| 1668 | .w3eden .input-sm { |
| 1669 | height: 30px; |
| 1670 | padding: 5px 10px; |
| 1671 | font-size: 12px; |
| 1672 | line-height: 1.5; |
| 1673 | border-radius: 4px; |
| 1674 | } |
| 1675 | .w3eden select.input-sm { |
| 1676 | height: 30px; |
| 1677 | line-height: 30px; |
| 1678 | } |
| 1679 | .w3eden select[multiple].input-sm, |
| 1680 | .w3eden textarea.input-sm { |
| 1681 | height: auto; |
| 1682 | } |
| 1683 | .w3eden .form-group-sm .form-control { |
| 1684 | height: 30px; |
| 1685 | padding: 5px 10px; |
| 1686 | font-size: 12px; |
| 1687 | line-height: 1.5; |
| 1688 | border-radius: 3px; |
| 1689 | } |
| 1690 | .w3eden select.form-group-sm .form-control { |
| 1691 | height: 30px; |
| 1692 | line-height: 30px; |
| 1693 | } |
| 1694 | .w3eden select[multiple].form-group-sm .form-control, |
| 1695 | .w3eden textarea.form-group-sm .form-control { |
| 1696 | height: auto; |
| 1697 | } |
| 1698 | .w3eden .form-group-sm .form-control-static { |
| 1699 | height: 30px; |
| 1700 | min-height: 32px; |
| 1701 | padding: 5px 10px; |
| 1702 | font-size: 12px; |
| 1703 | line-height: 1.5; |
| 1704 | } |
| 1705 | .w3eden .input-lg { |
| 1706 | height: 46px; |
| 1707 | padding: 10px 16px; |
| 1708 | font-size: 18px; |
| 1709 | line-height: 1.3333333; |
| 1710 | border-radius: 6px; |
| 1711 | } |
| 1712 | .w3eden select.input-lg { |
| 1713 | height: 46px; |
| 1714 | line-height: 46px; |
| 1715 | } |
| 1716 | .w3eden select[multiple].input-lg, |
| 1717 | .w3eden textarea.input-lg { |
| 1718 | height: auto; |
| 1719 | } |
| 1720 | .w3eden .form-group-lg .form-control { |
| 1721 | height: 46px; |
| 1722 | padding: 10px 16px; |
| 1723 | font-size: 18px; |
| 1724 | line-height: 1.3333333; |
| 1725 | border-radius: 6px; |
| 1726 | } |
| 1727 | .w3eden select.form-group-lg .form-control { |
| 1728 | height: 46px; |
| 1729 | line-height: 46px; |
| 1730 | } |
| 1731 | .w3eden select[multiple].form-group-lg .form-control, |
| 1732 | .w3eden textarea.form-group-lg .form-control { |
| 1733 | height: auto; |
| 1734 | } |
| 1735 | .w3eden .form-group-lg .form-control-static { |
| 1736 | height: 46px; |
| 1737 | min-height: 38px; |
| 1738 | padding: 10px 16px; |
| 1739 | font-size: 18px; |
| 1740 | line-height: 1.3333333; |
| 1741 | } |
| 1742 | .w3eden .has-feedback { |
| 1743 | position: relative; |
| 1744 | } |
| 1745 | .w3eden .has-feedback .form-control { |
| 1746 | padding-right: 42.5px; |
| 1747 | } |
| 1748 | .w3eden .form-control-feedback { |
| 1749 | position: absolute; |
| 1750 | top: 0; |
| 1751 | right: 0; |
| 1752 | z-index: 2; |
| 1753 | display: block; |
| 1754 | width: 34px; |
| 1755 | height: 34px; |
| 1756 | line-height: 34px; |
| 1757 | text-align: center; |
| 1758 | pointer-events: none; |
| 1759 | } |
| 1760 | .w3eden .input-lg + .form-control-feedback { |
| 1761 | width: 46px; |
| 1762 | height: 46px; |
| 1763 | line-height: 46px; |
| 1764 | } |
| 1765 | .w3eden .input-sm + .form-control-feedback { |
| 1766 | width: 30px; |
| 1767 | height: 30px; |
| 1768 | line-height: 30px; |
| 1769 | } |
| 1770 | .w3eden .has-success .checkbox, |
| 1771 | .w3eden .has-success .checkbox-inline, |
| 1772 | .w3eden .has-success .control-label, |
| 1773 | .w3eden .has-success .help-block, |
| 1774 | .w3eden .has-success .radio, |
| 1775 | .w3eden .has-success .radio-inline, |
| 1776 | .w3eden .has-success.checkbox label, |
| 1777 | .w3eden .has-success.checkbox-inline label, |
| 1778 | .w3eden .has-success.radio label, |
| 1779 | .w3eden .has-success.radio-inline label { |
| 1780 | color: #3c763d; |
| 1781 | } |
| 1782 | .w3eden .has-success .form-control { |
| 1783 | border-color: #3c763d; |
| 1784 | -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); |
| 1785 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); |
| 1786 | } |
| 1787 | .w3eden .has-success .form-control:focus { |
| 1788 | border-color: #2b542c; |
| 1789 | -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; |
| 1790 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; |
| 1791 | } |
| 1792 | .w3eden .has-success .input-group-addon { |
| 1793 | color: #3c763d; |
| 1794 | background-color: #dff0d8; |
| 1795 | border-color: #3c763d; |
| 1796 | } |
| 1797 | .w3eden .has-success .form-control-feedback { |
| 1798 | color: #3c763d; |
| 1799 | } |
| 1800 | .w3eden .has-warning .checkbox, |
| 1801 | .w3eden .has-warning .checkbox-inline, |
| 1802 | .w3eden .has-warning .control-label, |
| 1803 | .w3eden .has-warning .help-block, |
| 1804 | .w3eden .has-warning .radio, |
| 1805 | .w3eden .has-warning .radio-inline, |
| 1806 | .w3eden .has-warning.checkbox label, |
| 1807 | .w3eden .has-warning.checkbox-inline label, |
| 1808 | .w3eden .has-warning.radio label, |
| 1809 | .w3eden .has-warning.radio-inline label { |
| 1810 | color: #8a6d3b; |
| 1811 | } |
| 1812 | .w3eden .has-warning .form-control { |
| 1813 | border-color: #8a6d3b; |
| 1814 | -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); |
| 1815 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); |
| 1816 | } |
| 1817 | .w3eden .has-warning .form-control:focus { |
| 1818 | border-color: #66512c; |
| 1819 | -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; |
| 1820 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; |
| 1821 | } |
| 1822 | .w3eden .has-warning .input-group-addon { |
| 1823 | color: #8a6d3b; |
| 1824 | background-color: #fcf8e3; |
| 1825 | border-color: #8a6d3b; |
| 1826 | } |
| 1827 | .w3eden .has-warning .form-control-feedback { |
| 1828 | color: #8a6d3b; |
| 1829 | } |
| 1830 | .w3eden .has-error .checkbox, |
| 1831 | .w3eden .has-error .checkbox-inline, |
| 1832 | .w3eden .has-error .control-label, |
| 1833 | .w3eden .has-error .help-block, |
| 1834 | .w3eden .has-error .radio, |
| 1835 | .w3eden .has-error .radio-inline, |
| 1836 | .w3eden .has-error.checkbox label, |
| 1837 | .w3eden .has-error.checkbox-inline label, |
| 1838 | .w3eden .has-error.radio label, |
| 1839 | .w3eden .has-error.radio-inline label { |
| 1840 | color: #a94442; |
| 1841 | } |
| 1842 | .w3eden .has-error .form-control { |
| 1843 | border-color: #a94442; |
| 1844 | -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); |
| 1845 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); |
| 1846 | } |
| 1847 | .w3eden .has-error .form-control:focus { |
| 1848 | border-color: #843534; |
| 1849 | -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; |
| 1850 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; |
| 1851 | } |
| 1852 | .w3eden .has-error .input-group-addon { |
| 1853 | color: #a94442; |
| 1854 | background-color: #f2dede; |
| 1855 | border-color: #a94442; |
| 1856 | } |
| 1857 | .w3eden .has-error .form-control-feedback { |
| 1858 | color: #a94442; |
| 1859 | } |
| 1860 | .w3eden .has-feedback label ~ .form-control-feedback { |
| 1861 | top: 25px; |
| 1862 | } |
| 1863 | .w3eden .has-feedback label.sr-only ~ .form-control-feedback { |
| 1864 | top: 0; |
| 1865 | } |
| 1866 | .w3eden .help-block { |
| 1867 | display: block; |
| 1868 | margin-top: 5px; |
| 1869 | margin-bottom: 10px; |
| 1870 | color: #737373; |
| 1871 | } |
| 1872 | @media (min-width: 768px) { |
| 1873 | .w3eden .form-inline .form-group { |
| 1874 | display: inline-block; |
| 1875 | margin-bottom: 0; |
| 1876 | vertical-align: middle; |
| 1877 | } |
| 1878 | .w3eden .form-inline .form-control { |
| 1879 | display: inline-block; |
| 1880 | width: auto; |
| 1881 | vertical-align: middle; |
| 1882 | } |
| 1883 | .w3eden .form-inline .form-control-static { |
| 1884 | display: inline-block; |
| 1885 | } |
| 1886 | .w3eden .form-inline .input-group { |
| 1887 | display: inline-table; |
| 1888 | vertical-align: middle; |
| 1889 | } |
| 1890 | .w3eden .form-inline .input-group .form-control, |
| 1891 | .w3eden .form-inline .input-group .input-group-addon, |
| 1892 | .w3eden .form-inline .input-group .input-group-btn { |
| 1893 | width: auto; |
| 1894 | } |
| 1895 | .w3eden .form-inline .input-group > .form-control { |
| 1896 | width: 100%; |
| 1897 | } |
| 1898 | .w3eden .form-inline .control-label { |
| 1899 | margin-bottom: 0; |
| 1900 | vertical-align: middle; |
| 1901 | } |
| 1902 | .w3eden .form-inline .checkbox, |
| 1903 | .w3eden .form-inline .radio { |
| 1904 | display: inline-block; |
| 1905 | margin-top: 0; |
| 1906 | margin-bottom: 0; |
| 1907 | vertical-align: middle; |
| 1908 | } |
| 1909 | .w3eden .form-inline .checkbox label, |
| 1910 | .w3eden .form-inline .radio label { |
| 1911 | padding-left: 0; |
| 1912 | } |
| 1913 | .w3eden .form-inline .checkbox input[type=checkbox], |
| 1914 | .w3eden .form-inline .radio input[type=radio] { |
| 1915 | position: relative; |
| 1916 | margin-left: 0; |
| 1917 | } |
| 1918 | .w3eden .form-inline .has-feedback .form-control-feedback { |
| 1919 | top: 0; |
| 1920 | } |
| 1921 | } |
| 1922 | .w3eden .form-horizontal .checkbox, |
| 1923 | .w3eden .form-horizontal .checkbox-inline, |
| 1924 | .w3eden .form-horizontal .radio, |
| 1925 | .w3eden .form-horizontal .radio-inline { |
| 1926 | padding-top: 7px; |
| 1927 | margin-top: 0; |
| 1928 | margin-bottom: 0; |
| 1929 | } |
| 1930 | .w3eden .form-horizontal .checkbox, |
| 1931 | .w3eden .form-horizontal .radio { |
| 1932 | min-height: 27px; |
| 1933 | } |
| 1934 | .w3eden .form-horizontal .form-group { |
| 1935 | margin-right: -15px; |
| 1936 | margin-left: -15px; |
| 1937 | } |
| 1938 | @media (min-width: 768px) { |
| 1939 | .w3eden .form-horizontal .control-label { |
| 1940 | padding-top: 7px; |
| 1941 | margin-bottom: 0; |
| 1942 | text-align: right; |
| 1943 | } |
| 1944 | } |
| 1945 | .w3eden .form-horizontal .has-feedback .form-control-feedback { |
| 1946 | right: 15px; |
| 1947 | } |
| 1948 | @media (min-width: 768px) { |
| 1949 | .w3eden .form-horizontal .form-group-lg .control-label { |
| 1950 | padding-top: 14.33px; |
| 1951 | } |
| 1952 | } |
| 1953 | @media (min-width: 768px) { |
| 1954 | .w3eden .form-horizontal .form-group-sm .control-label { |
| 1955 | padding-top: 6px; |
| 1956 | } |
| 1957 | } |
| 1958 | .w3eden .btn { |
| 1959 | display: inline-block; |
| 1960 | height: 40px; |
| 1961 | margin-bottom: 0; |
| 1962 | font-size: 14px; |
| 1963 | font-weight: 400; |
| 1964 | line-height: 1.42857143; |
| 1965 | text-align: center; |
| 1966 | white-space: nowrap; |
| 1967 | vertical-align: middle; |
| 1968 | -ms-touch-action: manipulation; |
| 1969 | touch-action: manipulation; |
| 1970 | cursor: pointer; |
| 1971 | -webkit-user-select: none; |
| 1972 | -moz-user-select: none; |
| 1973 | -ms-user-select: none; |
| 1974 | user-select: none; |
| 1975 | background-image: none; |
| 1976 | border: 1px solid transparent; |
| 1977 | border-radius: 6px; |
| 1978 | } |
| 1979 | .w3eden .btn.active.focus, |
| 1980 | .w3eden .btn.active:focus, |
| 1981 | .w3eden .btn.focus, |
| 1982 | .w3eden .btn:active.focus, |
| 1983 | .w3eden .btn:active:focus, |
| 1984 | .w3eden .btn:focus { |
| 1985 | outline: thin dotted; |
| 1986 | outline: 5px auto -webkit-focus-ring-color; |
| 1987 | outline-offset: -2px; |
| 1988 | } |
| 1989 | .w3eden .btn.focus, |
| 1990 | .w3eden .btn:focus, |
| 1991 | .w3eden .btn:hover { |
| 1992 | color: #333; |
| 1993 | text-decoration: none; |
| 1994 | } |
| 1995 | .w3eden .btn.active, |
| 1996 | .w3eden .btn:active { |
| 1997 | background-image: none; |
| 1998 | outline: 0; |
| 1999 | -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); |
| 2000 | box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); |
| 2001 | } |
| 2002 | .w3eden .btn.disabled, |
| 2003 | .w3eden .btn[disabled], |
| 2004 | .w3eden fieldset[disabled] .btn { |
| 2005 | pointer-events: none; |
| 2006 | cursor: not-allowed; |
| 2007 | filter: alpha(opacity=65); |
| 2008 | -webkit-box-shadow: none; |
| 2009 | box-shadow: none; |
| 2010 | opacity: 0.65; |
| 2011 | } |
| 2012 | |
| 2013 | /* |
| 2014 | |
| 2015 | .w3eden .btn-secondary { |
| 2016 | color: #333; |
| 2017 | background-color: #fff; |
| 2018 | border-color: #cccccc; |
| 2019 | } |
| 2020 | .w3eden .btn-secondary.active, |
| 2021 | .w3eden .btn-secondary.focus, |
| 2022 | .w3eden .btn-secondary:active, |
| 2023 | .w3eden .btn-secondary:focus, |
| 2024 | .w3eden .btn-secondary:hover, |
| 2025 | .w3eden .open > .dropdown-toggle.btn-secondary { |
| 2026 | color: #333; |
| 2027 | background-color: #e6e6e6; |
| 2028 | border-color: #adadad; |
| 2029 | } |
| 2030 | .w3eden .btn-secondary.active, |
| 2031 | .w3eden .btn-secondary:active, |
| 2032 | .w3eden .open > .dropdown-toggle.btn-secondary { |
| 2033 | background-image: none; |
| 2034 | } |
| 2035 | .w3eden .btn-secondary.disabled, |
| 2036 | .w3eden .btn-secondary.disabled.active, |
| 2037 | .w3eden .btn-secondary.disabled.focus, |
| 2038 | .w3eden .btn-secondary.disabled:active, |
| 2039 | .w3eden .btn-secondary.disabled:focus, |
| 2040 | .w3eden .btn-secondary.disabled:hover, |
| 2041 | .w3eden .btn-secondary[disabled], |
| 2042 | .w3eden .btn-secondary[disabled].active, |
| 2043 | .w3eden .btn-secondary[disabled].focus, |
| 2044 | .w3eden .btn-secondary[disabled]:active, |
| 2045 | .w3eden .btn-secondary[disabled]:focus, |
| 2046 | .w3eden .btn-secondary[disabled]:hover, |
| 2047 | .w3eden fieldset[disabled] .btn-secondary, |
| 2048 | .w3eden fieldset[disabled] .btn-secondary.active, |
| 2049 | .w3eden fieldset[disabled] .btn-secondary.focus, |
| 2050 | .w3eden fieldset[disabled] .btn-secondary:active, |
| 2051 | .w3eden fieldset[disabled] .btn-secondary:focus, |
| 2052 | .w3eden fieldset[disabled] .btn-secondary:hover { |
| 2053 | background-color: #fff; |
| 2054 | border-color: #cccccc; |
| 2055 | } |
| 2056 | .w3eden .btn-secondary .badge { |
| 2057 | color: #fff; |
| 2058 | background-color: #333333; |
| 2059 | } |
| 2060 | .w3eden .btn-primary { |
| 2061 | color: #fff; |
| 2062 | background-color: var(--color-primary); |
| 2063 | border-color: var(--color-primary); |
| 2064 | } |
| 2065 | .w3eden .btn-primary.active, |
| 2066 | .w3eden .btn-primary.focus, |
| 2067 | .w3eden .btn-primary:active, |
| 2068 | .w3eden .btn-primary:focus, |
| 2069 | .w3eden .btn-primary:hover, |
| 2070 | .w3eden .open > .dropdown-toggle.btn-primary { |
| 2071 | color: #fff; |
| 2072 | background-color: var(--color-primary-hover); |
| 2073 | border-color: var(--color-primary-hover); |
| 2074 | } |
| 2075 | .w3eden .btn-primary.active, |
| 2076 | .w3eden .btn-primary:active, |
| 2077 | .w3eden .open > .dropdown-toggle.btn-primary { |
| 2078 | background-image: none; |
| 2079 | } |
| 2080 | .w3eden .btn-primary.disabled, |
| 2081 | .w3eden .btn-primary.disabled.active, |
| 2082 | .w3eden .btn-primary.disabled.focus, |
| 2083 | .w3eden .btn-primary.disabled:active, |
| 2084 | .w3eden .btn-primary.disabled:focus, |
| 2085 | .w3eden .btn-primary.disabled:hover, |
| 2086 | .w3eden .btn-primary[disabled], |
| 2087 | .w3eden .btn-primary[disabled].active, |
| 2088 | .w3eden .btn-primary[disabled].focus, |
| 2089 | .w3eden .btn-primary[disabled]:active, |
| 2090 | .w3eden .btn-primary[disabled]:focus, |
| 2091 | .w3eden .btn-primary[disabled]:hover, |
| 2092 | .w3eden fieldset[disabled] .btn-primary, |
| 2093 | .w3eden fieldset[disabled] .btn-primary.active, |
| 2094 | .w3eden fieldset[disabled] .btn-primary.focus, |
| 2095 | .w3eden fieldset[disabled] .btn-primary:active, |
| 2096 | .w3eden fieldset[disabled] .btn-primary:focus, |
| 2097 | .w3eden fieldset[disabled] .btn-primary:hover { |
| 2098 | background-color: var(--color-primary); |
| 2099 | border-color: var(--color-primary); |
| 2100 | } |
| 2101 | .w3eden .btn-primary .badge { |
| 2102 | color: var(--color-primary); |
| 2103 | background-color: #ffffff; |
| 2104 | } |
| 2105 | .w3eden .btn-success { |
| 2106 | color: #fff; |
| 2107 | background-color: var(--color-success); |
| 2108 | border-color: var(--color-success); |
| 2109 | } |
| 2110 | .w3eden .btn-success.active, |
| 2111 | .w3eden .btn-success.focus, |
| 2112 | .w3eden .btn-success:active, |
| 2113 | .w3eden .btn-success:focus, |
| 2114 | .w3eden .btn-success:hover, |
| 2115 | .w3eden .open > .dropdown-toggle.btn-success { |
| 2116 | color: #fff; |
| 2117 | background-color: var(--color-success-hover); |
| 2118 | border-color: var(--color-success-hover); |
| 2119 | } |
| 2120 | .w3eden .btn-success.active, |
| 2121 | .w3eden .btn-success:active, |
| 2122 | .w3eden .open > .dropdown-toggle.btn-success { |
| 2123 | background-image: none; |
| 2124 | } |
| 2125 | .w3eden .btn-success.disabled, |
| 2126 | .w3eden .btn-success.disabled.active, |
| 2127 | .w3eden .btn-success.disabled.focus, |
| 2128 | .w3eden .btn-success.disabled:active, |
| 2129 | .w3eden .btn-success.disabled:focus, |
| 2130 | .w3eden .btn-success.disabled:hover, |
| 2131 | .w3eden .btn-success[disabled], |
| 2132 | .w3eden .btn-success[disabled].active, |
| 2133 | .w3eden .btn-success[disabled].focus, |
| 2134 | .w3eden .btn-success[disabled]:active, |
| 2135 | .w3eden .btn-success[disabled]:focus, |
| 2136 | .w3eden .btn-success[disabled]:hover, |
| 2137 | .w3eden fieldset[disabled] .btn-success, |
| 2138 | .w3eden fieldset[disabled] .btn-success.active, |
| 2139 | .w3eden fieldset[disabled] .btn-success.focus, |
| 2140 | .w3eden fieldset[disabled] .btn-success:active, |
| 2141 | .w3eden fieldset[disabled] .btn-success:focus, |
| 2142 | .w3eden fieldset[disabled] .btn-success:hover { |
| 2143 | background-color: var(--color-success); |
| 2144 | border-color: var(--color-success); |
| 2145 | } |
| 2146 | .w3eden .btn-success .badge { |
| 2147 | color: var(--color-success); |
| 2148 | background-color: #ffffff; |
| 2149 | } |
| 2150 | .w3eden .btn-info { |
| 2151 | color: #fff; |
| 2152 | background-color: var(--color-info); |
| 2153 | border-color: var(--color-info); |
| 2154 | } |
| 2155 | .w3eden .btn-info.active, |
| 2156 | .w3eden .btn-info.focus, |
| 2157 | .w3eden .btn-info:active, |
| 2158 | .w3eden .btn-info:focus, |
| 2159 | .w3eden .btn-info:hover, |
| 2160 | .w3eden .open > .dropdown-toggle.btn-info { |
| 2161 | color: #fff; |
| 2162 | background-color: var(--color-info-hover); |
| 2163 | border-color: var(--color-info-hover); |
| 2164 | } |
| 2165 | .w3eden .btn-info.active, |
| 2166 | .w3eden .btn-info:active, |
| 2167 | .w3eden .open > .dropdown-toggle.btn-info { |
| 2168 | background-image: none; |
| 2169 | } |
| 2170 | .w3eden .btn-info.disabled, |
| 2171 | .w3eden .btn-info.disabled.active, |
| 2172 | .w3eden .btn-info.disabled.focus, |
| 2173 | .w3eden .btn-info.disabled:active, |
| 2174 | .w3eden .btn-info.disabled:focus, |
| 2175 | .w3eden .btn-info.disabled:hover, |
| 2176 | .w3eden .btn-info[disabled], |
| 2177 | .w3eden .btn-info[disabled].active, |
| 2178 | .w3eden .btn-info[disabled].focus, |
| 2179 | .w3eden .btn-info[disabled]:active, |
| 2180 | .w3eden .btn-info[disabled]:focus, |
| 2181 | .w3eden .btn-info[disabled]:hover, |
| 2182 | .w3eden fieldset[disabled] .btn-info, |
| 2183 | .w3eden fieldset[disabled] .btn-info.active, |
| 2184 | .w3eden fieldset[disabled] .btn-info.focus, |
| 2185 | .w3eden fieldset[disabled] .btn-info:active, |
| 2186 | .w3eden fieldset[disabled] .btn-info:focus, |
| 2187 | .w3eden fieldset[disabled] .btn-info:hover { |
| 2188 | background-color: var(--color-info); |
| 2189 | border-color: var(--color-info); |
| 2190 | } |
| 2191 | .w3eden .btn-info .badge { |
| 2192 | color: var(--color-info); |
| 2193 | background-color: #ffffff; |
| 2194 | } |
| 2195 | .w3eden .btn-warning { |
| 2196 | color: #fff; |
| 2197 | background-color: var(--color-warning-active); |
| 2198 | border-color: var(--color-warning-active); |
| 2199 | } |
| 2200 | .w3eden .btn-warning.active, |
| 2201 | .w3eden .btn-warning.focus, |
| 2202 | .w3eden .btn-warning:active, |
| 2203 | .w3eden .btn-warning:focus, |
| 2204 | .w3eden .btn-warning:hover, |
| 2205 | .w3eden .open > .dropdown-toggle.btn-warning { |
| 2206 | color: #fff; |
| 2207 | background-color: #ec971f; |
| 2208 | border-color: #d58512; |
| 2209 | } |
| 2210 | .w3eden .btn-warning.active, |
| 2211 | .w3eden .btn-warning:active, |
| 2212 | .w3eden .open > .dropdown-toggle.btn-warning { |
| 2213 | background-image: none; |
| 2214 | } |
| 2215 | .w3eden .btn-warning.disabled, |
| 2216 | .w3eden .btn-warning.disabled.active, |
| 2217 | .w3eden .btn-warning.disabled.focus, |
| 2218 | .w3eden .btn-warning.disabled:active, |
| 2219 | .w3eden .btn-warning.disabled:focus, |
| 2220 | .w3eden .btn-warning.disabled:hover, |
| 2221 | .w3eden .btn-warning[disabled], |
| 2222 | .w3eden .btn-warning[disabled].active, |
| 2223 | .w3eden .btn-warning[disabled].focus, |
| 2224 | .w3eden .btn-warning[disabled]:active, |
| 2225 | .w3eden .btn-warning[disabled]:focus, |
| 2226 | .w3eden .btn-warning[disabled]:hover, |
| 2227 | .w3eden fieldset[disabled] .btn-warning, |
| 2228 | .w3eden fieldset[disabled] .btn-warning.active, |
| 2229 | .w3eden fieldset[disabled] .btn-warning.focus, |
| 2230 | .w3eden fieldset[disabled] .btn-warning:active, |
| 2231 | .w3eden fieldset[disabled] .btn-warning:focus, |
| 2232 | .w3eden fieldset[disabled] .btn-warning:hover { |
| 2233 | background-color: var(--color-warning-active); |
| 2234 | border-color: var(--color-warning-active); |
| 2235 | } |
| 2236 | .w3eden .btn-warning .badge { |
| 2237 | color: var(--color-warning-active); |
| 2238 | background-color: #ffffff; |
| 2239 | } |
| 2240 | .w3eden .btn-danger { |
| 2241 | color: #fff; |
| 2242 | background-color: var(--color-danger); |
| 2243 | border-color: var(--color-danger); |
| 2244 | } |
| 2245 | .w3eden .btn-danger.active, |
| 2246 | .w3eden .btn-danger.focus, |
| 2247 | .w3eden .btn-danger:active, |
| 2248 | .w3eden .btn-danger:focus, |
| 2249 | .w3eden .btn-danger:hover, |
| 2250 | .w3eden .open > .dropdown-toggle.btn-danger { |
| 2251 | color: #fff; |
| 2252 | background-color: var(--color-danger-active); |
| 2253 | border-color: var(--color-danger-active); |
| 2254 | } |
| 2255 | .w3eden .btn-danger.active, |
| 2256 | .w3eden .btn-danger:active, |
| 2257 | .w3eden .open > .dropdown-toggle.btn-danger { |
| 2258 | background-image: none; |
| 2259 | } |
| 2260 | .w3eden .btn-danger.disabled, |
| 2261 | .w3eden .btn-danger.disabled.active, |
| 2262 | .w3eden .btn-danger.disabled.focus, |
| 2263 | .w3eden .btn-danger.disabled:active, |
| 2264 | .w3eden .btn-danger.disabled:focus, |
| 2265 | .w3eden .btn-danger.disabled:hover, |
| 2266 | .w3eden .btn-danger[disabled], |
| 2267 | .w3eden .btn-danger[disabled].active, |
| 2268 | .w3eden .btn-danger[disabled].focus, |
| 2269 | .w3eden .btn-danger[disabled]:active, |
| 2270 | .w3eden .btn-danger[disabled]:focus, |
| 2271 | .w3eden .btn-danger[disabled]:hover, |
| 2272 | .w3eden fieldset[disabled] .btn-danger, |
| 2273 | .w3eden fieldset[disabled] .btn-danger.active, |
| 2274 | .w3eden fieldset[disabled] .btn-danger.focus, |
| 2275 | .w3eden fieldset[disabled] .btn-danger:active, |
| 2276 | .w3eden fieldset[disabled] .btn-danger:focus, |
| 2277 | .w3eden fieldset[disabled] .btn-danger:hover { |
| 2278 | background-color: var(--color-danger); |
| 2279 | border-color: var(--color-danger); |
| 2280 | } |
| 2281 | .w3eden .btn-danger .badge { |
| 2282 | color: var(--color-danger); |
| 2283 | background-color: #ffffff; |
| 2284 | } |
| 2285 | */ |
| 2286 | |
| 2287 | .w3eden .btn-link { |
| 2288 | font-weight: 400; |
| 2289 | color: var(--color-primary); |
| 2290 | border-radius: 0; |
| 2291 | } |
| 2292 | .w3eden .btn-link, |
| 2293 | .w3eden .btn-link.active, |
| 2294 | .w3eden .btn-link:active, |
| 2295 | .w3eden .btn-link[disabled], |
| 2296 | .w3eden fieldset[disabled] .btn-link { |
| 2297 | background-color: transparent; |
| 2298 | -webkit-box-shadow: none; |
| 2299 | box-shadow: none; |
| 2300 | } |
| 2301 | .w3eden .btn-link, |
| 2302 | .w3eden .btn-link:active, |
| 2303 | .w3eden .btn-link:focus, |
| 2304 | .w3eden .btn-link:hover { |
| 2305 | border-color: transparent; |
| 2306 | } |
| 2307 | .w3eden .btn-link:focus, |
| 2308 | .w3eden .btn-link:hover { |
| 2309 | color: #23527c; |
| 2310 | text-decoration: underline; |
| 2311 | background-color: transparent; |
| 2312 | } |
| 2313 | .w3eden .btn-link[disabled]:focus, |
| 2314 | .w3eden .btn-link[disabled]:hover, |
| 2315 | .w3eden fieldset[disabled] .btn-link:focus, |
| 2316 | .w3eden fieldset[disabled] .btn-link:hover { |
| 2317 | color: #777; |
| 2318 | text-decoration: none; |
| 2319 | } |
| 2320 | .w3eden .btn-group-lg > .btn, |
| 2321 | .w3eden .btn-lg { |
| 2322 | padding: 0 16px; |
| 2323 | font-size: 18px; |
| 2324 | line-height: 1.3333333; |
| 2325 | border-radius: 8px; |
| 2326 | height: 48px; |
| 2327 | } |
| 2328 | .w3eden .btn-group-sm > .btn, |
| 2329 | .w3eden .btn-sm { |
| 2330 | padding: 0 10px; |
| 2331 | height: 30px; |
| 2332 | line-height: 28px; |
| 2333 | font-size: 12px; |
| 2334 | border-radius: 4px; |
| 2335 | } |
| 2336 | .w3eden .btn-group-xs > .btn, |
| 2337 | .w3eden .btn-xs { |
| 2338 | padding: 0 10px; |
| 2339 | height: 24px; |
| 2340 | line-height: 22px; |
| 2341 | font-size: 12px; |
| 2342 | border-radius: 3px; |
| 2343 | } |
| 2344 | .w3eden .btn-block { |
| 2345 | display: block; |
| 2346 | width: 100%; |
| 2347 | } |
| 2348 | .w3eden .btn-block + .btn-block { |
| 2349 | margin-top: 5px; |
| 2350 | } |
| 2351 | .w3eden input[type=button].btn-block, |
| 2352 | .w3eden input[type=reset].btn-block, |
| 2353 | .w3eden input[type=submit].btn-block { |
| 2354 | width: 100%; |
| 2355 | } |
| 2356 | .w3eden .fade { |
| 2357 | opacity: 0; |
| 2358 | -webkit-transition: opacity .15s linear; |
| 2359 | -o-transition: opacity .15s linear; |
| 2360 | transition: opacity 0.15s linear; |
| 2361 | } |
| 2362 | .w3eden .fade.in { |
| 2363 | opacity: 1; |
| 2364 | } |
| 2365 | .w3eden .collapse { |
| 2366 | display: none; |
| 2367 | } |
| 2368 | .w3eden .collapse.in { |
| 2369 | display: block; |
| 2370 | } |
| 2371 | .w3eden tr.collapse.in { |
| 2372 | display: table-row; |
| 2373 | } |
| 2374 | .w3eden tbody.collapse.in { |
| 2375 | display: table-row-group; |
| 2376 | } |
| 2377 | .w3eden .collapsing { |
| 2378 | position: relative; |
| 2379 | height: 0; |
| 2380 | overflow: hidden; |
| 2381 | -webkit-transition-timing-function: ease; |
| 2382 | -o-transition-timing-function: ease; |
| 2383 | transition-timing-function: ease; |
| 2384 | -webkit-transition-duration: .35s; |
| 2385 | -o-transition-duration: .35s; |
| 2386 | transition-duration: .35s; |
| 2387 | -webkit-transition-property: height,visibility; |
| 2388 | -o-transition-property: height,visibility; |
| 2389 | transition-property: height, visibility; |
| 2390 | } |
| 2391 | .w3eden .caret { |
| 2392 | display: inline-block; |
| 2393 | width: 0; |
| 2394 | height: 0; |
| 2395 | margin-left: 2px; |
| 2396 | vertical-align: middle; |
| 2397 | border-top: 4px dashed; |
| 2398 | border-right: 4px solid transparent; |
| 2399 | border-left: 4px solid transparent; |
| 2400 | } |
| 2401 | .w3eden .dropdown, |
| 2402 | .w3eden .dropup { |
| 2403 | position: relative; |
| 2404 | } |
| 2405 | .w3eden .dropdown-toggle:focus { |
| 2406 | outline: 0; |
| 2407 | } |
| 2408 | .w3eden .dropdown-menu { |
| 2409 | position: absolute; |
| 2410 | top: 100%; |
| 2411 | left: 0; |
| 2412 | z-index: 1000; |
| 2413 | display: none; |
| 2414 | float: left; |
| 2415 | min-width: 160px; |
| 2416 | padding: 5px 0; |
| 2417 | margin: 2px 0 0; |
| 2418 | font-size: 14px; |
| 2419 | text-align: left; |
| 2420 | list-style: none; |
| 2421 | background-color: #fff; |
| 2422 | -webkit-background-clip: padding-box; |
| 2423 | background-clip: padding-box; |
| 2424 | border: 1px solid #ccc; |
| 2425 | border: 1px solid rgba(0, 0, 0, 0.15); |
| 2426 | border-radius: 4px; |
| 2427 | -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); |
| 2428 | box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); |
| 2429 | } |
| 2430 | .w3eden .dropdown-menu.pull-right { |
| 2431 | right: 0; |
| 2432 | left: auto; |
| 2433 | } |
| 2434 | .w3eden .dropdown-menu .divider { |
| 2435 | height: 1px; |
| 2436 | margin: 9px 0; |
| 2437 | overflow: hidden; |
| 2438 | background-color: #e5e5e5; |
| 2439 | } |
| 2440 | .w3eden .dropdown-menu > li > a { |
| 2441 | display: block; |
| 2442 | padding: 3px 20px; |
| 2443 | clear: both; |
| 2444 | font-weight: 400; |
| 2445 | line-height: 1.42857143; |
| 2446 | color: #333; |
| 2447 | white-space: nowrap; |
| 2448 | } |
| 2449 | .w3eden .dropdown-menu > li > a:focus, |
| 2450 | .w3eden .dropdown-menu > li > a:hover { |
| 2451 | color: #262626; |
| 2452 | text-decoration: none; |
| 2453 | background-color: #f5f5f5; |
| 2454 | } |
| 2455 | .w3eden .dropdown-menu > .active > a, |
| 2456 | .w3eden .dropdown-menu > .active > a:focus, |
| 2457 | .w3eden .dropdown-menu > .active > a:hover { |
| 2458 | color: #fff; |
| 2459 | text-decoration: none; |
| 2460 | background-color: var(--color-primary); |
| 2461 | outline: 0; |
| 2462 | } |
| 2463 | .w3eden .dropdown-menu > .disabled > a, |
| 2464 | .w3eden .dropdown-menu > .disabled > a:focus, |
| 2465 | .w3eden .dropdown-menu > .disabled > a:hover { |
| 2466 | color: #777777; |
| 2467 | } |
| 2468 | .w3eden .dropdown-menu > .disabled > a:focus, |
| 2469 | .w3eden .dropdown-menu > .disabled > a:hover { |
| 2470 | text-decoration: none; |
| 2471 | cursor: not-allowed; |
| 2472 | background-color: transparent; |
| 2473 | background-image: none; |
| 2474 | filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); |
| 2475 | } |
| 2476 | .w3eden .open > .dropdown-menu { |
| 2477 | display: block; |
| 2478 | } |
| 2479 | .w3eden .open > a { |
| 2480 | outline: 0; |
| 2481 | } |
| 2482 | .w3eden .dropdown-menu-right { |
| 2483 | right: 0; |
| 2484 | left: auto; |
| 2485 | } |
| 2486 | .w3eden .dropdown-menu-left { |
| 2487 | right: auto; |
| 2488 | left: 0; |
| 2489 | } |
| 2490 | .w3eden .dropdown-header { |
| 2491 | display: block; |
| 2492 | padding: 3px 20px; |
| 2493 | font-size: 12px; |
| 2494 | line-height: 1.42857143; |
| 2495 | color: #777; |
| 2496 | white-space: nowrap; |
| 2497 | } |
| 2498 | .w3eden .dropdown-backdrop { |
| 2499 | position: fixed; |
| 2500 | top: 0; |
| 2501 | right: 0; |
| 2502 | bottom: 0; |
| 2503 | left: 0; |
| 2504 | z-index: 990; |
| 2505 | } |
| 2506 | .w3eden .pull-right > .dropdown-menu { |
| 2507 | right: 0; |
| 2508 | left: auto; |
| 2509 | } |
| 2510 | .w3eden .dropup .caret, |
| 2511 | .w3eden .navbar-fixed-bottom .dropdown .caret { |
| 2512 | content: ""; |
| 2513 | border-top: 0; |
| 2514 | border-bottom: 4px solid; |
| 2515 | } |
| 2516 | .w3eden .dropup .dropdown-menu, |
| 2517 | .w3eden .navbar-fixed-bottom .dropdown .dropdown-menu { |
| 2518 | top: auto; |
| 2519 | bottom: 100%; |
| 2520 | margin-bottom: 2px; |
| 2521 | } |
| 2522 | @media (min-width: 768px) { |
| 2523 | .w3eden .navbar-right .dropdown-menu { |
| 2524 | right: 0; |
| 2525 | left: auto; |
| 2526 | } |
| 2527 | .w3eden .navbar-right .dropdown-menu-left { |
| 2528 | right: auto; |
| 2529 | left: 0; |
| 2530 | } |
| 2531 | } |
| 2532 | .w3eden .btn-group, |
| 2533 | .w3eden .btn-group-vertical { |
| 2534 | position: relative; |
| 2535 | display: inline-flex; |
| 2536 | vertical-align: middle; |
| 2537 | } |
| 2538 | .w3eden .btn-group-vertical > .btn, |
| 2539 | .w3eden .btn-group > .btn { |
| 2540 | position: relative; |
| 2541 | float: left; |
| 2542 | } |
| 2543 | .w3eden .btn-group-vertical > .btn.active, |
| 2544 | .w3eden .btn-group-vertical > .btn:active, |
| 2545 | .w3eden .btn-group-vertical > .btn:focus, |
| 2546 | .w3eden .btn-group-vertical > .btn:hover, |
| 2547 | .w3eden .btn-group > .btn.active, |
| 2548 | .w3eden .btn-group > .btn:active, |
| 2549 | .w3eden .btn-group > .btn:focus, |
| 2550 | .w3eden .btn-group > .btn:hover { |
| 2551 | z-index: 2; |
| 2552 | } |
| 2553 | .w3eden .btn-group .btn + .btn, |
| 2554 | .w3eden .btn-group .btn + .btn-group, |
| 2555 | .w3eden .btn-group .btn-group + .btn, |
| 2556 | .w3eden .btn-group .btn-group + .btn-group { |
| 2557 | margin-left: -1px; |
| 2558 | } |
| 2559 | .w3eden .btn-toolbar { |
| 2560 | margin-left: -5px; |
| 2561 | } |
| 2562 | .w3eden .btn-toolbar .btn-group, |
| 2563 | .w3eden .btn-toolbar .input-group { |
| 2564 | float: left; |
| 2565 | } |
| 2566 | .w3eden .btn-toolbar > .btn, |
| 2567 | .w3eden .btn-toolbar > .btn-group, |
| 2568 | .w3eden .btn-toolbar > .input-group { |
| 2569 | margin-left: 5px; |
| 2570 | } |
| 2571 | .w3eden .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) { |
| 2572 | border-radius: 0; |
| 2573 | } |
| 2574 | .w3eden .btn-group > .btn:first-child { |
| 2575 | margin-left: 0; |
| 2576 | } |
| 2577 | .w3eden .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) { |
| 2578 | border-top-right-radius: 0; |
| 2579 | border-bottom-right-radius: 0; |
| 2580 | } |
| 2581 | .w3eden .btn-group > .btn:last-child:not(:first-child), |
| 2582 | .w3eden .btn-group > .dropdown-toggle:not(:first-child) { |
| 2583 | border-top-left-radius: 0; |
| 2584 | border-bottom-left-radius: 0; |
| 2585 | } |
| 2586 | .w3eden .btn-group > .btn-group { |
| 2587 | float: left; |
| 2588 | } |
| 2589 | .w3eden .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn { |
| 2590 | border-radius: 0; |
| 2591 | } |
| 2592 | .w3eden .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child, |
| 2593 | .w3eden .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle { |
| 2594 | border-top-right-radius: 0; |
| 2595 | border-bottom-right-radius: 0; |
| 2596 | } |
| 2597 | .w3eden .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child { |
| 2598 | border-top-left-radius: 0; |
| 2599 | border-bottom-left-radius: 0; |
| 2600 | } |
| 2601 | .w3eden .btn-group .dropdown-toggle:active, |
| 2602 | .w3eden .btn-group.open .dropdown-toggle { |
| 2603 | outline: 0; |
| 2604 | } |
| 2605 | .w3eden .btn-group > .btn + .dropdown-toggle { |
| 2606 | padding-right: 8px; |
| 2607 | padding-left: 8px; |
| 2608 | } |
| 2609 | .w3eden .btn-group > .btn-lg + .dropdown-toggle { |
| 2610 | padding-right: 12px; |
| 2611 | padding-left: 12px; |
| 2612 | } |
| 2613 | .w3eden .btn-group.open .dropdown-toggle { |
| 2614 | -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); |
| 2615 | box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); |
| 2616 | } |
| 2617 | .w3eden .btn-group.open .dropdown-toggle.btn-link { |
| 2618 | -webkit-box-shadow: none; |
| 2619 | box-shadow: none; |
| 2620 | } |
| 2621 | .w3eden .btn .caret { |
| 2622 | margin-left: 0; |
| 2623 | } |
| 2624 | .w3eden .btn-lg .caret { |
| 2625 | border-width: 5px 5px 0; |
| 2626 | border-bottom-width: 0; |
| 2627 | } |
| 2628 | .w3eden .dropup .btn-lg .caret { |
| 2629 | border-width: 0 5px 5px; |
| 2630 | } |
| 2631 | .w3eden .btn-group-vertical > .btn, |
| 2632 | .w3eden .btn-group-vertical > .btn-group, |
| 2633 | .w3eden .btn-group-vertical > .btn-group > .btn { |
| 2634 | display: block; |
| 2635 | float: none; |
| 2636 | width: 100%; |
| 2637 | max-width: 100%; |
| 2638 | } |
| 2639 | .w3eden .btn-group-vertical > .btn-group > .btn { |
| 2640 | float: none; |
| 2641 | } |
| 2642 | .w3eden .btn-group-vertical > .btn + .btn, |
| 2643 | .w3eden .btn-group-vertical > .btn + .btn-group, |
| 2644 | .w3eden .btn-group-vertical > .btn-group + .btn, |
| 2645 | .w3eden .btn-group-vertical > .btn-group + .btn-group { |
| 2646 | margin-top: -1px; |
| 2647 | margin-left: 0; |
| 2648 | } |
| 2649 | .w3eden .btn-group-vertical > .btn:not(:first-child):not(:last-child) { |
| 2650 | border-radius: 0; |
| 2651 | } |
| 2652 | .w3eden .btn-group-vertical > .btn:first-child:not(:last-child) { |
| 2653 | border-top-right-radius: 4px; |
| 2654 | border-bottom-right-radius: 0; |
| 2655 | border-bottom-left-radius: 0; |
| 2656 | } |
| 2657 | .w3eden .btn-group-vertical > .btn:last-child:not(:first-child) { |
| 2658 | border-top-left-radius: 0; |
| 2659 | border-top-right-radius: 0; |
| 2660 | border-bottom-left-radius: 4px; |
| 2661 | } |
| 2662 | .w3eden .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn { |
| 2663 | border-radius: 0; |
| 2664 | } |
| 2665 | .w3eden .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child, |
| 2666 | .w3eden .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle { |
| 2667 | border-bottom-right-radius: 0; |
| 2668 | border-bottom-left-radius: 0; |
| 2669 | } |
| 2670 | .w3eden .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child { |
| 2671 | border-top-left-radius: 0; |
| 2672 | border-top-right-radius: 0; |
| 2673 | } |
| 2674 | .w3eden .btn-group-justified { |
| 2675 | display: table; |
| 2676 | width: 100%; |
| 2677 | table-layout: fixed; |
| 2678 | border-collapse: separate; |
| 2679 | } |
| 2680 | .w3eden .btn-group-justified > .btn, |
| 2681 | .w3eden .btn-group-justified > .btn-group { |
| 2682 | display: table-cell; |
| 2683 | float: none; |
| 2684 | width: 1%; |
| 2685 | } |
| 2686 | .w3eden .btn-group-justified > .btn-group .btn { |
| 2687 | width: 100%; |
| 2688 | } |
| 2689 | .w3eden .btn-group-justified > .btn-group .dropdown-menu { |
| 2690 | left: auto; |
| 2691 | } |
| 2692 | .w3eden [data-toggle=buttons] > .btn input[type=checkbox], |
| 2693 | .w3eden [data-toggle=buttons] > .btn input[type=radio], |
| 2694 | .w3eden [data-toggle=buttons] > .btn-group > .btn input[type=checkbox], |
| 2695 | .w3eden [data-toggle=buttons] > .btn-group > .btn input[type=radio] { |
| 2696 | position: absolute; |
| 2697 | clip: rect(0, 0, 0, 0); |
| 2698 | pointer-events: none; |
| 2699 | } |
| 2700 | .w3eden .input-group { |
| 2701 | position: relative; |
| 2702 | display: table; |
| 2703 | border-collapse: separate; |
| 2704 | } |
| 2705 | .w3eden .input-group[class*=col-] { |
| 2706 | float: none; |
| 2707 | padding-right: 0; |
| 2708 | padding-left: 0; |
| 2709 | } |
| 2710 | .w3eden .input-group .form-control { |
| 2711 | position: relative; |
| 2712 | z-index: 2; |
| 2713 | float: left; |
| 2714 | width: 100%; |
| 2715 | margin-bottom: 0; |
| 2716 | } |
| 2717 | .w3eden .input-group-lg > .form-control, |
| 2718 | .w3eden .input-group-lg > .input-group-addon, |
| 2719 | .w3eden .input-group-lg > .input-group-btn > .btn { |
| 2720 | height: 46px; |
| 2721 | padding: 10px 16px; |
| 2722 | font-size: 18px; |
| 2723 | line-height: 1.3333333; |
| 2724 | border-radius: 6px; |
| 2725 | } |
| 2726 | .w3eden select.input-group-lg > .form-control, |
| 2727 | .w3eden select.input-group-lg > .input-group-addon, |
| 2728 | .w3eden select.input-group-lg > .input-group-btn > .btn { |
| 2729 | height: 46px; |
| 2730 | line-height: 46px; |
| 2731 | } |
| 2732 | .w3eden select[multiple].input-group-lg > .form-control, |
| 2733 | .w3eden select[multiple].input-group-lg > .input-group-addon, |
| 2734 | .w3eden select[multiple].input-group-lg > .input-group-btn > .btn, |
| 2735 | .w3eden textarea.input-group-lg > .form-control, |
| 2736 | .w3eden textarea.input-group-lg > .input-group-addon, |
| 2737 | .w3eden textarea.input-group-lg > .input-group-btn > .btn { |
| 2738 | height: auto; |
| 2739 | } |
| 2740 | .w3eden .input-group-sm > .form-control, |
| 2741 | .w3eden .input-group-sm > .input-group-addon, |
| 2742 | .w3eden .input-group-sm > .input-group-btn > .btn { |
| 2743 | height: 30px; |
| 2744 | padding: 5px 10px; |
| 2745 | font-size: 12px; |
| 2746 | line-height: 1.5; |
| 2747 | border-radius: 3px; |
| 2748 | } |
| 2749 | .w3eden select.input-group-sm > .form-control, |
| 2750 | .w3eden select.input-group-sm > .input-group-addon, |
| 2751 | .w3eden select.input-group-sm > .input-group-btn > .btn { |
| 2752 | height: 30px; |
| 2753 | line-height: 30px; |
| 2754 | } |
| 2755 | .w3eden select[multiple].input-group-sm > .form-control, |
| 2756 | .w3eden select[multiple].input-group-sm > .input-group-addon, |
| 2757 | .w3eden select[multiple].input-group-sm > .input-group-btn > .btn, |
| 2758 | .w3eden textarea.input-group-sm > .form-control, |
| 2759 | .w3eden textarea.input-group-sm > .input-group-addon, |
| 2760 | .w3eden textarea.input-group-sm > .input-group-btn > .btn { |
| 2761 | height: auto; |
| 2762 | } |
| 2763 | .w3eden .input-group .form-control, |
| 2764 | .w3eden .input-group-addon, |
| 2765 | .w3eden .input-group-btn { |
| 2766 | display: table-cell; |
| 2767 | } |
| 2768 | .w3eden .input-group .form-control:not(:first-child):not(:last-child), |
| 2769 | .w3eden .input-group-addon:not(:first-child):not(:last-child), |
| 2770 | .w3eden .input-group-btn:not(:first-child):not(:last-child) { |
| 2771 | border-radius: 0; |
| 2772 | } |
| 2773 | .w3eden .input-group-addon, |
| 2774 | .w3eden .input-group-btn { |
| 2775 | width: 1%; |
| 2776 | white-space: nowrap; |
| 2777 | vertical-align: middle; |
| 2778 | } |
| 2779 | .w3eden .input-group-addon { |
| 2780 | padding: 6px 12px; |
| 2781 | font-size: 14px; |
| 2782 | font-weight: 400; |
| 2783 | line-height: 1; |
| 2784 | color: #555; |
| 2785 | text-align: center; |
| 2786 | background-color: var(--bg-light); |
| 2787 | border: 1px solid var(--border-color); |
| 2788 | border-radius: 3px; |
| 2789 | } |
| 2790 | .w3eden .input-group-addon.input-sm { |
| 2791 | padding: 5px 10px; |
| 2792 | font-size: 12px; |
| 2793 | border-radius: 4px; |
| 2794 | } |
| 2795 | .w3eden .input-group-addon.input-lg { |
| 2796 | padding: 10px 16px; |
| 2797 | font-size: 18px; |
| 2798 | border-radius: 6px; |
| 2799 | } |
| 2800 | .w3eden .input-group-addon input[type=checkbox], |
| 2801 | .w3eden .input-group-addon input[type=radio] { |
| 2802 | margin-top: 0; |
| 2803 | } |
| 2804 | .w3eden .input-group .form-control:first-child, |
| 2805 | .w3eden .input-group-addon:first-child, |
| 2806 | .w3eden .input-group-btn:first-child > .btn, |
| 2807 | .w3eden .input-group-btn:first-child > .btn-group > .btn, |
| 2808 | .w3eden .input-group-btn:first-child > .dropdown-toggle, |
| 2809 | .w3eden .input-group-btn:last-child > .btn-group:not(:last-child) > .btn, |
| 2810 | .w3eden .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) { |
| 2811 | border-top-right-radius: 0; |
| 2812 | border-bottom-right-radius: 0; |
| 2813 | } |
| 2814 | .w3eden .input-group-addon:first-child { |
| 2815 | border-right: 0; |
| 2816 | } |
| 2817 | .w3eden .input-group .form-control:last-child, |
| 2818 | .w3eden .input-group-addon:last-child, |
| 2819 | .w3eden .input-group-btn:first-child > .btn-group:not(:first-child) > .btn, |
| 2820 | .w3eden .input-group-btn:first-child > .btn:not(:first-child), |
| 2821 | .w3eden .input-group-btn:last-child > .btn, |
| 2822 | .w3eden .input-group-btn:last-child > .btn-group > .btn, |
| 2823 | .w3eden .input-group-btn:last-child > .dropdown-toggle { |
| 2824 | border-top-left-radius: 0; |
| 2825 | border-bottom-left-radius: 0; |
| 2826 | } |
| 2827 | .w3eden .input-group-addon:last-child { |
| 2828 | border-left: 0; |
| 2829 | } |
| 2830 | .w3eden .input-group-btn { |
| 2831 | position: relative; |
| 2832 | white-space: nowrap; |
| 2833 | } |
| 2834 | .w3eden .input-group-btn > .btn { |
| 2835 | position: relative; |
| 2836 | } |
| 2837 | .w3eden .input-group-btn > .btn + .btn { |
| 2838 | margin-left: -1px; |
| 2839 | } |
| 2840 | .w3eden .input-group-btn > .btn:active, |
| 2841 | .w3eden .input-group-btn > .btn:focus, |
| 2842 | .w3eden .input-group-btn > .btn:hover { |
| 2843 | z-index: 2; |
| 2844 | } |
| 2845 | .w3eden .input-group-btn:first-child > .btn, |
| 2846 | .w3eden .input-group-btn:first-child > .btn-group { |
| 2847 | margin-right: -1px; |
| 2848 | } |
| 2849 | .w3eden .input-group-btn:last-child > .btn, |
| 2850 | .w3eden .input-group-btn:last-child > .btn-group { |
| 2851 | margin-left: -1px; |
| 2852 | } |
| 2853 | .w3eden .nav { |
| 2854 | padding-left: 0; |
| 2855 | margin-bottom: 0; |
| 2856 | list-style: none; |
| 2857 | } |
| 2858 | .w3eden .nav > li { |
| 2859 | position: relative; |
| 2860 | display: block; |
| 2861 | } |
| 2862 | .w3eden .nav > li > a { |
| 2863 | position: relative; |
| 2864 | display: block; |
| 2865 | padding: 10px 15px; |
| 2866 | } |
| 2867 | .w3eden .nav > li > a:focus, |
| 2868 | .w3eden .nav > li > a:hover { |
| 2869 | text-decoration: none; |
| 2870 | background-color: #e1edff; |
| 2871 | } |
| 2872 | .w3eden .nav > li.disabled > a { |
| 2873 | color: #777777; |
| 2874 | } |
| 2875 | .w3eden .nav > li.disabled > a:focus, |
| 2876 | .w3eden .nav > li.disabled > a:hover { |
| 2877 | color: #777; |
| 2878 | text-decoration: none; |
| 2879 | cursor: not-allowed; |
| 2880 | background-color: transparent; |
| 2881 | } |
| 2882 | .w3eden .nav .open > a, |
| 2883 | .w3eden .nav .open > a:focus, |
| 2884 | .w3eden .nav .open > a:hover { |
| 2885 | background-color: #eee; |
| 2886 | border-color: var(--color-primary); |
| 2887 | } |
| 2888 | .w3eden .nav .nav-divider { |
| 2889 | height: 1px; |
| 2890 | margin: 9px 0; |
| 2891 | overflow: hidden; |
| 2892 | background-color: #e5e5e5; |
| 2893 | } |
| 2894 | .w3eden .nav > li > a > img { |
| 2895 | max-width: none; |
| 2896 | } |
| 2897 | .w3eden .nav-tabs { |
| 2898 | border-bottom: 1px solid #dddddd; |
| 2899 | } |
| 2900 | .w3eden .nav-tabs > li { |
| 2901 | float: left; |
| 2902 | margin-bottom: -1px; |
| 2903 | } |
| 2904 | .w3eden .nav-tabs > li > a { |
| 2905 | margin-right: 2px; |
| 2906 | line-height: 1.42857143; |
| 2907 | border: 1px solid transparent; |
| 2908 | border-radius: 4px 4px 0 0; |
| 2909 | } |
| 2910 | .w3eden .nav-tabs > li > a:hover { |
| 2911 | border-color: #eeeeee #eeeeee #dddddd; |
| 2912 | } |
| 2913 | .w3eden .nav-tabs > li.active > a, |
| 2914 | .w3eden .nav-tabs > li.active > a:focus, |
| 2915 | .w3eden .nav-tabs > li.active > a:hover { |
| 2916 | color: #555; |
| 2917 | cursor: default; |
| 2918 | background-color: #fff; |
| 2919 | border: 1px solid #ddd; |
| 2920 | border-bottom-color: transparent; |
| 2921 | } |
| 2922 | .w3eden .nav-tabs.nav-justified { |
| 2923 | width: 100%; |
| 2924 | border-bottom: 0; |
| 2925 | } |
| 2926 | .w3eden .nav-tabs.nav-justified > li { |
| 2927 | float: none; |
| 2928 | } |
| 2929 | .w3eden .nav-tabs.nav-justified > li > a { |
| 2930 | margin-bottom: 5px; |
| 2931 | text-align: center; |
| 2932 | } |
| 2933 | .w3eden .nav-tabs.nav-justified > .dropdown .dropdown-menu { |
| 2934 | top: auto; |
| 2935 | left: auto; |
| 2936 | } |
| 2937 | @media (min-width: 768px) { |
| 2938 | .w3eden .nav-tabs.nav-justified > li { |
| 2939 | display: table-cell; |
| 2940 | width: 1%; |
| 2941 | } |
| 2942 | .w3eden .nav-tabs.nav-justified > li > a { |
| 2943 | margin-bottom: 0; |
| 2944 | } |
| 2945 | } |
| 2946 | .w3eden .nav-tabs.nav-justified > li > a { |
| 2947 | margin-right: 0; |
| 2948 | border-radius: 4px; |
| 2949 | } |
| 2950 | .w3eden .nav-tabs.nav-justified > .active > a, |
| 2951 | .w3eden .nav-tabs.nav-justified > .active > a:focus, |
| 2952 | .w3eden .nav-tabs.nav-justified > .active > a:hover { |
| 2953 | border: 1px solid #dddddd; |
| 2954 | } |
| 2955 | @media (min-width: 768px) { |
| 2956 | .w3eden .nav-tabs.nav-justified > li > a { |
| 2957 | border-bottom: 1px solid #ddd; |
| 2958 | border-radius: 4px 4px 0 0; |
| 2959 | } |
| 2960 | .w3eden .nav-tabs.nav-justified > .active > a, |
| 2961 | .w3eden .nav-tabs.nav-justified > .active > a:focus, |
| 2962 | .w3eden .nav-tabs.nav-justified > .active > a:hover { |
| 2963 | border-bottom-color: #ffffff; |
| 2964 | } |
| 2965 | } |
| 2966 | .w3eden .nav-pills > li { |
| 2967 | float: left; |
| 2968 | } |
| 2969 | .w3eden .nav-pills > li > a { |
| 2970 | border-radius: 4px; |
| 2971 | background: #eaf2ff; |
| 2972 | } |
| 2973 | .w3eden .nav-pills > li + li { |
| 2974 | margin-left: 2px; |
| 2975 | } |
| 2976 | .w3eden .nav-pills > li > a.active, |
| 2977 | .w3eden .nav-pills > li > a.active:focus, |
| 2978 | .w3eden .nav-pills > li > a:hover { |
| 2979 | color: #fff; |
| 2980 | background-color: var(--color-primary); |
| 2981 | } |
| 2982 | .w3eden .nav-stacked > li { |
| 2983 | float: none; |
| 2984 | } |
| 2985 | .w3eden .nav-stacked > li + li { |
| 2986 | margin-top: 2px; |
| 2987 | margin-left: 0; |
| 2988 | } |
| 2989 | .w3eden .nav-justified { |
| 2990 | width: 100%; |
| 2991 | } |
| 2992 | .w3eden .nav-justified > li { |
| 2993 | float: none; |
| 2994 | } |
| 2995 | .w3eden .nav-justified > li > a { |
| 2996 | margin-bottom: 5px; |
| 2997 | text-align: center; |
| 2998 | } |
| 2999 | .w3eden .nav-pills.nav-justified li:not(:last-child) a { |
| 3000 | margin-right: 5px; |
| 3001 | } |
| 3002 | .w3eden .nav-justified > .dropdown .dropdown-menu { |
| 3003 | top: auto; |
| 3004 | left: auto; |
| 3005 | } |
| 3006 | @media (min-width: 768px) { |
| 3007 | .w3eden .nav-justified > li { |
| 3008 | display: table-cell; |
| 3009 | width: 1%; |
| 3010 | } |
| 3011 | .w3eden .nav-justified > li > a { |
| 3012 | margin-bottom: 0; |
| 3013 | } |
| 3014 | } |
| 3015 | .w3eden .nav-tabs-justified { |
| 3016 | border-bottom: 0; |
| 3017 | } |
| 3018 | .w3eden .nav-tabs-justified > li > a { |
| 3019 | margin-right: 0; |
| 3020 | border-radius: 4px; |
| 3021 | } |
| 3022 | .w3eden .nav-tabs-justified > .active > a, |
| 3023 | .w3eden .nav-tabs-justified > .active > a:focus, |
| 3024 | .w3eden .nav-tabs-justified > .active > a:hover { |
| 3025 | border: 1px solid #dddddd; |
| 3026 | } |
| 3027 | @media (min-width: 768px) { |
| 3028 | .w3eden .nav-tabs-justified > li > a { |
| 3029 | border-bottom: 1px solid #ddd; |
| 3030 | border-radius: 4px 4px 0 0; |
| 3031 | } |
| 3032 | .w3eden .nav-tabs-justified > .active > a, |
| 3033 | .w3eden .nav-tabs-justified > .active > a:focus, |
| 3034 | .w3eden .nav-tabs-justified > .active > a:hover { |
| 3035 | border-bottom-color: #ffffff; |
| 3036 | } |
| 3037 | } |
| 3038 | .w3eden .tab-content > .tab-pane { |
| 3039 | display: none; |
| 3040 | } |
| 3041 | .w3eden .tab-content > .active { |
| 3042 | display: block; |
| 3043 | } |
| 3044 | .w3eden .nav-tabs .dropdown-menu { |
| 3045 | margin-top: -1px; |
| 3046 | border-top-left-radius: 0; |
| 3047 | border-top-right-radius: 0; |
| 3048 | } |
| 3049 | .w3eden .navbar { |
| 3050 | position: relative; |
| 3051 | min-height: 50px; |
| 3052 | margin-bottom: 20px; |
| 3053 | border: 1px solid transparent; |
| 3054 | } |
| 3055 | @media (min-width: 768px) { |
| 3056 | .w3eden .navbar { |
| 3057 | border-radius: 4px; |
| 3058 | } |
| 3059 | } |
| 3060 | @media (min-width: 768px) { |
| 3061 | .w3eden .navbar-header { |
| 3062 | float: left; |
| 3063 | } |
| 3064 | } |
| 3065 | .w3eden .navbar-collapse { |
| 3066 | padding-right: 15px; |
| 3067 | padding-left: 15px; |
| 3068 | overflow-x: visible; |
| 3069 | -webkit-overflow-scrolling: touch; |
| 3070 | border-top: 1px solid transparent; |
| 3071 | -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1); |
| 3072 | box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1); |
| 3073 | } |
| 3074 | .w3eden .navbar-collapse.in { |
| 3075 | overflow-y: auto; |
| 3076 | } |
| 3077 | @media (min-width: 768px) { |
| 3078 | .w3eden .navbar-collapse { |
| 3079 | width: auto; |
| 3080 | border-top: 0; |
| 3081 | -webkit-box-shadow: none; |
| 3082 | box-shadow: none; |
| 3083 | } |
| 3084 | .w3eden .navbar-collapse.collapse { |
| 3085 | display: block!important; |
| 3086 | height: auto!important; |
| 3087 | padding-bottom: 0; |
| 3088 | overflow: visible !important; |
| 3089 | } |
| 3090 | .w3eden .navbar-collapse.in { |
| 3091 | overflow-y: visible; |
| 3092 | } |
| 3093 | .w3eden .navbar-fixed-bottom .navbar-collapse, |
| 3094 | .w3eden .navbar-fixed-top .navbar-collapse, |
| 3095 | .w3eden .navbar-static-top .navbar-collapse { |
| 3096 | padding-right: 0; |
| 3097 | padding-left: 0; |
| 3098 | } |
| 3099 | } |
| 3100 | .w3eden .navbar-fixed-bottom .navbar-collapse, |
| 3101 | .w3eden .navbar-fixed-top .navbar-collapse { |
| 3102 | max-height: 340px; |
| 3103 | } |
| 3104 | @media (max-device-width: 480px) and (orientation: landscape) { |
| 3105 | .w3eden .navbar-fixed-bottom .navbar-collapse, |
| 3106 | .w3eden .navbar-fixed-top .navbar-collapse { |
| 3107 | max-height: 200px; |
| 3108 | } |
| 3109 | } |
| 3110 | .w3eden .container-fluid > .navbar-collapse, |
| 3111 | .w3eden .container-fluid > .navbar-header, |
| 3112 | .w3eden .container > .navbar-collapse, |
| 3113 | .w3eden .container > .navbar-header { |
| 3114 | margin-right: -15px; |
| 3115 | margin-left: -15px; |
| 3116 | } |
| 3117 | @media (min-width: 768px) { |
| 3118 | .w3eden .container-fluid > .navbar-collapse, |
| 3119 | .w3eden .container-fluid > .navbar-header, |
| 3120 | .w3eden .container > .navbar-collapse, |
| 3121 | .w3eden .container > .navbar-header { |
| 3122 | margin-right: 0; |
| 3123 | margin-left: 0; |
| 3124 | } |
| 3125 | } |
| 3126 | .w3eden .navbar-static-top { |
| 3127 | z-index: 1000; |
| 3128 | border-width: 0 0 1px; |
| 3129 | } |
| 3130 | @media (min-width: 768px) { |
| 3131 | .w3eden .navbar-static-top { |
| 3132 | border-radius: 0; |
| 3133 | } |
| 3134 | } |
| 3135 | .w3eden .navbar-fixed-bottom, |
| 3136 | .w3eden .navbar-fixed-top { |
| 3137 | position: fixed; |
| 3138 | right: 0; |
| 3139 | left: 0; |
| 3140 | z-index: 1030; |
| 3141 | } |
| 3142 | @media (min-width: 768px) { |
| 3143 | .w3eden .navbar-fixed-bottom, |
| 3144 | .w3eden .navbar-fixed-top { |
| 3145 | border-radius: 0; |
| 3146 | } |
| 3147 | } |
| 3148 | .w3eden .navbar-fixed-top { |
| 3149 | top: 0; |
| 3150 | border-width: 0 0 1px; |
| 3151 | } |
| 3152 | .w3eden .navbar-fixed-bottom { |
| 3153 | bottom: 0; |
| 3154 | margin-bottom: 0; |
| 3155 | border-width: 1px 0 0; |
| 3156 | } |
| 3157 | .w3eden .navbar-brand { |
| 3158 | float: left; |
| 3159 | height: 50px; |
| 3160 | padding: 15px 15px; |
| 3161 | font-size: 18px; |
| 3162 | line-height: 20px; |
| 3163 | } |
| 3164 | .w3eden .navbar-brand:focus, |
| 3165 | .w3eden .navbar-brand:hover { |
| 3166 | text-decoration: none; |
| 3167 | } |
| 3168 | .w3eden .navbar-brand > img { |
| 3169 | display: block; |
| 3170 | } |
| 3171 | @media (min-width: 768px) { |
| 3172 | .w3eden .navbar > .container .navbar-brand, |
| 3173 | .w3eden .navbar > .container-fluid .navbar-brand { |
| 3174 | margin-left: -15px; |
| 3175 | } |
| 3176 | } |
| 3177 | .w3eden .navbar-toggle { |
| 3178 | position: relative; |
| 3179 | float: right; |
| 3180 | padding: 9px 10px; |
| 3181 | margin-top: 8px; |
| 3182 | margin-right: 15px; |
| 3183 | margin-bottom: 8px; |
| 3184 | background-color: transparent; |
| 3185 | background-image: none; |
| 3186 | border: 1px solid transparent; |
| 3187 | border-radius: 4px; |
| 3188 | } |
| 3189 | .w3eden .navbar-toggle:focus { |
| 3190 | outline: 0; |
| 3191 | } |
| 3192 | .w3eden .navbar-toggle .icon-bar { |
| 3193 | display: block; |
| 3194 | width: 22px; |
| 3195 | height: 2px; |
| 3196 | border-radius: 1px; |
| 3197 | } |
| 3198 | .w3eden .navbar-toggle .icon-bar + .icon-bar { |
| 3199 | margin-top: 4px; |
| 3200 | } |
| 3201 | @media (min-width: 768px) { |
| 3202 | .w3eden .navbar-toggle { |
| 3203 | display: none; |
| 3204 | } |
| 3205 | } |
| 3206 | .w3eden .navbar-nav { |
| 3207 | margin: 7.5px -15px; |
| 3208 | } |
| 3209 | .w3eden .navbar-nav > li > a { |
| 3210 | padding-top: 10px; |
| 3211 | padding-bottom: 10px; |
| 3212 | line-height: 20px; |
| 3213 | } |
| 3214 | @media (max-width: 767px) { |
| 3215 | .w3eden .navbar-nav .open .dropdown-menu { |
| 3216 | position: static; |
| 3217 | float: none; |
| 3218 | width: auto; |
| 3219 | margin-top: 0; |
| 3220 | background-color: transparent; |
| 3221 | border: 0; |
| 3222 | -webkit-box-shadow: none; |
| 3223 | box-shadow: none; |
| 3224 | } |
| 3225 | .w3eden .navbar-nav .open .dropdown-menu .dropdown-header, |
| 3226 | .w3eden .navbar-nav .open .dropdown-menu > li > a { |
| 3227 | padding: 5px 15px 5px 25px; |
| 3228 | } |
| 3229 | .w3eden .navbar-nav .open .dropdown-menu > li > a { |
| 3230 | line-height: 20px; |
| 3231 | } |
| 3232 | .w3eden .navbar-nav .open .dropdown-menu > li > a:focus, |
| 3233 | .w3eden .navbar-nav .open .dropdown-menu > li > a:hover { |
| 3234 | background-image: none; |
| 3235 | } |
| 3236 | } |
| 3237 | @media (min-width: 768px) { |
| 3238 | .w3eden .navbar-nav { |
| 3239 | float: left; |
| 3240 | margin: 0; |
| 3241 | } |
| 3242 | .w3eden .navbar-nav > li { |
| 3243 | float: left; |
| 3244 | } |
| 3245 | .w3eden .navbar-nav > li > a { |
| 3246 | padding-top: 15px; |
| 3247 | padding-bottom: 15px; |
| 3248 | } |
| 3249 | } |
| 3250 | .w3eden .navbar-form { |
| 3251 | padding: 10px 15px; |
| 3252 | margin-top: 8px; |
| 3253 | margin-right: -15px; |
| 3254 | margin-bottom: 8px; |
| 3255 | margin-left: -15px; |
| 3256 | border-top: 1px solid transparent; |
| 3257 | border-bottom: 1px solid transparent; |
| 3258 | -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); |
| 3259 | box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); |
| 3260 | } |
| 3261 | @media (min-width: 768px) { |
| 3262 | .w3eden .navbar-form .form-group { |
| 3263 | display: inline-block; |
| 3264 | margin-bottom: 0; |
| 3265 | vertical-align: middle; |
| 3266 | } |
| 3267 | .w3eden .navbar-form .form-control { |
| 3268 | display: inline-block; |
| 3269 | width: auto; |
| 3270 | vertical-align: middle; |
| 3271 | } |
| 3272 | .w3eden .navbar-form .form-control-static { |
| 3273 | display: inline-block; |
| 3274 | } |
| 3275 | .w3eden .navbar-form .input-group { |
| 3276 | display: inline-table; |
| 3277 | vertical-align: middle; |
| 3278 | } |
| 3279 | .w3eden .navbar-form .input-group .form-control, |
| 3280 | .w3eden .navbar-form .input-group .input-group-addon, |
| 3281 | .w3eden .navbar-form .input-group .input-group-btn { |
| 3282 | width: auto; |
| 3283 | } |
| 3284 | .w3eden .navbar-form .input-group > .form-control { |
| 3285 | width: 100%; |
| 3286 | } |
| 3287 | .w3eden .navbar-form .control-label { |
| 3288 | margin-bottom: 0; |
| 3289 | vertical-align: middle; |
| 3290 | } |
| 3291 | .w3eden .navbar-form .checkbox, |
| 3292 | .w3eden .navbar-form .radio { |
| 3293 | display: inline-block; |
| 3294 | margin-top: 0; |
| 3295 | margin-bottom: 0; |
| 3296 | vertical-align: middle; |
| 3297 | } |
| 3298 | .w3eden .navbar-form .checkbox label, |
| 3299 | .w3eden .navbar-form .radio label { |
| 3300 | padding-left: 0; |
| 3301 | } |
| 3302 | .w3eden .navbar-form .checkbox input[type=checkbox], |
| 3303 | .w3eden .navbar-form .radio input[type=radio] { |
| 3304 | position: relative; |
| 3305 | margin-left: 0; |
| 3306 | } |
| 3307 | .w3eden .navbar-form .has-feedback .form-control-feedback { |
| 3308 | top: 0; |
| 3309 | } |
| 3310 | } |
| 3311 | @media (max-width: 767px) { |
| 3312 | .w3eden .navbar-form .form-group { |
| 3313 | margin-bottom: 5px; |
| 3314 | } |
| 3315 | .w3eden .navbar-form .form-group:last-child { |
| 3316 | margin-bottom: 0; |
| 3317 | } |
| 3318 | } |
| 3319 | @media (min-width: 768px) { |
| 3320 | .w3eden .navbar-form { |
| 3321 | width: auto; |
| 3322 | padding-top: 0; |
| 3323 | padding-bottom: 0; |
| 3324 | margin-right: 0; |
| 3325 | margin-left: 0; |
| 3326 | border: 0; |
| 3327 | -webkit-box-shadow: none; |
| 3328 | box-shadow: none; |
| 3329 | } |
| 3330 | } |
| 3331 | .w3eden .navbar-nav > li > .dropdown-menu { |
| 3332 | margin-top: 0; |
| 3333 | border-top-left-radius: 0; |
| 3334 | border-top-right-radius: 0; |
| 3335 | } |
| 3336 | .w3eden .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu { |
| 3337 | margin-bottom: 0; |
| 3338 | border-radius: 4px 4px 0 0; |
| 3339 | } |
| 3340 | .w3eden .navbar-btn { |
| 3341 | margin-top: 8px; |
| 3342 | margin-bottom: 8px; |
| 3343 | } |
| 3344 | .w3eden .navbar-btn.btn-sm { |
| 3345 | margin-top: 10px; |
| 3346 | margin-bottom: 10px; |
| 3347 | } |
| 3348 | .w3eden .navbar-btn.btn-xs { |
| 3349 | margin-top: 14px; |
| 3350 | margin-bottom: 14px; |
| 3351 | } |
| 3352 | .w3eden .navbar-text { |
| 3353 | margin-top: 15px; |
| 3354 | margin-bottom: 15px; |
| 3355 | } |
| 3356 | @media (min-width: 768px) { |
| 3357 | .w3eden .navbar-text { |
| 3358 | float: left; |
| 3359 | margin-right: 15px; |
| 3360 | margin-left: 15px; |
| 3361 | } |
| 3362 | } |
| 3363 | @media (min-width: 768px) { |
| 3364 | .w3eden .navbar-left { |
| 3365 | float: left !important; |
| 3366 | } |
| 3367 | .w3eden .navbar-right { |
| 3368 | float: right!important; |
| 3369 | margin-right: -15px; |
| 3370 | } |
| 3371 | .w3eden .navbar-right ~ .navbar-right { |
| 3372 | margin-right: 0; |
| 3373 | } |
| 3374 | } |
| 3375 | .w3eden .navbar-default { |
| 3376 | background-color: #f8f8f8; |
| 3377 | border-color: #e7e7e7; |
| 3378 | } |
| 3379 | .w3eden .navbar-default .navbar-brand { |
| 3380 | color: #777777; |
| 3381 | } |
| 3382 | .w3eden .navbar-default .navbar-brand:focus, |
| 3383 | .w3eden .navbar-default .navbar-brand:hover { |
| 3384 | color: #5e5e5e; |
| 3385 | background-color: transparent; |
| 3386 | } |
| 3387 | .w3eden .navbar-default .navbar-text { |
| 3388 | color: #777777; |
| 3389 | } |
| 3390 | .w3eden .navbar-default .navbar-nav > li > a { |
| 3391 | color: #777777; |
| 3392 | } |
| 3393 | .w3eden .navbar-default .navbar-nav > li > a:focus, |
| 3394 | .w3eden .navbar-default .navbar-nav > li > a:hover { |
| 3395 | color: #333; |
| 3396 | background-color: transparent; |
| 3397 | } |
| 3398 | .w3eden .navbar-default .navbar-nav > .active > a, |
| 3399 | .w3eden .navbar-default .navbar-nav > .active > a:focus, |
| 3400 | .w3eden .navbar-default .navbar-nav > .active > a:hover { |
| 3401 | color: #555; |
| 3402 | background-color: #e7e7e7; |
| 3403 | } |
| 3404 | .w3eden .navbar-default .navbar-nav > .disabled > a, |
| 3405 | .w3eden .navbar-default .navbar-nav > .disabled > a:focus, |
| 3406 | .w3eden .navbar-default .navbar-nav > .disabled > a:hover { |
| 3407 | color: #ccc; |
| 3408 | background-color: transparent; |
| 3409 | } |
| 3410 | .w3eden .navbar-default .navbar-toggle { |
| 3411 | border-color: #dddddd; |
| 3412 | } |
| 3413 | .w3eden .navbar-default .navbar-toggle:focus, |
| 3414 | .w3eden .navbar-default .navbar-toggle:hover { |
| 3415 | background-color: #dddddd; |
| 3416 | } |
| 3417 | .w3eden .navbar-default .navbar-toggle .icon-bar { |
| 3418 | background-color: #888888; |
| 3419 | } |
| 3420 | .w3eden .navbar-default .navbar-collapse, |
| 3421 | .w3eden .navbar-default .navbar-form { |
| 3422 | border-color: #e7e7e7; |
| 3423 | } |
| 3424 | .w3eden .navbar-default .navbar-nav > .open > a, |
| 3425 | .w3eden .navbar-default .navbar-nav > .open > a:focus, |
| 3426 | .w3eden .navbar-default .navbar-nav > .open > a:hover { |
| 3427 | color: #555; |
| 3428 | background-color: #e7e7e7; |
| 3429 | } |
| 3430 | @media (max-width: 767px) { |
| 3431 | .w3eden .navbar-default .navbar-nav .open .dropdown-menu > li > a { |
| 3432 | color: #777777; |
| 3433 | } |
| 3434 | .w3eden .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus, |
| 3435 | .w3eden .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover { |
| 3436 | color: #333; |
| 3437 | background-color: transparent; |
| 3438 | } |
| 3439 | .w3eden .navbar-default .navbar-nav .open .dropdown-menu > .active > a, |
| 3440 | .w3eden .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus, |
| 3441 | .w3eden .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover { |
| 3442 | color: #555; |
| 3443 | background-color: #e7e7e7; |
| 3444 | } |
| 3445 | .w3eden .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, |
| 3446 | .w3eden .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus, |
| 3447 | .w3eden .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover { |
| 3448 | color: #ccc; |
| 3449 | background-color: transparent; |
| 3450 | } |
| 3451 | } |
| 3452 | .w3eden .navbar-default .navbar-link { |
| 3453 | color: #777777; |
| 3454 | } |
| 3455 | .w3eden .navbar-default .navbar-link:hover { |
| 3456 | color: #333333; |
| 3457 | } |
| 3458 | .w3eden .navbar-default .btn-link { |
| 3459 | color: #777777; |
| 3460 | } |
| 3461 | .w3eden .navbar-default .btn-link:focus, |
| 3462 | .w3eden .navbar-default .btn-link:hover { |
| 3463 | color: #333333; |
| 3464 | } |
| 3465 | .w3eden .navbar-default .btn-link[disabled]:focus, |
| 3466 | .w3eden .navbar-default .btn-link[disabled]:hover, |
| 3467 | .w3eden fieldset[disabled] .navbar-default .btn-link:focus, |
| 3468 | .w3eden fieldset[disabled] .navbar-default .btn-link:hover { |
| 3469 | color: #cccccc; |
| 3470 | } |
| 3471 | .w3eden .navbar-inverse { |
| 3472 | background-color: #222; |
| 3473 | border-color: #080808; |
| 3474 | } |
| 3475 | .w3eden .navbar-inverse .navbar-brand { |
| 3476 | color: #9d9d9d; |
| 3477 | } |
| 3478 | .w3eden .navbar-inverse .navbar-brand:focus, |
| 3479 | .w3eden .navbar-inverse .navbar-brand:hover { |
| 3480 | color: #fff; |
| 3481 | background-color: transparent; |
| 3482 | } |
| 3483 | .w3eden .navbar-inverse .navbar-text { |
| 3484 | color: #9d9d9d; |
| 3485 | } |
| 3486 | .w3eden .navbar-inverse .navbar-nav > li > a { |
| 3487 | color: #9d9d9d; |
| 3488 | } |
| 3489 | .w3eden .navbar-inverse .navbar-nav > li > a:focus, |
| 3490 | .w3eden .navbar-inverse .navbar-nav > li > a:hover { |
| 3491 | color: #fff; |
| 3492 | background-color: transparent; |
| 3493 | } |
| 3494 | .w3eden .navbar-inverse .navbar-nav > .active > a, |
| 3495 | .w3eden .navbar-inverse .navbar-nav > .active > a:focus, |
| 3496 | .w3eden .navbar-inverse .navbar-nav > .active > a:hover { |
| 3497 | color: #fff; |
| 3498 | background-color: #080808; |
| 3499 | } |
| 3500 | .w3eden .navbar-inverse .navbar-nav > .disabled > a, |
| 3501 | .w3eden .navbar-inverse .navbar-nav > .disabled > a:focus, |
| 3502 | .w3eden .navbar-inverse .navbar-nav > .disabled > a:hover { |
| 3503 | color: #444; |
| 3504 | background-color: transparent; |
| 3505 | } |
| 3506 | .w3eden .navbar-inverse .navbar-toggle { |
| 3507 | border-color: #333333; |
| 3508 | } |
| 3509 | .w3eden .navbar-inverse .navbar-toggle:focus, |
| 3510 | .w3eden .navbar-inverse .navbar-toggle:hover { |
| 3511 | background-color: #333333; |
| 3512 | } |
| 3513 | .w3eden .navbar-inverse .navbar-toggle .icon-bar { |
| 3514 | background-color: #ffffff; |
| 3515 | } |
| 3516 | .w3eden .navbar-inverse .navbar-collapse, |
| 3517 | .w3eden .navbar-inverse .navbar-form { |
| 3518 | border-color: #101010; |
| 3519 | } |
| 3520 | .w3eden .navbar-inverse .navbar-nav > .open > a, |
| 3521 | .w3eden .navbar-inverse .navbar-nav > .open > a:focus, |
| 3522 | .w3eden .navbar-inverse .navbar-nav > .open > a:hover { |
| 3523 | color: #fff; |
| 3524 | background-color: #080808; |
| 3525 | } |
| 3526 | @media (max-width: 767px) { |
| 3527 | .w3eden .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header { |
| 3528 | border-color: #080808; |
| 3529 | } |
| 3530 | .w3eden .navbar-inverse .navbar-nav .open .dropdown-menu .divider { |
| 3531 | background-color: #080808; |
| 3532 | } |
| 3533 | .w3eden .navbar-inverse .navbar-nav .open .dropdown-menu > li > a { |
| 3534 | color: #9d9d9d; |
| 3535 | } |
| 3536 | .w3eden .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus, |
| 3537 | .w3eden .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover { |
| 3538 | color: #fff; |
| 3539 | background-color: transparent; |
| 3540 | } |
| 3541 | .w3eden .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, |
| 3542 | .w3eden .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus, |
| 3543 | .w3eden .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover { |
| 3544 | color: #fff; |
| 3545 | background-color: #080808; |
| 3546 | } |
| 3547 | .w3eden .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, |
| 3548 | .w3eden .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus, |
| 3549 | .w3eden .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover { |
| 3550 | color: #444; |
| 3551 | background-color: transparent; |
| 3552 | } |
| 3553 | } |
| 3554 | .w3eden .navbar-inverse .navbar-link { |
| 3555 | color: #9d9d9d; |
| 3556 | } |
| 3557 | .w3eden .navbar-inverse .navbar-link:hover { |
| 3558 | color: #ffffff; |
| 3559 | } |
| 3560 | .w3eden .navbar-inverse .btn-link { |
| 3561 | color: #9d9d9d; |
| 3562 | } |
| 3563 | .w3eden .navbar-inverse .btn-link:focus, |
| 3564 | .w3eden .navbar-inverse .btn-link:hover { |
| 3565 | color: #ffffff; |
| 3566 | } |
| 3567 | .w3eden .navbar-inverse .btn-link[disabled]:focus, |
| 3568 | .w3eden .navbar-inverse .btn-link[disabled]:hover, |
| 3569 | .w3eden fieldset[disabled] .navbar-inverse .btn-link:focus, |
| 3570 | .w3eden fieldset[disabled] .navbar-inverse .btn-link:hover { |
| 3571 | color: #444444; |
| 3572 | } |
| 3573 | .w3eden .breadcrumb { |
| 3574 | padding: 8px 15px; |
| 3575 | margin-bottom: 20px; |
| 3576 | list-style: none; |
| 3577 | background-color: #f5f5f5; |
| 3578 | border-radius: 4px; |
| 3579 | } |
| 3580 | .w3eden .breadcrumb > li { |
| 3581 | display: inline-block; |
| 3582 | } |
| 3583 | .w3eden .breadcrumb > li + li:before { |
| 3584 | padding: 0 5px; |
| 3585 | color: #ccc; |
| 3586 | content: "/\00a0"; |
| 3587 | } |
| 3588 | .w3eden .breadcrumb > .active { |
| 3589 | color: #777777; |
| 3590 | } |
| 3591 | .w3eden .pagination { |
| 3592 | display: inline-block; |
| 3593 | padding-left: 0; |
| 3594 | margin: 20px 0; |
| 3595 | border-radius: 4px; |
| 3596 | } |
| 3597 | .w3eden .pagination > li { |
| 3598 | display: inline; |
| 3599 | } |
| 3600 | .w3eden .pagination > li > a, |
| 3601 | .w3eden .pagination > li > span { |
| 3602 | position: relative; |
| 3603 | float: left; |
| 3604 | padding: 6px 12px; |
| 3605 | margin-left: -1px; |
| 3606 | line-height: 1.42857143; |
| 3607 | color: var(--color-primary); |
| 3608 | text-decoration: none; |
| 3609 | background-color: #fff; |
| 3610 | border: 1px solid #dddddd; |
| 3611 | } |
| 3612 | .w3eden .pagination > li:first-child > a, |
| 3613 | .w3eden .pagination > li:first-child > span { |
| 3614 | margin-left: 0; |
| 3615 | border-top-left-radius: 4px; |
| 3616 | border-bottom-left-radius: 4px; |
| 3617 | } |
| 3618 | .w3eden .pagination > li:last-child > a, |
| 3619 | .w3eden .pagination > li:last-child > span { |
| 3620 | border-top-right-radius: 4px; |
| 3621 | border-bottom-right-radius: 4px; |
| 3622 | } |
| 3623 | .w3eden .pagination > li > a:focus, |
| 3624 | .w3eden .pagination > li > a:hover, |
| 3625 | .w3eden .pagination > li > span:focus, |
| 3626 | .w3eden .pagination > li > span:hover { |
| 3627 | color: #23527c; |
| 3628 | background-color: #eee; |
| 3629 | border-color: #dddddd; |
| 3630 | } |
| 3631 | .w3eden .pagination > .active > a, |
| 3632 | .w3eden .pagination > .active > a:focus, |
| 3633 | .w3eden .pagination > .active > a:hover, |
| 3634 | .w3eden .pagination > .active > span, |
| 3635 | .w3eden .pagination > .active > span:focus, |
| 3636 | .w3eden .pagination > .active > span:hover { |
| 3637 | z-index: 2; |
| 3638 | color: #fff; |
| 3639 | cursor: default; |
| 3640 | background-color: var(--color-primary); |
| 3641 | border-color: var(--color-primary); |
| 3642 | } |
| 3643 | .w3eden .pagination > .disabled > a, |
| 3644 | .w3eden .pagination > .disabled > a:focus, |
| 3645 | .w3eden .pagination > .disabled > a:hover, |
| 3646 | .w3eden .pagination > .disabled > span, |
| 3647 | .w3eden .pagination > .disabled > span:focus, |
| 3648 | .w3eden .pagination > .disabled > span:hover { |
| 3649 | color: #777; |
| 3650 | cursor: not-allowed; |
| 3651 | background-color: #fff; |
| 3652 | border-color: #dddddd; |
| 3653 | } |
| 3654 | .w3eden .pagination-lg > li > a, |
| 3655 | .w3eden .pagination-lg > li > span { |
| 3656 | padding: 10px 16px; |
| 3657 | font-size: 18px; |
| 3658 | } |
| 3659 | .w3eden .pagination-lg > li:first-child > a, |
| 3660 | .w3eden .pagination-lg > li:first-child > span { |
| 3661 | border-top-left-radius: 6px; |
| 3662 | border-bottom-left-radius: 6px; |
| 3663 | } |
| 3664 | .w3eden .pagination-lg > li:last-child > a, |
| 3665 | .w3eden .pagination-lg > li:last-child > span { |
| 3666 | border-top-right-radius: 6px; |
| 3667 | border-bottom-right-radius: 6px; |
| 3668 | } |
| 3669 | .w3eden .pagination-sm > li > a, |
| 3670 | .w3eden .pagination-sm > li > span { |
| 3671 | padding: 5px 10px; |
| 3672 | font-size: 12px; |
| 3673 | } |
| 3674 | .w3eden .pagination-sm > li:first-child > a, |
| 3675 | .w3eden .pagination-sm > li:first-child > span { |
| 3676 | border-top-left-radius: 3px; |
| 3677 | border-bottom-left-radius: 3px; |
| 3678 | } |
| 3679 | .w3eden .pagination-sm > li:last-child > a, |
| 3680 | .w3eden .pagination-sm > li:last-child > span { |
| 3681 | border-top-right-radius: 3px; |
| 3682 | border-bottom-right-radius: 3px; |
| 3683 | } |
| 3684 | .w3eden .pager { |
| 3685 | padding-left: 0; |
| 3686 | margin: 20px 0; |
| 3687 | text-align: center; |
| 3688 | list-style: none; |
| 3689 | } |
| 3690 | .w3eden .pager li { |
| 3691 | display: inline; |
| 3692 | } |
| 3693 | .w3eden .pager li > a, |
| 3694 | .w3eden .pager li > span { |
| 3695 | display: inline-block; |
| 3696 | padding: 5px 14px; |
| 3697 | background-color: #fff; |
| 3698 | border: 1px solid #ddd; |
| 3699 | border-radius: 15px; |
| 3700 | } |
| 3701 | .w3eden .pager li > a:focus, |
| 3702 | .w3eden .pager li > a:hover { |
| 3703 | text-decoration: none; |
| 3704 | background-color: #eeeeee; |
| 3705 | } |
| 3706 | .w3eden .pager .next > a, |
| 3707 | .w3eden .pager .next > span { |
| 3708 | float: right; |
| 3709 | } |
| 3710 | .w3eden .pager .previous > a, |
| 3711 | .w3eden .pager .previous > span { |
| 3712 | float: left; |
| 3713 | } |
| 3714 | .w3eden .pager .disabled > a, |
| 3715 | .w3eden .pager .disabled > a:focus, |
| 3716 | .w3eden .pager .disabled > a:hover, |
| 3717 | .w3eden .pager .disabled > span { |
| 3718 | color: #777; |
| 3719 | cursor: not-allowed; |
| 3720 | background-color: #ffffff; |
| 3721 | } |
| 3722 | .w3eden .label { |
| 3723 | display: inline; |
| 3724 | padding: .2em .6em .3em; |
| 3725 | font-size: 75%; |
| 3726 | font-weight: 700; |
| 3727 | line-height: 1; |
| 3728 | color: #fff; |
| 3729 | text-align: center; |
| 3730 | white-space: nowrap; |
| 3731 | vertical-align: baseline; |
| 3732 | border-radius: 0.25em; |
| 3733 | } |
| 3734 | .w3eden a.label:focus, |
| 3735 | .w3eden a.label:hover { |
| 3736 | color: #fff; |
| 3737 | text-decoration: none; |
| 3738 | cursor: pointer; |
| 3739 | } |
| 3740 | .w3eden .label:empty { |
| 3741 | display: none; |
| 3742 | } |
| 3743 | .w3eden .btn .label { |
| 3744 | position: relative; |
| 3745 | top: -1px; |
| 3746 | } |
| 3747 | .w3eden .label-default { |
| 3748 | background-color: #777777; |
| 3749 | } |
| 3750 | .w3eden .label-default[href]:focus, |
| 3751 | .w3eden .label-default[href]:hover { |
| 3752 | background-color: #5e5e5e; |
| 3753 | } |
| 3754 | .w3eden .label-primary { |
| 3755 | background-color: var(--color-primary); |
| 3756 | } |
| 3757 | .w3eden .label-primary[href]:focus, |
| 3758 | .w3eden .label-primary[href]:hover { |
| 3759 | background-color: var(--color-primary-hover); |
| 3760 | } |
| 3761 | .w3eden .label-success { |
| 3762 | background-color: var(--color-success); |
| 3763 | } |
| 3764 | .w3eden .label-success[href]:focus, |
| 3765 | .w3eden .label-success[href]:hover { |
| 3766 | background-color: var(--color-success-hover); |
| 3767 | } |
| 3768 | .w3eden .label-info { |
| 3769 | background-color: var(--color-info); |
| 3770 | } |
| 3771 | .w3eden .label-info[href]:focus, |
| 3772 | .w3eden .label-info[href]:hover { |
| 3773 | background-color: var(--color-info-hover); |
| 3774 | } |
| 3775 | .w3eden .label-warning { |
| 3776 | background-color: var(--color-warning-active); |
| 3777 | } |
| 3778 | .w3eden .label-warning[href]:focus, |
| 3779 | .w3eden .label-warning[href]:hover { |
| 3780 | background-color: #ec971f; |
| 3781 | } |
| 3782 | .w3eden .label-danger { |
| 3783 | background-color: var(--color-danger); |
| 3784 | } |
| 3785 | .w3eden .label-danger[href]:focus, |
| 3786 | .w3eden .label-danger[href]:hover { |
| 3787 | background-color: var(--color-danger-active); |
| 3788 | } |
| 3789 | .w3eden .badge { |
| 3790 | display: inline-block; |
| 3791 | min-width: 10px; |
| 3792 | padding: 3px 7px; |
| 3793 | font-size: 12px; |
| 3794 | font-weight: 700; |
| 3795 | line-height: 1; |
| 3796 | color: #fff; |
| 3797 | text-align: center; |
| 3798 | white-space: nowrap; |
| 3799 | vertical-align: baseline; |
| 3800 | background-color: #777; |
| 3801 | border-radius: 10px; |
| 3802 | } |
| 3803 | .w3eden .badge:empty { |
| 3804 | display: none; |
| 3805 | } |
| 3806 | .w3eden .btn .badge { |
| 3807 | position: relative; |
| 3808 | top: -1px; |
| 3809 | } |
| 3810 | .w3eden .btn-group-xs > .btn .badge, |
| 3811 | .w3eden .btn-xs .badge { |
| 3812 | top: 0; |
| 3813 | padding: 1px 5px; |
| 3814 | } |
| 3815 | .w3eden a.badge:focus, |
| 3816 | .w3eden a.badge:hover { |
| 3817 | color: #fff; |
| 3818 | text-decoration: none; |
| 3819 | cursor: pointer; |
| 3820 | } |
| 3821 | .w3eden .list-group-item.active > .badge, |
| 3822 | .w3eden .nav-pills > .active > a > .badge { |
| 3823 | color: var(--color-primary); |
| 3824 | background-color: #ffffff; |
| 3825 | } |
| 3826 | .w3eden .list-group-item > .badge { |
| 3827 | float: right; |
| 3828 | } |
| 3829 | .w3eden .list-group-item > .badge + .badge { |
| 3830 | margin-right: 5px; |
| 3831 | } |
| 3832 | .w3eden .nav-pills > li > a > .badge { |
| 3833 | margin-left: 3px; |
| 3834 | } |
| 3835 | .w3eden .jumbotron { |
| 3836 | padding: 30px 15px; |
| 3837 | margin-bottom: 30px; |
| 3838 | color: inherit; |
| 3839 | background-color: #eeeeee; |
| 3840 | } |
| 3841 | .w3eden .jumbotron .h1, |
| 3842 | .w3eden .jumbotron h1 { |
| 3843 | color: inherit; |
| 3844 | } |
| 3845 | .w3eden .jumbotron p { |
| 3846 | margin-bottom: 15px; |
| 3847 | font-size: 21px; |
| 3848 | font-weight: 200; |
| 3849 | } |
| 3850 | .w3eden .jumbotron > hr { |
| 3851 | border-top-color: #d5d5d5; |
| 3852 | } |
| 3853 | .w3eden .container .jumbotron, |
| 3854 | .w3eden .container-fluid .jumbotron { |
| 3855 | border-radius: 6px; |
| 3856 | } |
| 3857 | .w3eden .jumbotron .container { |
| 3858 | max-width: 100%; |
| 3859 | } |
| 3860 | @media screen and (min-width: 768px) { |
| 3861 | .w3eden .jumbotron { |
| 3862 | padding: 48px 0; |
| 3863 | } |
| 3864 | .w3eden .container .jumbotron, |
| 3865 | .w3eden .container-fluid .jumbotron { |
| 3866 | padding-right: 60px; |
| 3867 | padding-left: 60px; |
| 3868 | } |
| 3869 | .w3eden .jumbotron .h1, |
| 3870 | .w3eden .jumbotron h1 { |
| 3871 | font-size: 63px; |
| 3872 | } |
| 3873 | } |
| 3874 | .w3eden .thumbnail { |
| 3875 | display: block; |
| 3876 | padding: 4px; |
| 3877 | margin-bottom: 20px; |
| 3878 | line-height: 1.42857143; |
| 3879 | background-color: #fff; |
| 3880 | border: 1px solid #ddd; |
| 3881 | border-radius: 4px; |
| 3882 | -webkit-transition: border 0.2s ease-in-out; |
| 3883 | -o-transition: border 0.2s ease-in-out; |
| 3884 | transition: border 0.2s ease-in-out; |
| 3885 | } |
| 3886 | .w3eden .thumbnail a > img, |
| 3887 | .w3eden .thumbnail > img { |
| 3888 | margin-right: auto; |
| 3889 | margin-left: auto; |
| 3890 | } |
| 3891 | .w3eden a.thumbnail.active, |
| 3892 | .w3eden a.thumbnail:focus, |
| 3893 | .w3eden a.thumbnail:hover { |
| 3894 | border-color: var(--color-primary); |
| 3895 | } |
| 3896 | .w3eden .thumbnail .caption { |
| 3897 | padding: 9px; |
| 3898 | color: #333333; |
| 3899 | } |
| 3900 | .w3eden .alert { |
| 3901 | padding: 15px; |
| 3902 | margin-bottom: 20px; |
| 3903 | border: 1px solid transparent; |
| 3904 | border-radius: 4px; |
| 3905 | } |
| 3906 | .w3eden .alert h4 { |
| 3907 | margin-top: 0; |
| 3908 | color: inherit; |
| 3909 | } |
| 3910 | .w3eden .alert .alert-link { |
| 3911 | font-weight: 700; |
| 3912 | } |
| 3913 | .w3eden .alert > p, |
| 3914 | .w3eden .alert > ul { |
| 3915 | margin-bottom: 0; |
| 3916 | } |
| 3917 | .w3eden .alert > p + p { |
| 3918 | margin-top: 5px; |
| 3919 | } |
| 3920 | .w3eden .alert-dismissable, |
| 3921 | .w3eden .alert-dismissible { |
| 3922 | padding-right: 35px; |
| 3923 | } |
| 3924 | .w3eden .alert-dismissable .close, |
| 3925 | .w3eden .alert-dismissible .close { |
| 3926 | position: relative; |
| 3927 | top: -2px; |
| 3928 | right: -21px; |
| 3929 | color: inherit; |
| 3930 | } |
| 3931 | .w3eden .alert-success { |
| 3932 | color: #3c763d; |
| 3933 | background-color: #dff0d8; |
| 3934 | border-color: var(--color-success); |
| 3935 | } |
| 3936 | .w3eden .alert-success hr { |
| 3937 | border-top-color: #c9e2b3; |
| 3938 | } |
| 3939 | .w3eden .alert-success .alert-link { |
| 3940 | color: #2b542c; |
| 3941 | } |
| 3942 | .w3eden .alert-info { |
| 3943 | color: #31708f; |
| 3944 | background-color: #d9edf7; |
| 3945 | border-color: #bce8f1; |
| 3946 | } |
| 3947 | .w3eden .alert-info hr { |
| 3948 | border-top-color: #a6e1ec; |
| 3949 | } |
| 3950 | .w3eden .alert-info .alert-link { |
| 3951 | color: #245269; |
| 3952 | } |
| 3953 | .w3eden .alert-warning { |
| 3954 | color: #8a6d3b; |
| 3955 | background-color: #fcf8e3; |
| 3956 | border-color: #faebcc; |
| 3957 | } |
| 3958 | .w3eden .alert-warning hr { |
| 3959 | border-top-color: #f7e1b5; |
| 3960 | } |
| 3961 | .w3eden .alert-warning .alert-link { |
| 3962 | color: #66512c; |
| 3963 | } |
| 3964 | .w3eden .alert-danger { |
| 3965 | color: #a94442; |
| 3966 | background-color: #f2dede; |
| 3967 | border-color: #ebccd1; |
| 3968 | } |
| 3969 | .w3eden .alert-danger hr { |
| 3970 | border-top-color: #e4b9c0; |
| 3971 | } |
| 3972 | .w3eden .alert-danger .alert-link { |
| 3973 | color: #843534; |
| 3974 | } |
| 3975 | @-webkit-keyframes progress-bar-stripes { |
| 3976 | from { |
| 3977 | background-position: 40px 0; |
| 3978 | } |
| 3979 | to { |
| 3980 | background-position: 0 0; |
| 3981 | } |
| 3982 | } |
| 3983 | @-o-keyframes progress-bar-stripes { |
| 3984 | from { |
| 3985 | background-position: 40px 0; |
| 3986 | } |
| 3987 | to { |
| 3988 | background-position: 0 0; |
| 3989 | } |
| 3990 | } |
| 3991 | @keyframes progress-bar-stripes { |
| 3992 | from { |
| 3993 | background-position: 40px 0; |
| 3994 | } |
| 3995 | to { |
| 3996 | background-position: 0 0; |
| 3997 | } |
| 3998 | } |
| 3999 | .w3eden .progress { |
| 4000 | height: 20px; |
| 4001 | margin-bottom: 20px; |
| 4002 | overflow: hidden; |
| 4003 | background-color: #f5f5f5; |
| 4004 | border-radius: 4px; |
| 4005 | -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); |
| 4006 | box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); |
| 4007 | } |
| 4008 | .w3eden .progress-bar { |
| 4009 | float: left; |
| 4010 | width: 0; |
| 4011 | height: 100%; |
| 4012 | font-size: 12px; |
| 4013 | line-height: 20px; |
| 4014 | color: #fff; |
| 4015 | text-align: center; |
| 4016 | background-color: var(--color-primary); |
| 4017 | -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); |
| 4018 | box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); |
| 4019 | -webkit-transition: width .6s ease; |
| 4020 | -o-transition: width .6s ease; |
| 4021 | transition: width 0.6s ease; |
| 4022 | } |
| 4023 | .w3eden .progress-bar-striped, |
| 4024 | .w3eden .progress-striped .progress-bar { |
| 4025 | background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); |
| 4026 | background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); |
| 4027 | background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); |
| 4028 | -webkit-background-size: 40px 40px; |
| 4029 | background-size: 40px 40px; |
| 4030 | } |
| 4031 | .w3eden .progress-bar.active, |
| 4032 | .w3eden .progress.active .progress-bar { |
| 4033 | -webkit-animation: progress-bar-stripes 2s linear infinite; |
| 4034 | -o-animation: progress-bar-stripes 2s linear infinite; |
| 4035 | animation: progress-bar-stripes 2s linear infinite; |
| 4036 | } |
| 4037 | .w3eden .progress-bar-success { |
| 4038 | background-color: var(--color-success); |
| 4039 | } |
| 4040 | .w3eden .progress-striped .progress-bar-success { |
| 4041 | background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); |
| 4042 | background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); |
| 4043 | background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); |
| 4044 | } |
| 4045 | .w3eden .progress-bar-info { |
| 4046 | background-color: var(--color-info); |
| 4047 | } |
| 4048 | .w3eden .progress-striped .progress-bar-info { |
| 4049 | background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); |
| 4050 | background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); |
| 4051 | background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); |
| 4052 | } |
| 4053 | .w3eden .progress-bar-warning { |
| 4054 | background-color: var(--color-warning-active); |
| 4055 | } |
| 4056 | .w3eden .progress-striped .progress-bar-warning { |
| 4057 | background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); |
| 4058 | background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); |
| 4059 | background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); |
| 4060 | } |
| 4061 | .w3eden .progress-bar-danger { |
| 4062 | background-color: var(--color-danger); |
| 4063 | } |
| 4064 | .w3eden .progress-striped .progress-bar-danger { |
| 4065 | background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); |
| 4066 | background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); |
| 4067 | background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); |
| 4068 | } |
| 4069 | .w3eden .media { |
| 4070 | margin-top: 15px; |
| 4071 | } |
| 4072 | .w3eden .media:first-child { |
| 4073 | margin-top: 0; |
| 4074 | } |
| 4075 | .w3eden .media, |
| 4076 | .w3eden .media-body { |
| 4077 | overflow: hidden; |
| 4078 | zoom: 1; |
| 4079 | } |
| 4080 | .w3eden .media-body { |
| 4081 | width: 10000px; |
| 4082 | } |
| 4083 | .w3eden .media-object { |
| 4084 | display: block; |
| 4085 | } |
| 4086 | .w3eden .media-right, |
| 4087 | .w3eden .media > .pull-right { |
| 4088 | padding-left: 10px; |
| 4089 | } |
| 4090 | .w3eden .media-left, |
| 4091 | .w3eden .media > .pull-left { |
| 4092 | padding-right: 10px; |
| 4093 | } |
| 4094 | .w3eden .media-body, |
| 4095 | .w3eden .media-left, |
| 4096 | .w3eden .media-right { |
| 4097 | display: table-cell; |
| 4098 | vertical-align: top; |
| 4099 | } |
| 4100 | .w3eden .media-middle { |
| 4101 | vertical-align: middle; |
| 4102 | } |
| 4103 | .w3eden .media-bottom { |
| 4104 | vertical-align: bottom; |
| 4105 | } |
| 4106 | .w3eden .media-heading { |
| 4107 | margin-top: 0; |
| 4108 | margin-bottom: 5px; |
| 4109 | } |
| 4110 | .w3eden .media-list { |
| 4111 | padding-left: 0; |
| 4112 | list-style: none; |
| 4113 | } |
| 4114 | .w3eden .list-group { |
| 4115 | padding-left: 0; |
| 4116 | margin-bottom: 20px; |
| 4117 | } |
| 4118 | .w3eden .list-group-item { |
| 4119 | position: relative; |
| 4120 | display: block; |
| 4121 | padding: 10px 15px; |
| 4122 | margin-bottom: -1px; |
| 4123 | background-color: #fff; |
| 4124 | border: 1px solid #dddddd; |
| 4125 | } |
| 4126 | .w3eden .list-group-item:first-child { |
| 4127 | border-top-left-radius: 4px; |
| 4128 | border-top-right-radius: 4px; |
| 4129 | } |
| 4130 | .w3eden .list-group-item:last-child { |
| 4131 | margin-bottom: 0; |
| 4132 | border-bottom-right-radius: 4px; |
| 4133 | border-bottom-left-radius: 4px; |
| 4134 | } |
| 4135 | .w3eden a.list-group-item { |
| 4136 | color: #555555; |
| 4137 | } |
| 4138 | .w3eden a.list-group-item .list-group-item-heading { |
| 4139 | color: #333333; |
| 4140 | } |
| 4141 | .w3eden a.list-group-item:focus, |
| 4142 | .w3eden a.list-group-item:hover { |
| 4143 | color: #555; |
| 4144 | text-decoration: none; |
| 4145 | background-color: #f5f5f5; |
| 4146 | } |
| 4147 | .w3eden .list-group-item.disabled, |
| 4148 | .w3eden .list-group-item.disabled:focus, |
| 4149 | .w3eden .list-group-item.disabled:hover { |
| 4150 | color: #777; |
| 4151 | cursor: not-allowed; |
| 4152 | background-color: #eeeeee; |
| 4153 | } |
| 4154 | .w3eden .list-group-item.disabled .list-group-item-heading, |
| 4155 | .w3eden .list-group-item.disabled:focus .list-group-item-heading, |
| 4156 | .w3eden .list-group-item.disabled:hover .list-group-item-heading { |
| 4157 | color: inherit; |
| 4158 | } |
| 4159 | .w3eden .list-group-item.disabled .list-group-item-text, |
| 4160 | .w3eden .list-group-item.disabled:focus .list-group-item-text, |
| 4161 | .w3eden .list-group-item.disabled:hover .list-group-item-text { |
| 4162 | color: #777777; |
| 4163 | } |
| 4164 | .w3eden .list-group-item.active, |
| 4165 | .w3eden .list-group-item.active:focus, |
| 4166 | .w3eden .list-group-item.active:hover { |
| 4167 | z-index: 2; |
| 4168 | color: #fff; |
| 4169 | background-color: var(--color-primary); |
| 4170 | border-color: var(--color-primary); |
| 4171 | } |
| 4172 | .w3eden .list-group-item.active .list-group-item-heading, |
| 4173 | .w3eden .list-group-item.active .list-group-item-heading > .small, |
| 4174 | .w3eden .list-group-item.active .list-group-item-heading > small, |
| 4175 | .w3eden .list-group-item.active:focus .list-group-item-heading, |
| 4176 | .w3eden .list-group-item.active:focus .list-group-item-heading > .small, |
| 4177 | .w3eden .list-group-item.active:focus .list-group-item-heading > small, |
| 4178 | .w3eden .list-group-item.active:hover .list-group-item-heading, |
| 4179 | .w3eden .list-group-item.active:hover .list-group-item-heading > .small, |
| 4180 | .w3eden .list-group-item.active:hover .list-group-item-heading > small { |
| 4181 | color: inherit; |
| 4182 | } |
| 4183 | .w3eden .list-group-item.active .list-group-item-text, |
| 4184 | .w3eden .list-group-item.active:focus .list-group-item-text, |
| 4185 | .w3eden .list-group-item.active:hover .list-group-item-text { |
| 4186 | color: #c7ddef; |
| 4187 | } |
| 4188 | .w3eden .list-group-item-success { |
| 4189 | color: #3c763d; |
| 4190 | background-color: #dff0d8; |
| 4191 | } |
| 4192 | .w3eden a.list-group-item-success { |
| 4193 | color: #3c763d; |
| 4194 | } |
| 4195 | .w3eden a.list-group-item-success .list-group-item-heading { |
| 4196 | color: inherit; |
| 4197 | } |
| 4198 | .w3eden a.list-group-item-success:focus, |
| 4199 | .w3eden a.list-group-item-success:hover { |
| 4200 | color: #3c763d; |
| 4201 | background-color: #d0e9c6; |
| 4202 | } |
| 4203 | .w3eden a.list-group-item-success.active, |
| 4204 | .w3eden a.list-group-item-success.active:focus, |
| 4205 | .w3eden a.list-group-item-success.active:hover { |
| 4206 | color: #fff; |
| 4207 | background-color: #3c763d; |
| 4208 | border-color: #3c763d; |
| 4209 | } |
| 4210 | .w3eden .list-group-item-info { |
| 4211 | color: #31708f; |
| 4212 | background-color: #d9edf7; |
| 4213 | } |
| 4214 | .w3eden a.list-group-item-info { |
| 4215 | color: #31708f; |
| 4216 | } |
| 4217 | .w3eden a.list-group-item-info .list-group-item-heading { |
| 4218 | color: inherit; |
| 4219 | } |
| 4220 | .w3eden a.list-group-item-info:focus, |
| 4221 | .w3eden a.list-group-item-info:hover { |
| 4222 | color: #31708f; |
| 4223 | background-color: #c4e3f3; |
| 4224 | } |
| 4225 | .w3eden a.list-group-item-info.active, |
| 4226 | .w3eden a.list-group-item-info.active:focus, |
| 4227 | .w3eden a.list-group-item-info.active:hover { |
| 4228 | color: #fff; |
| 4229 | background-color: #31708f; |
| 4230 | border-color: #31708f; |
| 4231 | } |
| 4232 | .w3eden .list-group-item-warning { |
| 4233 | color: #8a6d3b; |
| 4234 | background-color: #fcf8e3; |
| 4235 | } |
| 4236 | .w3eden a.list-group-item-warning { |
| 4237 | color: #8a6d3b; |
| 4238 | } |
| 4239 | .w3eden a.list-group-item-warning .list-group-item-heading { |
| 4240 | color: inherit; |
| 4241 | } |
| 4242 | .w3eden a.list-group-item-warning:focus, |
| 4243 | .w3eden a.list-group-item-warning:hover { |
| 4244 | color: #8a6d3b; |
| 4245 | background-color: #faf2cc; |
| 4246 | } |
| 4247 | .w3eden a.list-group-item-warning.active, |
| 4248 | .w3eden a.list-group-item-warning.active:focus, |
| 4249 | .w3eden a.list-group-item-warning.active:hover { |
| 4250 | color: #fff; |
| 4251 | background-color: #8a6d3b; |
| 4252 | border-color: #8a6d3b; |
| 4253 | } |
| 4254 | .w3eden .list-group-item-danger { |
| 4255 | color: #a94442; |
| 4256 | background-color: #f2dede; |
| 4257 | } |
| 4258 | .w3eden a.list-group-item-danger { |
| 4259 | color: #a94442; |
| 4260 | } |
| 4261 | .w3eden a.list-group-item-danger .list-group-item-heading { |
| 4262 | color: inherit; |
| 4263 | } |
| 4264 | .w3eden a.list-group-item-danger:focus, |
| 4265 | .w3eden a.list-group-item-danger:hover { |
| 4266 | color: #a94442; |
| 4267 | background-color: #ebcccc; |
| 4268 | } |
| 4269 | .w3eden a.list-group-item-danger.active, |
| 4270 | .w3eden a.list-group-item-danger.active:focus, |
| 4271 | .w3eden a.list-group-item-danger.active:hover { |
| 4272 | color: #fff; |
| 4273 | background-color: #a94442; |
| 4274 | border-color: #a94442; |
| 4275 | } |
| 4276 | .w3eden .list-group-item-heading { |
| 4277 | margin-top: 0; |
| 4278 | margin-bottom: 5px; |
| 4279 | } |
| 4280 | .w3eden .list-group-item-text { |
| 4281 | margin-bottom: 0; |
| 4282 | line-height: 1.3; |
| 4283 | } |
| 4284 | .w3eden .panel { |
| 4285 | margin-bottom: 20px; |
| 4286 | background-color: #fff; |
| 4287 | border: 1px solid transparent; |
| 4288 | border-radius: 8px; |
| 4289 | -webkit-box-shadow: 0 0 6px rgba(94, 141, 255, 0.1); |
| 4290 | box-shadow: 0 0 6px rgba(94, 141, 255, 0.1); |
| 4291 | overflow: hidden; |
| 4292 | } |
| 4293 | .w3eden .panel-body { |
| 4294 | padding: 15px; |
| 4295 | } |
| 4296 | .w3eden .panel-heading { |
| 4297 | padding: 12px 15px; |
| 4298 | border-bottom: 1px solid transparent; |
| 4299 | border-radius: 8px 8px 0 0; |
| 4300 | } |
| 4301 | .w3eden .panel-heading > .dropdown .dropdown-toggle { |
| 4302 | color: inherit; |
| 4303 | } |
| 4304 | .w3eden .panel-title { |
| 4305 | margin-top: 0; |
| 4306 | margin-bottom: 0; |
| 4307 | font-size: 16px; |
| 4308 | color: inherit; |
| 4309 | } |
| 4310 | .w3eden .panel-title > .small, |
| 4311 | .w3eden .panel-title > .small > a, |
| 4312 | .w3eden .panel-title > a, |
| 4313 | .w3eden .panel-title > small, |
| 4314 | .w3eden .panel-title > small > a { |
| 4315 | color: inherit; |
| 4316 | } |
| 4317 | .w3eden .panel-footer { |
| 4318 | padding: 10px 15px; |
| 4319 | background-color: rgba(248, 250, 253, 0.76); |
| 4320 | border-top: 1px solid var(--border-color); |
| 4321 | border-bottom-right-radius: 3px; |
| 4322 | border-bottom-left-radius: 3px; |
| 4323 | } |
| 4324 | .w3eden .panel > .list-group, |
| 4325 | .w3eden .panel > .panel-collapse > .list-group { |
| 4326 | margin-bottom: 0; |
| 4327 | } |
| 4328 | .w3eden .panel > .list-group .list-group-item, |
| 4329 | .w3eden .panel > .panel-collapse > .list-group .list-group-item { |
| 4330 | border-width: 1px 0; |
| 4331 | border-radius: 0; |
| 4332 | } |
| 4333 | .w3eden .panel > .list-group:first-child .list-group-item:first-child, |
| 4334 | .w3eden .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child { |
| 4335 | border-top: 0; |
| 4336 | border-top-left-radius: 3px; |
| 4337 | border-top-right-radius: 3px; |
| 4338 | } |
| 4339 | .w3eden .panel > .list-group:last-child .list-group-item:last-child, |
| 4340 | .w3eden .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child { |
| 4341 | border-bottom: 0; |
| 4342 | border-bottom-right-radius: 3px; |
| 4343 | border-bottom-left-radius: 3px; |
| 4344 | } |
| 4345 | .w3eden .panel-heading + .list-group .list-group-item:first-child { |
| 4346 | border-top-width: 0; |
| 4347 | } |
| 4348 | .w3eden .list-group + .panel-footer { |
| 4349 | border-top-width: 0; |
| 4350 | } |
| 4351 | .w3eden .panel > .panel-collapse > .table, |
| 4352 | .w3eden .panel > .table, |
| 4353 | .w3eden .panel > .table-responsive > .table { |
| 4354 | margin-bottom: 0; |
| 4355 | } |
| 4356 | .w3eden .panel > .panel-collapse > .table caption, |
| 4357 | .w3eden .panel > .table caption, |
| 4358 | .w3eden .panel > .table-responsive > .table caption { |
| 4359 | padding-right: 15px; |
| 4360 | padding-left: 15px; |
| 4361 | } |
| 4362 | .w3eden .panel > .table-responsive:first-child > .table:first-child, |
| 4363 | .w3eden .panel > .table:first-child { |
| 4364 | border-top-left-radius: 3px; |
| 4365 | border-top-right-radius: 3px; |
| 4366 | } |
| 4367 | .w3eden .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child, |
| 4368 | .w3eden .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child, |
| 4369 | .w3eden .panel > .table:first-child > tbody:first-child > tr:first-child, |
| 4370 | .w3eden .panel > .table:first-child > thead:first-child > tr:first-child { |
| 4371 | border-top-left-radius: 3px; |
| 4372 | border-top-right-radius: 3px; |
| 4373 | } |
| 4374 | .w3eden .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, |
| 4375 | .w3eden .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child, |
| 4376 | .w3eden .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, |
| 4377 | .w3eden .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, |
| 4378 | .w3eden .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child, |
| 4379 | .w3eden .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child, |
| 4380 | .w3eden .panel > .table:first-child > thead:first-child > tr:first-child td:first-child, |
| 4381 | .w3eden .panel > .table:first-child > thead:first-child > tr:first-child th:first-child { |
| 4382 | border-top-left-radius: 3px; |
| 4383 | } |
| 4384 | .w3eden .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, |
| 4385 | .w3eden .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child, |
| 4386 | .w3eden .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, |
| 4387 | .w3eden .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, |
| 4388 | .w3eden .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child, |
| 4389 | .w3eden .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child, |
| 4390 | .w3eden .panel > .table:first-child > thead:first-child > tr:first-child td:last-child, |
| 4391 | .w3eden .panel > .table:first-child > thead:first-child > tr:first-child th:last-child { |
| 4392 | border-top-right-radius: 3px; |
| 4393 | } |
| 4394 | .w3eden .panel > .table-responsive:last-child > .table:last-child, |
| 4395 | .w3eden .panel > .table:last-child { |
| 4396 | border-bottom-right-radius: 3px; |
| 4397 | border-bottom-left-radius: 3px; |
| 4398 | } |
| 4399 | .w3eden .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child, |
| 4400 | .w3eden .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child, |
| 4401 | .w3eden .panel > .table:last-child > tbody:last-child > tr:last-child, |
| 4402 | .w3eden .panel > .table:last-child > tfoot:last-child > tr:last-child { |
| 4403 | border-bottom-right-radius: 3px; |
| 4404 | border-bottom-left-radius: 3px; |
| 4405 | } |
| 4406 | .w3eden .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, |
| 4407 | .w3eden .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, |
| 4408 | .w3eden .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, |
| 4409 | .w3eden .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child, |
| 4410 | .w3eden .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child, |
| 4411 | .w3eden .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child, |
| 4412 | .w3eden .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child, |
| 4413 | .w3eden .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child { |
| 4414 | border-bottom-left-radius: 3px; |
| 4415 | } |
| 4416 | .w3eden .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, |
| 4417 | .w3eden .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, |
| 4418 | .w3eden .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, |
| 4419 | .w3eden .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child, |
| 4420 | .w3eden .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child, |
| 4421 | .w3eden .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child, |
| 4422 | .w3eden .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child, |
| 4423 | .w3eden .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child { |
| 4424 | border-bottom-right-radius: 3px; |
| 4425 | } |
| 4426 | .w3eden .panel > .panel-body + .table, |
| 4427 | .w3eden .panel > .panel-body + .table-responsive, |
| 4428 | .w3eden .panel > .table + .panel-body, |
| 4429 | .w3eden .panel > .table-responsive + .panel-body { |
| 4430 | border-top: 1px solid #dddddd; |
| 4431 | } |
| 4432 | .w3eden .panel > .table > tbody:first-child > tr:first-child td, |
| 4433 | .w3eden .panel > .table > tbody:first-child > tr:first-child th { |
| 4434 | border-top: 0; |
| 4435 | } |
| 4436 | .w3eden .panel > .table-bordered, |
| 4437 | .w3eden .panel > .table-responsive > .table-bordered { |
| 4438 | border: 0; |
| 4439 | } |
| 4440 | .w3eden .panel > .table-bordered > tbody > tr > td:first-child, |
| 4441 | .w3eden .panel > .table-bordered > tbody > tr > th:first-child, |
| 4442 | .w3eden .panel > .table-bordered > tfoot > tr > td:first-child, |
| 4443 | .w3eden .panel > .table-bordered > tfoot > tr > th:first-child, |
| 4444 | .w3eden .panel > .table-bordered > thead > tr > td:first-child, |
| 4445 | .w3eden .panel > .table-bordered > thead > tr > th:first-child, |
| 4446 | .w3eden .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child, |
| 4447 | .w3eden .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child, |
| 4448 | .w3eden .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child, |
| 4449 | .w3eden .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child, |
| 4450 | .w3eden .panel > .table-responsive > .table-bordered > thead > tr > td:first-child, |
| 4451 | .w3eden .panel > .table-responsive > .table-bordered > thead > tr > th:first-child { |
| 4452 | border-left: 0; |
| 4453 | } |
| 4454 | .w3eden .panel > .table-bordered > tbody > tr > td:last-child, |
| 4455 | .w3eden .panel > .table-bordered > tbody > tr > th:last-child, |
| 4456 | .w3eden .panel > .table-bordered > tfoot > tr > td:last-child, |
| 4457 | .w3eden .panel > .table-bordered > tfoot > tr > th:last-child, |
| 4458 | .w3eden .panel > .table-bordered > thead > tr > td:last-child, |
| 4459 | .w3eden .panel > .table-bordered > thead > tr > th:last-child, |
| 4460 | .w3eden .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child, |
| 4461 | .w3eden .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child, |
| 4462 | .w3eden .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child, |
| 4463 | .w3eden .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child, |
| 4464 | .w3eden .panel > .table-responsive > .table-bordered > thead > tr > td:last-child, |
| 4465 | .w3eden .panel > .table-responsive > .table-bordered > thead > tr > th:last-child { |
| 4466 | border-right: 0; |
| 4467 | } |
| 4468 | .w3eden .panel > .table-bordered > tbody > tr:first-child > td, |
| 4469 | .w3eden .panel > .table-bordered > tbody > tr:first-child > th, |
| 4470 | .w3eden .panel > .table-bordered > thead > tr:first-child > td, |
| 4471 | .w3eden .panel > .table-bordered > thead > tr:first-child > th, |
| 4472 | .w3eden .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td, |
| 4473 | .w3eden .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th, |
| 4474 | .w3eden .panel > .table-responsive > .table-bordered > thead > tr:first-child > td, |
| 4475 | .w3eden .panel > .table-responsive > .table-bordered > thead > tr:first-child > th { |
| 4476 | border-bottom: 0; |
| 4477 | } |
| 4478 | .w3eden .panel > .table-bordered > tbody > tr:last-child > td, |
| 4479 | .w3eden .panel > .table-bordered > tbody > tr:last-child > th, |
| 4480 | .w3eden .panel > .table-bordered > tfoot > tr:last-child > td, |
| 4481 | .w3eden .panel > .table-bordered > tfoot > tr:last-child > th, |
| 4482 | .w3eden .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td, |
| 4483 | .w3eden .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th, |
| 4484 | .w3eden .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td, |
| 4485 | .w3eden .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th { |
| 4486 | border-bottom: 0; |
| 4487 | } |
| 4488 | .w3eden .panel > .table-responsive { |
| 4489 | margin-bottom: 0; |
| 4490 | border: 0; |
| 4491 | } |
| 4492 | .w3eden .panel-group { |
| 4493 | margin-bottom: 20px; |
| 4494 | } |
| 4495 | .w3eden .panel-group .panel { |
| 4496 | margin-bottom: 0; |
| 4497 | border-radius: 4px; |
| 4498 | } |
| 4499 | .w3eden .panel-group .panel + .panel { |
| 4500 | margin-top: 5px; |
| 4501 | } |
| 4502 | .w3eden .panel-group .panel-heading { |
| 4503 | border-bottom: 0; |
| 4504 | } |
| 4505 | .w3eden .panel-group .panel-heading + .panel-collapse > .list-group, |
| 4506 | .w3eden .panel-group .panel-heading + .panel-collapse > .panel-body { |
| 4507 | border-top: 1px solid #dddddd; |
| 4508 | } |
| 4509 | .w3eden .panel-group .panel-footer { |
| 4510 | border-top: 0; |
| 4511 | } |
| 4512 | .w3eden .panel-group .panel-footer + .panel-collapse .panel-body { |
| 4513 | border-bottom: 1px solid #dddddd; |
| 4514 | } |
| 4515 | .w3eden .panel-default { |
| 4516 | border-color: #dde6ee; |
| 4517 | } |
| 4518 | .w3eden .panel-default > .panel-heading { |
| 4519 | color: #333; |
| 4520 | background-color: #ffffff; |
| 4521 | border-color: #dde6ee; |
| 4522 | } |
| 4523 | .w3eden .panel-default > .panel-heading + .panel-collapse > .panel-body { |
| 4524 | border-top-color: #dddddd; |
| 4525 | } |
| 4526 | .w3eden .panel-default > .panel-heading .badge { |
| 4527 | color: #f5f5f5; |
| 4528 | background-color: #333333; |
| 4529 | } |
| 4530 | .w3eden .panel-default > .panel-footer + .panel-collapse > .panel-body { |
| 4531 | border-bottom-color: #dddddd; |
| 4532 | } |
| 4533 | .w3eden .panel-primary { |
| 4534 | border-color: var(--color-primary); |
| 4535 | } |
| 4536 | .w3eden .panel-primary > .panel-heading { |
| 4537 | color: #fff; |
| 4538 | background-color: var(--color-primary); |
| 4539 | border-color: var(--color-primary); |
| 4540 | } |
| 4541 | .w3eden .panel-primary > .panel-heading + .panel-collapse > .panel-body { |
| 4542 | border-top-color: var(--color-primary); |
| 4543 | } |
| 4544 | .w3eden .panel-primary > .panel-heading .badge { |
| 4545 | color: var(--color-primary); |
| 4546 | background-color: #ffffff; |
| 4547 | } |
| 4548 | .w3eden .panel-primary > .panel-footer + .panel-collapse > .panel-body { |
| 4549 | border-bottom-color: var(--color-primary); |
| 4550 | } |
| 4551 | .w3eden .panel-success { |
| 4552 | border-color: var(--color-success); |
| 4553 | } |
| 4554 | .w3eden .panel-success > .panel-heading { |
| 4555 | color: #3c763d; |
| 4556 | background-color: #dff0d8; |
| 4557 | border-color: var(--color-success); |
| 4558 | } |
| 4559 | .w3eden .panel-success > .panel-heading + .panel-collapse > .panel-body { |
| 4560 | border-top-color: var(--color-success); |
| 4561 | } |
| 4562 | .w3eden .panel-success > .panel-heading .badge { |
| 4563 | color: #dff0d8; |
| 4564 | background-color: #3c763d; |
| 4565 | } |
| 4566 | .w3eden .panel-success > .panel-footer + .panel-collapse > .panel-body { |
| 4567 | border-bottom-color: var(--color-success); |
| 4568 | } |
| 4569 | .w3eden .panel-info { |
| 4570 | border-color: #bce8f1; |
| 4571 | } |
| 4572 | .w3eden .panel-info > .panel-heading { |
| 4573 | color: #31708f; |
| 4574 | background-color: #d9edf7; |
| 4575 | border-color: #bce8f1; |
| 4576 | } |
| 4577 | .w3eden .panel-info > .panel-heading + .panel-collapse > .panel-body { |
| 4578 | border-top-color: #bce8f1; |
| 4579 | } |
| 4580 | .w3eden .panel-info > .panel-heading .badge { |
| 4581 | color: #d9edf7; |
| 4582 | background-color: #31708f; |
| 4583 | } |
| 4584 | .w3eden .panel-info > .panel-footer + .panel-collapse > .panel-body { |
| 4585 | border-bottom-color: #bce8f1; |
| 4586 | } |
| 4587 | .w3eden .panel-warning { |
| 4588 | border-color: #faebcc; |
| 4589 | } |
| 4590 | .w3eden .panel-warning > .panel-heading { |
| 4591 | color: #8a6d3b; |
| 4592 | background-color: #fcf8e3; |
| 4593 | border-color: #faebcc; |
| 4594 | } |
| 4595 | .w3eden .panel-warning > .panel-heading + .panel-collapse > .panel-body { |
| 4596 | border-top-color: #faebcc; |
| 4597 | } |
| 4598 | .w3eden .panel-warning > .panel-heading .badge { |
| 4599 | color: #fcf8e3; |
| 4600 | background-color: #8a6d3b; |
| 4601 | } |
| 4602 | .w3eden .panel-warning > .panel-footer + .panel-collapse > .panel-body { |
| 4603 | border-bottom-color: #faebcc; |
| 4604 | } |
| 4605 | .w3eden .panel-danger { |
| 4606 | border-color: #ebccd1; |
| 4607 | } |
| 4608 | .w3eden .panel-danger > .panel-heading { |
| 4609 | color: #a94442; |
| 4610 | background-color: #f2dede; |
| 4611 | border-color: #ebccd1; |
| 4612 | } |
| 4613 | .w3eden .panel-danger > .panel-heading + .panel-collapse > .panel-body { |
| 4614 | border-top-color: #ebccd1; |
| 4615 | } |
| 4616 | .w3eden .panel-danger > .panel-heading .badge { |
| 4617 | color: #f2dede; |
| 4618 | background-color: #a94442; |
| 4619 | } |
| 4620 | .w3eden .panel-danger > .panel-footer + .panel-collapse > .panel-body { |
| 4621 | border-bottom-color: #ebccd1; |
| 4622 | } |
| 4623 | .w3eden .embed-responsive { |
| 4624 | position: relative; |
| 4625 | display: block; |
| 4626 | height: 0; |
| 4627 | padding: 0; |
| 4628 | overflow: hidden; |
| 4629 | } |
| 4630 | .w3eden .embed-responsive .embed-responsive-item, |
| 4631 | .w3eden .embed-responsive embed, |
| 4632 | .w3eden .embed-responsive iframe, |
| 4633 | .w3eden .embed-responsive object, |
| 4634 | .w3eden .embed-responsive video { |
| 4635 | position: absolute; |
| 4636 | top: 0; |
| 4637 | bottom: 0; |
| 4638 | left: 0; |
| 4639 | width: 100%; |
| 4640 | height: 100%; |
| 4641 | border: 0; |
| 4642 | } |
| 4643 | .w3eden .embed-responsive-16by9 { |
| 4644 | padding-bottom: 56.25%; |
| 4645 | } |
| 4646 | .w3eden .embed-responsive-4by3 { |
| 4647 | padding-bottom: 75%; |
| 4648 | } |
| 4649 | .w3eden .well { |
| 4650 | min-height: 20px; |
| 4651 | padding: 19px; |
| 4652 | margin-bottom: 20px; |
| 4653 | background-color: rgba(0, 0, 0, 0.01); |
| 4654 | border: 1px solid var(--border-color); |
| 4655 | border-radius: 4px; |
| 4656 | } |
| 4657 | .w3eden .well blockquote { |
| 4658 | border-color: #ddd; |
| 4659 | border-color: rgba(0, 0, 0, 0.15); |
| 4660 | } |
| 4661 | .w3eden .well-lg { |
| 4662 | padding: 24px; |
| 4663 | border-radius: 6px; |
| 4664 | } |
| 4665 | .w3eden .well-sm { |
| 4666 | padding: 9px; |
| 4667 | border-radius: 3px; |
| 4668 | } |
| 4669 | .w3eden .close { |
| 4670 | float: right; |
| 4671 | font-size: 21px; |
| 4672 | font-weight: 700; |
| 4673 | line-height: 1; |
| 4674 | color: #000; |
| 4675 | text-shadow: 0 1px 0 #fff; |
| 4676 | filter: alpha(opacity=20); |
| 4677 | opacity: 0.2; |
| 4678 | } |
| 4679 | .w3eden .close:focus, |
| 4680 | .w3eden .close:hover { |
| 4681 | color: #000; |
| 4682 | text-decoration: none; |
| 4683 | cursor: pointer; |
| 4684 | filter: alpha(opacity=50); |
| 4685 | opacity: 0.5; |
| 4686 | } |
| 4687 | .w3eden button.close { |
| 4688 | -webkit-appearance: none; |
| 4689 | padding: 0; |
| 4690 | cursor: pointer; |
| 4691 | background: 0 0; |
| 4692 | border: 0; |
| 4693 | } |
| 4694 | .w3eden .modal-backdrop.wpdm-mbd.show { |
| 4695 | position: fixed; |
| 4696 | opacity: 0.7 !important; |
| 4697 | z-index: 99999 !important; |
| 4698 | left: 0; |
| 4699 | top: 0; |
| 4700 | } |
| 4701 | .w3eden .modal-open { |
| 4702 | overflow: hidden; |
| 4703 | } |
| 4704 | .w3eden .modal { |
| 4705 | position: fixed; |
| 4706 | top: 0; |
| 4707 | right: 0; |
| 4708 | bottom: 0; |
| 4709 | left: 0; |
| 4710 | z-index: 999999 !important; |
| 4711 | display: none; |
| 4712 | overflow: hidden; |
| 4713 | -webkit-overflow-scrolling: touch; |
| 4714 | outline: 0; |
| 4715 | } |
| 4716 | /* Modern Modal Dialog Styles */ |
| 4717 | .w3eden .modal.fade .modal-dialog { |
| 4718 | opacity: 0; |
| 4719 | transform: scale(0.95) translateY(-20px); |
| 4720 | transition: opacity 0.25s ease, transform 0.25s ease; |
| 4721 | } |
| 4722 | .w3eden .modal.in .modal-dialog { |
| 4723 | opacity: 1; |
| 4724 | transform: scale(1) translateY(0); |
| 4725 | } |
| 4726 | .w3eden .modal-open .modal { |
| 4727 | overflow-x: hidden; |
| 4728 | overflow-y: auto; |
| 4729 | } |
| 4730 | .w3eden .modal-dialog { |
| 4731 | position: relative; |
| 4732 | width: auto; |
| 4733 | margin: 20px; |
| 4734 | pointer-events: none; |
| 4735 | } |
| 4736 | .w3eden .modal-content { |
| 4737 | position: relative; |
| 4738 | display: flex; |
| 4739 | flex-direction: column; |
| 4740 | pointer-events: auto; |
| 4741 | background-color: #ffffff; |
| 4742 | background-clip: padding-box; |
| 4743 | border: none; |
| 4744 | border-radius: 12px; |
| 4745 | outline: 0; |
| 4746 | box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.05); |
| 4747 | } |
| 4748 | |
| 4749 | /* Modal Backdrop - Modern blur effect */ |
| 4750 | .modal-backdrop { |
| 4751 | position: fixed; |
| 4752 | top: 0; |
| 4753 | right: 0; |
| 4754 | bottom: 0; |
| 4755 | left: 0; |
| 4756 | z-index: 1040; |
| 4757 | background-color: rgba(15, 23, 42, 0.6); |
| 4758 | backdrop-filter: blur(4px); |
| 4759 | -webkit-backdrop-filter: blur(4px); |
| 4760 | } |
| 4761 | .modal-backdrop.fade { |
| 4762 | opacity: 0; |
| 4763 | transition: opacity 0.2s ease; |
| 4764 | } |
| 4765 | .modal-backdrop.in { |
| 4766 | opacity: 1; |
| 4767 | } |
| 4768 | |
| 4769 | /* Modal Header - Modern design */ |
| 4770 | .w3eden .modal-header { |
| 4771 | display: flex; |
| 4772 | align-items: center; |
| 4773 | justify-content: space-between; |
| 4774 | padding: 18px 24px; |
| 4775 | background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%); |
| 4776 | border-bottom: 1px solid #e2e8f0; |
| 4777 | border-radius: 12px 12px 0 0; |
| 4778 | } |
| 4779 | .w3eden .modal-header .close { |
| 4780 | display: flex; |
| 4781 | align-items: center; |
| 4782 | justify-content: center; |
| 4783 | width: 32px; |
| 4784 | height: 32px; |
| 4785 | padding: 0; |
| 4786 | margin: 0; |
| 4787 | font-size: 24px; |
| 4788 | font-weight: 300; |
| 4789 | color: #64748b; |
| 4790 | background: transparent; |
| 4791 | border: none; |
| 4792 | border-radius: 8px; |
| 4793 | cursor: pointer; |
| 4794 | transition: all 0.15s ease; |
| 4795 | opacity: 1; |
| 4796 | } |
| 4797 | .w3eden .modal-header .close:hover { |
| 4798 | color: #1e293b; |
| 4799 | background: rgba(0, 0, 0, 0.06); |
| 4800 | } |
| 4801 | .w3eden .modal-header .close:focus { |
| 4802 | outline: none; |
| 4803 | box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2); |
| 4804 | } |
| 4805 | .w3eden .modal-title { |
| 4806 | margin: 0; |
| 4807 | font-size: 16px; |
| 4808 | font-weight: 600; |
| 4809 | color: #1e293b; |
| 4810 | line-height: 1.5; |
| 4811 | } |
| 4812 | |
| 4813 | /* Modal Body */ |
| 4814 | .w3eden .modal-body { |
| 4815 | position: relative; |
| 4816 | flex: 1 1 auto; |
| 4817 | padding: 24px; |
| 4818 | color: #475569; |
| 4819 | line-height: 1.6; |
| 4820 | } |
| 4821 | |
| 4822 | /* Modal Footer - Modern design */ |
| 4823 | .w3eden .modal-footer { |
| 4824 | display: flex; |
| 4825 | align-items: center; |
| 4826 | justify-content: flex-end; |
| 4827 | gap: 12px; |
| 4828 | padding: 16px 24px; |
| 4829 | background: #f8fafc; |
| 4830 | border-top: 1px solid #e2e8f0; |
| 4831 | border-radius: 0 0 12px 12px; |
| 4832 | } |
| 4833 | .w3eden .modal-footer .btn + .btn { |
| 4834 | margin-bottom: 0; |
| 4835 | margin-left: 0; |
| 4836 | } |
| 4837 | .w3eden .modal-footer .btn-group .btn + .btn { |
| 4838 | margin-left: -1px; |
| 4839 | } |
| 4840 | .w3eden .modal-footer .btn-block + .btn-block { |
| 4841 | margin-left: 0; |
| 4842 | } |
| 4843 | |
| 4844 | /* Modal with icon in header */ |
| 4845 | .w3eden .modal-header-icon { |
| 4846 | display: flex; |
| 4847 | align-items: center; |
| 4848 | gap: 12px; |
| 4849 | } |
| 4850 | .w3eden .modal-header-icon .icon { |
| 4851 | display: flex; |
| 4852 | align-items: center; |
| 4853 | justify-content: center; |
| 4854 | width: 40px; |
| 4855 | height: 40px; |
| 4856 | background: linear-gradient(135deg, var(--color-info, #6366f1) 0%, var(--color-info-hover, #4f46e5) 100%); |
| 4857 | border-radius: 10px; |
| 4858 | color: #ffffff; |
| 4859 | } |
| 4860 | |
| 4861 | .w3eden .modal-scrollbar-measure { |
| 4862 | position: absolute; |
| 4863 | top: -9999px; |
| 4864 | width: 50px; |
| 4865 | height: 50px; |
| 4866 | overflow: scroll; |
| 4867 | } |
| 4868 | |
| 4869 | /* Responsive Modal Sizes */ |
| 4870 | @media (min-width: 768px) { |
| 4871 | .w3eden .modal-dialog { |
| 4872 | width: 540px; |
| 4873 | margin: 60px auto; |
| 4874 | } |
| 4875 | .w3eden .modal-content { |
| 4876 | box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.05); |
| 4877 | } |
| 4878 | .w3eden .modal-sm { |
| 4879 | width: 340px; |
| 4880 | } |
| 4881 | } |
| 4882 | @media (min-width: 992px) { |
| 4883 | .w3eden .modal-lg { |
| 4884 | width: 800px; |
| 4885 | } |
| 4886 | .w3eden .modal-xl { |
| 4887 | width: 1000px; |
| 4888 | } |
| 4889 | } |
| 4890 | |
| 4891 | /* Modal variants */ |
| 4892 | .w3eden .modal-content.modal-danger .modal-header { |
| 4893 | background: linear-gradient(180deg, #fef2f2 0%, #fee2e2 100%); |
| 4894 | border-bottom-color: #fecaca; |
| 4895 | } |
| 4896 | .w3eden .modal-content.modal-danger .modal-title { |
| 4897 | color: var(--color-danger, #dc2626); |
| 4898 | } |
| 4899 | |
| 4900 | .w3eden .modal-content.modal-success .modal-header { |
| 4901 | background: linear-gradient(180deg, #f0fdf4 0%, #dcfce7 100%); |
| 4902 | border-bottom-color: #bbf7d0; |
| 4903 | } |
| 4904 | .w3eden .modal-content.modal-success .modal-title { |
| 4905 | color: var(--color-success, #16a34a); |
| 4906 | } |
| 4907 | |
| 4908 | .w3eden .modal-content.modal-warning .modal-header { |
| 4909 | background: linear-gradient(180deg, #fffbeb 0%, #fef3c7 100%); |
| 4910 | border-bottom-color: #fde68a; |
| 4911 | } |
| 4912 | .w3eden .modal-content.modal-warning .modal-title { |
| 4913 | color: #b45309; |
| 4914 | } |
| 4915 | |
| 4916 | /* Centered modal */ |
| 4917 | .w3eden .modal-dialog-centered { |
| 4918 | display: flex; |
| 4919 | align-items: center; |
| 4920 | min-height: calc(100% - 60px); |
| 4921 | } |
| 4922 | |
| 4923 | /* Scrollable modal body */ |
| 4924 | .w3eden .modal-dialog-scrollable .modal-content { |
| 4925 | max-height: calc(100vh - 120px); |
| 4926 | overflow: hidden; |
| 4927 | } |
| 4928 | .w3eden .modal-dialog-scrollable .modal-body { |
| 4929 | overflow-y: auto; |
| 4930 | } |
| 4931 | .w3eden .tooltip { |
| 4932 | position: absolute; |
| 4933 | z-index: 1070; |
| 4934 | display: block; |
| 4935 | font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; |
| 4936 | font-size: 12px; |
| 4937 | font-weight: 400; |
| 4938 | line-height: 1.4; |
| 4939 | filter: alpha(opacity=0); |
| 4940 | opacity: 0; |
| 4941 | } |
| 4942 | .w3eden .tooltip.in { |
| 4943 | filter: alpha(opacity=90); |
| 4944 | opacity: 0.9; |
| 4945 | } |
| 4946 | .w3eden .tooltip.top { |
| 4947 | padding: 5px 0; |
| 4948 | margin-top: -3px; |
| 4949 | } |
| 4950 | .w3eden .tooltip.right { |
| 4951 | padding: 0 5px; |
| 4952 | margin-left: 3px; |
| 4953 | } |
| 4954 | .w3eden .tooltip.bottom { |
| 4955 | padding: 5px 0; |
| 4956 | margin-top: 3px; |
| 4957 | } |
| 4958 | .w3eden .tooltip.left { |
| 4959 | padding: 0 5px; |
| 4960 | margin-left: -3px; |
| 4961 | } |
| 4962 | .w3eden .tooltip-inner { |
| 4963 | max-width: 200px; |
| 4964 | padding: 6px 12px; |
| 4965 | color: #fff; |
| 4966 | text-align: center; |
| 4967 | text-decoration: none; |
| 4968 | background-color: #000; |
| 4969 | border-radius: 2px; |
| 4970 | } |
| 4971 | .w3eden .tooltip-arrow { |
| 4972 | position: absolute; |
| 4973 | width: 0; |
| 4974 | height: 0; |
| 4975 | border-color: transparent; |
| 4976 | border-style: solid; |
| 4977 | } |
| 4978 | .w3eden .tooltip.top .tooltip-arrow { |
| 4979 | bottom: 0; |
| 4980 | left: 50%; |
| 4981 | margin-left: -5px; |
| 4982 | border-width: 5px 5px 0; |
| 4983 | border-top-color: #000000; |
| 4984 | } |
| 4985 | .w3eden .tooltip.top-left .tooltip-arrow { |
| 4986 | right: 5px; |
| 4987 | bottom: 0; |
| 4988 | margin-bottom: -5px; |
| 4989 | border-width: 5px 5px 0; |
| 4990 | border-top-color: #000000; |
| 4991 | } |
| 4992 | .w3eden .tooltip.top-right .tooltip-arrow { |
| 4993 | bottom: 0; |
| 4994 | left: 5px; |
| 4995 | margin-bottom: -5px; |
| 4996 | border-width: 5px 5px 0; |
| 4997 | border-top-color: #000000; |
| 4998 | } |
| 4999 | .w3eden .tooltip.right .tooltip-arrow { |
| 5000 | top: 50%; |
| 5001 | left: 0; |
| 5002 | margin-top: -5px; |
| 5003 | border-width: 5px 5px 5px 0; |
| 5004 | border-right-color: #000000; |
| 5005 | } |
| 5006 | .w3eden .tooltip.left .tooltip-arrow { |
| 5007 | top: 50%; |
| 5008 | right: 0; |
| 5009 | margin-top: -5px; |
| 5010 | border-width: 5px 0 5px 5px; |
| 5011 | border-left-color: #000000; |
| 5012 | } |
| 5013 | .w3eden .tooltip.bottom .tooltip-arrow { |
| 5014 | top: 0; |
| 5015 | left: 50%; |
| 5016 | margin-left: -5px; |
| 5017 | border-width: 0 5px 5px; |
| 5018 | border-bottom-color: #000000; |
| 5019 | } |
| 5020 | .w3eden .tooltip.bottom-left .tooltip-arrow { |
| 5021 | top: 0; |
| 5022 | right: 5px; |
| 5023 | margin-top: -5px; |
| 5024 | border-width: 0 5px 5px; |
| 5025 | border-bottom-color: #000000; |
| 5026 | } |
| 5027 | .w3eden .tooltip.bottom-right .tooltip-arrow { |
| 5028 | top: 0; |
| 5029 | left: 5px; |
| 5030 | margin-top: -5px; |
| 5031 | border-width: 0 5px 5px; |
| 5032 | border-bottom-color: #000000; |
| 5033 | } |
| 5034 | .w3eden .popover { |
| 5035 | position: absolute; |
| 5036 | top: 0; |
| 5037 | left: 0; |
| 5038 | z-index: 1060; |
| 5039 | display: none; |
| 5040 | max-width: 276px; |
| 5041 | padding: 1px; |
| 5042 | font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; |
| 5043 | font-size: 14px; |
| 5044 | font-weight: 400; |
| 5045 | line-height: 1.42857143; |
| 5046 | text-align: left; |
| 5047 | white-space: normal; |
| 5048 | background-color: #fff; |
| 5049 | -webkit-background-clip: padding-box; |
| 5050 | background-clip: padding-box; |
| 5051 | border: 1px solid #ccc; |
| 5052 | border: 1px solid rgba(0, 0, 0, 0.2); |
| 5053 | border-radius: 6px; |
| 5054 | -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); |
| 5055 | box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); |
| 5056 | } |
| 5057 | .w3eden .popover.top { |
| 5058 | margin-top: -10px; |
| 5059 | } |
| 5060 | .w3eden .popover.right { |
| 5061 | margin-left: 10px; |
| 5062 | } |
| 5063 | .w3eden .popover.bottom { |
| 5064 | margin-top: 10px; |
| 5065 | } |
| 5066 | .w3eden .popover.left { |
| 5067 | margin-left: -10px; |
| 5068 | } |
| 5069 | .w3eden .popover-title { |
| 5070 | padding: 8px 14px; |
| 5071 | margin: 0; |
| 5072 | font-size: 14px; |
| 5073 | background-color: #f7f7f7; |
| 5074 | border-bottom: 1px solid #ebebeb; |
| 5075 | border-radius: 5px 5px 0 0; |
| 5076 | } |
| 5077 | .w3eden .popover-content { |
| 5078 | padding: 9px 14px; |
| 5079 | } |
| 5080 | .w3eden .popover > .arrow, |
| 5081 | .w3eden .popover > .arrow:after { |
| 5082 | position: absolute; |
| 5083 | display: block; |
| 5084 | width: 0; |
| 5085 | height: 0; |
| 5086 | border-color: transparent; |
| 5087 | border-style: solid; |
| 5088 | } |
| 5089 | .w3eden .popover > .arrow { |
| 5090 | border-width: 11px; |
| 5091 | } |
| 5092 | .w3eden .popover > .arrow:after { |
| 5093 | content: ""; |
| 5094 | border-width: 10px; |
| 5095 | } |
| 5096 | .w3eden .popover.top > .arrow { |
| 5097 | bottom: -11px; |
| 5098 | left: 50%; |
| 5099 | margin-left: -11px; |
| 5100 | border-top-color: #999; |
| 5101 | border-top-color: rgba(0, 0, 0, 0.25); |
| 5102 | border-bottom-width: 0; |
| 5103 | } |
| 5104 | .w3eden .popover.top > .arrow:after { |
| 5105 | bottom: 1px; |
| 5106 | margin-left: -10px; |
| 5107 | content: " "; |
| 5108 | border-top-color: #fff; |
| 5109 | border-bottom-width: 0; |
| 5110 | } |
| 5111 | .w3eden .popover.right > .arrow { |
| 5112 | top: 50%; |
| 5113 | left: -11px; |
| 5114 | margin-top: -11px; |
| 5115 | border-right-color: #999; |
| 5116 | border-right-color: rgba(0, 0, 0, 0.25); |
| 5117 | border-left-width: 0; |
| 5118 | } |
| 5119 | .w3eden .popover.right > .arrow:after { |
| 5120 | bottom: -10px; |
| 5121 | left: 1px; |
| 5122 | content: " "; |
| 5123 | border-right-color: #fff; |
| 5124 | border-left-width: 0; |
| 5125 | } |
| 5126 | .w3eden .popover.bottom > .arrow { |
| 5127 | top: -11px; |
| 5128 | left: 50%; |
| 5129 | margin-left: -11px; |
| 5130 | border-top-width: 0; |
| 5131 | border-bottom-color: #999; |
| 5132 | border-bottom-color: rgba(0, 0, 0, 0.25); |
| 5133 | } |
| 5134 | .w3eden .popover.bottom > .arrow:after { |
| 5135 | top: 1px; |
| 5136 | margin-left: -10px; |
| 5137 | content: " "; |
| 5138 | border-top-width: 0; |
| 5139 | border-bottom-color: #ffffff; |
| 5140 | } |
| 5141 | .w3eden .popover.left > .arrow { |
| 5142 | top: 50%; |
| 5143 | right: -11px; |
| 5144 | margin-top: -11px; |
| 5145 | border-right-width: 0; |
| 5146 | border-left-color: #999; |
| 5147 | border-left-color: rgba(0, 0, 0, 0.25); |
| 5148 | } |
| 5149 | .w3eden .popover.left > .arrow:after { |
| 5150 | right: 1px; |
| 5151 | bottom: -10px; |
| 5152 | content: " "; |
| 5153 | border-right-width: 0; |
| 5154 | border-left-color: #ffffff; |
| 5155 | } |
| 5156 | .w3eden .carousel { |
| 5157 | position: relative; |
| 5158 | } |
| 5159 | .w3eden .carousel-inner { |
| 5160 | position: relative; |
| 5161 | width: 100%; |
| 5162 | overflow: hidden; |
| 5163 | } |
| 5164 | .w3eden .carousel-inner > .item { |
| 5165 | position: relative; |
| 5166 | display: none; |
| 5167 | -webkit-transition: 0.6s ease-in-out left; |
| 5168 | -o-transition: 0.6s ease-in-out left; |
| 5169 | transition: 0.6s ease-in-out left; |
| 5170 | } |
| 5171 | .w3eden .carousel-inner > .item > a > img, |
| 5172 | .w3eden .carousel-inner > .item > img { |
| 5173 | line-height: 1; |
| 5174 | } |
| 5175 | @media all and (transform-3d), (-webkit-transform-3d) { |
| 5176 | .w3eden .carousel-inner > .item { |
| 5177 | -webkit-transition: -webkit-transform 0.6s ease-in-out; |
| 5178 | -o-transition: -o-transform 0.6s ease-in-out; |
| 5179 | transition: transform 0.6s ease-in-out; |
| 5180 | -webkit-backface-visibility: hidden; |
| 5181 | backface-visibility: hidden; |
| 5182 | -webkit-perspective: 1000; |
| 5183 | perspective: 1000; |
| 5184 | } |
| 5185 | .w3eden .carousel-inner > .item.active.right, |
| 5186 | .w3eden .carousel-inner > .item.next { |
| 5187 | left: 0; |
| 5188 | -webkit-transform: translate3d(100%, 0, 0); |
| 5189 | transform: translate3d(100%, 0, 0); |
| 5190 | } |
| 5191 | .w3eden .carousel-inner > .item.active.left, |
| 5192 | .w3eden .carousel-inner > .item.prev { |
| 5193 | left: 0; |
| 5194 | -webkit-transform: translate3d(-100%, 0, 0); |
| 5195 | transform: translate3d(-100%, 0, 0); |
| 5196 | } |
| 5197 | .w3eden .carousel-inner > .item.active, |
| 5198 | .w3eden .carousel-inner > .item.next.left, |
| 5199 | .w3eden .carousel-inner > .item.prev.right { |
| 5200 | left: 0; |
| 5201 | -webkit-transform: translate3d(0, 0, 0); |
| 5202 | transform: translate3d(0, 0, 0); |
| 5203 | } |
| 5204 | } |
| 5205 | .w3eden .carousel-inner > .active, |
| 5206 | .w3eden .carousel-inner > .next, |
| 5207 | .w3eden .carousel-inner > .prev { |
| 5208 | display: block; |
| 5209 | } |
| 5210 | .w3eden .carousel-inner > .active { |
| 5211 | left: 0; |
| 5212 | } |
| 5213 | .w3eden .carousel-inner > .next, |
| 5214 | .w3eden .carousel-inner > .prev { |
| 5215 | position: absolute; |
| 5216 | top: 0; |
| 5217 | width: 100%; |
| 5218 | } |
| 5219 | .w3eden .carousel-inner > .next { |
| 5220 | left: 100%; |
| 5221 | } |
| 5222 | .w3eden .carousel-inner > .prev { |
| 5223 | left: -100%; |
| 5224 | } |
| 5225 | .w3eden .carousel-inner > .next.left, |
| 5226 | .w3eden .carousel-inner > .prev.right { |
| 5227 | left: 0; |
| 5228 | } |
| 5229 | .w3eden .carousel-inner > .active.left { |
| 5230 | left: -100%; |
| 5231 | } |
| 5232 | .w3eden .carousel-inner > .active.right { |
| 5233 | left: 100%; |
| 5234 | } |
| 5235 | .w3eden .carousel-control { |
| 5236 | position: absolute; |
| 5237 | top: 0; |
| 5238 | bottom: 0; |
| 5239 | left: 0; |
| 5240 | width: 15%; |
| 5241 | font-size: 20px; |
| 5242 | color: #fff; |
| 5243 | text-align: center; |
| 5244 | text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); |
| 5245 | filter: alpha(opacity=50); |
| 5246 | opacity: 0.5; |
| 5247 | } |
| 5248 | .w3eden .carousel-control.left { |
| 5249 | background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%); |
| 5250 | background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%); |
| 5251 | background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001))); |
| 5252 | background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%); |
| 5253 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1); |
| 5254 | background-repeat: repeat-x; |
| 5255 | } |
| 5256 | .w3eden .carousel-control.right { |
| 5257 | right: 0; |
| 5258 | left: auto; |
| 5259 | background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%); |
| 5260 | background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%); |
| 5261 | background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5))); |
| 5262 | background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%); |
| 5263 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1); |
| 5264 | background-repeat: repeat-x; |
| 5265 | } |
| 5266 | .w3eden .carousel-control:focus, |
| 5267 | .w3eden .carousel-control:hover { |
| 5268 | color: #fff; |
| 5269 | text-decoration: none; |
| 5270 | filter: alpha(opacity=90); |
| 5271 | outline: 0; |
| 5272 | opacity: 0.9; |
| 5273 | } |
| 5274 | .w3eden .carousel-control .glyphicon-chevron-left, |
| 5275 | .w3eden .carousel-control .glyphicon-chevron-right, |
| 5276 | .w3eden .carousel-control .icon-next, |
| 5277 | .w3eden .carousel-control .icon-prev { |
| 5278 | position: absolute; |
| 5279 | top: 50%; |
| 5280 | z-index: 5; |
| 5281 | display: inline-block; |
| 5282 | } |
| 5283 | .w3eden .carousel-control .glyphicon-chevron-left, |
| 5284 | .w3eden .carousel-control .icon-prev { |
| 5285 | left: 50%; |
| 5286 | margin-left: -10px; |
| 5287 | } |
| 5288 | .w3eden .carousel-control .glyphicon-chevron-right, |
| 5289 | .w3eden .carousel-control .icon-next { |
| 5290 | right: 50%; |
| 5291 | margin-right: -10px; |
| 5292 | } |
| 5293 | .w3eden .carousel-control .icon-next, |
| 5294 | .w3eden .carousel-control .icon-prev { |
| 5295 | width: 20px; |
| 5296 | height: 20px; |
| 5297 | margin-top: -10px; |
| 5298 | font-family: serif; |
| 5299 | line-height: 1; |
| 5300 | } |
| 5301 | .w3eden .carousel-control .icon-prev:before { |
| 5302 | content: '\2039'; |
| 5303 | } |
| 5304 | .w3eden .carousel-control .icon-next:before { |
| 5305 | content: '\203a'; |
| 5306 | } |
| 5307 | .w3eden .carousel-indicators { |
| 5308 | position: absolute; |
| 5309 | bottom: 10px; |
| 5310 | left: 50%; |
| 5311 | z-index: 15; |
| 5312 | width: 60%; |
| 5313 | padding-left: 0; |
| 5314 | margin-left: -30%; |
| 5315 | text-align: center; |
| 5316 | list-style: none; |
| 5317 | } |
| 5318 | .w3eden .carousel-indicators li { |
| 5319 | display: inline-block; |
| 5320 | width: 10px; |
| 5321 | height: 10px; |
| 5322 | margin: 1px; |
| 5323 | text-indent: -999px; |
| 5324 | cursor: pointer; |
| 5325 | background-color: #000 \9; |
| 5326 | background-color: rgba(0, 0, 0, 0); |
| 5327 | border: 1px solid #fff; |
| 5328 | border-radius: 10px; |
| 5329 | } |
| 5330 | .w3eden .carousel-indicators .active { |
| 5331 | width: 12px; |
| 5332 | height: 12px; |
| 5333 | margin: 0; |
| 5334 | background-color: #ffffff; |
| 5335 | } |
| 5336 | .w3eden .carousel-caption { |
| 5337 | position: absolute; |
| 5338 | right: 15%; |
| 5339 | bottom: 20px; |
| 5340 | left: 15%; |
| 5341 | z-index: 10; |
| 5342 | padding-top: 20px; |
| 5343 | padding-bottom: 20px; |
| 5344 | color: #fff; |
| 5345 | text-align: center; |
| 5346 | text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); |
| 5347 | } |
| 5348 | .w3eden .carousel-caption .btn { |
| 5349 | text-shadow: none; |
| 5350 | } |
| 5351 | @media screen and (min-width: 768px) { |
| 5352 | .w3eden .carousel-control .glyphicon-chevron-left, |
| 5353 | .w3eden .carousel-control .glyphicon-chevron-right, |
| 5354 | .w3eden .carousel-control .icon-next, |
| 5355 | .w3eden .carousel-control .icon-prev { |
| 5356 | width: 30px; |
| 5357 | height: 30px; |
| 5358 | margin-top: -15px; |
| 5359 | font-size: 30px; |
| 5360 | } |
| 5361 | .w3eden .carousel-control .glyphicon-chevron-left, |
| 5362 | .w3eden .carousel-control .icon-prev { |
| 5363 | margin-left: -15px; |
| 5364 | } |
| 5365 | .w3eden .carousel-control .glyphicon-chevron-right, |
| 5366 | .w3eden .carousel-control .icon-next { |
| 5367 | margin-right: -15px; |
| 5368 | } |
| 5369 | .w3eden .carousel-caption { |
| 5370 | right: 20%; |
| 5371 | left: 20%; |
| 5372 | padding-bottom: 30px; |
| 5373 | } |
| 5374 | .w3eden .carousel-indicators { |
| 5375 | bottom: 20px; |
| 5376 | } |
| 5377 | } |
| 5378 | .w3eden .btn-group-vertical > .btn-group:after, |
| 5379 | .w3eden .btn-group-vertical > .btn-group:before, |
| 5380 | .w3eden .btn-toolbar:after, |
| 5381 | .w3eden .btn-toolbar:before, |
| 5382 | .w3eden .clearfix:after, |
| 5383 | .w3eden .clearfix:before, |
| 5384 | .w3eden .container-fluid:after, |
| 5385 | .w3eden .container-fluid:before, |
| 5386 | .w3eden .container:after, |
| 5387 | .w3eden .container:before, |
| 5388 | .w3eden .dl-horizontal dd:after, |
| 5389 | .w3eden .dl-horizontal dd:before, |
| 5390 | .w3eden .form-horizontal .form-group:after, |
| 5391 | .w3eden .form-horizontal .form-group:before, |
| 5392 | .w3eden .modal-footer:after, |
| 5393 | .w3eden .modal-footer:before, |
| 5394 | .w3eden .nav:after, |
| 5395 | .w3eden .nav:before, |
| 5396 | .w3eden .navbar-collapse:after, |
| 5397 | .w3eden .navbar-collapse:before, |
| 5398 | .w3eden .navbar-header:after, |
| 5399 | .w3eden .navbar-header:before, |
| 5400 | .w3eden .navbar:after, |
| 5401 | .w3eden .navbar:before, |
| 5402 | .w3eden .pager:after, |
| 5403 | .w3eden .pager:before, |
| 5404 | .w3eden .panel-body:after, |
| 5405 | .w3eden .panel-body:before, |
| 5406 | .w3eden .row:after, |
| 5407 | .w3eden .row:before { |
| 5408 | display: table; |
| 5409 | content: " "; |
| 5410 | } |
| 5411 | .w3eden .btn-group-vertical > .btn-group:after, |
| 5412 | .w3eden .btn-toolbar:after, |
| 5413 | .w3eden .clearfix:after, |
| 5414 | .w3eden .container-fluid:after, |
| 5415 | .w3eden .container:after, |
| 5416 | .w3eden .dl-horizontal dd:after, |
| 5417 | .w3eden .form-horizontal .form-group:after, |
| 5418 | .w3eden .modal-footer:after, |
| 5419 | .w3eden .nav:after, |
| 5420 | .w3eden .navbar-collapse:after, |
| 5421 | .w3eden .navbar-header:after, |
| 5422 | .w3eden .navbar:after, |
| 5423 | .w3eden .pager:after, |
| 5424 | .w3eden .panel-body:after, |
| 5425 | .w3eden .row:after { |
| 5426 | clear: both; |
| 5427 | } |
| 5428 | .w3eden .center-block { |
| 5429 | display: block; |
| 5430 | margin-right: auto; |
| 5431 | margin-left: auto; |
| 5432 | } |
| 5433 | .w3eden .pull-right { |
| 5434 | float: right !important; |
| 5435 | } |
| 5436 | .w3eden .pull-left { |
| 5437 | float: left !important; |
| 5438 | } |
| 5439 | .w3eden .hide { |
| 5440 | display: none !important; |
| 5441 | } |
| 5442 | .w3eden .show { |
| 5443 | display: block !important; |
| 5444 | opacity: 1 !important; |
| 5445 | } |
| 5446 | .w3eden .invisible { |
| 5447 | visibility: hidden; |
| 5448 | } |
| 5449 | .w3eden .text-hide { |
| 5450 | font: 0/0 a; |
| 5451 | color: transparent; |
| 5452 | text-shadow: none; |
| 5453 | background-color: transparent; |
| 5454 | border: 0; |
| 5455 | } |
| 5456 | .w3eden .hidden { |
| 5457 | display: none !important; |
| 5458 | } |
| 5459 | .w3eden .affix { |
| 5460 | position: fixed; |
| 5461 | } |
| 5462 | @-ms-viewport { |
| 5463 | width: device-width; |
| 5464 | } |
| 5465 | .w3eden .visible-lg, |
| 5466 | .w3eden .visible-md, |
| 5467 | .w3eden .visible-sm, |
| 5468 | .w3eden .visible-xs { |
| 5469 | display: none !important; |
| 5470 | } |
| 5471 | .w3eden .visible-lg-block, |
| 5472 | .w3eden .visible-lg-inline, |
| 5473 | .w3eden .visible-lg-inline-block, |
| 5474 | .w3eden .visible-md-block, |
| 5475 | .w3eden .visible-md-inline, |
| 5476 | .w3eden .visible-md-inline-block, |
| 5477 | .w3eden .visible-sm-block, |
| 5478 | .w3eden .visible-sm-inline, |
| 5479 | .w3eden .visible-sm-inline-block, |
| 5480 | .w3eden .visible-xs-block, |
| 5481 | .w3eden .visible-xs-inline, |
| 5482 | .w3eden .visible-xs-inline-block { |
| 5483 | display: none !important; |
| 5484 | } |
| 5485 | @media (max-width: 767px) { |
| 5486 | .w3eden .visible-xs { |
| 5487 | display: block !important; |
| 5488 | } |
| 5489 | .w3eden table.visible-xs { |
| 5490 | display: table; |
| 5491 | } |
| 5492 | .w3eden tr.visible-xs { |
| 5493 | display: table-row !important; |
| 5494 | } |
| 5495 | .w3eden td.visible-xs, |
| 5496 | .w3eden th.visible-xs { |
| 5497 | display: table-cell !important; |
| 5498 | } |
| 5499 | } |
| 5500 | @media (max-width: 767px) { |
| 5501 | .w3eden .visible-xs-block { |
| 5502 | display: block !important; |
| 5503 | } |
| 5504 | } |
| 5505 | @media (max-width: 767px) { |
| 5506 | .w3eden .visible-xs-inline { |
| 5507 | display: inline !important; |
| 5508 | } |
| 5509 | } |
| 5510 | @media (max-width: 767px) { |
| 5511 | .w3eden .visible-xs-inline-block { |
| 5512 | display: inline-block !important; |
| 5513 | } |
| 5514 | } |
| 5515 | @media (min-width: 768px) and (max-width: 991px) { |
| 5516 | .w3eden .visible-sm { |
| 5517 | display: block !important; |
| 5518 | } |
| 5519 | .w3eden table.visible-sm { |
| 5520 | display: table; |
| 5521 | } |
| 5522 | .w3eden tr.visible-sm { |
| 5523 | display: table-row !important; |
| 5524 | } |
| 5525 | .w3eden td.visible-sm, |
| 5526 | .w3eden th.visible-sm { |
| 5527 | display: table-cell !important; |
| 5528 | } |
| 5529 | } |
| 5530 | @media (min-width: 768px) and (max-width: 991px) { |
| 5531 | .w3eden .visible-sm-block { |
| 5532 | display: block !important; |
| 5533 | } |
| 5534 | } |
| 5535 | @media (min-width: 768px) and (max-width: 991px) { |
| 5536 | .w3eden .visible-sm-inline { |
| 5537 | display: inline !important; |
| 5538 | } |
| 5539 | } |
| 5540 | @media (min-width: 768px) and (max-width: 991px) { |
| 5541 | .w3eden .visible-sm-inline-block { |
| 5542 | display: inline-block !important; |
| 5543 | } |
| 5544 | } |
| 5545 | @media (min-width: 992px) and (max-width: 1199px) { |
| 5546 | .w3eden .visible-md { |
| 5547 | display: block !important; |
| 5548 | } |
| 5549 | .w3eden table.visible-md { |
| 5550 | display: table; |
| 5551 | } |
| 5552 | .w3eden tr.visible-md { |
| 5553 | display: table-row !important; |
| 5554 | } |
| 5555 | .w3eden td.visible-md, |
| 5556 | .w3eden th.visible-md { |
| 5557 | display: table-cell !important; |
| 5558 | } |
| 5559 | } |
| 5560 | @media (min-width: 992px) and (max-width: 1199px) { |
| 5561 | .w3eden .visible-md-block { |
| 5562 | display: block !important; |
| 5563 | } |
| 5564 | } |
| 5565 | @media (min-width: 992px) and (max-width: 1199px) { |
| 5566 | .w3eden .visible-md-inline { |
| 5567 | display: inline !important; |
| 5568 | } |
| 5569 | } |
| 5570 | @media (min-width: 992px) and (max-width: 1199px) { |
| 5571 | .w3eden .visible-md-inline-block { |
| 5572 | display: inline-block !important; |
| 5573 | } |
| 5574 | } |
| 5575 | @media (min-width: 1200px) { |
| 5576 | .w3eden .visible-lg { |
| 5577 | display: block !important; |
| 5578 | } |
| 5579 | .w3eden table.visible-lg { |
| 5580 | display: table; |
| 5581 | } |
| 5582 | .w3eden tr.visible-lg { |
| 5583 | display: table-row !important; |
| 5584 | } |
| 5585 | .w3eden td.visible-lg, |
| 5586 | .w3eden th.visible-lg { |
| 5587 | display: table-cell !important; |
| 5588 | } |
| 5589 | } |
| 5590 | @media (min-width: 1200px) { |
| 5591 | .w3eden .visible-lg-block { |
| 5592 | display: block !important; |
| 5593 | } |
| 5594 | } |
| 5595 | @media (min-width: 1200px) { |
| 5596 | .w3eden .visible-lg-inline { |
| 5597 | display: inline !important; |
| 5598 | } |
| 5599 | } |
| 5600 | @media (min-width: 1200px) { |
| 5601 | .w3eden .visible-lg-inline-block { |
| 5602 | display: inline-block !important; |
| 5603 | } |
| 5604 | } |
| 5605 | @media (max-width: 767px) { |
| 5606 | .w3eden .hidden-xs { |
| 5607 | display: none !important; |
| 5608 | } |
| 5609 | } |
| 5610 | @media (min-width: 768px) and (max-width: 991px) { |
| 5611 | .w3eden .hidden-sm { |
| 5612 | display: none !important; |
| 5613 | } |
| 5614 | } |
| 5615 | @media (min-width: 992px) and (max-width: 1199px) { |
| 5616 | .w3eden .hidden-md { |
| 5617 | display: none !important; |
| 5618 | } |
| 5619 | } |
| 5620 | @media (min-width: 1200px) { |
| 5621 | .w3eden .hidden-lg { |
| 5622 | display: none !important; |
| 5623 | } |
| 5624 | } |
| 5625 | .w3eden .visible-print { |
| 5626 | display: none !important; |
| 5627 | } |
| 5628 | @media print { |
| 5629 | .w3eden .visible-print { |
| 5630 | display: block !important; |
| 5631 | } |
| 5632 | .w3eden table.visible-print { |
| 5633 | display: table; |
| 5634 | } |
| 5635 | .w3eden tr.visible-print { |
| 5636 | display: table-row !important; |
| 5637 | } |
| 5638 | .w3eden td.visible-print, |
| 5639 | .w3eden th.visible-print { |
| 5640 | display: table-cell !important; |
| 5641 | } |
| 5642 | } |
| 5643 | .w3eden .visible-print-block { |
| 5644 | display: none !important; |
| 5645 | } |
| 5646 | @media print { |
| 5647 | .w3eden .visible-print-block { |
| 5648 | display: block !important; |
| 5649 | } |
| 5650 | } |
| 5651 | .w3eden .visible-print-inline { |
| 5652 | display: none !important; |
| 5653 | } |
| 5654 | @media print { |
| 5655 | .w3eden .visible-print-inline { |
| 5656 | display: inline !important; |
| 5657 | } |
| 5658 | } |
| 5659 | .w3eden .visible-print-inline-block { |
| 5660 | display: none !important; |
| 5661 | } |
| 5662 | @media print { |
| 5663 | .w3eden .visible-print-inline-block { |
| 5664 | display: inline-block !important; |
| 5665 | } |
| 5666 | } |
| 5667 | @media print { |
| 5668 | .w3eden .hidden-print { |
| 5669 | display: none !important; |
| 5670 | } |
| 5671 | } |
| 5672 | |
| 5673 | .w3eden .btn{ |
| 5674 | background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,0)),to(rgba(0,0,0,.05)));background-image:-webkit-linear-gradient(rgba(0,0,0,0),rgba(0,0,0,.05));background-image:linear-gradient(rgba(0,0,0,0),rgba(0,0,0,.05)); |
| 5675 | text-decoration:none !important; |
| 5676 | /* border: 0;padding: 7px 13px; */ |
| 5677 | } |
| 5678 | .w3eden .panel th{ |
| 5679 | background-color: #f7fafd !important; |
| 5680 | border-bottom-width: 1px !important; |
| 5681 | |
| 5682 | } |
| 5683 | .w3eden .btn{ border-radius: 0.2em; } |
| 5684 | .w3eden .nav-pills a{ |
| 5685 | border-radius: 0.2em; |
| 5686 | box-shadow: none !important; |
| 5687 | font-size: 9pt !important; |
| 5688 | } |
| 5689 | .w3eden .panel-heading{ |
| 5690 | font-weight: 700; |
| 5691 | } |
| 5692 | .w3eden blockquote.alert{ |
| 5693 | font-size: 14px; |
| 5694 | font-weight: 300; |
| 5695 | font-style: italic; |
| 5696 | } |
| 5697 | .w3eden .btn-group .btn:first-child:not(:last-child), |
| 5698 | .w3eden .input-group .form-control:first-child:not(:last-child){ border-top-right-radius: 0; border-bottom-right-radius: 0; border-bottom-left-radius: 0.2em; border-top-left-radius: 0.2em; } |
| 5699 | .w3eden .btn-group .btn:last-child:not(:first-child){ border-top-left-radius: 0; border-bottom-left-radius: 0; border-top-right-radius: 0.2em; border-bottom-right-radius: 0.2em; } |
| 5700 | .w3eden .btn span.left-icon{ |
| 5701 | float: left; |
| 5702 | background: none repeat scroll 0 0 rgba(0, 0, 0, 0.16); |
| 5703 | border-bottom-left-radius: 3px; |
| 5704 | border-right: 1px solid rgba(0, 0, 0, 0.12); |
| 5705 | border-top-left-radius: 3px; |
| 5706 | margin-left: -17px; |
| 5707 | margin-top: -8.5px; |
| 5708 | padding: 8.5px 12px; |
| 5709 | position: relative; |
| 5710 | width: 40px; |
| 5711 | } |
| 5712 | .mr-2{ |
| 5713 | margin-right: 0.4rem !important; |
| 5714 | }.mr-3{ |
| 5715 | margin-right: 0.7rem !important; |
| 5716 | } |
| 5717 | .mb-3, |
| 5718 | .my-3 { |
| 5719 | margin-bottom: 1rem !important; |
| 5720 | } |
| 5721 | .br-0{ |
| 5722 | border-radius: 0 !important; |
| 5723 | } |
| 5724 | .bb{ |
| 5725 | border-bottom: 1px dashed #ddd !important; |
| 5726 | } |
| 5727 |