├── css ├── animate.css ├── apexcharts.css ├── bootstrap-icons.css ├── bootstrap.min.css ├── dataTables.bootstrap4.min.css ├── font-awesome.min.css ├── fonts │ ├── bootstrap-iconse36a.woff │ └── bootstrap-iconse36a.woff2 ├── ion.rangeSlider.min.css ├── magnific-popup.css ├── owl.carousel.min.css └── owl.video.play.html ├── fonts ├── fontawesome-webfont3e6e.eot ├── fontawesome-webfont3e6e.svg ├── fontawesome-webfont3e6e.ttf ├── fontawesome-webfont3e6e.woff ├── fontawesome-webfont3e6e.woff2 └── fontawesome-webfontd41d.eot ├── help.txt ├── img ├── bg-img │ ├── 19.png │ ├── 2.jpg │ ├── 20.jpg │ ├── 21.jpg │ ├── 22.jpg │ ├── 23.jpg │ ├── 24.jpg │ ├── 25.jpg │ ├── 26.jpg │ ├── 27.jpg │ ├── 28.jpg │ ├── 29.png │ ├── 30.jpg │ ├── 31.jpg │ ├── 32.jpg │ ├── 33.jpg │ ├── 35.jpg │ ├── 36.jpg │ ├── 36.png │ ├── 37.png │ ├── 38.png │ ├── 39.png │ ├── p2.jpg │ ├── user1.png │ ├── user2.png │ ├── user3.png │ ├── user4.png │ └── user5.html ├── demo-img │ ├── bootstrap.png │ ├── css3.png │ ├── dark.png │ ├── gulp.png │ ├── html5.png │ ├── jquery.png │ ├── npm.png │ ├── pug.png │ ├── pwa.png │ ├── qr-code.svg │ └── sass.png ├── icons │ └── ACoding.png └── partner-img │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ └── 6.png └── js ├── apexcharts.min.js ├── bootstrap.bundle.min.js ├── default ├── active.js ├── chart-active.js ├── clipboard.js ├── dark-mode-switch.js ├── form-autocomplete.js ├── internet-status.js ├── jquery.passwordstrength.js └── otp-timer.js ├── imagesloaded.pkgd.min.js ├── ion.rangeSlider.min.js ├── isotope.pkgd.min.js ├── jquery.countdown.min.js ├── jquery.counterup.min.js ├── jquery.dataTables.min.js ├── jquery.easing.min.js ├── jquery.magnific-popup.min.js ├── jquery.min.js ├── owl.carousel.min.js ├── pwa.js ├── waypoints.min.js └── wow.min.js /css/apexcharts.css: -------------------------------------------------------------------------------- 1 | .apexcharts-canvas { 2 | position: relative; 3 | user-select: none; 4 | /* cannot give overflow: hidden as it will crop tooltips which overflow outside chart area */ 5 | } 6 | 7 | 8 | /* scrollbar is not visible by default for legend, hence forcing the visibility */ 9 | .apexcharts-canvas ::-webkit-scrollbar { 10 | -webkit-appearance: none; 11 | width: 6px; 12 | } 13 | 14 | .apexcharts-canvas ::-webkit-scrollbar-thumb { 15 | border-radius: 4px; 16 | background-color: rgba(0, 0, 0, .5); 17 | box-shadow: 0 0 1px rgba(255, 255, 255, .5); 18 | -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, .5); 19 | } 20 | 21 | 22 | .apexcharts-inner { 23 | position: relative; 24 | } 25 | 26 | .apexcharts-text tspan { 27 | font-family: inherit; 28 | } 29 | 30 | .legend-mouseover-inactive { 31 | transition: 0.15s ease all; 32 | opacity: 0.20; 33 | } 34 | 35 | .apexcharts-series-collapsed { 36 | opacity: 0; 37 | } 38 | 39 | .apexcharts-tooltip { 40 | border-radius: 5px; 41 | box-shadow: 2px 2px 6px -4px #999; 42 | cursor: default; 43 | font-size: 14px; 44 | left: 62px; 45 | opacity: 0; 46 | pointer-events: none; 47 | position: absolute; 48 | top: 20px; 49 | display: flex; 50 | flex-direction: column; 51 | overflow: hidden; 52 | white-space: nowrap; 53 | z-index: 12; 54 | transition: 0.15s ease all; 55 | } 56 | 57 | .apexcharts-tooltip.apexcharts-active { 58 | opacity: 1; 59 | transition: 0.15s ease all; 60 | } 61 | 62 | .apexcharts-tooltip.apexcharts-theme-light { 63 | border: 1px solid #e3e3e3; 64 | background: rgba(255, 255, 255, 0.96); 65 | } 66 | 67 | .apexcharts-tooltip.apexcharts-theme-dark { 68 | color: #fff; 69 | background: rgba(30, 30, 30, 0.8); 70 | } 71 | 72 | .apexcharts-tooltip * { 73 | font-family: inherit; 74 | } 75 | 76 | 77 | .apexcharts-tooltip-title { 78 | padding: 6px; 79 | font-size: 15px; 80 | margin-bottom: 4px; 81 | } 82 | 83 | .apexcharts-tooltip.apexcharts-theme-light .apexcharts-tooltip-title { 84 | background: #ECEFF1; 85 | border-bottom: 1px solid #ddd; 86 | } 87 | 88 | .apexcharts-tooltip.apexcharts-theme-dark .apexcharts-tooltip-title { 89 | background: rgba(0, 0, 0, 0.7); 90 | border-bottom: 1px solid #333; 91 | } 92 | 93 | .apexcharts-tooltip-text-value, 94 | .apexcharts-tooltip-text-z-value { 95 | display: inline-block; 96 | font-weight: 600; 97 | margin-left: 5px; 98 | } 99 | 100 | .apexcharts-tooltip-text-z-label:empty, 101 | .apexcharts-tooltip-text-z-value:empty { 102 | display: none; 103 | } 104 | 105 | .apexcharts-tooltip-text-value, 106 | .apexcharts-tooltip-text-z-value { 107 | font-weight: 600; 108 | } 109 | 110 | .apexcharts-tooltip-marker { 111 | width: 12px; 112 | height: 12px; 113 | position: relative; 114 | top: 0px; 115 | margin-right: 10px; 116 | border-radius: 50%; 117 | } 118 | 119 | .apexcharts-tooltip-series-group { 120 | padding: 0 10px; 121 | display: none; 122 | text-align: left; 123 | justify-content: left; 124 | align-items: center; 125 | } 126 | 127 | .apexcharts-tooltip-series-group.apexcharts-active .apexcharts-tooltip-marker { 128 | opacity: 1; 129 | } 130 | 131 | .apexcharts-tooltip-series-group.apexcharts-active, 132 | .apexcharts-tooltip-series-group:last-child { 133 | padding-bottom: 4px; 134 | } 135 | 136 | .apexcharts-tooltip-series-group-hidden { 137 | opacity: 0; 138 | height: 0; 139 | line-height: 0; 140 | padding: 0 !important; 141 | } 142 | 143 | .apexcharts-tooltip-y-group { 144 | padding: 6px 0 5px; 145 | } 146 | 147 | .apexcharts-tooltip-box, .apexcharts-custom-tooltip { 148 | padding: 4px 8px; 149 | } 150 | 151 | .apexcharts-tooltip-boxPlot { 152 | display: flex; 153 | flex-direction: column-reverse; 154 | } 155 | 156 | .apexcharts-tooltip-box>div { 157 | margin: 4px 0; 158 | } 159 | 160 | .apexcharts-tooltip-box span.value { 161 | font-weight: bold; 162 | } 163 | 164 | .apexcharts-tooltip-rangebar { 165 | padding: 5px 8px; 166 | } 167 | 168 | .apexcharts-tooltip-rangebar .category { 169 | font-weight: 600; 170 | color: #777; 171 | } 172 | 173 | .apexcharts-tooltip-rangebar .series-name { 174 | font-weight: bold; 175 | display: block; 176 | margin-bottom: 5px; 177 | } 178 | 179 | .apexcharts-xaxistooltip { 180 | opacity: 0; 181 | padding: 9px 10px; 182 | pointer-events: none; 183 | color: #373d3f; 184 | font-size: 13px; 185 | text-align: center; 186 | border-radius: 2px; 187 | position: absolute; 188 | z-index: 10; 189 | background: #ECEFF1; 190 | border: 1px solid #90A4AE; 191 | transition: 0.15s ease all; 192 | } 193 | 194 | .apexcharts-xaxistooltip.apexcharts-theme-dark { 195 | background: rgba(0, 0, 0, 0.7); 196 | border: 1px solid rgba(0, 0, 0, 0.5); 197 | color: #fff; 198 | } 199 | 200 | .apexcharts-xaxistooltip:after, 201 | .apexcharts-xaxistooltip:before { 202 | left: 50%; 203 | border: solid transparent; 204 | content: " "; 205 | height: 0; 206 | width: 0; 207 | position: absolute; 208 | pointer-events: none; 209 | } 210 | 211 | .apexcharts-xaxistooltip:after { 212 | border-color: rgba(236, 239, 241, 0); 213 | border-width: 6px; 214 | margin-left: -6px; 215 | } 216 | 217 | .apexcharts-xaxistooltip:before { 218 | border-color: rgba(144, 164, 174, 0); 219 | border-width: 7px; 220 | margin-left: -7px; 221 | } 222 | 223 | .apexcharts-xaxistooltip-bottom:after, 224 | .apexcharts-xaxistooltip-bottom:before { 225 | bottom: 100%; 226 | } 227 | 228 | .apexcharts-xaxistooltip-top:after, 229 | .apexcharts-xaxistooltip-top:before { 230 | top: 100%; 231 | } 232 | 233 | .apexcharts-xaxistooltip-bottom:after { 234 | border-bottom-color: #ECEFF1; 235 | } 236 | 237 | .apexcharts-xaxistooltip-bottom:before { 238 | border-bottom-color: #90A4AE; 239 | } 240 | 241 | .apexcharts-xaxistooltip-bottom.apexcharts-theme-dark:after { 242 | border-bottom-color: rgba(0, 0, 0, 0.5); 243 | } 244 | 245 | .apexcharts-xaxistooltip-bottom.apexcharts-theme-dark:before { 246 | border-bottom-color: rgba(0, 0, 0, 0.5); 247 | } 248 | 249 | .apexcharts-xaxistooltip-top:after { 250 | border-top-color: #ECEFF1 251 | } 252 | 253 | .apexcharts-xaxistooltip-top:before { 254 | border-top-color: #90A4AE; 255 | } 256 | 257 | .apexcharts-xaxistooltip-top.apexcharts-theme-dark:after { 258 | border-top-color: rgba(0, 0, 0, 0.5); 259 | } 260 | 261 | .apexcharts-xaxistooltip-top.apexcharts-theme-dark:before { 262 | border-top-color: rgba(0, 0, 0, 0.5); 263 | } 264 | 265 | .apexcharts-xaxistooltip.apexcharts-active { 266 | opacity: 1; 267 | transition: 0.15s ease all; 268 | } 269 | 270 | .apexcharts-yaxistooltip { 271 | opacity: 0; 272 | padding: 4px 10px; 273 | pointer-events: none; 274 | color: #373d3f; 275 | font-size: 13px; 276 | text-align: center; 277 | border-radius: 2px; 278 | position: absolute; 279 | z-index: 10; 280 | background: #ECEFF1; 281 | border: 1px solid #90A4AE; 282 | } 283 | 284 | .apexcharts-yaxistooltip.apexcharts-theme-dark { 285 | background: rgba(0, 0, 0, 0.7); 286 | border: 1px solid rgba(0, 0, 0, 0.5); 287 | color: #fff; 288 | } 289 | 290 | .apexcharts-yaxistooltip:after, 291 | .apexcharts-yaxistooltip:before { 292 | top: 50%; 293 | border: solid transparent; 294 | content: " "; 295 | height: 0; 296 | width: 0; 297 | position: absolute; 298 | pointer-events: none; 299 | } 300 | 301 | .apexcharts-yaxistooltip:after { 302 | border-color: rgba(236, 239, 241, 0); 303 | border-width: 6px; 304 | margin-top: -6px; 305 | } 306 | 307 | .apexcharts-yaxistooltip:before { 308 | border-color: rgba(144, 164, 174, 0); 309 | border-width: 7px; 310 | margin-top: -7px; 311 | } 312 | 313 | .apexcharts-yaxistooltip-left:after, 314 | .apexcharts-yaxistooltip-left:before { 315 | left: 100%; 316 | } 317 | 318 | .apexcharts-yaxistooltip-right:after, 319 | .apexcharts-yaxistooltip-right:before { 320 | right: 100%; 321 | } 322 | 323 | .apexcharts-yaxistooltip-left:after { 324 | border-left-color: #ECEFF1; 325 | } 326 | 327 | .apexcharts-yaxistooltip-left:before { 328 | border-left-color: #90A4AE; 329 | } 330 | 331 | .apexcharts-yaxistooltip-left.apexcharts-theme-dark:after { 332 | border-left-color: rgba(0, 0, 0, 0.5); 333 | } 334 | 335 | .apexcharts-yaxistooltip-left.apexcharts-theme-dark:before { 336 | border-left-color: rgba(0, 0, 0, 0.5); 337 | } 338 | 339 | .apexcharts-yaxistooltip-right:after { 340 | border-right-color: #ECEFF1; 341 | } 342 | 343 | .apexcharts-yaxistooltip-right:before { 344 | border-right-color: #90A4AE; 345 | } 346 | 347 | .apexcharts-yaxistooltip-right.apexcharts-theme-dark:after { 348 | border-right-color: rgba(0, 0, 0, 0.5); 349 | } 350 | 351 | .apexcharts-yaxistooltip-right.apexcharts-theme-dark:before { 352 | border-right-color: rgba(0, 0, 0, 0.5); 353 | } 354 | 355 | .apexcharts-yaxistooltip.apexcharts-active { 356 | opacity: 1; 357 | } 358 | 359 | .apexcharts-yaxistooltip-hidden { 360 | display: none; 361 | } 362 | 363 | .apexcharts-xcrosshairs, 364 | .apexcharts-ycrosshairs { 365 | pointer-events: none; 366 | opacity: 0; 367 | transition: 0.15s ease all; 368 | } 369 | 370 | .apexcharts-xcrosshairs.apexcharts-active, 371 | .apexcharts-ycrosshairs.apexcharts-active { 372 | opacity: 1; 373 | transition: 0.15s ease all; 374 | } 375 | 376 | .apexcharts-ycrosshairs-hidden { 377 | opacity: 0; 378 | } 379 | 380 | .apexcharts-selection-rect { 381 | cursor: move; 382 | } 383 | 384 | .svg_select_boundingRect, .svg_select_points_rot { 385 | pointer-events: none; 386 | opacity: 0; 387 | visibility: hidden; 388 | } 389 | .apexcharts-selection-rect + g .svg_select_boundingRect, 390 | .apexcharts-selection-rect + g .svg_select_points_rot { 391 | opacity: 0; 392 | visibility: hidden; 393 | } 394 | 395 | .apexcharts-selection-rect + g .svg_select_points_l, 396 | .apexcharts-selection-rect + g .svg_select_points_r { 397 | cursor: ew-resize; 398 | opacity: 1; 399 | visibility: visible; 400 | } 401 | 402 | .svg_select_points { 403 | fill: #efefef; 404 | stroke: #333; 405 | rx: 2; 406 | } 407 | 408 | .apexcharts-svg.apexcharts-zoomable.hovering-zoom { 409 | cursor: crosshair 410 | } 411 | 412 | .apexcharts-svg.apexcharts-zoomable.hovering-pan { 413 | cursor: move 414 | } 415 | 416 | .apexcharts-zoom-icon, 417 | .apexcharts-zoomin-icon, 418 | .apexcharts-zoomout-icon, 419 | .apexcharts-reset-icon, 420 | .apexcharts-pan-icon, 421 | .apexcharts-selection-icon, 422 | .apexcharts-menu-icon, 423 | .apexcharts-toolbar-custom-icon { 424 | cursor: pointer; 425 | width: 20px; 426 | height: 20px; 427 | line-height: 24px; 428 | color: #6E8192; 429 | text-align: center; 430 | } 431 | 432 | .apexcharts-zoom-icon svg, 433 | .apexcharts-zoomin-icon svg, 434 | .apexcharts-zoomout-icon svg, 435 | .apexcharts-reset-icon svg, 436 | .apexcharts-menu-icon svg { 437 | fill: #6E8192; 438 | } 439 | 440 | .apexcharts-selection-icon svg { 441 | fill: #444; 442 | transform: scale(0.76) 443 | } 444 | 445 | .apexcharts-theme-dark .apexcharts-zoom-icon svg, 446 | .apexcharts-theme-dark .apexcharts-zoomin-icon svg, 447 | .apexcharts-theme-dark .apexcharts-zoomout-icon svg, 448 | .apexcharts-theme-dark .apexcharts-reset-icon svg, 449 | .apexcharts-theme-dark .apexcharts-pan-icon svg, 450 | .apexcharts-theme-dark .apexcharts-selection-icon svg, 451 | .apexcharts-theme-dark .apexcharts-menu-icon svg, 452 | .apexcharts-theme-dark .apexcharts-toolbar-custom-icon svg { 453 | fill: #f3f4f5; 454 | } 455 | 456 | .apexcharts-canvas .apexcharts-zoom-icon.apexcharts-selected svg, 457 | .apexcharts-canvas .apexcharts-selection-icon.apexcharts-selected svg, 458 | .apexcharts-canvas .apexcharts-reset-zoom-icon.apexcharts-selected svg { 459 | fill: #008FFB; 460 | } 461 | 462 | .apexcharts-theme-light .apexcharts-selection-icon:not(.apexcharts-selected):hover svg, 463 | .apexcharts-theme-light .apexcharts-zoom-icon:not(.apexcharts-selected):hover svg, 464 | .apexcharts-theme-light .apexcharts-zoomin-icon:hover svg, 465 | .apexcharts-theme-light .apexcharts-zoomout-icon:hover svg, 466 | .apexcharts-theme-light .apexcharts-reset-icon:hover svg, 467 | .apexcharts-theme-light .apexcharts-menu-icon:hover svg { 468 | fill: #333; 469 | } 470 | 471 | .apexcharts-selection-icon, 472 | .apexcharts-menu-icon { 473 | position: relative; 474 | } 475 | 476 | .apexcharts-reset-icon { 477 | margin-left: 5px; 478 | } 479 | 480 | .apexcharts-zoom-icon, 481 | .apexcharts-reset-icon, 482 | .apexcharts-menu-icon { 483 | transform: scale(0.85); 484 | } 485 | 486 | .apexcharts-zoomin-icon, 487 | .apexcharts-zoomout-icon { 488 | transform: scale(0.7) 489 | } 490 | 491 | .apexcharts-zoomout-icon { 492 | margin-right: 3px; 493 | } 494 | 495 | .apexcharts-pan-icon { 496 | transform: scale(0.62); 497 | position: relative; 498 | left: 1px; 499 | top: 0px; 500 | } 501 | 502 | .apexcharts-pan-icon svg { 503 | fill: #fff; 504 | stroke: #6E8192; 505 | stroke-width: 2; 506 | } 507 | 508 | .apexcharts-pan-icon.apexcharts-selected svg { 509 | stroke: #008FFB; 510 | } 511 | 512 | .apexcharts-pan-icon:not(.apexcharts-selected):hover svg { 513 | stroke: #333; 514 | } 515 | 516 | .apexcharts-toolbar { 517 | position: absolute; 518 | z-index: 11; 519 | max-width: 176px; 520 | text-align: right; 521 | border-radius: 3px; 522 | padding: 0px 6px 2px 6px; 523 | display: flex; 524 | justify-content: space-between; 525 | align-items: center; 526 | } 527 | 528 | .apexcharts-menu { 529 | background: #fff; 530 | position: absolute; 531 | top: 100%; 532 | border: 1px solid #ddd; 533 | border-radius: 3px; 534 | padding: 3px; 535 | right: 10px; 536 | opacity: 0; 537 | min-width: 110px; 538 | transition: 0.15s ease all; 539 | pointer-events: none; 540 | } 541 | 542 | .apexcharts-menu.apexcharts-menu-open { 543 | opacity: 1; 544 | pointer-events: all; 545 | transition: 0.15s ease all; 546 | } 547 | 548 | .apexcharts-menu-item { 549 | padding: 6px 7px; 550 | font-size: 12px; 551 | cursor: pointer; 552 | } 553 | 554 | .apexcharts-theme-light .apexcharts-menu-item:hover { 555 | background: #eee; 556 | } 557 | 558 | .apexcharts-theme-dark .apexcharts-menu { 559 | background: rgba(0, 0, 0, 0.7); 560 | color: #fff; 561 | } 562 | 563 | @media screen and (min-width: 768px) { 564 | .apexcharts-canvas:hover .apexcharts-toolbar { 565 | opacity: 1; 566 | } 567 | } 568 | 569 | .apexcharts-datalabel.apexcharts-element-hidden { 570 | opacity: 0; 571 | } 572 | 573 | .apexcharts-pie-label, 574 | .apexcharts-datalabels, 575 | .apexcharts-datalabel, 576 | .apexcharts-datalabel-label, 577 | .apexcharts-datalabel-value { 578 | cursor: default; 579 | pointer-events: none; 580 | } 581 | 582 | .apexcharts-pie-label-delay { 583 | opacity: 0; 584 | animation-name: opaque; 585 | animation-duration: 0.3s; 586 | animation-fill-mode: forwards; 587 | animation-timing-function: ease; 588 | } 589 | 590 | .apexcharts-canvas .apexcharts-element-hidden { 591 | opacity: 0; 592 | } 593 | 594 | .apexcharts-hide .apexcharts-series-points { 595 | opacity: 0; 596 | } 597 | 598 | .apexcharts-gridline, 599 | .apexcharts-annotation-rect, 600 | .apexcharts-tooltip .apexcharts-marker, 601 | .apexcharts-area-series .apexcharts-area, 602 | .apexcharts-line, 603 | .apexcharts-zoom-rect, 604 | .apexcharts-toolbar svg, 605 | .apexcharts-area-series .apexcharts-series-markers .apexcharts-marker.no-pointer-events, 606 | .apexcharts-line-series .apexcharts-series-markers .apexcharts-marker.no-pointer-events, 607 | .apexcharts-radar-series path, 608 | .apexcharts-radar-series polygon { 609 | pointer-events: none; 610 | } 611 | 612 | 613 | /* markers */ 614 | 615 | .apexcharts-marker { 616 | transition: 0.15s ease all; 617 | } 618 | 619 | @keyframes opaque { 620 | 0% { 621 | opacity: 0; 622 | } 623 | 100% { 624 | opacity: 1; 625 | } 626 | } 627 | 628 | 629 | /* Resize generated styles */ 630 | 631 | @keyframes resizeanim { 632 | from { 633 | opacity: 0; 634 | } 635 | to { 636 | opacity: 0; 637 | } 638 | } 639 | 640 | .resize-triggers { 641 | animation: 1ms resizeanim; 642 | visibility: hidden; 643 | opacity: 0; 644 | } 645 | 646 | .resize-triggers, 647 | .resize-triggers>div, 648 | .contract-trigger:before { 649 | content: " "; 650 | display: block; 651 | position: absolute; 652 | top: 0; 653 | left: 0; 654 | height: 100%; 655 | width: 100%; 656 | overflow: hidden; 657 | } 658 | 659 | .resize-triggers>div { 660 | background: #eee; 661 | overflow: auto; 662 | } 663 | 664 | .contract-trigger:before { 665 | width: 200%; 666 | height: 200%; 667 | } -------------------------------------------------------------------------------- /css/dataTables.bootstrap4.min.css: -------------------------------------------------------------------------------- 1 | table.dataTable{clear:both;margin-top:6px !important;margin-bottom:6px !important;max-width:none !important;border-collapse:separate !important;border-spacing:0}table.dataTable td,table.dataTable th{-webkit-box-sizing:content-box;box-sizing:content-box}table.dataTable td.dataTables_empty,table.dataTable th.dataTables_empty{text-align:center}table.dataTable.nowrap th,table.dataTable.nowrap td{white-space:nowrap}div.dataTables_wrapper div.dataTables_length label{font-weight:normal;text-align:left;white-space:nowrap}div.dataTables_wrapper div.dataTables_length select{width:auto;display:inline-block}div.dataTables_wrapper div.dataTables_filter{text-align:right}div.dataTables_wrapper div.dataTables_filter label{font-weight:normal;white-space:nowrap;text-align:left}div.dataTables_wrapper div.dataTables_filter input{margin-left:.5em;display:inline-block;width:auto}div.dataTables_wrapper div.dataTables_info{padding-top:.85em}div.dataTables_wrapper div.dataTables_paginate{margin:0;white-space:nowrap;text-align:right}div.dataTables_wrapper div.dataTables_paginate ul.pagination{margin:2px 0;white-space:nowrap;justify-content:flex-end}div.dataTables_wrapper div.dataTables_processing{position:absolute;top:50%;left:50%;width:200px;margin-left:-100px;margin-top:-26px;text-align:center;padding:1em 0}table.dataTable>thead>tr>th:active,table.dataTable>thead>tr>td:active{outline:none}table.dataTable>thead>tr>th:not(.sorting_disabled),table.dataTable>thead>tr>td:not(.sorting_disabled){padding-right:30px}table.dataTable>thead .sorting,table.dataTable>thead .sorting_asc,table.dataTable>thead .sorting_desc,table.dataTable>thead .sorting_asc_disabled,table.dataTable>thead .sorting_desc_disabled{cursor:pointer;position:relative}table.dataTable>thead .sorting:before,table.dataTable>thead .sorting:after,table.dataTable>thead .sorting_asc:before,table.dataTable>thead .sorting_asc:after,table.dataTable>thead .sorting_desc:before,table.dataTable>thead .sorting_desc:after,table.dataTable>thead .sorting_asc_disabled:before,table.dataTable>thead .sorting_asc_disabled:after,table.dataTable>thead .sorting_desc_disabled:before,table.dataTable>thead .sorting_desc_disabled:after{position:absolute;bottom:.9em;display:block;opacity:.3}table.dataTable>thead .sorting:before,table.dataTable>thead .sorting_asc:before,table.dataTable>thead .sorting_desc:before,table.dataTable>thead .sorting_asc_disabled:before,table.dataTable>thead .sorting_desc_disabled:before{right:1em;content:"↑"}table.dataTable>thead .sorting:after,table.dataTable>thead .sorting_asc:after,table.dataTable>thead .sorting_desc:after,table.dataTable>thead .sorting_asc_disabled:after,table.dataTable>thead .sorting_desc_disabled:after{right:.5em;content:"↓"}table.dataTable>thead .sorting_asc:before,table.dataTable>thead .sorting_desc:after{opacity:1}table.dataTable>thead .sorting_asc_disabled:before,table.dataTable>thead .sorting_desc_disabled:after{opacity:0}div.dataTables_scrollHead table.dataTable{margin-bottom:0 !important}div.dataTables_scrollBody table{border-top:none;margin-top:0 !important;margin-bottom:0 !important}div.dataTables_scrollBody table thead .sorting:before,div.dataTables_scrollBody table thead .sorting_asc:before,div.dataTables_scrollBody table thead .sorting_desc:before,div.dataTables_scrollBody table thead .sorting:after,div.dataTables_scrollBody table thead .sorting_asc:after,div.dataTables_scrollBody table thead .sorting_desc:after{display:none}div.dataTables_scrollBody table tbody tr:first-child th,div.dataTables_scrollBody table tbody tr:first-child td{border-top:none}div.dataTables_scrollFoot>.dataTables_scrollFootInner{box-sizing:content-box}div.dataTables_scrollFoot>.dataTables_scrollFootInner>table{margin-top:0 !important;border-top:none}@media screen and (max-width: 767px){div.dataTables_wrapper div.dataTables_length,div.dataTables_wrapper div.dataTables_filter,div.dataTables_wrapper div.dataTables_info,div.dataTables_wrapper div.dataTables_paginate{text-align:center}div.dataTables_wrapper div.dataTables_paginate ul.pagination{justify-content:center !important}}table.dataTable.table-sm>thead>tr>th:not(.sorting_disabled){padding-right:20px}table.dataTable.table-sm .sorting:before,table.dataTable.table-sm .sorting_asc:before,table.dataTable.table-sm .sorting_desc:before{top:5px;right:.85em}table.dataTable.table-sm .sorting:after,table.dataTable.table-sm .sorting_asc:after,table.dataTable.table-sm .sorting_desc:after{top:5px}table.table-bordered.dataTable{border-right-width:0}table.table-bordered.dataTable th,table.table-bordered.dataTable td{border-left-width:0}table.table-bordered.dataTable th:last-child,table.table-bordered.dataTable th:last-child,table.table-bordered.dataTable td:last-child,table.table-bordered.dataTable td:last-child{border-right-width:1px}table.table-bordered.dataTable tbody th,table.table-bordered.dataTable tbody td{border-bottom-width:0}div.dataTables_scrollHead table.table-bordered{border-bottom-width:0}div.table-responsive>div.dataTables_wrapper>div.row{margin:0}div.table-responsive>div.dataTables_wrapper>div.row>div[class^=col-]:first-child{padding-left:0}div.table-responsive>div.dataTables_wrapper>div.row>div[class^=col-]:last-child{padding-right:0} 2 | -------------------------------------------------------------------------------- /css/font-awesome.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont3e6e.eot?v=4.7.0');src:url('../fonts/fontawesome-webfontd41d.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont3e6e.woff2?v=4.7.0') format('woff2'),url('../fonts/fontawesome-webfont3e6e.woff?v=4.7.0') format('woff'),url('../fonts/fontawesome-webfont3e6e.ttf?v=4.7.0') format('truetype'),url('../fonts/fontawesome-webfont3e6e.svg?v=4.7.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto} 5 | -------------------------------------------------------------------------------- /css/fonts/bootstrap-iconse36a.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/neumorphism_app_ui-asset-part02/f21c3b2dfea429ee7d29396a770e0d9adb27939a/css/fonts/bootstrap-iconse36a.woff -------------------------------------------------------------------------------- /css/fonts/bootstrap-iconse36a.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/neumorphism_app_ui-asset-part02/f21c3b2dfea429ee7d29396a770e0d9adb27939a/css/fonts/bootstrap-iconse36a.woff2 -------------------------------------------------------------------------------- /css/ion.rangeSlider.min.css: -------------------------------------------------------------------------------- 1 | /*!Ion.RangeSlider, 2.3.1, © Denis Ineshin, 2010 - 2019, IonDen.com, Build date: 2019-12-19 16:51:02*/.irs{position:relative;display:block;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;font-size:12px;font-family:Arial,sans-serif}.irs-line{position:relative;display:block;overflow:hidden;outline:none !important}.irs-bar{position:absolute;display:block;left:0;width:0}.irs-shadow{position:absolute;display:none;left:0;width:0}.irs-handle{position:absolute;display:block;box-sizing:border-box;cursor:default;z-index:1}.irs-handle.type_last{z-index:2}.irs-min,.irs-max{position:absolute;display:block;cursor:default}.irs-min{left:0}.irs-max{right:0}.irs-from,.irs-to,.irs-single{position:absolute;display:block;top:0;left:0;cursor:default;white-space:nowrap}.irs-grid{position:absolute;display:none;bottom:0;left:0;width:100%;height:20px}.irs-with-grid .irs-grid{display:block}.irs-grid-pol{position:absolute;top:0;left:0;width:1px;height:8px;background:#000}.irs-grid-pol.small{height:4px}.irs-grid-text{position:absolute;bottom:0;left:0;white-space:nowrap;text-align:center;font-size:9px;line-height:9px;padding:0 3px;color:#000}.irs-disable-mask{position:absolute;display:block;top:0;left:-1%;width:102%;height:100%;cursor:default;background:rgba(0,0,0,0);z-index:2}.lt-ie9 .irs-disable-mask{background:#000;filter:alpha(opacity=0);cursor:not-allowed}.irs-disabled{opacity:.4}.irs-hidden-input{position:absolute !important;display:block !important;top:0 !important;left:0 !important;width:0 !important;height:0 !important;font-size:0 !important;line-height:0 !important;padding:0 !important;margin:0 !important;overflow:hidden;outline:none !important;z-index:-9999 !important;background:none !important;border-style:solid !important;border-color:transparent !important}.irs--flat{height:40px}.irs--flat.irs-with-grid{height:60px}.irs--flat .irs-line{top:25px;height:12px;background-color:#e1e4e9;border-radius:4px}.irs--flat .irs-bar{top:25px;height:12px;background-color:#ed5565}.irs--flat .irs-bar--single{border-radius:4px 0 0 4px}.irs--flat .irs-shadow{height:1px;bottom:16px;background-color:#e1e4e9}.irs--flat .irs-handle{top:22px;width:16px;height:18px;background-color:transparent}.irs--flat .irs-handle>i:first-child{position:absolute;display:block;top:0;left:50%;width:2px;height:100%;margin-left:-1px;background-color:#da4453}.irs--flat .irs-handle.state_hover>i:first-child,.irs--flat .irs-handle:hover>i:first-child{background-color:#a43540}.irs--flat .irs-min,.irs--flat .irs-max{top:0;padding:1px 3px;color:#999;font-size:10px;line-height:1.333;text-shadow:none;background-color:#e1e4e9;border-radius:4px}.irs--flat .irs-from,.irs--flat .irs-to,.irs--flat .irs-single{color:white;font-size:10px;line-height:1.333;text-shadow:none;padding:1px 5px;background-color:#ed5565;border-radius:4px}.irs--flat .irs-from:before,.irs--flat .irs-to:before,.irs--flat .irs-single:before{position:absolute;display:block;content:"";bottom:-6px;left:50%;width:0;height:0;margin-left:-3px;overflow:hidden;border:3px solid transparent;border-top-color:#ed5565}.irs--flat .irs-grid-pol{background-color:#e1e4e9}.irs--flat .irs-grid-text{color:#999}.irs--big{height:55px}.irs--big.irs-with-grid{height:70px}.irs--big .irs-line{top:33px;height:12px;background-color:white;background:linear-gradient(to bottom, #ddd -50%, white 150%);border:1px solid #ccc;border-radius:12px}.irs--big .irs-bar{top:33px;height:12px;background-color:#92bce0;border:1px solid #428bca;background:linear-gradient(to bottom, #ffffff 0%, #428bca 30%, #b9d4ec 100%);box-shadow:inset 0 0 1px 1px rgba(255,255,255,0.5)}.irs--big .irs-bar--single{border-radius:12px 0 0 12px}.irs--big .irs-shadow{height:1px;bottom:16px;background-color:rgba(66,139,202,0.5)}.irs--big .irs-handle{top:25px;width:30px;height:30px;border:1px solid rgba(0,0,0,0.3);background-color:#cbcfd5;background:linear-gradient(to bottom, white 0%, #B4B9BE 30%, white 100%);box-shadow:1px 1px 2px rgba(0,0,0,0.2),inset 0 0 3px 1px white;border-radius:30px}.irs--big .irs-handle.state_hover,.irs--big .irs-handle:hover{border-color:rgba(0,0,0,0.45);background-color:#939ba7;background:linear-gradient(to bottom, white 0%, #919BA5 30%, white 100%)}.irs--big .irs-min,.irs--big .irs-max{top:0;padding:1px 5px;color:white;text-shadow:none;background-color:#9f9f9f;border-radius:3px}.irs--big .irs-from,.irs--big .irs-to,.irs--big .irs-single{color:white;text-shadow:none;padding:1px 5px;background-color:#428bca;background:linear-gradient(to bottom, #428bca 0%, #3071a9 100%);border-radius:3px}.irs--big .irs-grid-pol{background-color:#428bca}.irs--big .irs-grid-text{color:#428bca}.irs--modern{height:55px}.irs--modern.irs-with-grid{height:55px}.irs--modern .irs-line{top:25px;height:5px;background-color:#d1d6e0;background:linear-gradient(to bottom, #e0e4ea 0%, #d1d6e0 100%);border:1px solid #a3adc1;border-bottom-width:0;border-radius:5px}.irs--modern .irs-bar{top:25px;height:5px;background:#20b426;background:linear-gradient(to bottom, #20b426 0%, #18891d 100%)}.irs--modern .irs-bar--single{border-radius:5px 0 0 5px}.irs--modern .irs-shadow{height:1px;bottom:21px;background-color:rgba(209,214,224,0.5)}.irs--modern .irs-handle{top:37px;width:12px;height:13px;border:1px solid #a3adc1;border-top-width:0;box-shadow:1px 1px 1px rgba(0,0,0,0.1);border-radius:0 0 3px 3px}.irs--modern .irs-handle>i:nth-child(1){position:absolute;display:block;top:-4px;left:1px;width:6px;height:6px;border:1px solid #a3adc1;background:white;transform:rotate(45deg)}.irs--modern .irs-handle>i:nth-child(2){position:absolute;display:block;box-sizing:border-box;top:0;left:0;width:10px;height:12px;background:#e9e6e6;background:linear-gradient(to bottom, white 0%, #e9e6e6 100%);border-radius:0 0 3px 3px}.irs--modern .irs-handle>i:nth-child(3){position:absolute;display:block;box-sizing:border-box;top:3px;left:3px;width:4px;height:5px;border-left:1px solid #a3adc1;border-right:1px solid #a3adc1}.irs--modern .irs-handle.state_hover,.irs--modern .irs-handle:hover{border-color:#7685a2;background:#c3c7cd;background:linear-gradient(to bottom, #ffffff 0%, #919ba5 30%, #ffffff 100%)}.irs--modern .irs-handle.state_hover>i:nth-child(1),.irs--modern .irs-handle:hover>i:nth-child(1){border-color:#7685a2}.irs--modern .irs-handle.state_hover>i:nth-child(3),.irs--modern .irs-handle:hover>i:nth-child(3){border-color:#48536a}.irs--modern .irs-min,.irs--modern .irs-max{top:0;font-size:10px;line-height:1.333;text-shadow:none;padding:1px 5px;color:white;background-color:#d1d6e0;border-radius:5px}.irs--modern .irs-from,.irs--modern .irs-to,.irs--modern .irs-single{font-size:10px;line-height:1.333;text-shadow:none;padding:1px 5px;background-color:#20b426;color:white;border-radius:5px}.irs--modern .irs-from:before,.irs--modern .irs-to:before,.irs--modern .irs-single:before{position:absolute;display:block;content:"";bottom:-6px;left:50%;width:0;height:0;margin-left:-3px;overflow:hidden;border:3px solid transparent;border-top-color:#20b426}.irs--modern .irs-grid{height:25px}.irs--modern .irs-grid-pol{background-color:#dedede}.irs--modern .irs-grid-text{color:silver;font-size:13px}.irs--sharp{height:50px;font-size:12px;line-height:1}.irs--sharp.irs-with-grid{height:57px}.irs--sharp .irs-line{top:30px;height:2px;background-color:black;border-radius:2px}.irs--sharp .irs-bar{top:30px;height:2px;background-color:#ee22fa}.irs--sharp .irs-bar--single{border-radius:2px 0 0 2px}.irs--sharp .irs-shadow{height:1px;bottom:21px;background-color:rgba(0,0,0,0.5)}.irs--sharp .irs-handle{top:25px;width:10px;height:10px;background-color:#a804b2}.irs--sharp .irs-handle>i:first-child{position:absolute;display:block;top:100%;left:0;width:0;height:0;border:5px solid transparent;border-top-color:#a804b2}.irs--sharp .irs-handle.state_hover,.irs--sharp .irs-handle:hover{background-color:black}.irs--sharp .irs-handle.state_hover>i:first-child,.irs--sharp .irs-handle:hover>i:first-child{border-top-color:black}.irs--sharp .irs-min,.irs--sharp .irs-max{color:white;font-size:14px;line-height:1;top:0;padding:3px 4px;opacity:.4;background-color:#a804b2;border-radius:2px}.irs--sharp .irs-from,.irs--sharp .irs-to,.irs--sharp .irs-single{font-size:14px;line-height:1;text-shadow:none;padding:3px 4px;background-color:#a804b2;color:white;border-radius:2px}.irs--sharp .irs-from:before,.irs--sharp .irs-to:before,.irs--sharp .irs-single:before{position:absolute;display:block;content:"";bottom:-6px;left:50%;width:0;height:0;margin-left:-3px;overflow:hidden;border:3px solid transparent;border-top-color:#a804b2}.irs--sharp .irs-grid{height:25px}.irs--sharp .irs-grid-pol{background-color:#dedede}.irs--sharp .irs-grid-text{color:silver;font-size:13px}.irs--round{height:50px}.irs--round.irs-with-grid{height:65px}.irs--round .irs-line{top:36px;height:4px;background-color:#dee4ec;border-radius:4px}.irs--round .irs-bar{top:36px;height:4px;background-color:#006cfa}.irs--round .irs-bar--single{border-radius:4px 0 0 4px}.irs--round .irs-shadow{height:4px;bottom:21px;background-color:rgba(222,228,236,0.5)}.irs--round .irs-handle{top:26px;width:24px;height:24px;border:4px solid #006cfa;background-color:white;border-radius:24px;box-shadow:0 1px 3px rgba(0,0,255,0.3)}.irs--round .irs-handle.state_hover,.irs--round .irs-handle:hover{background-color:#f0f6ff}.irs--round .irs-min,.irs--round .irs-max{color:#333;font-size:14px;line-height:1;top:0;padding:3px 5px;background-color:rgba(0,0,0,0.1);border-radius:4px}.irs--round .irs-from,.irs--round .irs-to,.irs--round .irs-single{font-size:14px;line-height:1;text-shadow:none;padding:3px 5px;background-color:#006cfa;color:white;border-radius:4px}.irs--round .irs-from:before,.irs--round .irs-to:before,.irs--round .irs-single:before{position:absolute;display:block;content:"";bottom:-6px;left:50%;width:0;height:0;margin-left:-3px;overflow:hidden;border:3px solid transparent;border-top-color:#006cfa}.irs--round .irs-grid{height:25px}.irs--round .irs-grid-pol{background-color:#dedede}.irs--round .irs-grid-text{color:silver;font-size:13px}.irs--square{height:50px}.irs--square.irs-with-grid{height:60px}.irs--square .irs-line{top:31px;height:4px;background-color:#dedede}.irs--square .irs-bar{top:31px;height:4px;background-color:black}.irs--square .irs-shadow{height:2px;bottom:21px;background-color:#dedede}.irs--square .irs-handle{top:25px;width:16px;height:16px;border:3px solid black;background-color:white;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.irs--square .irs-handle.state_hover,.irs--square .irs-handle:hover{background-color:#f0f6ff}.irs--square .irs-min,.irs--square .irs-max{color:#333;font-size:14px;line-height:1;top:0;padding:3px 5px;background-color:rgba(0,0,0,0.1)}.irs--square .irs-from,.irs--square .irs-to,.irs--square .irs-single{font-size:14px;line-height:1;text-shadow:none;padding:3px 5px;background-color:black;color:white}.irs--square .irs-grid{height:25px}.irs--square .irs-grid-pol{background-color:#dedede}.irs--square .irs-grid-text{color:silver;font-size:11px} -------------------------------------------------------------------------------- /css/magnific-popup.css: -------------------------------------------------------------------------------- 1 | /* Magnific Popup CSS */ 2 | .mfp-bg { 3 | top: 0; 4 | left: 0; 5 | width: 100%; 6 | height: 100%; 7 | z-index: 1042; 8 | overflow: hidden; 9 | position: fixed; 10 | background: #0b0b0b; 11 | opacity: 0.8; } 12 | 13 | .mfp-wrap { 14 | top: 0; 15 | left: 0; 16 | width: 100%; 17 | height: 100%; 18 | z-index: 1043; 19 | position: fixed; 20 | outline: none !important; 21 | -webkit-backface-visibility: hidden; } 22 | 23 | .mfp-container { 24 | text-align: center; 25 | position: absolute; 26 | width: 100%; 27 | height: 100%; 28 | left: 0; 29 | top: 0; 30 | padding: 0 8px; 31 | box-sizing: border-box; } 32 | 33 | .mfp-container:before { 34 | content: ''; 35 | display: inline-block; 36 | height: 100%; 37 | vertical-align: middle; } 38 | 39 | .mfp-align-top .mfp-container:before { 40 | display: none; } 41 | 42 | .mfp-content { 43 | position: relative; 44 | display: inline-block; 45 | vertical-align: middle; 46 | margin: 0 auto; 47 | text-align: left; 48 | z-index: 1045; } 49 | 50 | .mfp-inline-holder .mfp-content, 51 | .mfp-ajax-holder .mfp-content { 52 | width: 100%; 53 | cursor: auto; } 54 | 55 | .mfp-ajax-cur { 56 | cursor: progress; } 57 | 58 | .mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close { 59 | cursor: -moz-zoom-out; 60 | cursor: -webkit-zoom-out; 61 | cursor: zoom-out; } 62 | 63 | .mfp-zoom { 64 | cursor: pointer; 65 | cursor: -webkit-zoom-in; 66 | cursor: -moz-zoom-in; 67 | cursor: zoom-in; } 68 | 69 | .mfp-auto-cursor .mfp-content { 70 | cursor: auto; } 71 | 72 | .mfp-close, 73 | .mfp-arrow, 74 | .mfp-preloader, 75 | .mfp-counter { 76 | -webkit-user-select: none; 77 | -moz-user-select: none; 78 | user-select: none; } 79 | 80 | .mfp-loading.mfp-figure { 81 | display: none; } 82 | 83 | .mfp-hide { 84 | display: none !important; } 85 | 86 | .mfp-preloader { 87 | color: #CCC; 88 | position: absolute; 89 | top: 50%; 90 | width: auto; 91 | text-align: center; 92 | margin-top: -0.8em; 93 | left: 8px; 94 | right: 8px; 95 | z-index: 1044; } 96 | .mfp-preloader a { 97 | color: #CCC; } 98 | .mfp-preloader a:hover { 99 | color: #FFF; } 100 | 101 | .mfp-s-ready .mfp-preloader { 102 | display: none; } 103 | 104 | .mfp-s-error .mfp-content { 105 | display: none; } 106 | 107 | button.mfp-close, 108 | button.mfp-arrow { 109 | overflow: visible; 110 | cursor: pointer; 111 | background: transparent; 112 | border: 0; 113 | -webkit-appearance: none; 114 | display: block; 115 | outline: none; 116 | padding: 0; 117 | z-index: 1046; 118 | box-shadow: none; 119 | touch-action: manipulation; } 120 | 121 | button::-moz-focus-inner { 122 | padding: 0; 123 | border: 0; } 124 | 125 | .mfp-close { 126 | width: 44px; 127 | height: 44px; 128 | line-height: 44px; 129 | position: absolute; 130 | right: 0; 131 | top: 0; 132 | text-decoration: none; 133 | text-align: center; 134 | opacity: 0.65; 135 | padding: 0 0 18px 10px; 136 | color: #FFF; 137 | font-style: normal; 138 | font-size: 28px; 139 | font-family: Arial, Baskerville, monospace; } 140 | .mfp-close:hover, 141 | .mfp-close:focus { 142 | opacity: 1; } 143 | .mfp-close:active { 144 | top: 1px; } 145 | 146 | .mfp-close-btn-in .mfp-close { 147 | color: #333; } 148 | 149 | .mfp-image-holder .mfp-close, 150 | .mfp-iframe-holder .mfp-close { 151 | color: #FFF; 152 | right: -6px; 153 | text-align: right; 154 | padding-right: 6px; 155 | width: 100%; } 156 | 157 | .mfp-counter { 158 | position: absolute; 159 | top: 0; 160 | right: 0; 161 | color: #CCC; 162 | font-size: 12px; 163 | line-height: 18px; 164 | white-space: nowrap; } 165 | 166 | .mfp-arrow { 167 | position: absolute; 168 | opacity: 0.65; 169 | margin: 0; 170 | top: 50%; 171 | margin-top: -55px; 172 | padding: 0; 173 | width: 90px; 174 | height: 110px; 175 | -webkit-tap-highlight-color: transparent; } 176 | .mfp-arrow:active { 177 | margin-top: -54px; } 178 | .mfp-arrow:hover, 179 | .mfp-arrow:focus { 180 | opacity: 1; } 181 | .mfp-arrow:before, 182 | .mfp-arrow:after { 183 | content: ''; 184 | display: block; 185 | width: 0; 186 | height: 0; 187 | position: absolute; 188 | left: 0; 189 | top: 0; 190 | margin-top: 35px; 191 | margin-left: 35px; 192 | border: medium inset transparent; } 193 | .mfp-arrow:after { 194 | border-top-width: 13px; 195 | border-bottom-width: 13px; 196 | top: 8px; } 197 | .mfp-arrow:before { 198 | border-top-width: 21px; 199 | border-bottom-width: 21px; 200 | opacity: 0.7; } 201 | 202 | .mfp-arrow-left { 203 | left: 0; } 204 | .mfp-arrow-left:after { 205 | border-right: 17px solid #FFF; 206 | margin-left: 31px; } 207 | .mfp-arrow-left:before { 208 | margin-left: 25px; 209 | border-right: 27px solid #3F3F3F; } 210 | 211 | .mfp-arrow-right { 212 | right: 0; } 213 | .mfp-arrow-right:after { 214 | border-left: 17px solid #FFF; 215 | margin-left: 39px; } 216 | .mfp-arrow-right:before { 217 | border-left: 27px solid #3F3F3F; } 218 | 219 | .mfp-iframe-holder { 220 | padding-top: 40px; 221 | padding-bottom: 40px; } 222 | .mfp-iframe-holder .mfp-content { 223 | line-height: 0; 224 | width: 100%; 225 | max-width: 900px; } 226 | .mfp-iframe-holder .mfp-close { 227 | top: -40px; } 228 | 229 | .mfp-iframe-scaler { 230 | width: 100%; 231 | height: 0; 232 | overflow: hidden; 233 | padding-top: 56.25%; } 234 | .mfp-iframe-scaler iframe { 235 | position: absolute; 236 | display: block; 237 | top: 0; 238 | left: 0; 239 | width: 100%; 240 | height: 100%; 241 | box-shadow: 0 0 8px rgba(0, 0, 0, 0.6); 242 | background: #000; } 243 | 244 | /* Main image in popup */ 245 | img.mfp-img { 246 | width: auto; 247 | max-width: 100%; 248 | height: auto; 249 | display: block; 250 | line-height: 0; 251 | box-sizing: border-box; 252 | padding: 40px 0 40px; 253 | margin: 0 auto; } 254 | 255 | /* The shadow behind the image */ 256 | .mfp-figure { 257 | line-height: 0; } 258 | .mfp-figure:after { 259 | content: ''; 260 | position: absolute; 261 | left: 0; 262 | top: 40px; 263 | bottom: 40px; 264 | display: block; 265 | right: 0; 266 | width: auto; 267 | height: auto; 268 | z-index: -1; 269 | box-shadow: 0 0 8px rgba(0, 0, 0, 0.6); 270 | background: #444; } 271 | .mfp-figure small { 272 | color: #BDBDBD; 273 | display: block; 274 | font-size: 12px; 275 | line-height: 14px; } 276 | .mfp-figure figure { 277 | margin: 0; } 278 | 279 | .mfp-bottom-bar { 280 | margin-top: -36px; 281 | position: absolute; 282 | top: 100%; 283 | left: 0; 284 | width: 100%; 285 | cursor: auto; } 286 | 287 | .mfp-title { 288 | text-align: left; 289 | line-height: 18px; 290 | color: #F3F3F3; 291 | word-wrap: break-word; 292 | padding-right: 36px; } 293 | 294 | .mfp-image-holder .mfp-content { 295 | max-width: 100%; } 296 | 297 | .mfp-gallery .mfp-image-holder .mfp-figure { 298 | cursor: pointer; } 299 | 300 | @media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) { 301 | /** 302 | * Remove all paddings around the image on small screen 303 | */ 304 | .mfp-img-mobile .mfp-image-holder { 305 | padding-left: 0; 306 | padding-right: 0; } 307 | .mfp-img-mobile img.mfp-img { 308 | padding: 0; } 309 | .mfp-img-mobile .mfp-figure:after { 310 | top: 0; 311 | bottom: 0; } 312 | .mfp-img-mobile .mfp-figure small { 313 | display: inline; 314 | margin-left: 5px; } 315 | .mfp-img-mobile .mfp-bottom-bar { 316 | background: rgba(0, 0, 0, 0.6); 317 | bottom: 0; 318 | margin: 0; 319 | top: auto; 320 | padding: 3px 5px; 321 | position: fixed; 322 | box-sizing: border-box; } 323 | .mfp-img-mobile .mfp-bottom-bar:empty { 324 | padding: 0; } 325 | .mfp-img-mobile .mfp-counter { 326 | right: 5px; 327 | top: 3px; } 328 | .mfp-img-mobile .mfp-close { 329 | top: 0; 330 | right: 0; 331 | width: 35px; 332 | height: 35px; 333 | line-height: 35px; 334 | background: rgba(0, 0, 0, 0.6); 335 | position: fixed; 336 | text-align: center; 337 | padding: 0; } } 338 | 339 | @media all and (max-width: 900px) { 340 | .mfp-arrow { 341 | -webkit-transform: scale(0.75); 342 | transform: scale(0.75); } 343 | .mfp-arrow-left { 344 | -webkit-transform-origin: 0; 345 | transform-origin: 0; } 346 | .mfp-arrow-right { 347 | -webkit-transform-origin: 100%; 348 | transform-origin: 100%; } 349 | .mfp-container { 350 | padding-left: 6px; 351 | padding-right: 6px; } } 352 | -------------------------------------------------------------------------------- /css/owl.carousel.min.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Owl Carousel v2.2.1 3 | * Copyright 2013-2017 Saurabh Sharma 4 | * Licensed under () 5 | */ 6 | .owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;cursor:hand;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(owl.video.play.html) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%} -------------------------------------------------------------------------------- /fonts/fontawesome-webfont3e6e.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/neumorphism_app_ui-asset-part02/f21c3b2dfea429ee7d29396a770e0d9adb27939a/fonts/fontawesome-webfont3e6e.eot -------------------------------------------------------------------------------- /fonts/fontawesome-webfont3e6e.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/neumorphism_app_ui-asset-part02/f21c3b2dfea429ee7d29396a770e0d9adb27939a/fonts/fontawesome-webfont3e6e.ttf -------------------------------------------------------------------------------- /fonts/fontawesome-webfont3e6e.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/neumorphism_app_ui-asset-part02/f21c3b2dfea429ee7d29396a770e0d9adb27939a/fonts/fontawesome-webfont3e6e.woff -------------------------------------------------------------------------------- /fonts/fontawesome-webfont3e6e.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/neumorphism_app_ui-asset-part02/f21c3b2dfea429ee7d29396a770e0d9adb27939a/fonts/fontawesome-webfont3e6e.woff2 -------------------------------------------------------------------------------- /fonts/fontawesome-webfontd41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/neumorphism_app_ui-asset-part02/f21c3b2dfea429ee7d29396a770e0d9adb27939a/fonts/fontawesome-webfontd41d.eot -------------------------------------------------------------------------------- /help.txt: -------------------------------------------------------------------------------- 1 | Download NOW ! 2 | IF you do not Download this file , 3 | file can not opening oke 4 | so please Download now: 5 | 6 | 01. 7 | https://github.com/animationbro/neumorphism_app_ui-.git 8 | 9 | 02. 10 | https://github.com/animationbro/neumorphism_app_ui-asset-part02.git -------------------------------------------------------------------------------- /img/bg-img/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/neumorphism_app_ui-asset-part02/f21c3b2dfea429ee7d29396a770e0d9adb27939a/img/bg-img/19.png -------------------------------------------------------------------------------- /img/bg-img/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/neumorphism_app_ui-asset-part02/f21c3b2dfea429ee7d29396a770e0d9adb27939a/img/bg-img/2.jpg -------------------------------------------------------------------------------- /img/bg-img/20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/neumorphism_app_ui-asset-part02/f21c3b2dfea429ee7d29396a770e0d9adb27939a/img/bg-img/20.jpg -------------------------------------------------------------------------------- /img/bg-img/21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/neumorphism_app_ui-asset-part02/f21c3b2dfea429ee7d29396a770e0d9adb27939a/img/bg-img/21.jpg -------------------------------------------------------------------------------- /img/bg-img/22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/neumorphism_app_ui-asset-part02/f21c3b2dfea429ee7d29396a770e0d9adb27939a/img/bg-img/22.jpg -------------------------------------------------------------------------------- /img/bg-img/23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/neumorphism_app_ui-asset-part02/f21c3b2dfea429ee7d29396a770e0d9adb27939a/img/bg-img/23.jpg -------------------------------------------------------------------------------- /img/bg-img/24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/neumorphism_app_ui-asset-part02/f21c3b2dfea429ee7d29396a770e0d9adb27939a/img/bg-img/24.jpg -------------------------------------------------------------------------------- /img/bg-img/25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/neumorphism_app_ui-asset-part02/f21c3b2dfea429ee7d29396a770e0d9adb27939a/img/bg-img/25.jpg -------------------------------------------------------------------------------- /img/bg-img/26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/neumorphism_app_ui-asset-part02/f21c3b2dfea429ee7d29396a770e0d9adb27939a/img/bg-img/26.jpg -------------------------------------------------------------------------------- /img/bg-img/27.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/neumorphism_app_ui-asset-part02/f21c3b2dfea429ee7d29396a770e0d9adb27939a/img/bg-img/27.jpg -------------------------------------------------------------------------------- /img/bg-img/28.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/neumorphism_app_ui-asset-part02/f21c3b2dfea429ee7d29396a770e0d9adb27939a/img/bg-img/28.jpg -------------------------------------------------------------------------------- /img/bg-img/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/neumorphism_app_ui-asset-part02/f21c3b2dfea429ee7d29396a770e0d9adb27939a/img/bg-img/29.png -------------------------------------------------------------------------------- /img/bg-img/30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/neumorphism_app_ui-asset-part02/f21c3b2dfea429ee7d29396a770e0d9adb27939a/img/bg-img/30.jpg -------------------------------------------------------------------------------- /img/bg-img/31.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/neumorphism_app_ui-asset-part02/f21c3b2dfea429ee7d29396a770e0d9adb27939a/img/bg-img/31.jpg -------------------------------------------------------------------------------- /img/bg-img/32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/neumorphism_app_ui-asset-part02/f21c3b2dfea429ee7d29396a770e0d9adb27939a/img/bg-img/32.jpg -------------------------------------------------------------------------------- /img/bg-img/33.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/neumorphism_app_ui-asset-part02/f21c3b2dfea429ee7d29396a770e0d9adb27939a/img/bg-img/33.jpg -------------------------------------------------------------------------------- /img/bg-img/35.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/neumorphism_app_ui-asset-part02/f21c3b2dfea429ee7d29396a770e0d9adb27939a/img/bg-img/35.jpg -------------------------------------------------------------------------------- /img/bg-img/36.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/neumorphism_app_ui-asset-part02/f21c3b2dfea429ee7d29396a770e0d9adb27939a/img/bg-img/36.jpg -------------------------------------------------------------------------------- /img/bg-img/36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/neumorphism_app_ui-asset-part02/f21c3b2dfea429ee7d29396a770e0d9adb27939a/img/bg-img/36.png -------------------------------------------------------------------------------- /img/bg-img/37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/neumorphism_app_ui-asset-part02/f21c3b2dfea429ee7d29396a770e0d9adb27939a/img/bg-img/37.png -------------------------------------------------------------------------------- /img/bg-img/38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/neumorphism_app_ui-asset-part02/f21c3b2dfea429ee7d29396a770e0d9adb27939a/img/bg-img/38.png -------------------------------------------------------------------------------- /img/bg-img/39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/neumorphism_app_ui-asset-part02/f21c3b2dfea429ee7d29396a770e0d9adb27939a/img/bg-img/39.png -------------------------------------------------------------------------------- /img/bg-img/p2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/neumorphism_app_ui-asset-part02/f21c3b2dfea429ee7d29396a770e0d9adb27939a/img/bg-img/p2.jpg -------------------------------------------------------------------------------- /img/bg-img/user1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/neumorphism_app_ui-asset-part02/f21c3b2dfea429ee7d29396a770e0d9adb27939a/img/bg-img/user1.png -------------------------------------------------------------------------------- /img/bg-img/user2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/neumorphism_app_ui-asset-part02/f21c3b2dfea429ee7d29396a770e0d9adb27939a/img/bg-img/user2.png -------------------------------------------------------------------------------- /img/bg-img/user3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/neumorphism_app_ui-asset-part02/f21c3b2dfea429ee7d29396a770e0d9adb27939a/img/bg-img/user3.png -------------------------------------------------------------------------------- /img/bg-img/user4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/neumorphism_app_ui-asset-part02/f21c3b2dfea429ee7d29396a770e0d9adb27939a/img/bg-img/user4.png -------------------------------------------------------------------------------- /img/demo-img/bootstrap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/neumorphism_app_ui-asset-part02/f21c3b2dfea429ee7d29396a770e0d9adb27939a/img/demo-img/bootstrap.png -------------------------------------------------------------------------------- /img/demo-img/css3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/neumorphism_app_ui-asset-part02/f21c3b2dfea429ee7d29396a770e0d9adb27939a/img/demo-img/css3.png -------------------------------------------------------------------------------- /img/demo-img/dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/neumorphism_app_ui-asset-part02/f21c3b2dfea429ee7d29396a770e0d9adb27939a/img/demo-img/dark.png -------------------------------------------------------------------------------- /img/demo-img/gulp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/neumorphism_app_ui-asset-part02/f21c3b2dfea429ee7d29396a770e0d9adb27939a/img/demo-img/gulp.png -------------------------------------------------------------------------------- /img/demo-img/html5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/neumorphism_app_ui-asset-part02/f21c3b2dfea429ee7d29396a770e0d9adb27939a/img/demo-img/html5.png -------------------------------------------------------------------------------- /img/demo-img/jquery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/neumorphism_app_ui-asset-part02/f21c3b2dfea429ee7d29396a770e0d9adb27939a/img/demo-img/jquery.png -------------------------------------------------------------------------------- /img/demo-img/npm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/neumorphism_app_ui-asset-part02/f21c3b2dfea429ee7d29396a770e0d9adb27939a/img/demo-img/npm.png -------------------------------------------------------------------------------- /img/demo-img/pug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/neumorphism_app_ui-asset-part02/f21c3b2dfea429ee7d29396a770e0d9adb27939a/img/demo-img/pug.png -------------------------------------------------------------------------------- /img/demo-img/pwa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/neumorphism_app_ui-asset-part02/f21c3b2dfea429ee7d29396a770e0d9adb27939a/img/demo-img/pwa.png -------------------------------------------------------------------------------- /img/demo-img/sass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/neumorphism_app_ui-asset-part02/f21c3b2dfea429ee7d29396a770e0d9adb27939a/img/demo-img/sass.png -------------------------------------------------------------------------------- /img/icons/ACoding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/neumorphism_app_ui-asset-part02/f21c3b2dfea429ee7d29396a770e0d9adb27939a/img/icons/ACoding.png -------------------------------------------------------------------------------- /img/partner-img/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/neumorphism_app_ui-asset-part02/f21c3b2dfea429ee7d29396a770e0d9adb27939a/img/partner-img/1.png -------------------------------------------------------------------------------- /img/partner-img/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/neumorphism_app_ui-asset-part02/f21c3b2dfea429ee7d29396a770e0d9adb27939a/img/partner-img/2.png -------------------------------------------------------------------------------- /img/partner-img/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/neumorphism_app_ui-asset-part02/f21c3b2dfea429ee7d29396a770e0d9adb27939a/img/partner-img/3.png -------------------------------------------------------------------------------- /img/partner-img/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/neumorphism_app_ui-asset-part02/f21c3b2dfea429ee7d29396a770e0d9adb27939a/img/partner-img/4.png -------------------------------------------------------------------------------- /img/partner-img/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/neumorphism_app_ui-asset-part02/f21c3b2dfea429ee7d29396a770e0d9adb27939a/img/partner-img/5.png -------------------------------------------------------------------------------- /img/partner-img/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/neumorphism_app_ui-asset-part02/f21c3b2dfea429ee7d29396a770e0d9adb27939a/img/partner-img/6.png -------------------------------------------------------------------------------- /js/default/active.js: -------------------------------------------------------------------------------- 1 | var _0xf35c=["\x75\x73\x65\x20\x73\x74\x72\x69\x63\x74","\x6C\x6F\x61\x64","\x31\x30\x30\x30","\x72\x65\x6D\x6F\x76\x65","\x66\x61\x64\x65\x4F\x75\x74","\x23\x70\x72\x65\x6C\x6F\x61\x64\x65\x72","\x6F\x6E","\x23\x73\x69\x64\x65\x6E\x61\x76\x57\x72\x61\x70\x70\x65\x72","\x2E\x73\x69\x64\x65\x6E\x61\x76\x2D\x62\x6C\x61\x63\x6B\x2D\x6F\x76\x65\x72\x6C\x61\x79","\x63\x6C\x69\x63\x6B","\x6E\x61\x76\x2D\x61\x63\x74\x69\x76\x65","\x61\x64\x64\x43\x6C\x61\x73\x73","\x61\x63\x74\x69\x76\x65","\x23\x61\x66\x66\x61\x6E\x4E\x61\x76\x62\x61\x72\x54\x6F\x67\x67\x6C\x65\x72","\x72\x65\x6D\x6F\x76\x65\x43\x6C\x61\x73\x73","\x23\x67\x6F\x42\x61\x63\x6B","\x3C\x64\x69\x76\x20\x63\x6C\x61\x73\x73\x3D\x27\x64\x72\x6F\x70\x64\x6F\x77\x6E\x2D\x74\x72\x69\x67\x67\x65\x72\x2D\x62\x74\x6E\x27\x3E\x3C\x69\x20\x63\x6C\x61\x73\x73\x3D\x27\x66\x61\x20\x66\x61\x2D\x61\x6E\x67\x6C\x65\x2D\x72\x69\x67\x68\x74\x27\x3E\x3C\x2F\x69\x3E\x3C\x2F\x64\x69\x76\x3E","\x61\x70\x70\x65\x6E\x64","\x6C\x69\x2E\x61\x66\x66\x61\x6E\x2D\x64\x72\x6F\x70\x64\x6F\x77\x6E\x2D\x6D\x65\x6E\x75","\x66\x69\x6E\x64","\x2E\x73\x69\x64\x65\x6E\x61\x76\x2D\x6E\x61\x76","\x73\x6C\x69\x64\x65\x54\x6F\x67\x67\x6C\x65","\x73\x74\x6F\x70","\x75\x6C","\x73\x69\x62\x6C\x69\x6E\x67\x73","\x74\x6F\x67\x67\x6C\x65\x43\x6C\x61\x73\x73","\x2E\x64\x72\x6F\x70\x64\x6F\x77\x6E\x2D\x74\x72\x69\x67\x67\x65\x72\x2D\x62\x74\x6E","\x23\x73\x65\x74\x74\x69\x6E\x67\x43\x61\x72\x64","\x23\x73\x65\x74\x74\x69\x6E\x67\x2D\x70\x6F\x70\x75\x70\x2D\x6F\x76\x65\x72\x6C\x61\x79","\x23\x73\x65\x74\x74\x69\x6E\x67\x54\x72\x69\x67\x67\x65\x72\x42\x74\x6E","\x23\x73\x65\x74\x74\x69\x6E\x67\x43\x61\x72\x64\x43\x6C\x6F\x73\x65","\x2E\x63\x6F\x64\x65\x76\x69\x65\x77\x2D\x77\x72\x61\x70\x70\x65\x72","\x2E\x63\x6F\x64\x65\x76\x69\x65\x77\x2D\x63\x6C\x69\x70\x62\x6F\x61\x72\x64\x2D\x62\x74\x6E","\x73\x63\x72\x65\x65\x6E\x2D\x61\x63\x74\x69\x76\x65","\x23\x76\x69\x64\x65\x6F\x43\x61\x6C\x6C\x69\x6E\x67\x50\x6F\x70\x75\x70","\x63\x61\x6C\x6C\x69\x6E\x67\x2D\x73\x63\x72\x65\x65\x6E\x2D\x61\x63\x74\x69\x76\x65","\x2E\x63\x68\x61\x74\x2D\x77\x72\x61\x70\x70\x65\x72","\x23\x76\x69\x64\x65\x6F\x43\x61\x6C\x6C\x69\x6E\x67\x42\x75\x74\x74\x6F\x6E","\x23\x76\x69\x64\x65\x6F\x43\x61\x6C\x6C\x44\x65\x63\x6C\x69\x6E\x65","\x23\x63\x61\x6C\x6C\x69\x6E\x67\x50\x6F\x70\x75\x70","\x23\x63\x61\x6C\x6C\x69\x6E\x67\x42\x75\x74\x74\x6F\x6E","\x23\x63\x61\x6C\x6C\x44\x65\x63\x6C\x69\x6E\x65","\x6F\x77\x6C\x43\x61\x72\x6F\x75\x73\x65\x6C","\x66\x6E","\x2E\x6F\x77\x6C\x2D\x63\x61\x72\x6F\x75\x73\x65\x6C\x2D\x6F\x6E\x65","\x3C\x69\x20\x63\x6C\x61\x73\x73\x3D\x22\x66\x61\x20\x66\x61\x2D\x61\x6E\x67\x6C\x65\x2D\x6C\x65\x66\x74\x22\x3E\x3C\x2F\x69\x3E","\x3C\x69\x20\x63\x6C\x61\x73\x73\x3D\x22\x66\x61\x20\x66\x61\x2D\x61\x6E\x67\x6C\x65\x2D\x72\x69\x67\x68\x74\x22\x3E\x3C\x2F\x69\x3E","\x74\x72\x61\x6E\x73\x6C\x61\x74\x65\x2E\x6F\x77\x6C\x2E\x63\x61\x72\x6F\x75\x73\x65\x6C","\x5B\x64\x61\x74\x61\x2D\x61\x6E\x69\x6D\x61\x74\x69\x6F\x6E\x5D","\x61\x6E\x69\x6D\x61\x74\x69\x6F\x6E","\x64\x61\x74\x61","\x6F\x70\x61\x63\x69\x74\x79","\x30","\x63\x73\x73","\x61\x6E\x69\x6D\x61\x74\x65\x64\x20","\x65\x61\x63\x68","\x64\x65\x6C\x61\x79","\x61\x6E\x69\x6D\x61\x74\x69\x6F\x6E\x2D\x64\x65\x6C\x61\x79","\x5B\x64\x61\x74\x61\x2D\x64\x65\x6C\x61\x79\x5D","\x64\x75\x72\x61\x74\x69\x6F\x6E","\x61\x6E\x69\x6D\x61\x74\x69\x6F\x6E\x2D\x64\x75\x72\x61\x74\x69\x6F\x6E","\x5B\x64\x61\x74\x61\x2D\x64\x75\x72\x61\x74\x69\x6F\x6E\x5D","\x74\x72\x61\x6E\x73\x6C\x61\x74\x65\x64\x2E\x6F\x77\x6C\x2E\x63\x61\x72\x6F\x75\x73\x65\x6C","\x2E\x6F\x77\x6C\x2D\x69\x74\x65\x6D\x2E\x61\x63\x74\x69\x76\x65","\x31","\x2E\x6F\x77\x6C\x2D\x63\x61\x72\x6F\x75\x73\x65\x6C\x2D\x74\x77\x6F","\x66\x61\x64\x65\x49\x6E","\x2E\x6F\x77\x6C\x2D\x63\x61\x72\x6F\x75\x73\x65\x6C\x2D\x74\x77\x6F\x20\x2E\x6F\x77\x6C\x2D\x64\x6F\x74","\x69\x6E\x64\x65\x78","\x68\x74\x6D\x6C","\x6C\x65\x6E\x67\x74\x68","\x63\x68\x69\x6C\x64\x72\x65\x6E","\x2E\x6F\x77\x6C\x2D\x63\x61\x72\x6F\x75\x73\x65\x6C\x2D\x74\x77\x6F\x20\x2E\x6F\x77\x6C\x2D\x64\x6F\x74\x73","\x23\x74\x6F\x74\x61\x6C\x6F\x77\x6C\x44\x6F\x74\x73\x43\x6F\x75\x6E\x74","\x2E\x6F\x77\x6C\x2D\x63\x61\x72\x6F\x75\x73\x65\x6C\x2D\x74\x68\x72\x65\x65","\x2E\x74\x65\x73\x74\x69\x6D\x6F\x6E\x69\x61\x6C\x2D\x73\x6C\x69\x64\x65","\x2E\x74\x65\x73\x74\x69\x6D\x6F\x6E\x69\x61\x6C\x2D\x73\x6C\x69\x64\x65\x32","\x2E\x70\x61\x72\x74\x6E\x65\x72\x2D\x73\x6C\x69\x64\x65","\x2E\x69\x6D\x61\x67\x65\x2D\x67\x61\x6C\x6C\x65\x72\x79\x2D\x63\x61\x72\x6F\x75\x73\x65\x6C","\x2E\x70\x72\x6F\x64\x75\x63\x74\x2D\x67\x61\x6C\x6C\x65\x72\x79","\x2E\x63\x68\x61\x74\x2D\x75\x73\x65\x72\x2D\x73\x74\x61\x74\x75\x73\x2D\x73\x6C\x69\x64\x65\x73","\x6D\x61\x67\x6E\x69\x66\x69\x63\x50\x6F\x70\x75\x70","\x69\x66\x72\x61\x6D\x65","\x23\x76\x69\x64\x65\x6F\x62\x74\x6E","\x69\x6D\x61\x67\x65","\x6D\x66\x70\x2D\x66\x61\x64\x65","\x6D\x61\x72\x6B\x75\x70","\x73\x74","\x6D\x66\x70\x2D\x66\x69\x67\x75\x72\x65","\x6D\x66\x70\x2D\x66\x69\x67\x75\x72\x65\x20\x6D\x66\x70\x2D\x77\x69\x74\x68\x2D\x61\x6E\x69\x6D","\x72\x65\x70\x6C\x61\x63\x65","\x6D\x61\x69\x6E\x43\x6C\x61\x73\x73","\x64\x61\x74\x61\x2D\x65\x66\x66\x65\x63\x74","\x61\x74\x74\x72","\x65\x6C","\x2E\x67\x61\x6C\x6C\x65\x72\x79\x2D\x69\x6D\x67","\x2E\x67\x61\x6C\x6C\x65\x72\x79\x2D\x69\x6D\x67\x32","\x69\x6D\x61\x67\x65\x73\x4C\x6F\x61\x64\x65\x64","\x62\x75\x74\x74\x6F\x6E","\x64\x61\x74\x61\x2D\x66\x69\x6C\x74\x65\x72","\x69\x73\x6F\x74\x6F\x70\x65","\x2E\x67\x61\x6C\x6C\x65\x72\x79\x2D\x6D\x65\x6E\x75","\x2E\x73\x69\x6E\x67\x6C\x65\x2D\x69\x6D\x61\x67\x65\x2D\x67\x61\x6C\x6C\x65\x72\x79","\x2E\x67\x61\x6C\x6C\x65\x72\x79\x2D\x77\x72\x61\x70\x70\x65\x72","\x2E\x67\x61\x6C\x6C\x65\x72\x79\x2D\x6D\x65\x6E\x75\x20\x62\x75\x74\x74\x6F\x6E","\x63\x6F\x75\x6E\x74\x64\x6F\x77\x6E","\x32\x30\x32\x31\x2F\x31\x30\x2F\x31\x30","\x3C\x73\x70\x61\x6E\x3E\x25\x44\x3C\x2F\x73\x70\x61\x6E\x3E\x20\x44\x61\x79\x73\x20","\x3C\x73\x70\x61\x6E\x3E\x25\x48\x3C\x2F\x73\x70\x61\x6E\x3E\x20\x48\x6F\x75\x72\x20","\x3C\x73\x70\x61\x6E\x3E\x25\x4D\x3C\x2F\x73\x70\x61\x6E\x3E\x20\x4D\x69\x6E\x20","\x3C\x73\x70\x61\x6E\x3E\x25\x53\x3C\x2F\x73\x70\x61\x6E\x3E\x20\x53\x65\x63","\x73\x74\x72\x66\x74\x69\x6D\x65","\x23\x73\x69\x6D\x70\x6C\x65\x43\x6F\x75\x6E\x74\x64\x6F\x77\x6E","\x32\x30\x32\x31\x2F\x31\x32\x2F\x39","\x3C\x73\x70\x61\x6E\x3E\x25\x44\x3C\x2F\x73\x70\x61\x6E\x3E\x20\x64","\x3C\x73\x70\x61\x6E\x3E\x25\x48\x3C\x2F\x73\x70\x61\x6E\x3E\x20\x68","\x3C\x73\x70\x61\x6E\x3E\x25\x4D\x3C\x2F\x73\x70\x61\x6E\x3E\x20\x6D","\x3C\x73\x70\x61\x6E\x3E\x25\x53\x3C\x2F\x73\x70\x61\x6E\x3E\x20\x73","\x23\x63\x6F\x75\x6E\x74\x64\x6F\x77\x6E\x32","\x32\x30\x32\x32\x2F\x31\x30\x2F\x31\x30","\x3C\x73\x70\x61\x6E\x3E\x25\x44\x3C\x2F\x73\x70\x61\x6E\x3E\x20\x64\x61\x79\x73\x20","\x3C\x73\x70\x61\x6E\x3E\x25\x48\x3C\x2F\x73\x70\x61\x6E\x3E\x20\x3A\x20","\x3C\x73\x70\x61\x6E\x3E\x25\x4D\x3C\x2F\x73\x70\x61\x6E\x3E\x20\x3A\x20","\x3C\x73\x70\x61\x6E\x3E\x25\x53\x3C\x2F\x73\x70\x61\x6E\x3E","\x23\x63\x6F\x75\x6E\x74\x64\x6F\x77\x6E\x33","\x63\x6F\x75\x6E\x74\x65\x72\x55\x70","\x2E\x63\x6F\x75\x6E\x74\x65\x72","\x70\x72\x65\x76\x65\x6E\x74\x44\x65\x66\x61\x75\x6C\x74","\x61\x5B\x68\x72\x65\x66\x3D\x22\x23\x22\x5D","\x70\x61\x73\x73\x77\x6F\x72\x64\x53\x74\x72\x65\x6E\x67\x74\x68","\x23\x72\x65\x67\x69\x73\x74\x65\x72\x50\x61\x73\x73\x77\x6F\x72\x64","\x66\x6F\x72\x6D\x2D\x63\x6F\x6E\x74\x72\x6F\x6C\x2D\x63\x6C\x69\x63\x6B\x65\x64","\x2E\x66\x6F\x72\x6D\x2D\x63\x6F\x6E\x74\x72\x6F\x6C\x2C\x20\x2E\x66\x6F\x72\x6D\x2D\x73\x65\x6C\x65\x63\x74","\x2E\x61\x63\x74\x69\x76\x65\x2D\x65\x66\x66\x65\x63\x74","\x2E\x73\x69\x6E\x67\x6C\x65\x2D\x69\x6D\x61\x67\x65\x2D\x67\x61\x6C\x6C\x65\x72\x79\x20\x2E\x66\x61\x76\x2D\x69\x63\x6F\x6E","\x69\x6F\x6E\x52\x61\x6E\x67\x65\x53\x6C\x69\x64\x65\x72","\x2E\x63\x75\x73\x74\x6F\x6D\x2D\x72\x61\x6E\x67\x65\x2D\x73\x6C\x69\x64\x65\x72","\x44\x61\x74\x61\x54\x61\x62\x6C\x65","\x23\x64\x61\x74\x61\x54\x61\x62\x6C\x65","\x66\x6F\x72\x6D\x2D\x73\x65\x6C\x65\x63\x74\x20\x66\x6F\x72\x6D\x2D\x73\x65\x6C\x65\x63\x74\x2D\x73\x6D","\x23\x64\x61\x74\x61\x54\x61\x62\x6C\x65\x5F\x6C\x65\x6E\x67\x74\x68\x20\x73\x65\x6C\x65\x63\x74","\x66\x6F\x72\x6D\x2D\x63\x6F\x6E\x74\x72\x6F\x6C\x20\x66\x6F\x72\x6D\x2D\x63\x6F\x6E\x74\x72\x6F\x6C\x2D\x73\x6D","\x23\x64\x61\x74\x61\x54\x61\x62\x6C\x65\x5F\x66\x69\x6C\x74\x65\x72\x20\x69\x6E\x70\x75\x74","\x2E\x73\x69\x6E\x67\x6C\x65\x2D\x70\x72\x69\x63\x65\x2D\x74\x61\x62\x6C\x65","\x5B\x64\x61\x74\x61\x2D\x62\x73\x2D\x74\x6F\x67\x67\x6C\x65\x3D\x22\x74\x6F\x6F\x6C\x74\x69\x70\x22\x5D","\x71\x75\x65\x72\x79\x53\x65\x6C\x65\x63\x74\x6F\x72\x41\x6C\x6C","\x63\x61\x6C\x6C","\x73\x6C\x69\x63\x65","\x6D\x61\x70","\x2E\x74\x6F\x61\x73\x74","\x73\x68\x6F\x77","\x66\x6F\x72\x45\x61\x63\x68","\x23\x74\x6F\x61\x73\x74\x2D\x73\x68\x6F\x77\x69\x6E\x67\x2D\x62\x74\x6E","\x64\x61\x74\x61\x2D\x62\x73\x2D\x64\x65\x6C\x61\x79","\x2E\x74\x6F\x61\x73\x74\x2D\x61\x75\x74\x6F\x68\x69\x64\x65","\x6D\x73","\x3C\x73\x70\x61\x6E\x20\x63\x6C\x61\x73\x73\x3D\x27\x74\x6F\x61\x73\x74\x2D\x61\x75\x74\x6F\x68\x69\x64\x65\x2D\x6C\x69\x6E\x65\x2D\x61\x6E\x69\x6D\x61\x74\x69\x6F\x6E\x27\x3E\x3C\x2F\x73\x70\x61\x6E\x3E","\x2E\x74\x6F\x61\x73\x74\x2D\x61\x75\x74\x6F\x68\x69\x64\x65\x2D\x6C\x69\x6E\x65\x2D\x61\x6E\x69\x6D\x61\x74\x69\x6F\x6E","\x69\x6E\x69\x74"];(function(_0x67d2x1){_0xf35c[0];var _0x67d2x2=_0x67d2x1(window);_0x67d2x2[_0xf35c[6]](_0xf35c[1],function(){_0x67d2x1(_0xf35c[5])[_0xf35c[4]](_0xf35c[2],function(){_0x67d2x1(this)[_0xf35c[3]]()})});var _0x67d2x3=_0x67d2x1(_0xf35c[7]);var _0x67d2x4=_0x67d2x1(_0xf35c[8]);_0x67d2x1(_0xf35c[13])[_0xf35c[6]](_0xf35c[9],function(){_0x67d2x3[_0xf35c[11]](_0xf35c[10]);_0x67d2x4[_0xf35c[11]](_0xf35c[12])});_0x67d2x1(_0xf35c[15])[_0xf35c[6]](_0xf35c[9],function(){_0x67d2x3[_0xf35c[14]](_0xf35c[10]);_0x67d2x4[_0xf35c[14]](_0xf35c[12])});_0x67d2x4[_0xf35c[6]](_0xf35c[9],function(){_0x67d2x1(this)[_0xf35c[14]](_0xf35c[12]);_0x67d2x3[_0xf35c[14]](_0xf35c[10])});_0x67d2x1(_0xf35c[20])[_0xf35c[19]](_0xf35c[18])[_0xf35c[17]](_0xf35c[16]);_0x67d2x1(_0xf35c[26])[_0xf35c[6]](_0xf35c[9],function(){_0x67d2x1(this)[_0xf35c[24]](_0xf35c[23])[_0xf35c[22]](true,true)[_0xf35c[21]](400);_0x67d2x1(this)[_0xf35c[25]](_0xf35c[12])});_0x67d2x1(_0xf35c[29])[_0xf35c[6]](_0xf35c[9],function(){_0x67d2x1(_0xf35c[27])[_0xf35c[25]](_0xf35c[12]);_0x67d2x1(_0xf35c[28])[_0xf35c[25]](_0xf35c[12])});_0x67d2x1(_0xf35c[30])[_0xf35c[6]](_0xf35c[9],function(){_0x67d2x1(_0xf35c[27])[_0xf35c[14]](_0xf35c[12]);_0x67d2x1(_0xf35c[28])[_0xf35c[14]](_0xf35c[12])});_0x67d2x1(_0xf35c[32])[_0xf35c[6]](_0xf35c[9],function(){_0x67d2x1(this)[_0xf35c[24]](_0xf35c[31])[_0xf35c[21]]()});_0x67d2x1(_0xf35c[37])[_0xf35c[6]](_0xf35c[9],function(){_0x67d2x1(_0xf35c[34])[_0xf35c[11]](_0xf35c[33]);_0x67d2x1(_0xf35c[36])[_0xf35c[11]](_0xf35c[35])});_0x67d2x1(_0xf35c[38])[_0xf35c[6]](_0xf35c[9],function(){_0x67d2x1(_0xf35c[34])[_0xf35c[14]](_0xf35c[33]);_0x67d2x1(_0xf35c[36])[_0xf35c[14]](_0xf35c[35])});_0x67d2x1(_0xf35c[40])[_0xf35c[6]](_0xf35c[9],function(){_0x67d2x1(_0xf35c[39])[_0xf35c[11]](_0xf35c[33]);_0x67d2x1(_0xf35c[36])[_0xf35c[11]](_0xf35c[35])});_0x67d2x1(_0xf35c[41])[_0xf35c[6]](_0xf35c[9],function(){_0x67d2x1(_0xf35c[39])[_0xf35c[14]](_0xf35c[33]);_0x67d2x1(_0xf35c[36])[_0xf35c[14]](_0xf35c[35])});if(_0x67d2x1[_0xf35c[43]][_0xf35c[42]]){var _0x67d2x5=_0x67d2x1(_0xf35c[44]);_0x67d2x5[_0xf35c[42]]({items:1,loop:true,autoplay:true,dots:true,center:true,margin:0,nav:true,navText:[(_0xf35c[45]),(_0xf35c[46])]});_0x67d2x5[_0xf35c[6]](_0xf35c[47],function(){var _0x67d2x6=_0x67d2x1(_0xf35c[48]);_0x67d2x6[_0xf35c[55]](function(){var _0x67d2x7=_0x67d2x1(this)[_0xf35c[50]](_0xf35c[49]);_0x67d2x1(this)[_0xf35c[14]](_0xf35c[54]+ _0x67d2x7)[_0xf35c[53]](_0xf35c[51],_0xf35c[52])})});_0x67d2x1(_0xf35c[58])[_0xf35c[55]](function(){var _0x67d2x8=_0x67d2x1(this)[_0xf35c[50]](_0xf35c[56]);_0x67d2x1(this)[_0xf35c[53]](_0xf35c[57],_0x67d2x8)});_0x67d2x1(_0xf35c[61])[_0xf35c[55]](function(){var _0x67d2x9=_0x67d2x1(this)[_0xf35c[50]](_0xf35c[59]);_0x67d2x1(this)[_0xf35c[53]](_0xf35c[60],_0x67d2x9)});_0x67d2x5[_0xf35c[6]](_0xf35c[62],function(){var _0x67d2x6=_0x67d2x5[_0xf35c[19]](_0xf35c[63])[_0xf35c[19]](_0xf35c[48]);_0x67d2x6[_0xf35c[55]](function(){var _0x67d2x7=_0x67d2x1(this)[_0xf35c[50]](_0xf35c[49]);_0x67d2x1(this)[_0xf35c[11]](_0xf35c[54]+ _0x67d2x7)[_0xf35c[53]](_0xf35c[51],_0xf35c[64])})})};if(_0x67d2x1[_0xf35c[43]][_0xf35c[42]]){var _0x67d2xa=_0x67d2x1(_0xf35c[65]);_0x67d2xa[_0xf35c[42]]({items:1,loop:true,autoplay:true,dots:true,center:true,margin:30,nav:false,animateIn:_0xf35c[66],animateOut:_0xf35c[4]});var _0x67d2xb=_0x67d2x1(_0xf35c[67]);_0x67d2xb[_0xf35c[55]](function(){var _0x67d2xc=_0x67d2x1(this)[_0xf35c[68]]()+ 1;if(_0x67d2xc< 10){_0x67d2x1(this)[_0xf35c[69]](_0xf35c[52]+ _0x67d2xc)}else {_0x67d2x1(this)[_0xf35c[69]](_0x67d2xc)}});var _0x67d2xd=_0x67d2x1(_0xf35c[72])[_0xf35c[71]]()[_0xf35c[70]];if(_0x67d2xd< 10){_0x67d2x1(_0xf35c[73])[_0xf35c[69]](_0xf35c[52]+ _0x67d2xd)}else {_0x67d2x1(_0xf35c[73])[_0xf35c[69]](_0x67d2xd)}};if(_0x67d2x1[_0xf35c[43]][_0xf35c[42]]){var _0x67d2xe=_0x67d2x1(_0xf35c[74]);_0x67d2xe[_0xf35c[42]]({items:2,loop:true,autoplay:true,dots:false,center:true,margin:8,nav:false})};if(_0x67d2x1[_0xf35c[43]][_0xf35c[42]]){var _0x67d2xf=_0x67d2x1(_0xf35c[75]);_0x67d2xf[_0xf35c[42]]({items:1,loop:true,autoplay:true,dots:true,margin:30,nav:false})};if(_0x67d2x1[_0xf35c[43]][_0xf35c[42]]){var _0x67d2x10=_0x67d2x1(_0xf35c[76]);_0x67d2x10[_0xf35c[42]]({items:2,loop:true,autoplay:true,dots:true,margin:0,nav:true,navText:[(_0xf35c[45]),(_0xf35c[46])],center:true})};if(_0x67d2x1[_0xf35c[43]][_0xf35c[42]]){var _0x67d2x11=_0x67d2x1(_0xf35c[77]);_0x67d2x11[_0xf35c[42]]({items:3,margin:12,loop:true,autoplay:true,autoplayTimeout:5000,dots:true,nav:false})};if(_0x67d2x1[_0xf35c[43]][_0xf35c[42]]){var _0x67d2x12=_0x67d2x1(_0xf35c[78]);_0x67d2x12[_0xf35c[42]]({items:3,margin:8,loop:true,autoplay:true,autoplayTimeout:5000,dots:true,nav:false})};if(_0x67d2x1[_0xf35c[43]][_0xf35c[42]]){var _0x67d2x13=_0x67d2x1(_0xf35c[79]);_0x67d2x13[_0xf35c[42]]({items:1,margin:0,loop:true,autoplay:true,autoplayTimeout:5000,dots:true,nav:false})};if(_0x67d2x1[_0xf35c[43]][_0xf35c[42]]){var _0x67d2x14=_0x67d2x1(_0xf35c[80]);_0x67d2x14[_0xf35c[42]]({items:5,margin:8,loop:true,autoplay:false,autoplayTimeout:5000,dots:false,nav:false,responsive:{1200:{items:13},992:{items:11},768:{items:9},576:{items:7},480:{items:5}}})};if(_0x67d2x1[_0xf35c[43]][_0xf35c[81]]){_0x67d2x1(_0xf35c[83])[_0xf35c[81]]({type:_0xf35c[82]});_0x67d2x1(_0xf35c[95])[_0xf35c[81]]({type:_0xf35c[84],gallery:{enabled:true},removalDelay:300,mainClass:_0xf35c[85],preloader:true,callbacks:{beforeOpen:function(){this[_0xf35c[87]][_0xf35c[84]][_0xf35c[86]]= this[_0xf35c[87]][_0xf35c[84]][_0xf35c[86]][_0xf35c[90]](_0xf35c[88],_0xf35c[89]);this[_0xf35c[87]][_0xf35c[91]]= this[_0xf35c[87]][_0xf35c[94]][_0xf35c[93]](_0xf35c[92])}},closeOnContentClick:true,midClick:true})};if(_0x67d2x1[_0xf35c[43]][_0xf35c[81]]){_0x67d2x1(_0xf35c[96])[_0xf35c[81]]({type:_0xf35c[84],gallery:{enabled:true},removalDelay:300,mainClass:_0xf35c[85],preloader:true,callbacks:{beforeOpen:function(){this[_0xf35c[87]][_0xf35c[84]][_0xf35c[86]]= this[_0xf35c[87]][_0xf35c[84]][_0xf35c[86]][_0xf35c[90]](_0xf35c[88],_0xf35c[89]);this[_0xf35c[87]][_0xf35c[91]]= this[_0xf35c[87]][_0xf35c[94]][_0xf35c[93]](_0xf35c[92])}},closeOnContentClick:true,midClick:true})};if(_0x67d2x1[_0xf35c[43]][_0xf35c[97]]){_0x67d2x1(_0xf35c[103])[_0xf35c[97]](function(){_0x67d2x1(_0xf35c[101])[_0xf35c[6]](_0xf35c[9],_0xf35c[98],function(){var _0x67d2x15=_0x67d2x1(this)[_0xf35c[93]](_0xf35c[99]);_0x67d2x16[_0xf35c[100]]({filter:_0x67d2x15})});var _0x67d2x16=_0x67d2x1(_0xf35c[103])[_0xf35c[100]]({itemSelector:_0xf35c[102],percentPosition:true,masonry:{columnWidth:_0xf35c[102]}})})};_0x67d2x1(_0xf35c[104])[_0xf35c[6]](_0xf35c[9],function(){_0x67d2x1(_0xf35c[104])[_0xf35c[14]](_0xf35c[12]);_0x67d2x1(this)[_0xf35c[11]](_0xf35c[12])});if(_0x67d2x1[_0xf35c[43]][_0xf35c[105]]){_0x67d2x1(_0xf35c[112])[_0xf35c[105]](_0xf35c[106],function(_0x67d2x17){var _0x67d2x18=_0x67d2x1(this)[_0xf35c[69]](_0x67d2x17[_0xf35c[111]](_0xf35c[107]+ _0xf35c[108]+ _0xf35c[109]+ _0xf35c[110]))})};if(_0x67d2x1[_0xf35c[43]][_0xf35c[105]]){_0x67d2x1(_0xf35c[118])[_0xf35c[105]](_0xf35c[113],function(_0x67d2x17){var _0x67d2x18=_0x67d2x1(this)[_0xf35c[69]](_0x67d2x17[_0xf35c[111]](_0xf35c[114]+ _0xf35c[115]+ _0xf35c[116]+ _0xf35c[117]))})};if(_0x67d2x1[_0xf35c[43]][_0xf35c[105]]){_0x67d2x1(_0xf35c[124])[_0xf35c[105]](_0xf35c[119],function(_0x67d2x17){var _0x67d2x18=_0x67d2x1(this)[_0xf35c[69]](_0x67d2x17[_0xf35c[111]](_0xf35c[120]+ _0xf35c[121]+ _0xf35c[122]+ _0xf35c[123]))})};if(_0x67d2x1[_0xf35c[43]][_0xf35c[125]]){_0x67d2x1(_0xf35c[126])[_0xf35c[125]]({delay:100,time:3000})};_0x67d2x1(_0xf35c[128])[_0xf35c[6]](_0xf35c[9],function(_0x67d2x1){_0x67d2x1[_0xf35c[127]]()});if(_0x67d2x1[_0xf35c[43]][_0xf35c[129]]){_0x67d2x1(_0xf35c[130])[_0xf35c[129]]({minimumChars:8})};_0x67d2x1(_0xf35c[132])[_0xf35c[6]](_0xf35c[9],function(){_0x67d2x1(this)[_0xf35c[11]](_0xf35c[131])});_0x67d2x1(_0xf35c[133])[_0xf35c[6]](_0xf35c[9],function(){_0x67d2x1(_0xf35c[133])[_0xf35c[14]](_0xf35c[12]);_0x67d2x1(this)[_0xf35c[11]](_0xf35c[12])});_0x67d2x1(_0xf35c[134])[_0xf35c[6]](_0xf35c[9],function(){_0x67d2x1(this)[_0xf35c[25]](_0xf35c[12])});if(_0x67d2x1[_0xf35c[43]][_0xf35c[135]]){_0x67d2x1(_0xf35c[136])[_0xf35c[135]]({})};if(_0x67d2x1[_0xf35c[43]][_0xf35c[137]]){_0x67d2x1(_0xf35c[138]).DataTable({"\x70\x61\x67\x69\x6E\x67":true,"\x6F\x72\x64\x65\x72\x69\x6E\x67":true,"\x69\x6E\x66\x6F":true})};_0x67d2x1(_0xf35c[140])[_0xf35c[11]](_0xf35c[139]);_0x67d2x1(_0xf35c[142])[_0xf35c[11]](_0xf35c[141]);_0x67d2x1(_0xf35c[143])[_0xf35c[6]](_0xf35c[9],function(){_0x67d2x1(_0xf35c[143])[_0xf35c[14]](_0xf35c[12]);_0x67d2x1(this)[_0xf35c[11]](_0xf35c[12])});var _0x67d2x19=[][_0xf35c[147]][_0xf35c[146]](document[_0xf35c[145]](_0xf35c[144]));var _0x67d2x1a=_0x67d2x19[_0xf35c[148]](function(_0x67d2x1b){return new bootstrap.Tooltip(_0x67d2x1b)});var _0x67d2x1c=[][_0xf35c[147]][_0xf35c[146]](document[_0xf35c[145]](_0xf35c[149]));var _0x67d2x1d=_0x67d2x1c[_0xf35c[148]](function(_0x67d2x1e){return new bootstrap.Toast(_0x67d2x1e)});_0x67d2x1d[_0xf35c[151]]((_0x67d2x1e)=>{return _0x67d2x1e[_0xf35c[150]]()});_0x67d2x1(_0xf35c[152])[_0xf35c[6]](_0xf35c[9],function(){var _0x67d2x1c=[][_0xf35c[147]][_0xf35c[146]](document[_0xf35c[145]](_0xf35c[149]));var _0x67d2x1d=_0x67d2x1c[_0xf35c[148]](function(_0x67d2x1e){return new bootstrap.Toast(_0x67d2x1e)});_0x67d2x1d[_0xf35c[151]]((_0x67d2x1e)=>{return _0x67d2x1e[_0xf35c[150]]()})});var _0x67d2x1f=_0x67d2x1(_0xf35c[154])[_0xf35c[93]](_0xf35c[153]);var _0x67d2x20=_0x67d2x1f+ _0xf35c[155];_0x67d2x1(_0xf35c[154])[_0xf35c[17]](_0xf35c[156]);_0x67d2x1(_0xf35c[157])[_0xf35c[53]](_0xf35c[60],_0x67d2x20);if(_0x67d2x1[_0xf35c[43]][_0xf35c[158]]){ new WOW()[_0xf35c[158]]()}})(jQuery) -------------------------------------------------------------------------------- /js/default/chart-active.js: -------------------------------------------------------------------------------- 1 | (function () { 2 | 'use strict'; 3 | 4 | // ============ 5 | // Area Chart 1 6 | // ============ 7 | 8 | var areaChart1 = { 9 | chart: { 10 | height: 240, 11 | type: 'area', 12 | animations: { 13 | enabled: true, 14 | easing: 'easeinout', 15 | speed: 1000 16 | }, 17 | dropShadow: { 18 | enabled: true, 19 | opacity: 0.1, 20 | blur: 1, 21 | left: -5, 22 | top: 18 23 | }, 24 | zoom: { 25 | enabled: false 26 | }, 27 | toolbar: { 28 | show: false 29 | }, 30 | }, 31 | colors: ['#0134d4', '#ea4c62'], 32 | dataLabels: { 33 | enabled: false 34 | }, 35 | fill: { 36 | type: "gradient", 37 | gradient: { 38 | type: "vertical", 39 | shadeIntensity: 1, 40 | inverseColors: true, 41 | opacityFrom: 0.15, 42 | opacityTo: 0.02, 43 | stops: [40, 100], 44 | } 45 | }, 46 | grid: { 47 | borderColor: '#dbeaea', 48 | strokeDashArray: 4, 49 | xaxis: { 50 | lines: { 51 | show: true 52 | } 53 | }, 54 | yaxis: { 55 | lines: { 56 | show: false, 57 | } 58 | }, 59 | padding: { 60 | top: 0, 61 | right: 0, 62 | bottom: 0, 63 | left: 0 64 | }, 65 | }, 66 | legend: { 67 | position: 'bottom', 68 | horizontalAlign: 'center', 69 | offsetY: 4, 70 | fontSize: '14px', 71 | markers: { 72 | width: 9, 73 | height: 9, 74 | strokeWidth: 0, 75 | radius: 20 76 | }, 77 | itemMargin: { 78 | horizontal: 5, 79 | vertical: 0 80 | } 81 | }, 82 | title: { 83 | text: '$5,394', 84 | align: 'left', 85 | margin: 0, 86 | offsetX: 0, 87 | offsetY: 20, 88 | floating: false, 89 | style: { 90 | fontSize: '16px', 91 | color: '#8480ae' 92 | }, 93 | }, 94 | tooltip: { 95 | theme: 'dark', 96 | marker: { 97 | show: true, 98 | }, 99 | x: { 100 | show: false, 101 | } 102 | }, 103 | subtitle: { 104 | text: 'This week sales', 105 | align: 'left', 106 | margin: 0, 107 | offsetX: 0, 108 | offsetY: 0, 109 | floating: false, 110 | style: { 111 | fontSize: '14px', 112 | color: '#8480ae' 113 | } 114 | }, 115 | stroke: { 116 | show: true, 117 | curve: 'smooth', 118 | width: 3 119 | }, 120 | labels: ['S', 'S', 'M', 'T', 'W', 'T', 'F'], 121 | series: [{ 122 | name: 'Affan', 123 | data: [320, 420, 395, 350, 410, 355, 360] 124 | }, { 125 | name: 'Suha', 126 | data: [400, 395, 350, 395, 430, 385, 374] 127 | }], 128 | xaxis: { 129 | crosshairs: { 130 | show: true 131 | }, 132 | labels: { 133 | offsetX: 0, 134 | offsetY: 0, 135 | style: { 136 | colors: '#8480ae', 137 | fontSize: '12px', 138 | }, 139 | }, 140 | tooltip: { 141 | enabled: false, 142 | }, 143 | }, 144 | yaxis: { 145 | labels: { 146 | offsetX: -10, 147 | offsetY: 0, 148 | style: { 149 | colors: '#8480ae', 150 | fontSize: '12px', 151 | }, 152 | } 153 | }, 154 | } 155 | 156 | var areaChart_01 = new ApexCharts(document.querySelector("#areaChart1"), areaChart1); 157 | areaChart_01.render(); 158 | 159 | 160 | // ============ 161 | // Area Chart 2 162 | // ============ 163 | 164 | var areaChart2 = { 165 | chart: { 166 | height: 240, 167 | type: 'area', 168 | animations: { 169 | enabled: true, 170 | easing: 'easeinout', 171 | speed: 1000 172 | }, 173 | dropShadow: { 174 | enabled: true, 175 | opacity: 0.1, 176 | blur: 1, 177 | left: -5, 178 | top: 5 179 | }, 180 | zoom: { 181 | enabled: false 182 | }, 183 | toolbar: { 184 | show: false 185 | }, 186 | }, 187 | colors: ['#0134d4'], 188 | dataLabels: { 189 | enabled: false 190 | }, 191 | fill: { 192 | type: "gradient", 193 | gradient: { 194 | type: "vertical", 195 | shadeIntensity: 1, 196 | inverseColors: true, 197 | opacityFrom: 0.15, 198 | opacityTo: 0.05, 199 | stops: [40, 100], 200 | } 201 | }, 202 | grid: { 203 | borderColor: '#dbeaea', 204 | strokeDashArray: 4, 205 | xaxis: { 206 | lines: { 207 | show: true 208 | } 209 | }, 210 | yaxis: { 211 | lines: { 212 | show: false, 213 | } 214 | }, 215 | padding: { 216 | top: 0, 217 | right: 0, 218 | bottom: 0, 219 | left: 0 220 | }, 221 | }, 222 | legend: { 223 | position: 'top', 224 | horizontalAlign: 'right', 225 | offsetY: -60, 226 | fontSize: '14px', 227 | markers: { 228 | width: 9, 229 | height: 9, 230 | strokeWidth: 0, 231 | radius: 20 232 | }, 233 | itemMargin: { 234 | horizontal: 5, 235 | vertical: 0 236 | } 237 | }, 238 | title: { 239 | text: '$270', 240 | align: 'left', 241 | margin: 0, 242 | offsetX: 0, 243 | offsetY: 20, 244 | floating: false, 245 | style: { 246 | fontSize: '16px', 247 | color: '#8480ae' 248 | }, 249 | }, 250 | tooltip: { 251 | theme: 'dark', 252 | marker: { 253 | show: true, 254 | }, 255 | x: { 256 | show: false, 257 | } 258 | }, 259 | subtitle: { 260 | text: 'Today\'s earnings', 261 | align: 'left', 262 | margin: 0, 263 | offsetX: 0, 264 | offsetY: 0, 265 | floating: false, 266 | style: { 267 | fontSize: '14px', 268 | color: '#8480ae' 269 | } 270 | }, 271 | stroke: { 272 | show: true, 273 | curve: 'smooth', 274 | width: 3 275 | }, 276 | labels: ['00', '03', '06', '09', '12', '15', '18', '21'], 277 | series: [{ 278 | name: 'Affan', 279 | data: [31, 38, 28, 36, 42, 36, 46, 34] 280 | }], 281 | xaxis: { 282 | crosshairs: { 283 | show: true 284 | }, 285 | labels: { 286 | offsetX: 0, 287 | offsetY: 0, 288 | style: { 289 | colors: '#8480ae', 290 | fontSize: '12px', 291 | }, 292 | }, 293 | tooltip: { 294 | enabled: false, 295 | }, 296 | }, 297 | yaxis: { 298 | labels: { 299 | offsetX: -10, 300 | offsetY: 0, 301 | style: { 302 | colors: '#8480ae', 303 | fontSize: '12px', 304 | }, 305 | } 306 | }, 307 | } 308 | 309 | var areaChart_02 = new ApexCharts(document.querySelector("#areaChart2"), areaChart2); 310 | areaChart_02.render(); 311 | 312 | 313 | // ============== 314 | // Column Chart 1 315 | // ============== 316 | 317 | var columnChart1 = { 318 | chart: { 319 | height: 240, 320 | type: 'bar', 321 | animations: { 322 | enabled: true, 323 | easing: 'easeinout', 324 | speed: 1000 325 | }, 326 | dropShadow: { 327 | enabled: true, 328 | opacity: 0.1, 329 | blur: 2, 330 | left: -1, 331 | top: 5 332 | }, 333 | zoom: { 334 | enabled: false 335 | }, 336 | toolbar: { 337 | show: false 338 | }, 339 | }, 340 | subtitle: { 341 | text: 'This week earnings', 342 | align: 'left', 343 | margin: 0, 344 | offsetX: 0, 345 | offsetY: 0, 346 | floating: false, 347 | style: { 348 | fontSize: '14px', 349 | color: '#8480ae' 350 | } 351 | }, 352 | plotOptions: { 353 | bar: { 354 | horizontal: false, 355 | columnWidth: '60%', 356 | endingShape: 'rounded' 357 | }, 358 | }, 359 | colors: ['#0134d4', '#f1b10f'], 360 | dataLabels: { 361 | enabled: false 362 | }, 363 | grid: { 364 | borderColor: '#dbeaea', 365 | strokeDashArray: 4, 366 | xaxis: { 367 | lines: { 368 | show: true 369 | } 370 | }, 371 | yaxis: { 372 | lines: { 373 | show: false, 374 | } 375 | }, 376 | padding: { 377 | top: 0, 378 | right: 0, 379 | bottom: 0, 380 | left: 0 381 | }, 382 | }, 383 | legend: { 384 | position: 'bottom', 385 | horizontalAlign: 'center', 386 | offsetY: 6, 387 | fontSize: '12px', 388 | markers: { 389 | width: 10, 390 | height: 10, 391 | strokeWidth: 0, 392 | radius: 2 393 | }, 394 | itemMargin: { 395 | horizontal: 5, 396 | vertical: 0 397 | } 398 | }, 399 | tooltip: { 400 | theme: 'light', 401 | marker: { 402 | show: true, 403 | }, 404 | x: { 405 | show: false, 406 | } 407 | }, 408 | stroke: { 409 | show: true, 410 | colors: ['transparent'], 411 | width: 3 412 | }, 413 | labels: ['Sat', 'Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri'], 414 | series: [{ 415 | name: 'Affan', 416 | data: [320, 420, 395, 350, 410, 355, 360] 417 | }, { 418 | name: 'Suha', 419 | data: [400, 395, 280, 520, 430, 385, 374] 420 | }], 421 | xaxis: { 422 | crosshairs: { 423 | show: true 424 | }, 425 | labels: { 426 | offsetX: 0, 427 | offsetY: 0, 428 | style: { 429 | colors: '#8380ae', 430 | fontSize: '12px' 431 | }, 432 | }, 433 | tooltip: { 434 | enabled: false, 435 | }, 436 | }, 437 | yaxis: { 438 | labels: { 439 | formatter: function (value, index) { 440 | return (value / 1000) + 'k' 441 | }, 442 | offsetX: -10, 443 | offsetY: 0, 444 | style: { 445 | colors: '#8380ae', 446 | fontSize: '12px' 447 | }, 448 | } 449 | }, 450 | } 451 | 452 | var columnChart_01 = new ApexCharts(document.querySelector("#columnChart1"), columnChart1); 453 | columnChart_01.render(); 454 | 455 | 456 | // ============== 457 | // Column Chart 2 458 | // ============== 459 | 460 | var columnChart2 = { 461 | chart: { 462 | height: 240, 463 | type: 'bar', 464 | animations: { 465 | enabled: true, 466 | easing: 'easeinout', 467 | speed: 1000 468 | }, 469 | dropShadow: { 470 | enabled: true, 471 | opacity: 0.1, 472 | blur: 2, 473 | left: -1, 474 | top: 5 475 | }, 476 | zoom: { 477 | enabled: false 478 | }, 479 | toolbar: { 480 | show: false 481 | }, 482 | }, 483 | subtitle: { 484 | text: 'Today\'s earnings', 485 | align: 'left', 486 | margin: 0, 487 | offsetX: 0, 488 | offsetY: 0, 489 | floating: false, 490 | style: { 491 | fontSize: '14px', 492 | color: '#8480ae' 493 | } 494 | }, 495 | plotOptions: { 496 | bar: { 497 | horizontal: false, 498 | columnWidth: '40%', 499 | endingShape: 'rounded' 500 | }, 501 | }, 502 | colors: ['#0134d4'], 503 | dataLabels: { 504 | enabled: false 505 | }, 506 | grid: { 507 | borderColor: '#dbeaea', 508 | strokeDashArray: 4, 509 | xaxis: { 510 | lines: { 511 | show: true 512 | } 513 | }, 514 | yaxis: { 515 | lines: { 516 | show: false, 517 | } 518 | }, 519 | padding: { 520 | top: 0, 521 | right: 0, 522 | bottom: 0, 523 | left: 0 524 | }, 525 | }, 526 | tooltip: { 527 | theme: 'light', 528 | marker: { 529 | show: true, 530 | }, 531 | x: { 532 | show: false, 533 | } 534 | }, 535 | stroke: { 536 | show: true, 537 | colors: ['transparent'], 538 | width: 3 539 | }, 540 | labels: ['00:00', '03:00', '06:00', '09:00', '12:00', '15:00', '16:00', '19:00'], 541 | series: [{ 542 | name: 'Affan', 543 | data: [320, 420, 395, 350, 410, 355, 360, 420] 544 | }], 545 | xaxis: { 546 | crosshairs: { 547 | show: true 548 | }, 549 | labels: { 550 | offsetX: 0, 551 | offsetY: 0, 552 | style: { 553 | colors: '#8380ae', 554 | fontSize: '12px' 555 | }, 556 | }, 557 | tooltip: { 558 | enabled: false, 559 | }, 560 | }, 561 | yaxis: { 562 | labels: { 563 | offsetX: -10, 564 | offsetY: 0, 565 | style: { 566 | colors: '#8380ae', 567 | fontSize: '12px' 568 | }, 569 | } 570 | }, 571 | } 572 | 573 | var columnChart_02 = new ApexCharts(document.querySelector("#columnChart2"), columnChart2); 574 | columnChart_02.render(); 575 | 576 | 577 | // ============ 578 | // Line Chart 1 579 | // ============ 580 | 581 | var lineChart1 = { 582 | chart: { 583 | height: 220, 584 | type: 'line', 585 | zoom: { 586 | enabled: false 587 | }, 588 | toolbar: { 589 | show: false 590 | }, 591 | }, 592 | colors: ['#0134d4'], 593 | dataLabels: { 594 | enabled: false 595 | }, 596 | stroke: { 597 | curve: 'smooth' 598 | }, 599 | subtitle: { 600 | text: 'Last 6 month sales', 601 | align: 'left', 602 | margin: 0, 603 | offsetX: 0, 604 | offsetY: 0, 605 | floating: false, 606 | style: { 607 | fontSize: '14px', 608 | color: '#8480ae', 609 | } 610 | }, 611 | tooltip: { 612 | theme: 'light', 613 | marker: { 614 | show: true, 615 | }, 616 | x: { 617 | show: false, 618 | } 619 | }, 620 | grid: { 621 | borderColor: '#dbeaea', 622 | strokeDashArray: 4, 623 | xaxis: { 624 | lines: { 625 | show: true 626 | } 627 | }, 628 | yaxis: { 629 | lines: { 630 | show: false, 631 | } 632 | }, 633 | padding: { 634 | top: 0, 635 | right: 0, 636 | bottom: 0, 637 | left: 0 638 | }, 639 | }, 640 | series: [{ 641 | name: "Designing World", 642 | data: [100, 401, 305, 501, 409, 602] 643 | }], 644 | xaxis: { 645 | categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun'], 646 | } 647 | }; 648 | 649 | var lineChart_1 = new ApexCharts(document.querySelector("#lineChart1"), lineChart1); 650 | lineChart_1.render(); 651 | 652 | 653 | // ============ 654 | // Line Chart 2 655 | // ============ 656 | 657 | var lineChart2 = { 658 | chart: { 659 | height: 220, 660 | type: 'line', 661 | zoom: { 662 | enabled: false 663 | }, 664 | toolbar: { 665 | show: false 666 | }, 667 | }, 668 | colors: ['#2ecc4a'], 669 | dataLabels: { 670 | enabled: false 671 | }, 672 | stroke: { 673 | curve: 'smooth' 674 | }, 675 | subtitle: { 676 | text: 'Last 7 days sales', 677 | align: 'left', 678 | margin: 0, 679 | offsetX: 0, 680 | offsetY: 0, 681 | floating: false, 682 | style: { 683 | fontSize: '14px', 684 | color: '#8480ae', 685 | } 686 | }, 687 | tooltip: { 688 | theme: 'dark', 689 | marker: { 690 | show: true, 691 | }, 692 | x: { 693 | show: false, 694 | } 695 | }, 696 | grid: { 697 | borderColor: '#dbeaea', 698 | strokeDashArray: 4, 699 | xaxis: { 700 | lines: { 701 | show: true 702 | } 703 | }, 704 | yaxis: { 705 | lines: { 706 | show: false, 707 | } 708 | }, 709 | padding: { 710 | top: 0, 711 | right: 0, 712 | bottom: 0, 713 | left: 0 714 | }, 715 | }, 716 | series: [{ 717 | name: "Designing World", 718 | data: [15, 18, 16, 17, 14, 13, 19] 719 | }], 720 | xaxis: { 721 | categories: ['Sat', 'Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri'], 722 | } 723 | }; 724 | 725 | var lineChart_2 = new ApexCharts(document.querySelector("#lineChart2"), lineChart2); 726 | lineChart_2.render(); 727 | 728 | 729 | // ========= 730 | // Pie Chart 731 | // ========= 732 | 733 | var pieChart = { 734 | chart: { 735 | width: 280, 736 | type: 'pie', 737 | sparkline: { 738 | enabled: true 739 | }, 740 | dropShadow: { 741 | enabled: false, 742 | }, 743 | }, 744 | colors: ['#0134d4', '#2ecc4a', '#ea4c62', '#1787b8'], 745 | series: [100, 55, 63, 77], 746 | labels: ['Business', 'Marketing', 'Admin', 'Ecommerce'], 747 | }; 748 | 749 | var pie_Chart = new ApexCharts(document.querySelector("#pieChart"), pieChart); 750 | pie_Chart.render(); 751 | 752 | 753 | // =========== 754 | // Donut Chart 755 | // =========== 756 | 757 | var donutChart = { 758 | chart: { 759 | width: 280, 760 | type: 'donut', 761 | sparkline: { 762 | enabled: true 763 | }, 764 | dropShadow: { 765 | enabled: false, 766 | }, 767 | }, 768 | colors: ['#0134d4', '#2ecc4a', '#ea4c62', '#1787b8'], 769 | series: [100, 55, 63, 77], 770 | labels: ['Business', 'Marketing', 'Admin', 'Ecommerce'], 771 | }; 772 | 773 | var donut_Chart = new ApexCharts(document.querySelector("#donutChart"), donutChart); 774 | donut_Chart.render(); 775 | 776 | })(); -------------------------------------------------------------------------------- /js/default/clipboard.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * clipboard.js v1.7.1 3 | * https://zenorocha.github.io/clipboard.js 4 | * 5 | * Licensed MIT © Zeno Rocha 6 | */ 7 | !function(t){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=t();else if("function"==typeof define&&define.amd)define([],t);else{var e;e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:this,e.Clipboard=t()}}(function(){var t,e,n;return function t(e,n,o){function i(a,c){if(!n[a]){if(!e[a]){var l="function"==typeof require&&require;if(!c&&l)return l(a,!0);if(r)return r(a,!0);var s=new Error("Cannot find module '"+a+"'");throw s.code="MODULE_NOT_FOUND",s}var u=n[a]={exports:{}};e[a][0].call(u.exports,function(t){var n=e[a][1][t];return i(n||t)},u,u.exports,t,e,n,o)}return n[a].exports}for(var r="function"==typeof require&&require,a=0;a0&&void 0!==arguments[0]?arguments[0]:{};this.action=e.action,this.container=e.container,this.emitter=e.emitter,this.target=e.target,this.text=e.text,this.trigger=e.trigger,this.selectedText=""}},{key:"initSelection",value:function t(){this.text?this.selectFake():this.target&&this.selectTarget()}},{key:"selectFake",value:function t(){var e=this,n="rtl"==document.documentElement.getAttribute("dir");this.removeFake(),this.fakeHandlerCallback=function(){return e.removeFake()},this.fakeHandler=this.container.addEventListener("click",this.fakeHandlerCallback)||!0,this.fakeElem=document.createElement("textarea"),this.fakeElem.style.fontSize="12pt",this.fakeElem.style.border="0",this.fakeElem.style.padding="0",this.fakeElem.style.margin="0",this.fakeElem.style.position="absolute",this.fakeElem.style[n?"right":"left"]="-9999px";var o=window.pageYOffset||document.documentElement.scrollTop;this.fakeElem.style.top=o+"px",this.fakeElem.setAttribute("readonly",""),this.fakeElem.value=this.text,this.container.appendChild(this.fakeElem),this.selectedText=(0,i.default)(this.fakeElem),this.copyText()}},{key:"removeFake",value:function t(){this.fakeHandler&&(this.container.removeEventListener("click",this.fakeHandlerCallback),this.fakeHandler=null,this.fakeHandlerCallback=null),this.fakeElem&&(this.container.removeChild(this.fakeElem),this.fakeElem=null)}},{key:"selectTarget",value:function t(){this.selectedText=(0,i.default)(this.target),this.copyText()}},{key:"copyText",value:function t(){var e=void 0;try{e=document.execCommand(this.action)}catch(t){e=!1}this.handleResult(e)}},{key:"handleResult",value:function t(e){this.emitter.emit(e?"success":"error",{action:this.action,text:this.selectedText,trigger:this.trigger,clearSelection:this.clearSelection.bind(this)})}},{key:"clearSelection",value:function t(){this.trigger&&this.trigger.focus(),window.getSelection().removeAllRanges()}},{key:"destroy",value:function t(){this.removeFake()}},{key:"action",set:function t(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"copy";if(this._action=e,"copy"!==this._action&&"cut"!==this._action)throw new Error('Invalid "action" value, use either "copy" or "cut"')},get:function t(){return this._action}},{key:"target",set:function t(e){if(void 0!==e){if(!e||"object"!==(void 0===e?"undefined":r(e))||1!==e.nodeType)throw new Error('Invalid "target" value, use a valid Element');if("copy"===this.action&&e.hasAttribute("disabled"))throw new Error('Invalid "target" attribute. Please use "readonly" instead of "disabled" attribute');if("cut"===this.action&&(e.hasAttribute("readonly")||e.hasAttribute("disabled")))throw new Error('Invalid "target" attribute. You can\'t cut text from elements with "readonly" or "disabled" attributes');this._target=e}},get:function t(){return this._target}}]),t}();t.exports=c})},{select:5}],8:[function(e,n,o){!function(i,r){if("function"==typeof t&&t.amd)t(["module","./clipboard-action","tiny-emitter","good-listener"],r);else if(void 0!==o)r(n,e("./clipboard-action"),e("tiny-emitter"),e("good-listener"));else{var a={exports:{}};r(a,i.clipboardAction,i.tinyEmitter,i.goodListener),i.clipboard=a.exports}}(this,function(t,e,n,o){"use strict";function i(t){return t&&t.__esModule?t:{default:t}}function r(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function a(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function c(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}function l(t,e){var n="data-clipboard-"+t;if(e.hasAttribute(n))return e.getAttribute(n)}var s=i(e),u=i(n),f=i(o),d="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},h=function(){function t(t,e){for(var n=0;n0&&void 0!==arguments[0]?arguments[0]:{};this.action="function"==typeof e.action?e.action:this.defaultAction,this.target="function"==typeof e.target?e.target:this.defaultTarget,this.text="function"==typeof e.text?e.text:this.defaultText,this.container="object"===d(e.container)?e.container:document.body}},{key:"listenClick",value:function t(e){var n=this;this.listener=(0,f.default)(e,"click",function(t){return n.onClick(t)})}},{key:"onClick",value:function t(e){var n=e.delegateTarget||e.currentTarget;this.clipboardAction&&(this.clipboardAction=null),this.clipboardAction=new s.default({action:this.action(n),target:this.target(n),text:this.text(n),container:this.container,trigger:n,emitter:this})}},{key:"defaultAction",value:function t(e){return l("action",e)}},{key:"defaultTarget",value:function t(e){var n=l("target",e);if(n)return document.querySelector(n)}},{key:"defaultText",value:function t(e){return l("text",e)}},{key:"destroy",value:function t(){this.listener.destroy(),this.clipboardAction&&(this.clipboardAction.destroy(),this.clipboardAction=null)}}],[{key:"isSupported",value:function t(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:["copy","cut"],n="string"==typeof e?[e]:e,o=!!document.queryCommandSupported;return n.forEach(function(t){o=o&&!!document.queryCommandSupported(t)}),o}}]),e}(u.default);t.exports=p})},{"./clipboard-action":7,"good-listener":4,"tiny-emitter":6}]},{},[8])(8)}); 8 | 9 | (function () { 10 | 'use strict'; 11 | 12 | $(".codeview-wrapper").append('
Successfully Copied!
'); 13 | 14 | /* Treats the next sibling as a target */ 15 | var clipboard = new Clipboard('.clipboard-btn', { 16 | target: function (trigger) { 17 | return trigger.nextElementSibling 18 | } 19 | }); 20 | 21 | /* Shows the confirmation in a successful case */ 22 | clipboard.on("success", function (e) { 23 | e.clearSelection(); 24 | $(".success-text").addClass("visibility-visible"); 25 | }); 26 | 27 | $(".clipboard-btn").on("click", function() { 28 | $(this).siblings(".success-text").fadeIn(100).delay(4000).fadeOut(500); 29 | }); 30 | 31 | })(); -------------------------------------------------------------------------------- /js/default/dark-mode-switch.js: -------------------------------------------------------------------------------- 1 | (function () { 2 | 'use strict'; 3 | 4 | // Dark Mode JS 5 | var toggleSwitch = document.getElementById('darkSwitch'); 6 | var currentTheme = localStorage.getItem('theme'); 7 | 8 | if (currentTheme) { 9 | document.documentElement.setAttribute('data-theme', currentTheme); 10 | if (currentTheme === 'dark') { 11 | if (toggleSwitch) { 12 | toggleSwitch.checked = true; 13 | } 14 | } 15 | } 16 | 17 | function switchTheme(e) { 18 | if (e.target.checked) { 19 | document.documentElement.setAttribute('data-theme', 'dark'); 20 | localStorage.setItem('theme', 'dark'); 21 | } else { 22 | document.documentElement.setAttribute('data-theme', 'light'); 23 | localStorage.setItem('theme', 'light'); 24 | } 25 | } 26 | if (toggleSwitch) { 27 | toggleSwitch.addEventListener('change', switchTheme, false); 28 | } 29 | 30 | $('#darkSwitch').on('click', function () { 31 | $('.dark-mode-switching').fadeIn(50).delay(1000).fadeOut(250); 32 | }); 33 | 34 | // RTL Mode JS 35 | var rtltoggleSwitch = document.getElementById('rtlSwitch'); 36 | var rtlcurrentTheme = localStorage.getItem('rtl'); 37 | 38 | if (rtlcurrentTheme) { 39 | document.documentElement.setAttribute('view-mode', rtlcurrentTheme); 40 | if (rtlcurrentTheme === 'rtl') { 41 | if (rtltoggleSwitch) { 42 | rtltoggleSwitch.checked = true; 43 | } 44 | } 45 | } 46 | 47 | function rtlswitchTheme(e) { 48 | if (e.target.checked) { 49 | document.documentElement.setAttribute('view-mode', 'rtl'); 50 | localStorage.setItem('rtl', 'rtl'); 51 | } else { 52 | document.documentElement.setAttribute('view-mode', 'ltr'); 53 | localStorage.setItem('rtl', 'ltr'); 54 | } 55 | } 56 | 57 | if (rtltoggleSwitch) { 58 | rtltoggleSwitch.addEventListener('change', rtlswitchTheme, false); 59 | } 60 | 61 | $('#rtlSwitch').on('click', function () { 62 | $('.rtl-mode-switching').fadeIn(50).delay(1000).fadeOut(250); 63 | }); 64 | 65 | })(); -------------------------------------------------------------------------------- /js/default/form-autocomplete.js: -------------------------------------------------------------------------------- 1 | (function () { 2 | 'use strict'; 3 | 4 | // autocomplete form function 5 | function autocomplete(inp, arr) { 6 | var currentFocus; 7 | inp.addEventListener("input", function (e) { 8 | var a, b, i, val = this.value; 9 | closeAllLists(); 10 | if (!val) { 11 | return false; 12 | } 13 | currentFocus = -1; 14 | a = document.createElement("DIV"); 15 | a.setAttribute("id", this.id + "autocomplete-list"); 16 | a.setAttribute("class", "autocomplete-items"); 17 | this.parentNode.appendChild(a); 18 | for (i = 0; i < arr.length; i++) { 19 | if (arr[i].substr(0, val.length).toUpperCase() == val.toUpperCase()) { 20 | b = document.createElement("DIV"); 21 | b.innerHTML = "" + arr[i].substr(0, val.length) + ""; 22 | b.innerHTML += arr[i].substr(val.length); 23 | b.innerHTML += ""; 24 | b.addEventListener("click", function (e) { 25 | inp.value = this.getElementsByTagName("input")[0].value; 26 | closeAllLists(); 27 | }); 28 | a.appendChild(b); 29 | } 30 | } 31 | }); 32 | 33 | inp.addEventListener("keydown", function (e) { 34 | var x = document.getElementById(this.id + "autocomplete-list"); 35 | if (x) x = x.getElementsByTagName("div"); 36 | if (e.keyCode == 40) { 37 | currentFocus++; 38 | addActive(x); 39 | } else if (e.keyCode == 38) { 40 | currentFocus--; 41 | addActive(x); 42 | } else if (e.keyCode == 13) { 43 | e.preventDefault(); 44 | if (currentFocus > -1) { 45 | if (x) x[currentFocus].click(); 46 | } 47 | } 48 | }); 49 | 50 | function addActive(x) { 51 | if (!x) return false; 52 | removeActive(x); 53 | if (currentFocus >= x.length) currentFocus = 0; 54 | if (currentFocus < 0) currentFocus = (x.length - 1); 55 | x[currentFocus].classList.add("autocomplete-active"); 56 | } 57 | 58 | function removeActive(x) { 59 | for (var i = 0; i < x.length; i++) { 60 | x[i].classList.remove("autocomplete-active"); 61 | } 62 | } 63 | 64 | function closeAllLists(elmnt) { 65 | var x = document.getElementsByClassName("autocomplete-items"); 66 | for (var i = 0; i < x.length; i++) { 67 | if (elmnt != x[i] && elmnt != inp) { 68 | x[i].parentNode.removeChild(x[i]); 69 | } 70 | } 71 | } 72 | document.addEventListener("click", function (e) { 73 | closeAllLists(e.target); 74 | }); 75 | } 76 | 77 | var countries = ["Afghanistan", "Albania", "Algeria", "Andorra", "Angola", "Anguilla", "Antigua & Barbuda", "Argentina", "Armenia", "Aruba", "Australia", "Austria", "Azerbaijan", "Bahamas", "Bahrain", "Bangladesh", "Barbados", "Belarus", "Belgium", "Belize", "Benin", "Bermuda", "Bhutan", "Bolivia", "Bosnia & Herzegovina", "Botswana", "Brazil", "British Virgin Islands", "Brunei", "Bulgaria", "Burkina Faso", "Burundi", "Cambodia", "Cameroon", "Canada", "Cape Verde", "Cayman Islands", "Central Arfrican Republic", "Chad", "Chile", "China", "Colombia", "Congo", "Cook Islands", "Costa Rica", "Cote D Ivoire", "Croatia", "Cuba", "Curacao", "Cyprus", "Czech Republic", "Denmark", "Djibouti", "Dominica", "Dominican Republic", "Ecuador", "Egypt", "El Salvador", "Equatorial Guinea", "Eritrea", "Estonia", "Ethiopia", "Falkland Islands", "Faroe Islands", "Fiji", "Finland", "France", "French Polynesia", "French West Indies", "Gabon", "Gambia", "Georgia", "Germany", "Ghana", "Gibraltar", "Greece", "Greenland", "Grenada", "Guam", "Guatemala", "Guernsey", "Guinea", "Guinea Bissau", "Guyana", "Haiti", "Honduras", "Hong Kong", "Hungary", "Iceland", "India", "Indonesia", "Iran", "Iraq", "Ireland", "Isle of Man", "Israel", "Italy", "Jamaica", "Japan", "Jersey", "Jordan", "Kazakhstan", "Kenya", "Kiribati", "Kosovo", "Kuwait", "Kyrgyzstan", "Laos", "Latvia", "Lebanon", "Lesotho", "Liberia", "Libya", "Liechtenstein", "Lithuania", "Luxembourg", "Macau", "Macedonia", "Madagascar", "Malawi", "Malaysia", "Maldives", "Mali", "Malta", "Marshall Islands", "Mauritania", "Mauritius", "Mexico", "Micronesia", "Moldova", "Monaco", "Mongolia", "Montenegro", "Montserrat", "Morocco", "Mozambique", "Myanmar", "Namibia", "Nauro", "Nepal", "Netherlands", "Netherlands Antilles", "New Caledonia", "New Zealand", "Nicaragua", "Niger", "Nigeria", "North Korea", "Norway", "Oman", "Pakistan", "Palau", "Palestine", "Panama", "Papua New Guinea", "Paraguay", "Peru", "Philippines", "Poland", "Portugal", "Puerto Rico", "Qatar", "Reunion", "Romania", "Russia", "Rwanda", "Saint Pierre & Miquelon", "Samoa", "San Marino", "Sao Tome and Principe", "Saudi Arabia", "Senegal", "Serbia", "Seychelles", "Sierra Leone", "Singapore", "Slovakia", "Slovenia", "Solomon Islands", "Somalia", "South Africa", "South Korea", "South Sudan", "Spain", "Sri Lanka", "St Kitts & Nevis", "St Lucia", "St Vincent", "Sudan", "Suriname", "Swaziland", "Sweden", "Switzerland", "Syria", "Taiwan", "Tajikistan", "Tanzania", "Thailand", "Timor L'Este", "Togo", "Tonga", "Trinidad & Tobago", "Tunisia", "Turkey", "Turkmenistan", "Turks & Caicos", "Tuvalu", "Uganda", "Ukraine", "United Arab Emirates", "United Kingdom", "United States of America", "Uruguay", "Uzbekistan", "Vanuatu", "Vatican City", "Venezuela", "Vietnam", "Virgin Islands (US)", "Yemen", "Zambia", "Zimbabwe"]; 78 | 79 | var places = ['Kabul', 'Tirana', 'Algiers', 'Luanda', 'Saint', 'John\'s', 'Buenos', 'Aires', 'Yerevan', 'Canberra', 'Vienna', 'Baku', 'Nassau', 'Manama', 'Dhaka', 'Bridgetown', 'Minsk', 'Brussels', 'Belmopan', 'Porto', 'Novo', 'Thimphu', 'Sarajevo', 'Gaborone', 'Brasilia', 'Sofia', 'Ouagadougou', 'Gitega', 'Praia', 'Phnom', 'Penh', 'Yaounde', 'Ottawa', 'Bangui', 'Djamena', 'Santiago', 'Beijing', 'Bogotá', 'Moroni', 'Kinshasa', 'Brazzaville', 'San', 'Jose', 'Yamoussoukro', 'Zagreb', 'Havana', 'Nicosia', 'Prague', 'Suva', 'Helsinki', 'Paris', 'Libreville', 'Banjul', 'Tbilisi', 'Berlin', 'Accra', 'Athens', 'Saint', 'George\'s', 'Guatemala', 'City', 'Conakry', 'Bissau', 'Georgetown', 'Reykjavik', 'New', 'Delhi', 'Jakarta', 'Tehran', 'Baghdad', 'Dublin', 'Jerusalem', 'Rome', 'Kingston', 'Tokyo', 'Amman', 'NurSultan', 'Nairobi', 'Tarawa', 'Pristina', 'Kuwait', 'City', 'Bishkek', 'Vientiane', 'Riga', 'Beirut', 'Maseru', 'Monrovia', 'Tripoli', 'Vaduz', 'Vilnius', 'Luxembourg']; 80 | 81 | autocomplete(document.getElementById("autoCompleteCountries"), countries); 82 | autocomplete(document.getElementById("autoCompletePlace"), places); 83 | 84 | })(); -------------------------------------------------------------------------------- /js/default/internet-status.js: -------------------------------------------------------------------------------- 1 | (function ($) { 2 | 'use strict'; 3 | 4 | // :: Internet Connection Detect 5 | var internetStatus = $("#internetStatus"), 6 | onlineText = "Your internet connection is back", 7 | offlineText = "No Internet Connection!"; 8 | 9 | if (window.navigator.onLine) { 10 | internetStatus.css("display", "none").text(onlineText).addClass("internet-is-back").removeClass("internet-is-lost"); 11 | } else { 12 | internetStatus.css("display", "block").text(offlineText).addClass("internet-is-lost").removeClass("internet-is-back"); 13 | } 14 | 15 | window.addEventListener('offline', function () { 16 | internetStatus.text(offlineText).addClass("internet-is-lost").removeClass("internet-is-back").fadeIn(500); 17 | }); 18 | 19 | window.addEventListener('online', function () { 20 | internetStatus.text(onlineText).addClass("internet-is-back").removeClass("internet-is-lost").delay("5000").fadeOut(500); 21 | }); 22 | 23 | $(".offline-detection").on("click", function () { 24 | internetStatus.text(offlineText).addClass("internet-is-lost").removeClass("internet-is-back").fadeIn(500).delay("3000").fadeOut(500); 25 | }); 26 | 27 | $(".online-detection").on("click", function () { 28 | internetStatus.text(onlineText).addClass("internet-is-back").removeClass("internet-is-lost").fadeIn(500).delay("3000").fadeOut(500); 29 | }); 30 | 31 | })(jQuery); -------------------------------------------------------------------------------- /js/default/jquery.passwordstrength.js: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery Password Strength Indicator Plugin v0.1.0 3 | * 4 | * https://www.humankode.com 5 | * 6 | * Copyright (c) 2016 Carlo van Wyk 7 | * Released under the MIT license 8 | */ 9 | 10 | (function ($) { 11 | $.fn.passwordStrength = function (options) { 12 | var defaults = $.extend({ 13 | minimumChars: 8 14 | }, options); 15 | var parentContainer = this.parent(); 16 | var progressHtml = "
"; 17 | $(progressHtml).insertAfter('input[type=password]:last'); 18 | $('#password-score').text(defaults.defaultMessage); 19 | $('.password-meter-wrapper').hide(); 20 | $('#password-score').hide(); 21 | $(this).keyup(function (event) { 22 | $('.password-meter-wrapper').show(); 23 | $('#password-score').show(); 24 | var element = $(event.target); 25 | var password = element.val(); 26 | if (password.length == 0) { 27 | $('#password-score').html(''); 28 | $('#password-recommendation').html(''); 29 | $('.progress').hide(); 30 | $('#password-score').hide(); 31 | $('#password-strength-score').val(0); 32 | } 33 | else { 34 | var score = calculatePasswordScore(password, defaults); 35 | $('#password-strength-score').val(score); 36 | $('.progress-bar').css('width', score + '%').attr('aria-valuenow', score); 37 | $('#password-recommendation').css('margin-top', '10px'); 38 | if (score < 50) { 39 | $('#password-score').html('Weak password'); 40 | $('#password-recommendation').html('
Some tips for a strong password:
'); 41 | $('#password-progress').removeClass(); 42 | $('#password-progress').addClass('progress-bar bg-danger'); 43 | } 44 | else if (score <= 60) { 45 | $('#password-score').html('Normal password'); 46 | $('#password-recommendation').html('
For a stronger password:
'); 47 | $('#password-recommendation-heading').css('text-align', 'left'); 48 | $('#password-progress').removeClass(); 49 | $('#password-progress').addClass('progress-bar bg-warning'); 50 | } 51 | else if (score <= 80) { 52 | $('#password-score').html('Strong password'); 53 | $('#password-recommendation').html('
For an even stronger password:
'); 54 | $('#password-recommendation-heading').css('text-align', 'left'); 55 | $('#password-progress').removeClass(); 56 | $('#password-progress').addClass('progress-bar bg-info'); 57 | } 58 | else { 59 | $('#password-score').html('Very strong password'); 60 | $('#password-recommendation').html(''); 61 | $('#password-progress').removeClass(); 62 | $('#password-progress').addClass('progress-bar bg-success'); 63 | } 64 | } 65 | }); 66 | }; 67 | 68 | function calculatePasswordScore(password, options) { 69 | var score = 0; 70 | var hasNumericChars = false; 71 | var hasSpecialChars = false; 72 | var hasMixedCase = false; 73 | if (password.length < 1) 74 | return score; 75 | if (password.length < options.minimumChars) 76 | return score; 77 | //match numbers 78 | if (/\d+/.test(password)) { 79 | hasNumericChars = true; 80 | score += 20; 81 | var count = (password.match(/\d+?/g)).length; 82 | if (count > 1) { 83 | //apply extra score if more than 1 numeric character 84 | score += 10; 85 | } 86 | } 87 | 88 | //match special characters including spaces 89 | if (/[\W]+/.test(password)) { 90 | hasSpecialChars = true; 91 | score += 20; 92 | var count = (password.match(/[\W]+?/g)).length; 93 | if (count > 1) { 94 | //apply extra score if more than 1 special character 95 | score += 10; 96 | } 97 | } 98 | //mixed case 99 | if ((/[a-z]/.test(password)) && (/[A-Z]/.test(password))) { 100 | hasMixedCase = true; 101 | score += 20; 102 | } 103 | if (password.length >= options.minimumChars && password.length < 12) { 104 | score += 10; 105 | } else if (!hasMixedCase && password.length >= 12) { 106 | score += 10; 107 | } 108 | if ((password.length >= 12 && password.length <= 15) && (hasMixedCase && (hasSpecialChars || hasNumericChars))) { 109 | score += 20; 110 | } 111 | else if (password.length >= 12 && password.length <= 15) { 112 | score += 10; 113 | } 114 | if ((password.length > 15 && password.length <= 20) && (hasMixedCase && (hasSpecialChars || hasNumericChars))) { 115 | score += 30; 116 | } 117 | else if (password.length > 15 && password.length <= 20) { 118 | score += 10; 119 | } 120 | if ((password.length > 20) && (hasMixedCase && (hasSpecialChars || hasNumericChars))) { 121 | score += 40; 122 | } 123 | else if (password.length > 20) { 124 | score += 20; 125 | } 126 | if (score > 100) 127 | score = 100; 128 | return score; 129 | } 130 | }(jQuery)); -------------------------------------------------------------------------------- /js/default/otp-timer.js: -------------------------------------------------------------------------------- 1 | (function () { 2 | 'use strict'; 3 | 4 | var optcount = 60; 5 | var optcounter = setInterval(otptimer, 1000); //1000 will run it every 1 second 6 | 7 | function otptimer() { 8 | optcount = optcount - 1; 9 | if (optcount <= 0) { 10 | clearInterval(optcounter); 11 | document.getElementById("resendOTP").innerHTML = 'Resend OTP'; 12 | } else { 13 | document.getElementById("resendOTP").innerHTML = 'Wait ' + optcount + ' secs'; 14 | } 15 | 16 | if (optcount <= 10) { 17 | document.getElementById("resendOTP").style.color = "red"; 18 | } 19 | } 20 | 21 | })(); -------------------------------------------------------------------------------- /js/imagesloaded.pkgd.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * imagesLoaded PACKAGED v4.1.4 3 | * JavaScript is all like "You images are done yet or what?" 4 | * MIT License 5 | */ 6 | 7 | !function(e,t){"function"==typeof define&&define.amd?define("ev-emitter/ev-emitter",t):"object"==typeof module&&module.exports?module.exports=t():e.EvEmitter=t()}("undefined"!=typeof window?window:this,function(){function e(){}var t=e.prototype;return t.on=function(e,t){if(e&&t){var i=this._events=this._events||{},n=i[e]=i[e]||[];return n.indexOf(t)==-1&&n.push(t),this}},t.once=function(e,t){if(e&&t){this.on(e,t);var i=this._onceEvents=this._onceEvents||{},n=i[e]=i[e]||{};return n[t]=!0,this}},t.off=function(e,t){var i=this._events&&this._events[e];if(i&&i.length){var n=i.indexOf(t);return n!=-1&&i.splice(n,1),this}},t.emitEvent=function(e,t){var i=this._events&&this._events[e];if(i&&i.length){i=i.slice(0),t=t||[];for(var n=this._onceEvents&&this._onceEvents[e],o=0;o1?c:d}var f=[],g=[],h={precision:100,elapse:!1,defer:!1};g.push(/^[0-9]*$/.source),g.push(/([0-9]{1,2}\/){2}[0-9]{4}( [0-9]{1,2}(:[0-9]{2}){2})?/.source),g.push(/[0-9]{4}([\/\-][0-9]{1,2}){2}( [0-9]{1,2}(:[0-9]{2}){2})?/.source),g=new RegExp(g.join("|"));var i={Y:"years",m:"months",n:"daysToMonth",d:"daysToWeek",w:"weeks",W:"weeksToMonth",H:"hours",M:"minutes",S:"seconds",D:"totalDays",I:"totalHours",N:"totalMinutes",T:"totalSeconds"},j=function(b,c,d){this.el=b,this.$el=a(b),this.interval=null,this.offset={},this.options=a.extend({},h),this.instanceNumber=f.length,f.push(this),this.$el.data("countdown-instance",this.instanceNumber),d&&("function"==typeof d?(this.$el.on("update.countdown",d),this.$el.on("stoped.countdown",d),this.$el.on("finish.countdown",d)):this.options=a.extend({},h,d)),this.setFinalDate(c),this.options.defer===!1&&this.start()};a.extend(j.prototype,{start:function(){null!==this.interval&&clearInterval(this.interval);var a=this;this.update(),this.interval=setInterval(function(){a.update.call(a)},this.options.precision)},stop:function(){clearInterval(this.interval),this.interval=null,this.dispatchEvent("stoped")},toggle:function(){this.interval?this.stop():this.start()},pause:function(){this.stop()},resume:function(){this.start()},remove:function(){this.stop.call(this),f[this.instanceNumber]=null,delete this.$el.data().countdownInstance},setFinalDate:function(a){this.finalDate=b(a)},update:function(){if(0===this.$el.closest("html").length)return void this.remove();var b,c=void 0!==a._data(this.el,"events"),d=new Date;b=this.finalDate.getTime()-d.getTime(),b=Math.ceil(b/1e3),b=!this.options.elapse&&b<0?0:Math.abs(b),this.totalSecsLeft!==b&&c&&(this.totalSecsLeft=b,this.elapsed=d>=this.finalDate,this.offset={seconds:this.totalSecsLeft%60,minutes:Math.floor(this.totalSecsLeft/60)%60,hours:Math.floor(this.totalSecsLeft/60/60)%24,days:Math.floor(this.totalSecsLeft/60/60/24)%7,daysToWeek:Math.floor(this.totalSecsLeft/60/60/24)%7,daysToMonth:Math.floor(this.totalSecsLeft/60/60/24%30.4368),weeks:Math.floor(this.totalSecsLeft/60/60/24/7),weeksToMonth:Math.floor(this.totalSecsLeft/60/60/24/7)%4,months:Math.floor(this.totalSecsLeft/60/60/24/30.4368),years:Math.abs(this.finalDate.getFullYear()-d.getFullYear()),totalDays:Math.floor(this.totalSecsLeft/60/60/24),totalHours:Math.floor(this.totalSecsLeft/60/60),totalMinutes:Math.floor(this.totalSecsLeft/60),totalSeconds:this.totalSecsLeft},this.options.elapse||0!==this.totalSecsLeft?this.dispatchEvent("update"):(this.stop(),this.dispatchEvent("finish")))},dispatchEvent:function(b){var c=a.Event(b+".countdown");c.finalDate=this.finalDate,c.elapsed=this.elapsed,c.offset=a.extend({},this.offset),c.strftime=d(this.offset),this.$el.trigger(c)}}),a.fn.countdown=function(){var b=Array.prototype.slice.call(arguments,0);return this.each(function(){var c=a(this).data("countdown-instance");if(void 0!==c){var d=f[c],e=b[0];j.prototype.hasOwnProperty(e)?d[e].apply(d,b.slice(1)):null===String(e).match(/^[$A-Z_][0-9A-Z_$]*$/i)?(d.setFinalDate.call(d,e),d.start()):a.error("Method %s does not exist on jQuery.countdown".replace(/\%s/gi,e))}else new j(this,b[0],b[1])})}}); -------------------------------------------------------------------------------- /js/jquery.counterup.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * jquery.counterup.js 1.0 3 | * 4 | * Copyright 2013, Benjamin Intal http://gambit.ph @bfintal 5 | * Released under the GPL v2 License 6 | * 7 | * Date: Nov 26, 2013 8 | */(function(e){"use strict";e.fn.counterUp=function(t){var n=e.extend({time:400,delay:10},t);return this.each(function(){var t=e(this),r=n,i=function(){var e=[],n=r.time/r.delay,i=t.text(),s=/[0-9]+,[0-9]+/.test(i);i=i.replace(/,/g,"");var o=/^[0-9]+$/.test(i),u=/^[0-9]+\.[0-9]+$/.test(i),a=u?(i.split(".")[1]||[]).length:0;for(var f=n;f>=1;f--){var l=parseInt(i/n*f);u&&(l=parseFloat(i/n*f).toFixed(a));if(s)while(/(\d+)(\d{3})/.test(l.toString()))l=l.toString().replace(/(\d+)(\d{3})/,"$1,$2");e.unshift(l)}t.data("counterup-nums",e);t.text("0");var c=function(){t.text(t.data("counterup-nums").shift());if(t.data("counterup-nums").length)setTimeout(t.data("counterup-func"),r.delay);else{delete t.data("counterup-nums");t.data("counterup-nums",null);t.data("counterup-func",null)}};t.data("counterup-func",c);setTimeout(t.data("counterup-func"),r.delay)};t.waypoint(i,{offset:"100%",triggerOnce:!0})})}})(jQuery); -------------------------------------------------------------------------------- /js/jquery.easing.min.js: -------------------------------------------------------------------------------- 1 | (function(factory){if(typeof define==="function"&&define.amd){define(["jquery"],function($){return factory($)})}else if(typeof module==="object"&&typeof module.exports==="object"){exports=factory(require("jquery"))}else{factory(jQuery)}})(function($){$.easing.jswing=$.easing.swing;var pow=Math.pow,sqrt=Math.sqrt,sin=Math.sin,cos=Math.cos,PI=Math.PI,c1=1.70158,c2=c1*1.525,c3=c1+1,c4=2*PI/3,c5=2*PI/4.5;function bounceOut(x){var n1=7.5625,d1=2.75;if(x<1/d1){return n1*x*x}else if(x<2/d1){return n1*(x-=1.5/d1)*x+.75}else if(x<2.5/d1){return n1*(x-=2.25/d1)*x+.9375}else{return n1*(x-=2.625/d1)*x+.984375}}$.extend($.easing,{def:"easeOutQuad",swing:function(x){return $.easing[$.easing.def](x)},easeInQuad:function(x){return x*x},easeOutQuad:function(x){return 1-(1-x)*(1-x)},easeInOutQuad:function(x){return x<.5?2*x*x:1-pow(-2*x+2,2)/2},easeInCubic:function(x){return x*x*x},easeOutCubic:function(x){return 1-pow(1-x,3)},easeInOutCubic:function(x){return x<.5?4*x*x*x:1-pow(-2*x+2,3)/2},easeInQuart:function(x){return x*x*x*x},easeOutQuart:function(x){return 1-pow(1-x,4)},easeInOutQuart:function(x){return x<.5?8*x*x*x*x:1-pow(-2*x+2,4)/2},easeInQuint:function(x){return x*x*x*x*x},easeOutQuint:function(x){return 1-pow(1-x,5)},easeInOutQuint:function(x){return x<.5?16*x*x*x*x*x:1-pow(-2*x+2,5)/2},easeInSine:function(x){return 1-cos(x*PI/2)},easeOutSine:function(x){return sin(x*PI/2)},easeInOutSine:function(x){return-(cos(PI*x)-1)/2},easeInExpo:function(x){return x===0?0:pow(2,10*x-10)},easeOutExpo:function(x){return x===1?1:1-pow(2,-10*x)},easeInOutExpo:function(x){return x===0?0:x===1?1:x<.5?pow(2,20*x-10)/2:(2-pow(2,-20*x+10))/2},easeInCirc:function(x){return 1-sqrt(1-pow(x,2))},easeOutCirc:function(x){return sqrt(1-pow(x-1,2))},easeInOutCirc:function(x){return x<.5?(1-sqrt(1-pow(2*x,2)))/2:(sqrt(1-pow(-2*x+2,2))+1)/2},easeInElastic:function(x){return x===0?0:x===1?1:-pow(2,10*x-10)*sin((x*10-10.75)*c4)},easeOutElastic:function(x){return x===0?0:x===1?1:pow(2,-10*x)*sin((x*10-.75)*c4)+1},easeInOutElastic:function(x){return x===0?0:x===1?1:x<.5?-(pow(2,20*x-10)*sin((20*x-11.125)*c5))/2:pow(2,-20*x+10)*sin((20*x-11.125)*c5)/2+1},easeInBack:function(x){return c3*x*x*x-c1*x*x},easeOutBack:function(x){return 1+c3*pow(x-1,3)+c1*pow(x-1,2)},easeInOutBack:function(x){return x<.5?pow(2*x,2)*((c2+1)*2*x-c2)/2:(pow(2*x-2,2)*((c2+1)*(x*2-2)+c2)+2)/2},easeInBounce:function(x){return 1-bounceOut(1-x)},easeOutBounce:bounceOut,easeInOutBounce:function(x){return x<.5?(1-bounceOut(1-2*x))/2:(1+bounceOut(2*x-1))/2}})}); -------------------------------------------------------------------------------- /js/jquery.magnific-popup.min.js: -------------------------------------------------------------------------------- 1 | /*! Magnific Popup - v1.1.0 - 2016-02-20 2 | * http://dimsemenov.com/plugins/magnific-popup/ 3 | * Copyright (c) 2016 Dmitry Semenov; */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery"],a):a("object"==typeof exports?require("jquery"):window.jQuery||window.Zepto)}(function(a){var b,c,d,e,f,g,h="Close",i="BeforeClose",j="AfterClose",k="BeforeAppend",l="MarkupParse",m="Open",n="Change",o="mfp",p="."+o,q="mfp-ready",r="mfp-removing",s="mfp-prevent-close",t=function(){},u=!!window.jQuery,v=a(window),w=function(a,c){b.ev.on(o+a+p,c)},x=function(b,c,d,e){var f=document.createElement("div");return f.className="mfp-"+b,d&&(f.innerHTML=d),e?c&&c.appendChild(f):(f=a(f),c&&f.appendTo(c)),f},y=function(c,d){b.ev.triggerHandler(o+c,d),b.st.callbacks&&(c=c.charAt(0).toLowerCase()+c.slice(1),b.st.callbacks[c]&&b.st.callbacks[c].apply(b,a.isArray(d)?d:[d]))},z=function(c){return c===g&&b.currTemplate.closeBtn||(b.currTemplate.closeBtn=a(b.st.closeMarkup.replace("%title%",b.st.tClose)),g=c),b.currTemplate.closeBtn},A=function(){a.magnificPopup.instance||(b=new t,b.init(),a.magnificPopup.instance=b)},B=function(){var a=document.createElement("p").style,b=["ms","O","Moz","Webkit"];if(void 0!==a.transition)return!0;for(;b.length;)if(b.pop()+"Transition"in a)return!0;return!1};t.prototype={constructor:t,init:function(){var c=navigator.appVersion;b.isLowIE=b.isIE8=document.all&&!document.addEventListener,b.isAndroid=/android/gi.test(c),b.isIOS=/iphone|ipad|ipod/gi.test(c),b.supportsTransition=B(),b.probablyMobile=b.isAndroid||b.isIOS||/(Opera Mini)|Kindle|webOS|BlackBerry|(Opera Mobi)|(Windows Phone)|IEMobile/i.test(navigator.userAgent),d=a(document),b.popupsCache={}},open:function(c){var e;if(c.isObj===!1){b.items=c.items.toArray(),b.index=0;var g,h=c.items;for(e=0;e(a||v.height())},_setFocus:function(){(b.st.focus?b.content.find(b.st.focus).eq(0):b.wrap).focus()},_onFocusIn:function(c){return c.target===b.wrap[0]||a.contains(b.wrap[0],c.target)?void 0:(b._setFocus(),!1)},_parseMarkup:function(b,c,d){var e;d.data&&(c=a.extend(d.data,c)),y(l,[b,c,d]),a.each(c,function(c,d){if(void 0===d||d===!1)return!0;if(e=c.split("_"),e.length>1){var f=b.find(p+"-"+e[0]);if(f.length>0){var g=e[1];"replaceWith"===g?f[0]!==d[0]&&f.replaceWith(d):"img"===g?f.is("img")?f.attr("src",d):f.replaceWith(a("").attr("src",d).attr("class",f.attr("class"))):f.attr(e[1],d)}}else b.find(p+"-"+c).html(d)})},_getScrollbarSize:function(){if(void 0===b.scrollbarSize){var a=document.createElement("div");a.style.cssText="width: 99px; height: 99px; overflow: scroll; position: absolute; top: -9999px;",document.body.appendChild(a),b.scrollbarSize=a.offsetWidth-a.clientWidth,document.body.removeChild(a)}return b.scrollbarSize}},a.magnificPopup={instance:null,proto:t.prototype,modules:[],open:function(b,c){return A(),b=b?a.extend(!0,{},b):{},b.isObj=!0,b.index=c||0,this.instance.open(b)},close:function(){return a.magnificPopup.instance&&a.magnificPopup.instance.close()},registerModule:function(b,c){c.options&&(a.magnificPopup.defaults[b]=c.options),a.extend(this.proto,c.proto),this.modules.push(b)},defaults:{disableOn:0,key:null,midClick:!1,mainClass:"",preloader:!0,focus:"",closeOnContentClick:!1,closeOnBgClick:!0,closeBtnInside:!0,showCloseBtn:!0,enableEscapeKey:!0,modal:!1,alignTop:!1,removalDelay:0,prependTo:null,fixedContentPos:"auto",fixedBgPos:"auto",overflowY:"auto",closeMarkup:'',tClose:"Close (Esc)",tLoading:"Loading...",autoFocusLast:!0}},a.fn.magnificPopup=function(c){A();var d=a(this);if("string"==typeof c)if("open"===c){var e,f=u?d.data("magnificPopup"):d[0].magnificPopup,g=parseInt(arguments[1],10)||0;f.items?e=f.items[g]:(e=d,f.delegate&&(e=e.find(f.delegate)),e=e.eq(g)),b._openClick({mfpEl:e},d,f)}else b.isOpen&&b[c].apply(b,Array.prototype.slice.call(arguments,1));else c=a.extend(!0,{},c),u?d.data("magnificPopup",c):d[0].magnificPopup=c,b.addGroup(d,c);return d};var C,D,E,F="inline",G=function(){E&&(D.after(E.addClass(C)).detach(),E=null)};a.magnificPopup.registerModule(F,{options:{hiddenClass:"hide",markup:"",tNotFound:"Content not found"},proto:{initInline:function(){b.types.push(F),w(h+"."+F,function(){G()})},getInline:function(c,d){if(G(),c.src){var e=b.st.inline,f=a(c.src);if(f.length){var g=f[0].parentNode;g&&g.tagName&&(D||(C=e.hiddenClass,D=x(C),C="mfp-"+C),E=f.after(D).detach().removeClass(C)),b.updateStatus("ready")}else b.updateStatus("error",e.tNotFound),f=a("
");return c.inlineElement=f,f}return b.updateStatus("ready"),b._parseMarkup(d,{},c),d}}});var H,I="ajax",J=function(){H&&a(document.body).removeClass(H)},K=function(){J(),b.req&&b.req.abort()};a.magnificPopup.registerModule(I,{options:{settings:null,cursor:"mfp-ajax-cur",tError:'The content could not be loaded.'},proto:{initAjax:function(){b.types.push(I),H=b.st.ajax.cursor,w(h+"."+I,K),w("BeforeChange."+I,K)},getAjax:function(c){H&&a(document.body).addClass(H),b.updateStatus("loading");var d=a.extend({url:c.src,success:function(d,e,f){var g={data:d,xhr:f};y("ParseAjax",g),b.appendContent(a(g.data),I),c.finished=!0,J(),b._setFocus(),setTimeout(function(){b.wrap.addClass(q)},16),b.updateStatus("ready"),y("AjaxContentAdded")},error:function(){J(),c.finished=c.loadError=!0,b.updateStatus("error",b.st.ajax.tError.replace("%url%",c.src))}},b.st.ajax.settings);return b.req=a.ajax(d),""}}});var L,M=function(c){if(c.data&&void 0!==c.data.title)return c.data.title;var d=b.st.image.titleSrc;if(d){if(a.isFunction(d))return d.call(b,c);if(c.el)return c.el.attr(d)||""}return""};a.magnificPopup.registerModule("image",{options:{markup:'
',cursor:"mfp-zoom-out-cur",titleSrc:"title",verticalFit:!0,tError:'The image could not be loaded.'},proto:{initImage:function(){var c=b.st.image,d=".image";b.types.push("image"),w(m+d,function(){"image"===b.currItem.type&&c.cursor&&a(document.body).addClass(c.cursor)}),w(h+d,function(){c.cursor&&a(document.body).removeClass(c.cursor),v.off("resize"+p)}),w("Resize"+d,b.resizeImage),b.isLowIE&&w("AfterChange",b.resizeImage)},resizeImage:function(){var a=b.currItem;if(a&&a.img&&b.st.image.verticalFit){var c=0;b.isLowIE&&(c=parseInt(a.img.css("padding-top"),10)+parseInt(a.img.css("padding-bottom"),10)),a.img.css("max-height",b.wH-c)}},_onImageHasSize:function(a){a.img&&(a.hasSize=!0,L&&clearInterval(L),a.isCheckingImgSize=!1,y("ImageHasSize",a),a.imgHidden&&(b.content&&b.content.removeClass("mfp-loading"),a.imgHidden=!1))},findImageSize:function(a){var c=0,d=a.img[0],e=function(f){L&&clearInterval(L),L=setInterval(function(){return d.naturalWidth>0?void b._onImageHasSize(a):(c>200&&clearInterval(L),c++,void(3===c?e(10):40===c?e(50):100===c&&e(500)))},f)};e(1)},getImage:function(c,d){var e=0,f=function(){c&&(c.img[0].complete?(c.img.off(".mfploader"),c===b.currItem&&(b._onImageHasSize(c),b.updateStatus("ready")),c.hasSize=!0,c.loaded=!0,y("ImageLoadComplete")):(e++,200>e?setTimeout(f,100):g()))},g=function(){c&&(c.img.off(".mfploader"),c===b.currItem&&(b._onImageHasSize(c),b.updateStatus("error",h.tError.replace("%url%",c.src))),c.hasSize=!0,c.loaded=!0,c.loadError=!0)},h=b.st.image,i=d.find(".mfp-img");if(i.length){var j=document.createElement("img");j.className="mfp-img",c.el&&c.el.find("img").length&&(j.alt=c.el.find("img").attr("alt")),c.img=a(j).on("load.mfploader",f).on("error.mfploader",g),j.src=c.src,i.is("img")&&(c.img=c.img.clone()),j=c.img[0],j.naturalWidth>0?c.hasSize=!0:j.width||(c.hasSize=!1)}return b._parseMarkup(d,{title:M(c),img_replaceWith:c.img},c),b.resizeImage(),c.hasSize?(L&&clearInterval(L),c.loadError?(d.addClass("mfp-loading"),b.updateStatus("error",h.tError.replace("%url%",c.src))):(d.removeClass("mfp-loading"),b.updateStatus("ready")),d):(b.updateStatus("loading"),c.loading=!0,c.hasSize||(c.imgHidden=!0,d.addClass("mfp-loading"),b.findImageSize(c)),d)}}});var N,O=function(){return void 0===N&&(N=void 0!==document.createElement("p").style.MozTransform),N};a.magnificPopup.registerModule("zoom",{options:{enabled:!1,easing:"ease-in-out",duration:300,opener:function(a){return a.is("img")?a:a.find("img")}},proto:{initZoom:function(){var a,c=b.st.zoom,d=".zoom";if(c.enabled&&b.supportsTransition){var e,f,g=c.duration,j=function(a){var b=a.clone().removeAttr("style").removeAttr("class").addClass("mfp-animated-image"),d="all "+c.duration/1e3+"s "+c.easing,e={position:"fixed",zIndex:9999,left:0,top:0,"-webkit-backface-visibility":"hidden"},f="transition";return e["-webkit-"+f]=e["-moz-"+f]=e["-o-"+f]=e[f]=d,b.css(e),b},k=function(){b.content.css("visibility","visible")};w("BuildControls"+d,function(){if(b._allowZoom()){if(clearTimeout(e),b.content.css("visibility","hidden"),a=b._getItemToZoom(),!a)return void k();f=j(a),f.css(b._getOffset()),b.wrap.append(f),e=setTimeout(function(){f.css(b._getOffset(!0)),e=setTimeout(function(){k(),setTimeout(function(){f.remove(),a=f=null,y("ZoomAnimationEnded")},16)},g)},16)}}),w(i+d,function(){if(b._allowZoom()){if(clearTimeout(e),b.st.removalDelay=g,!a){if(a=b._getItemToZoom(),!a)return;f=j(a)}f.css(b._getOffset(!0)),b.wrap.append(f),b.content.css("visibility","hidden"),setTimeout(function(){f.css(b._getOffset())},16)}}),w(h+d,function(){b._allowZoom()&&(k(),f&&f.remove(),a=null)})}},_allowZoom:function(){return"image"===b.currItem.type},_getItemToZoom:function(){return b.currItem.hasSize?b.currItem.img:!1},_getOffset:function(c){var d;d=c?b.currItem.img:b.st.zoom.opener(b.currItem.el||b.currItem);var e=d.offset(),f=parseInt(d.css("padding-top"),10),g=parseInt(d.css("padding-bottom"),10);e.top-=a(window).scrollTop()-f;var h={width:d.width(),height:(u?d.innerHeight():d[0].offsetHeight)-g-f};return O()?h["-moz-transform"]=h.transform="translate("+e.left+"px,"+e.top+"px)":(h.left=e.left,h.top=e.top),h}}});var P="iframe",Q="//about:blank",R=function(a){if(b.currTemplate[P]){var c=b.currTemplate[P].find("iframe");c.length&&(a||(c[0].src=Q),b.isIE8&&c.css("display",a?"block":"none"))}};a.magnificPopup.registerModule(P,{options:{markup:'
',srcAction:"iframe_src",patterns:{youtube:{index:"youtube.com",id:"v=",src:"//www.youtube.com/embed/%id%?autoplay=1"},vimeo:{index:"vimeo.com/",id:"/",src:"//player.vimeo.com/video/%id%?autoplay=1"},gmaps:{index:"//maps.google.",src:"%id%&output=embed"}}},proto:{initIframe:function(){b.types.push(P),w("BeforeChange",function(a,b,c){b!==c&&(b===P?R():c===P&&R(!0))}),w(h+"."+P,function(){R()})},getIframe:function(c,d){var e=c.src,f=b.st.iframe;a.each(f.patterns,function(){return e.indexOf(this.index)>-1?(this.id&&(e="string"==typeof this.id?e.substr(e.lastIndexOf(this.id)+this.id.length,e.length):this.id.call(this,e)),e=this.src.replace("%id%",e),!1):void 0});var g={};return f.srcAction&&(g[f.srcAction]=e),b._parseMarkup(d,g,c),b.updateStatus("ready"),d}}});var S=function(a){var c=b.items.length;return a>c-1?a-c:0>a?c+a:a},T=function(a,b,c){return a.replace(/%curr%/gi,b+1).replace(/%total%/gi,c)};a.magnificPopup.registerModule("gallery",{options:{enabled:!1,arrowMarkup:'',preload:[0,2],navigateByImgClick:!0,arrows:!0,tPrev:"Previous (Left arrow key)",tNext:"Next (Right arrow key)",tCounter:"%curr% of %total%"},proto:{initGallery:function(){var c=b.st.gallery,e=".mfp-gallery";return b.direction=!0,c&&c.enabled?(f+=" mfp-gallery",w(m+e,function(){c.navigateByImgClick&&b.wrap.on("click"+e,".mfp-img",function(){return b.items.length>1?(b.next(),!1):void 0}),d.on("keydown"+e,function(a){37===a.keyCode?b.prev():39===a.keyCode&&b.next()})}),w("UpdateStatus"+e,function(a,c){c.text&&(c.text=T(c.text,b.currItem.index,b.items.length))}),w(l+e,function(a,d,e,f){var g=b.items.length;e.counter=g>1?T(c.tCounter,f.index,g):""}),w("BuildControls"+e,function(){if(b.items.length>1&&c.arrows&&!b.arrowLeft){var d=c.arrowMarkup,e=b.arrowLeft=a(d.replace(/%title%/gi,c.tPrev).replace(/%dir%/gi,"left")).addClass(s),f=b.arrowRight=a(d.replace(/%title%/gi,c.tNext).replace(/%dir%/gi,"right")).addClass(s);e.click(function(){b.prev()}),f.click(function(){b.next()}),b.container.append(e.add(f))}}),w(n+e,function(){b._preloadTimeout&&clearTimeout(b._preloadTimeout),b._preloadTimeout=setTimeout(function(){b.preloadNearbyImages(),b._preloadTimeout=null},16)}),void w(h+e,function(){d.off(e),b.wrap.off("click"+e),b.arrowRight=b.arrowLeft=null})):!1},next:function(){b.direction=!0,b.index=S(b.index+1),b.updateItemHTML()},prev:function(){b.direction=!1,b.index=S(b.index-1),b.updateItemHTML()},goTo:function(a){b.direction=a>=b.index,b.index=a,b.updateItemHTML()},preloadNearbyImages:function(){var a,c=b.st.gallery.preload,d=Math.min(c[0],b.items.length),e=Math.min(c[1],b.items.length);for(a=1;a<=(b.direction?e:d);a++)b._preloadItem(b.index+a);for(a=1;a<=(b.direction?d:e);a++)b._preloadItem(b.index-a)},_preloadItem:function(c){if(c=S(c),!b.items[c].preloaded){var d=b.items[c];d.parsed||(d=b.parseEl(c)),y("LazyLoad",d),"image"===d.type&&(d.img=a('').on("load.mfploader",function(){d.hasSize=!0}).on("error.mfploader",function(){d.hasSize=!0,d.loadError=!0,y("LazyLoadError",d)}).attr("src",d.src)),d.preloaded=!0}}}});var U="retina";a.magnificPopup.registerModule(U,{options:{replaceSrc:function(a){return a.src.replace(/\.\w+$/,function(a){return"@2x"+a})},ratio:1},proto:{initRetina:function(){if(window.devicePixelRatio>1){var a=b.st.retina,c=a.ratio;c=isNaN(c)?c():c,c>1&&(w("ImageHasSize."+U,function(a,b){b.img.css({"max-width":b.img[0].naturalWidth/c,width:"100%"})}),w("ElementParse."+U,function(b,d){d.src=a.replaceSrc(d,c)}))}}}}),A()}); -------------------------------------------------------------------------------- /js/pwa.js: -------------------------------------------------------------------------------- 1 | // Service Worker Register 2 | if ('serviceWorker' in navigator) { 3 | window.addEventListener('load', function () { 4 | navigator.serviceWorker.register('service-worker.js') 5 | .then(registration => { 6 | //console.log('Service Worker is registered', registration); 7 | }) 8 | .catch(err => { 9 | //console.error('Registration failed:', err); 10 | }); 11 | }); 12 | } -------------------------------------------------------------------------------- /js/waypoints.min.js: -------------------------------------------------------------------------------- 1 | // Generated by CoffeeScript 1.6.2 2 | /*! 3 | jQuery Waypoints - v2.0.5 4 | Copyright (c) 2011-2014 Caleb Troughton 5 | Licensed under the MIT license. 6 | https://github.com/imakewebthings/jquery-waypoints/blob/master/licenses.txt 7 | */ 8 | (function(){var t=[].indexOf||function(t){for(var e=0,n=this.length;e=0;s={horizontal:{},vertical:{}};f=1;c={};u="waypoints-context-id";p="resize.waypoints";y="scroll.waypoints";v=1;w="waypoints-waypoint-ids";g="waypoint";m="waypoints";o=function(){function t(t){var e=this;this.$element=t;this.element=t[0];this.didResize=false;this.didScroll=false;this.id="context"+f++;this.oldScroll={x:t.scrollLeft(),y:t.scrollTop()};this.waypoints={horizontal:{},vertical:{}};this.element[u]=this.id;c[this.id]=this;t.bind(y,function(){var t;if(!(e.didScroll||a)){e.didScroll=true;t=function(){e.doScroll();return e.didScroll=false};return r.setTimeout(t,n[m].settings.scrollThrottle)}});t.bind(p,function(){var t;if(!e.didResize){e.didResize=true;t=function(){n[m]("refresh");return e.didResize=false};return r.setTimeout(t,n[m].settings.resizeThrottle)}})}t.prototype.doScroll=function(){var t,e=this;t={horizontal:{newScroll:this.$element.scrollLeft(),oldScroll:this.oldScroll.x,forward:"right",backward:"left"},vertical:{newScroll:this.$element.scrollTop(),oldScroll:this.oldScroll.y,forward:"down",backward:"up"}};if(a&&(!t.vertical.oldScroll||!t.vertical.newScroll)){n[m]("refresh")}n.each(t,function(t,r){var i,o,l;l=[];o=r.newScroll>r.oldScroll;i=o?r.forward:r.backward;n.each(e.waypoints[t],function(t,e){var n,i;if(r.oldScroll<(n=e.offset)&&n<=r.newScroll){return l.push(e)}else if(r.newScroll<(i=e.offset)&&i<=r.oldScroll){return l.push(e)}});l.sort(function(t,e){return t.offset-e.offset});if(!o){l.reverse()}return n.each(l,function(t,e){if(e.options.continuous||t===l.length-1){return e.trigger([i])}})});return this.oldScroll={x:t.horizontal.newScroll,y:t.vertical.newScroll}};t.prototype.refresh=function(){var t,e,r,i=this;r=n.isWindow(this.element);e=this.$element.offset();this.doScroll();t={horizontal:{contextOffset:r?0:e.left,contextScroll:r?0:this.oldScroll.x,contextDimension:this.$element.width(),oldScroll:this.oldScroll.x,forward:"right",backward:"left",offsetProp:"left"},vertical:{contextOffset:r?0:e.top,contextScroll:r?0:this.oldScroll.y,contextDimension:r?n[m]("viewportHeight"):this.$element.height(),oldScroll:this.oldScroll.y,forward:"down",backward:"up",offsetProp:"top"}};return n.each(t,function(t,e){return n.each(i.waypoints[t],function(t,r){var i,o,l,s,f;i=r.options.offset;l=r.offset;o=n.isWindow(r.element)?0:r.$element.offset()[e.offsetProp];if(n.isFunction(i)){i=i.apply(r.element)}else if(typeof i==="string"){i=parseFloat(i);if(r.options.offset.indexOf("%")>-1){i=Math.ceil(e.contextDimension*i/100)}}r.offset=o-e.contextOffset+e.contextScroll-i;if(r.options.onlyOnScroll&&l!=null||!r.enabled){return}if(l!==null&&l<(s=e.oldScroll)&&s<=r.offset){return r.trigger([e.backward])}else if(l!==null&&l>(f=e.oldScroll)&&f>=r.offset){return r.trigger([e.forward])}else if(l===null&&e.oldScroll>=r.offset){return r.trigger([e.forward])}})})};t.prototype.checkEmpty=function(){if(n.isEmptyObject(this.waypoints.horizontal)&&n.isEmptyObject(this.waypoints.vertical)){this.$element.unbind([p,y].join(" "));return delete c[this.id]}};return t}();l=function(){function t(t,e,r){var i,o;if(r.offset==="bottom-in-view"){r.offset=function(){var t;t=n[m]("viewportHeight");if(!n.isWindow(e.element)){t=e.$element.height()}return t-n(this).outerHeight()}}this.$element=t;this.element=t[0];this.axis=r.horizontal?"horizontal":"vertical";this.callback=r.handler;this.context=e;this.enabled=r.enabled;this.id="waypoints"+v++;this.offset=null;this.options=r;e.waypoints[this.axis][this.id]=this;s[this.axis][this.id]=this;i=(o=this.element[w])!=null?o:[];i.push(this.id);this.element[w]=i}t.prototype.trigger=function(t){if(!this.enabled){return}if(this.callback!=null){this.callback.apply(this.element,t)}if(this.options.triggerOnce){return this.destroy()}};t.prototype.disable=function(){return this.enabled=false};t.prototype.enable=function(){this.context.refresh();return this.enabled=true};t.prototype.destroy=function(){delete s[this.axis][this.id];delete this.context.waypoints[this.axis][this.id];return this.context.checkEmpty()};t.getWaypointsByElement=function(t){var e,r;r=t[w];if(!r){return[]}e=n.extend({},s.horizontal,s.vertical);return n.map(r,function(t){return e[t]})};return t}();d={init:function(t,e){var r;e=n.extend({},n.fn[g].defaults,e);if((r=e.handler)==null){e.handler=t}this.each(function(){var t,r,i,s;t=n(this);i=(s=e.context)!=null?s:n.fn[g].defaults.context;if(!n.isWindow(i)){i=t.closest(i)}i=n(i);r=c[i[0][u]];if(!r){r=new o(i)}return new l(t,r,e)});n[m]("refresh");return this},disable:function(){return d._invoke.call(this,"disable")},enable:function(){return d._invoke.call(this,"enable")},destroy:function(){return d._invoke.call(this,"destroy")},prev:function(t,e){return d._traverse.call(this,t,e,function(t,e,n){if(e>0){return t.push(n[e-1])}})},next:function(t,e){return d._traverse.call(this,t,e,function(t,e,n){if(et.oldScroll.y})},left:function(t){if(t==null){t=r}return h._filter(t,"horizontal",function(t,e){return e.offset<=t.oldScroll.x})},right:function(t){if(t==null){t=r}return h._filter(t,"horizontal",function(t,e){return e.offset>t.oldScroll.x})},enable:function(){return h._invoke("enable")},disable:function(){return h._invoke("disable")},destroy:function(){return h._invoke("destroy")},extendFn:function(t,e){return d[t]=e},_invoke:function(t){var e;e=n.extend({},s.vertical,s.horizontal);return n.each(e,function(e,n){n[t]();return true})},_filter:function(t,e,r){var i,o;i=c[n(t)[0][u]];if(!i){return[]}o=[];n.each(i.waypoints[e],function(t,e){if(r(i,e)){return o.push(e)}});o.sort(function(t,e){return t.offset-e.offset});return n.map(o,function(t){return t.element})}};n[m]=function(){var t,n;n=arguments[0],t=2<=arguments.length?e.call(arguments,1):[];if(h[n]){return h[n].apply(null,t)}else{return h.aggregate.call(null,n)}};n[m].settings={resizeThrottle:100,scrollThrottle:30};return i.on("load.waypoints",function(){return n[m]("refresh")})})}).call(this); -------------------------------------------------------------------------------- /js/wow.min.js: -------------------------------------------------------------------------------- 1 | /*! WOW - v1.1.2 - 2016-04-08 2 | * Copyright (c) 2016 Matthieu Aussaguel;*/(function(){var a,b,c,d,e,f=function(a,b){return function(){return a.apply(b,arguments)}},g=[].indexOf||function(a){for(var b=0,c=this.length;c>b;b++)if(b in this&&this[b]===a)return b;return-1};b=function(){function a(){}return a.prototype.extend=function(a,b){var c,d;for(c in b)d=b[c],null==a[c]&&(a[c]=d);return a},a.prototype.isMobile=function(a){return/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(a)},a.prototype.createEvent=function(a,b,c,d){var e;return null==b&&(b=!1),null==c&&(c=!1),null==d&&(d=null),null!=document.createEvent?(e=document.createEvent("CustomEvent"),e.initCustomEvent(a,b,c,d)):null!=document.createEventObject?(e=document.createEventObject(),e.eventType=a):e.eventName=a,e},a.prototype.emitEvent=function(a,b){return null!=a.dispatchEvent?a.dispatchEvent(b):b in(null!=a)?a[b]():"on"+b in(null!=a)?a["on"+b]():void 0},a.prototype.addEvent=function(a,b,c){return null!=a.addEventListener?a.addEventListener(b,c,!1):null!=a.attachEvent?a.attachEvent("on"+b,c):a[b]=c},a.prototype.removeEvent=function(a,b,c){return null!=a.removeEventListener?a.removeEventListener(b,c,!1):null!=a.detachEvent?a.detachEvent("on"+b,c):delete a[b]},a.prototype.innerHeight=function(){return"innerHeight"in window?window.innerHeight:document.documentElement.clientHeight},a}(),c=this.WeakMap||this.MozWeakMap||(c=function(){function a(){this.keys=[],this.values=[]}return a.prototype.get=function(a){var b,c,d,e,f;for(f=this.keys,b=d=0,e=f.length;e>d;b=++d)if(c=f[b],c===a)return this.values[b]},a.prototype.set=function(a,b){var c,d,e,f,g;for(g=this.keys,c=e=0,f=g.length;f>e;c=++e)if(d=g[c],d===a)return void(this.values[c]=b);return this.keys.push(a),this.values.push(b)},a}()),a=this.MutationObserver||this.WebkitMutationObserver||this.MozMutationObserver||(a=function(){function a(){"undefined"!=typeof console&&null!==console&&console.warn("MutationObserver is not supported by your browser."),"undefined"!=typeof console&&null!==console&&console.warn("WOW.js cannot detect dom mutations, please call .sync() after loading new content.")}return a.notSupported=!0,a.prototype.observe=function(){},a}()),d=this.getComputedStyle||function(a,b){return this.getPropertyValue=function(b){var c;return"float"===b&&(b="styleFloat"),e.test(b)&&b.replace(e,function(a,b){return b.toUpperCase()}),(null!=(c=a.currentStyle)?c[b]:void 0)||null},this},e=/(\-([a-z]){1})/g,this.WOW=function(){function e(a){null==a&&(a={}),this.scrollCallback=f(this.scrollCallback,this),this.scrollHandler=f(this.scrollHandler,this),this.resetAnimation=f(this.resetAnimation,this),this.start=f(this.start,this),this.scrolled=!0,this.config=this.util().extend(a,this.defaults),null!=a.scrollContainer&&(this.config.scrollContainer=document.querySelector(a.scrollContainer)),this.animationNameCache=new c,this.wowEvent=this.util().createEvent(this.config.boxClass)}return e.prototype.defaults={boxClass:"wow",animateClass:"animated",offset:0,mobile:!0,live:!0,callback:null,scrollContainer:null},e.prototype.init=function(){var a;return this.element=window.document.documentElement,"interactive"===(a=document.readyState)||"complete"===a?this.start():this.util().addEvent(document,"DOMContentLoaded",this.start),this.finished=[]},e.prototype.start=function(){var b,c,d,e;if(this.stopped=!1,this.boxes=function(){var a,c,d,e;for(d=this.element.querySelectorAll("."+this.config.boxClass),e=[],a=0,c=d.length;c>a;a++)b=d[a],e.push(b);return e}.call(this),this.all=function(){var a,c,d,e;for(d=this.boxes,e=[],a=0,c=d.length;c>a;a++)b=d[a],e.push(b);return e}.call(this),this.boxes.length)if(this.disabled())this.resetStyle();else for(e=this.boxes,c=0,d=e.length;d>c;c++)b=e[c],this.applyStyle(b,!0);return this.disabled()||(this.util().addEvent(this.config.scrollContainer||window,"scroll",this.scrollHandler),this.util().addEvent(window,"resize",this.scrollHandler),this.interval=setInterval(this.scrollCallback,50)),this.config.live?new a(function(a){return function(b){var c,d,e,f,g;for(g=[],c=0,d=b.length;d>c;c++)f=b[c],g.push(function(){var a,b,c,d;for(c=f.addedNodes||[],d=[],a=0,b=c.length;b>a;a++)e=c[a],d.push(this.doSync(e));return d}.call(a));return g}}(this)).observe(document.body,{childList:!0,subtree:!0}):void 0},e.prototype.stop=function(){return this.stopped=!0,this.util().removeEvent(this.config.scrollContainer||window,"scroll",this.scrollHandler),this.util().removeEvent(window,"resize",this.scrollHandler),null!=this.interval?clearInterval(this.interval):void 0},e.prototype.sync=function(b){return a.notSupported?this.doSync(this.element):void 0},e.prototype.doSync=function(a){var b,c,d,e,f;if(null==a&&(a=this.element),1===a.nodeType){for(a=a.parentNode||a,e=a.querySelectorAll("."+this.config.boxClass),f=[],c=0,d=e.length;d>c;c++)b=e[c],g.call(this.all,b)<0?(this.boxes.push(b),this.all.push(b),this.stopped||this.disabled()?this.resetStyle():this.applyStyle(b,!0),f.push(this.scrolled=!0)):f.push(void 0);return f}},e.prototype.show=function(a){return this.applyStyle(a),a.className=a.className+" "+this.config.animateClass,null!=this.config.callback&&this.config.callback(a),this.util().emitEvent(a,this.wowEvent),this.util().addEvent(a,"animationend",this.resetAnimation),this.util().addEvent(a,"oanimationend",this.resetAnimation),this.util().addEvent(a,"webkitAnimationEnd",this.resetAnimation),this.util().addEvent(a,"MSAnimationEnd",this.resetAnimation),a},e.prototype.applyStyle=function(a,b){var c,d,e;return d=a.getAttribute("data-wow-duration"),c=a.getAttribute("data-wow-delay"),e=a.getAttribute("data-wow-iteration"),this.animate(function(f){return function(){return f.customStyle(a,b,d,c,e)}}(this))},e.prototype.animate=function(){return"requestAnimationFrame"in window?function(a){return window.requestAnimationFrame(a)}:function(a){return a()}}(),e.prototype.resetStyle=function(){var a,b,c,d,e;for(d=this.boxes,e=[],b=0,c=d.length;c>b;b++)a=d[b],e.push(a.style.visibility="visible");return e},e.prototype.resetAnimation=function(a){var b;return a.type.toLowerCase().indexOf("animationend")>=0?(b=a.target||a.srcElement,b.className=b.className.replace(this.config.animateClass,"").trim()):void 0},e.prototype.customStyle=function(a,b,c,d,e){return b&&this.cacheAnimationName(a),a.style.visibility=b?"hidden":"visible",c&&this.vendorSet(a.style,{animationDuration:c}),d&&this.vendorSet(a.style,{animationDelay:d}),e&&this.vendorSet(a.style,{animationIterationCount:e}),this.vendorSet(a.style,{animationName:b?"none":this.cachedAnimationName(a)}),a},e.prototype.vendors=["moz","webkit"],e.prototype.vendorSet=function(a,b){var c,d,e,f;d=[];for(c in b)e=b[c],a[""+c]=e,d.push(function(){var b,d,g,h;for(g=this.vendors,h=[],b=0,d=g.length;d>b;b++)f=g[b],h.push(a[""+f+c.charAt(0).toUpperCase()+c.substr(1)]=e);return h}.call(this));return d},e.prototype.vendorCSS=function(a,b){var c,e,f,g,h,i;for(h=d(a),g=h.getPropertyCSSValue(b),f=this.vendors,c=0,e=f.length;e>c;c++)i=f[c],g=g||h.getPropertyCSSValue("-"+i+"-"+b);return g},e.prototype.animationName=function(a){var b;try{b=this.vendorCSS(a,"animation-name").cssText}catch(c){b=d(a).getPropertyValue("animation-name")}return"none"===b?"":b},e.prototype.cacheAnimationName=function(a){return this.animationNameCache.set(a,this.animationName(a))},e.prototype.cachedAnimationName=function(a){return this.animationNameCache.get(a)},e.prototype.scrollHandler=function(){return this.scrolled=!0},e.prototype.scrollCallback=function(){var a;return!this.scrolled||(this.scrolled=!1,this.boxes=function(){var b,c,d,e;for(d=this.boxes,e=[],b=0,c=d.length;c>b;b++)a=d[b],a&&(this.isVisible(a)?this.show(a):e.push(a));return e}.call(this),this.boxes.length||this.config.live)?void 0:this.stop()},e.prototype.offsetTop=function(a){for(var b;void 0===a.offsetTop;)a=a.parentNode;for(b=a.offsetTop;a=a.offsetParent;)b+=a.offsetTop;return b},e.prototype.isVisible=function(a){var b,c,d,e,f;return c=a.getAttribute("data-wow-offset")||this.config.offset,f=this.config.scrollContainer&&this.config.scrollContainer.scrollTop||window.pageYOffset,e=f+Math.min(this.element.clientHeight,this.util().innerHeight())-c,d=this.offsetTop(a),b=d+a.clientHeight,e>=d&&b>=f},e.prototype.util=function(){return null!=this._util?this._util:this._util=new b},e.prototype.disabled=function(){return!this.config.mobile&&this.util().isMobile(navigator.userAgent)},e}()}).call(this); --------------------------------------------------------------------------------